客户档案调整
This commit is contained in:
		| @@ -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" | ||||
|   | ||||
| @@ -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, | ||||
|   | ||||
| @@ -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] }); | ||||
|     }, | ||||
|   | ||||
| @@ -200,6 +200,7 @@ export default { | ||||
|       orderDialog: undefined, | ||||
|       reviewStatusOptions: [ | ||||
|         { dictValue: 0, dictLabel: "未制作" }, | ||||
|         { dictValue: 3, dictLabel: "制作中" }, | ||||
|         { dictValue: 1, dictLabel: "未审核" }, | ||||
|         { dictValue: 2, dictLabel: "已审核" }, | ||||
|       ], | ||||
|   | ||||
		Reference in New Issue
	
	Block a user