|
@@ -373,6 +373,7 @@ const setChangeFormDatas = async (pkeyId, type) => {
|
|
|
const DragModalTableForm = ref([])
|
|
|
const DragModalHeight = ref(600)
|
|
|
const windowClick = async (item, indexs) => {
|
|
|
+
|
|
|
const list = deepClone(DragModalTableForm.value)
|
|
|
let index = arrIndex(list, 'pkeyId', item.id)
|
|
|
if (!item.isWindow) {
|
|
@@ -394,7 +395,7 @@ const windowClick = async (item, indexs) => {
|
|
|
list.push(newTableForm)
|
|
|
}
|
|
|
DragModalTableForm.value = list
|
|
|
- ActiveKey.value = ''
|
|
|
+
|
|
|
} else {
|
|
|
await setChangeFormDatas(item?.id, 'collapse')
|
|
|
//处理表单的ref
|
|
@@ -589,6 +590,7 @@ const fileListData = ref([])
|
|
|
//单个保存
|
|
|
const tableFormSaveLoading = ref(false)
|
|
|
const tableFormSaveClick = async (item, dragItem = null, index) => {
|
|
|
+
|
|
|
if (isStatus.value !== 3) {
|
|
|
setStoreValue('activeKey', ActiveKey.value)
|
|
|
tableFormSaveLoading.value = true
|
|
@@ -655,7 +657,9 @@ const getBussPdfInfo = async ({ id }, dragItem = null, showTip = true) => {
|
|
|
|
|
|
//通知数据更新
|
|
|
const renewData = (id) => {
|
|
|
+
|
|
|
const activeKey = getStoreValue('activeKey')
|
|
|
+ console.log(activeKey, 'activeKey111111')
|
|
|
emit('renew', id, activeKey)
|
|
|
ActiveKey.value = ''
|
|
|
|