客户档案调整

This commit is contained in:
huangdeliang
2021-03-16 15:05:53 +08:00
parent f461c32c52
commit 7a3ab6bfef
9 changed files with 41 additions and 15 deletions

View File

@ -198,7 +198,7 @@
>复制
</el-button>
<el-popover placement="top" trigger="click">
<VueQr :text="copyValue" :logoSrc="logo" size="256"/>
<VueQr :text="copyValue" :logoSrc="logo" :size="256"/>
<el-button
slot="reference"
icon="el-icon-picture-outline"

View File

@ -25,16 +25,17 @@
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<!--<el-form-item label="主营养师" prop="mainDietitian">
<el-input
v-model="queryParams.mainDietitian"
placeholder="请输入主营养师"
clearable
size="small"
@keyup.enter.native="handleQuery"
/>
<el-form-item label="进粉渠道" prop="fansChannel">
<el-select v-model="queryParams.fansChannel" placeholder="请选择">
<el-option
v-for="dict in fansChannelOptions"
:key="dict.dictValue"
:label="dict.dictLabel"
:value="parseInt(dict.dictValue)"
/>
</el-select>
</el-form-item>
<el-form-item label="营养师助理" prop="assistantDietitian">
<!--<el-form-item label="营养师助理" prop="assistantDietitian">
<el-input
v-model="queryParams.assistantDietitian"
placeholder="请输入营养师助理"
@ -430,6 +431,7 @@ export default {
queryParams: {
pageNum: 1,
pageSize: 10,
fansChannel: null,
name: null,
phone: null,
mainDietitian: null,

View File

@ -87,7 +87,7 @@ export default {
this.setNotRecIgds({ data: [] });
}
this.selectedIgd = data.id;
this.selectedIgd = data.id === this.selectedIgd ? 0 : data.id;
this.setNotRecIgds({ data: [this.selectedIgd] });
},

View File

@ -200,6 +200,7 @@ export default {
orderDialog: undefined,
reviewStatusOptions: [
{ dictValue: 0, dictLabel: "未制作" },
{ dictValue: 3, dictLabel: "制作中" },
{ dictValue: 1, dictLabel: "未审核" },
{ dictValue: 2, dictLabel: "已审核" },
],