Commit a233177f by crushh

update: 待上架

parent b71b6716
......@@ -863,12 +863,12 @@ export default {
return false;
}
const shelfArr = []; // 上架的礼品id
const soldOutArr = []; // 下架的礼品id
const soldOutArr = []; // 下架 || 待上架
const deleteArr = []; // 删除的礼品id
let type = '';
let proId = '';
for (const item of this.selectArr) {
if (item.status === 1) {
if (item.status === 1 || item.status === 3) {
// 下架状态(进行上架操作)
soldOutArr.push(item.integralMallProId);
} else if (item.status === 2) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment