|
@@ -293,7 +293,7 @@ const setPasteKeyList = async (event) => {
|
|
|
await setSingleCopyValue(checkList, keysList)
|
|
|
}
|
|
|
//复制单个粘贴
|
|
|
- if (checkList.length === 1 && keysList.length > 1) {
|
|
|
+ if (checkList.length === 1 && keysList.length >= 1) {
|
|
|
await setCopySingleValue(checkList, keysList)
|
|
|
}
|
|
|
//清除缓存
|
|
@@ -311,6 +311,8 @@ const setCopySingleValue = async (checkList, keysList) => {
|
|
|
form_val = form_val ? form_val + '、' + val : val
|
|
|
keys.splice(0, 1) //删除第一个元素
|
|
|
}
|
|
|
+ console.log('key', key)
|
|
|
+ console.log('form_val', form_val)
|
|
|
await setTableFormInfoValue(key, form_val)
|
|
|
HTableForm.setCheckKeyStyle(key, activeKey.value, true)
|
|
|
}
|