客户档案调整
This commit is contained in:
parent
f461c32c52
commit
7a3ab6bfef
@ -37,6 +37,7 @@
|
||||
where del_flag = 0
|
||||
<if test="name != null and name != ''"> and name like concat('%', #{name}, '%')</if>
|
||||
<if test="phone != null and phone != ''"> and phone like concat('%', #{phone}, '%')</if>
|
||||
<if test="fansChannel != null "> and fans_channel = #{fansChannel}</if>
|
||||
order by create_time desc
|
||||
</select>
|
||||
|
||||
|
@ -70,7 +70,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,7 +25,7 @@
|
||||
trigger="click"
|
||||
style="margin: 0 12px"
|
||||
>
|
||||
<VueQr :text="copyValue" :logoSrc="logo" size="256" />
|
||||
<VueQr :text="copyValue" :logoSrc="logo" :size="256" />
|
||||
<el-button
|
||||
slot="reference"
|
||||
size="mini"
|
||||
|
@ -201,7 +201,7 @@
|
||||
v-show="dataList.length == 0"
|
||||
style="font-size: 20px; text-align: center"
|
||||
>
|
||||
<VueQr :text="copyValue" :logoSrc="logo" size="256"/>
|
||||
<VueQr :text="copyValue" :logoSrc="logo" :size="256" />
|
||||
<div style="text-align: center; margin-top: 20px">
|
||||
<el-button
|
||||
icon="el-icon-share"
|
||||
@ -689,6 +689,28 @@ export default {
|
||||
? medicalReportNameArray[2]
|
||||
: "体检报告(3)"
|
||||
: "";
|
||||
detailHealthy.moistureDate = detailHealthy.moistureDate
|
||||
.split(",")
|
||||
.reduce((arr, cur) => {
|
||||
const tarData = healthyData.moistureDateArray.find(
|
||||
(obj) => obj.value === cur
|
||||
);
|
||||
if (tarData) {
|
||||
arr.push(tarData.name);
|
||||
}
|
||||
return arr;
|
||||
}, []);
|
||||
detailHealthy.bloodData = detailHealthy.bloodData
|
||||
.split(",")
|
||||
.reduce((arr, cur) => {
|
||||
const tarData = healthyData.bloodDataArray.find(
|
||||
(obj) => obj.value === cur
|
||||
);
|
||||
if (tarData) {
|
||||
arr.push(tarData.name);
|
||||
}
|
||||
return arr;
|
||||
}, []);
|
||||
this.detailHealthy = detailHealthy;
|
||||
for (let i = 0; i < this.healthyTitleData.length; i++) {
|
||||
let stepArray = [];
|
||||
|
@ -25,7 +25,7 @@
|
||||
v-if="cusOutId"
|
||||
style="margin: 0 12px"
|
||||
>
|
||||
<VueQr :text="copyValue" :logoSrc="logo" size="256" />
|
||||
<VueQr :text="copyValue" :logoSrc="logo" :size="256" />
|
||||
<el-button
|
||||
slot="reference"
|
||||
size="mini"
|
||||
|
@ -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: "已审核" },
|
||||
],
|
||||
|
Loading…
x
Reference in New Issue
Block a user