Commit c804b686 by xiaohai

好办展示开关优化

parent ce3b0e85
......@@ -113,6 +113,8 @@
width="100px">
<template slot-scope="scope">
<el-switch
:active-value="1"
:inactive-value="0"
v-model="scope.row.appStatus"
active-color="#1890ff"
@change="switchAppStatus(scope.row.appStatus, scope.row)">
......@@ -342,11 +344,11 @@
console.log(status, obj);
const that = this;
that.loading = true;
const appStatus = status ? 1 : 0;
// const appStatus = status ? 1 : 0;
const memberTagGroupId = obj.memberTagGroupId;
let param = {
memberTagGroupId,
appStatus
appStatus: status
};
that.updateGroup(param, obj);
},
......
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