食谱计划优化,直播记录优化,加上了食谱计划是否连续的字段

This commit is contained in:
xiezhijun
2021-05-17 16:29:49 +08:00
parent 85f362e775
commit ba103faaea
7 changed files with 20 additions and 10 deletions

View File

@ -41,7 +41,7 @@
/>
</el-select>
</el-form-item>
<el-form-item label="微信号" prop="wxAccountId">
<!--<el-form-item label="微信号" prop="wxAccountId">
<el-select
v-model="queryParams.wxAccountId"
filterable
@ -56,7 +56,7 @@
:value="parseInt(dict.id)"
/>
</el-select>
</el-form-item>
</el-form-item>-->
@ -323,7 +323,7 @@
:value="parseInt(dict.dictValue)"
/>
</el-select>
<span style="margin-left:10px;color:#1890ff">该账号与销售接粉微信号绑定</span>
<!--<span style="margin-left:10px;color:#1890ff">该账号与销售接粉微信号绑定</span>-->
</el-form-item>
<el-form-item label="直播状态" prop="liveStatus">
<el-select
@ -425,7 +425,10 @@ export default {
this.getDicts("sys_live_type").then((response) => {
this.liveTypeOptions = response.data;
});
this.getDicts("fan_channel").then((response) => {
/**this.getDicts("fan_channel").then((response) => {
this.fanChanneloptions = response.data;
});**/
this.getDicts("cus_account").then((response) => {
this.fanChanneloptions = response.data;
});
this.getListWxAccount();

View File

@ -112,6 +112,8 @@
<el-table-column label="状态" align="center" prop="status">
<template slot-scope="scope">
<el-switch
active-text="可接粉"
inactive-text="不可接粉"
:value="!scope.row.status"
@change="handleOnChange($event, scope.row)"
/>