|
@@ -39,8 +39,8 @@
|
|
v-model="scope.row.status"
|
|
v-model="scope.row.status"
|
|
@changeFun="openAttraction(scope.row)"
|
|
@changeFun="openAttraction(scope.row)"
|
|
:disabled="false"
|
|
:disabled="false"
|
|
- :active-value="1"
|
|
|
|
- :inactive-value="0"
|
|
|
|
|
|
+ :active-value="0"
|
|
|
|
+ :inactive-value="1"
|
|
/>
|
|
/>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
@@ -321,6 +321,7 @@ export default {
|
|
details: '/merchant/merchantPerformAuditorium/merchantGoodsDetail', // 规格详情
|
|
details: '/merchant/merchantPerformAuditorium/merchantGoodsDetail', // 规格详情
|
|
list: '/merchant/merchantPerformAuditorium/merchantGoodsList',// 规格列表
|
|
list: '/merchant/merchantPerformAuditorium/merchantGoodsList',// 规格列表
|
|
edit: '/merchant/merchantPerformAuditorium/saveMerchantGoods', // 编辑地址
|
|
edit: '/merchant/merchantPerformAuditorium/saveMerchantGoods', // 编辑地址
|
|
|
|
+ updateStatusById: '/goods/goods/updateStatus',
|
|
},
|
|
},
|
|
performId: null,
|
|
performId: null,
|
|
form: {
|
|
form: {
|
|
@@ -511,15 +512,14 @@ export default {
|
|
* @returns {any}
|
|
* @returns {any}
|
|
*/
|
|
*/
|
|
openAttraction(row) {
|
|
openAttraction(row) {
|
|
- console.log("row======",row)
|
|
|
|
- this.$modal.confirm(`是否确认${row.status == 0 ? '上架' : '下架'} ${row.goodsName}点位吗?`).then( () => {
|
|
|
|
- return addTableApi(this.configUrl.edit,{
|
|
|
|
- ...row,
|
|
|
|
- status: row.status == 0 ? 1 : 0
|
|
|
|
|
|
+ this.$modal.confirm(`是否确认${row.status == 1 ? '上架' : '下架'} ${row.goodsName}点位吗?`).then( () => {
|
|
|
|
+ return getTableDeatilsByIdApi(this.configUrl.updateStatusById,{
|
|
|
|
+ id: row.goodsId,
|
|
|
|
+ status: row.status == 1 ? 0 : 1
|
|
});
|
|
});
|
|
}).then(() => {
|
|
}).then(() => {
|
|
- this.getList();
|
|
|
|
- this.$modal.msgSuccess(`${row.status == 0 ? '上架' : '下架'}成功`);
|
|
|
|
|
|
+ this.getTableListFun({performId:this.performId})
|
|
|
|
+ this.$modal.msgSuccess(`${row.status == 1 ? '上架' : '下架'}成功`);
|
|
}).catch((e) => {
|
|
}).catch((e) => {
|
|
console.error("失败====",e)
|
|
console.error("失败====",e)
|
|
});
|
|
});
|