|
@@ -97,11 +97,11 @@
|
|
|
</template>
|
|
|
|
|
|
<script setup>
|
|
|
-import { arrToId, deepClone, getArrValue } from 'js-fast-way'
|
|
|
+import { arrToId, getArrValue } from 'js-fast-way'
|
|
|
import { onMounted, reactive, ref, watch } from 'vue'
|
|
|
import tuningApi from '~api/archiveConfig/tuning.js'
|
|
|
import { useAppStore } from '~src/store'
|
|
|
-
|
|
|
+const emits = defineEmits(['close'])
|
|
|
const useAppState = useAppStore()
|
|
|
const projectId = ref(useAppState.getProjectId)
|
|
|
const contractId = ref(useAppState.getContractId)
|
|
@@ -304,6 +304,7 @@ const insertDialogClose = () => {
|
|
|
tableData.value = []
|
|
|
insertDialog.value = false
|
|
|
resetForm()
|
|
|
+ emits('close')
|
|
|
}
|
|
|
|
|
|
// 表单验证方法
|