1.新增订单手动退款 2.团购新增抖音团购核销
This commit is contained in:
@@ -157,14 +157,20 @@ async function groupOrdergroupScanHandle() {
|
||||
break;
|
||||
case 2:
|
||||
{
|
||||
groupDetailLoading.value = true
|
||||
let encrypted_codes = douyin_table.value.getSelectionRows().map(item => item.encrypted_code)
|
||||
console.log(encrypted_codes);
|
||||
const res = await douyincertificateprepare({
|
||||
verify_token: groupDetail.value.verify_token,
|
||||
encrypted_codes: encrypted_codes.join(','),
|
||||
id: groupDetail.value.id
|
||||
})
|
||||
let encrypted_codes = douyin_table.value.getSelectionRows()
|
||||
if (encrypted_codes.length) {
|
||||
groupDetailLoading.value = true
|
||||
let arr = encrypted_codes.map(item => item.encrypted_code)
|
||||
console.log(encrypted_codes);
|
||||
const res = await douyincertificateprepare({
|
||||
verify_token: groupDetail.value.verify_token,
|
||||
encrypted_codes: arr.join(','),
|
||||
id: groupDetail.value.id
|
||||
})
|
||||
} else {
|
||||
ElMessage.error('请选择核销项目')
|
||||
return
|
||||
}
|
||||
}
|
||||
break;
|
||||
default:
|
||||
@@ -261,7 +267,7 @@ const inputChange = _.debounce(function (e) {
|
||||
}, 500);
|
||||
|
||||
function show() {
|
||||
global.updateData(true)
|
||||
global.updateData(false)
|
||||
dialogVisible.value = true;
|
||||
setTimeout(() => {
|
||||
inputRef.value.focus();
|
||||
@@ -269,7 +275,7 @@ function show() {
|
||||
}
|
||||
|
||||
function close() {
|
||||
global.updateData(false)
|
||||
global.updateData(true)
|
||||
dialogVisible.value = false;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user