|
@@ -190,7 +190,7 @@ export default defineComponent({
|
|
components: {
|
|
components: {
|
|
listDialog,
|
|
listDialog,
|
|
},
|
|
},
|
|
- emits: ['updateRow', 'closeNo'],
|
|
|
|
|
|
+ emits: ['updateRow', 'closeNo','func'],
|
|
props: {
|
|
props: {
|
|
filter_Text: String,
|
|
filter_Text: String,
|
|
Height: String,
|
|
Height: String,
|
|
@@ -206,6 +206,11 @@ export default defineComponent({
|
|
const listDialogBool = ref(false)
|
|
const listDialogBool = ref(false)
|
|
const DialogArray = ref([])
|
|
const DialogArray = ref([])
|
|
|
|
|
|
|
|
+ const goBack = () => {
|
|
|
|
+ emit('func')
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+
|
|
//变量列表
|
|
//变量列表
|
|
const variableList = (row) => {
|
|
const variableList = (row) => {
|
|
DialogArray.value = row
|
|
DialogArray.value = row
|
|
@@ -300,6 +305,7 @@ export default defineComponent({
|
|
handleSizeChange,
|
|
handleSizeChange,
|
|
handleCurrentChange,
|
|
handleCurrentChange,
|
|
listSelect,
|
|
listSelect,
|
|
|
|
+ goBack,
|
|
|
|
|
|
store
|
|
store
|
|
}
|
|
}
|