Compare commits

...

2 Commits

Author SHA1 Message Date
wtq
3c8eb7e2b3 '!' 2026-01-28 15:30:38 +08:00
wtq
cab510eca5 '!' 2026-01-28 14:12:29 +08:00
2 changed files with 21 additions and 22 deletions

View File

@@ -702,9 +702,8 @@ export default {
const auditPrice = Math.floor(value * 100);
const { storeID, nameID } = row;
// 修改可售参数
let skuName = await getStoreSku(storeID, nameID, true);
// console.log(row,'skuName,9999999999999',skuName.skus)
// 修改可售参数 row.type 关注操作
let skuName = await getStoreSku(storeID, nameID, row.type === 2 ? false : true);
let skus = skuName.skus.map(sku => { return {
skuID:sku.id,
isSale:1
@@ -715,7 +714,7 @@ export default {
skus
});
// 批的参数
// 批的参数
let payload = JSON.stringify([
{
storeID,

View File

@@ -2651,10 +2651,10 @@ export default {
let ddName = ''
let ddStatus = ''
let ddPack = ''
let txdID = ''
let txdName = ''
let txdStatus = ''
let txdPack = ''
// let txdID = ''
// let txdName = ''
// let txdStatus = ''
// let txdPack = ''
let jxID = ''
let jxName = ''
let jxStatus = ''
@@ -2711,16 +2711,16 @@ export default {
}
// txd
let arr16 = item.StoreMaps.filter((item) => item.vendorID === 16)
txdID = arr16.length === 0 ? '' : arr16[0].vendorStoreID
if (arr16.length > 0) {
txdName = arr16[0].vendorStoreName || arr16[0].storeName
txdStatus =
item.status === 0
? '临时休息'
: this.switchStatus(arr16[0].status)
txdPack = arr16[0].pricePercentagePack || ''
}
// let arr16 = item.StoreMaps.filter((item) => item.vendorID === 16)
// txdID = arr16.length === 0 ? '' : arr16[0].vendorStoreID
// if (arr16.length > 0) {
// txdName = arr16[0].vendorStoreName || arr16[0].storeName
// txdStatus =
// item.status === 0
// ? '临时休息'
// : this.switchStatus(arr16[0].status)
// txdPack = arr16[0].pricePercentagePack || ''
// }
// jx
let arr9 = item.StoreMaps.filter((item) => item.vendorID === 9)
@@ -2870,10 +2870,10 @@ export default {
ddName,
ddStatus,
ddPack,
txdID,
txdName,
txdStatus,
txdPack,
// txdID,
// txdName,
// txdStatus,
// txdPack,
jxID,
jxName,
jxStatus,