提交 becd0604 编写于 作者: dmx_mac's avatar dmx_mac

feat:问诊单列表增加问诊类型字段

上级 5863f54b
...@@ -20,6 +20,12 @@ export const DIAGNOS_LIST_NEW = [ ...@@ -20,6 +20,12 @@ export const DIAGNOS_LIST_NEW = [
showtooltip: false, showtooltip: false,
with: '200', with: '200',
}, },
{
prop: 'type',
label: '问诊类型',
showtooltip: false,
with: '200',
},
{ {
prop: 'refundRemark', prop: 'refundRemark',
label: '外呼状态', label: '外呼状态',
......
...@@ -289,11 +289,11 @@ export const ALL_TAB_LIST = [ ...@@ -289,11 +289,11 @@ export const ALL_TAB_LIST = [
active: '99', active: '99',
}, },
{ {
label: '待匹配', label: '待分诊',
active: '2', active: '2',
}, },
{ {
label: '已匹配', label: '待联系',
active: '102', active: '102',
}, },
{ {
...@@ -304,10 +304,10 @@ export const ALL_TAB_LIST = [ ...@@ -304,10 +304,10 @@ export const ALL_TAB_LIST = [
label: '待分诊', label: '待分诊',
active: '22', active: '22',
}, },
{ // {
label: '待匹配医生', // label: '待匹配医生',
active: '23', // active: '23',
}, // },
{ {
label: '待协调医生', label: '待协调医生',
active: '24', active: '24',
...@@ -316,10 +316,10 @@ export const ALL_TAB_LIST = [ ...@@ -316,10 +316,10 @@ export const ALL_TAB_LIST = [
label: '待确认时间', label: '待确认时间',
active: '25', active: '25',
}, },
{ // {
label: '待问诊', // label: '待问诊',
active: '26', // active: '26',
}, // },
{ {
label: '问诊中', label: '问诊中',
active: '3', active: '3',
......
...@@ -31,6 +31,25 @@ ...@@ -31,6 +31,25 @@
/> />
</el-form-item> </el-form-item>
</div> </div>
<div>
<el-form-item
label="问诊类型"
class="t-b"
>
<el-select
v-model="searchParam.type"
placeholder="请选择问诊类型"
style="width: 220px"
>
<el-option
v-for="item of consultationTypeList"
:key="item.value"
:label="item.label"
:value="item.value"
/>
</el-select>
</el-form-item>
</div>
<div> <div>
<el-form-item <el-form-item
label="分诊科室" label="分诊科室"
...@@ -58,6 +77,7 @@ ...@@ -58,6 +77,7 @@
placeholder="选择科室" placeholder="选择科室"
:show-all-levels="false" :show-all-levels="false"
@change="changeDepart" @change="changeDepart"
style="width:220px;"
> >
<template slot-scope="{ data }"> <template slot-scope="{ data }">
<span :style="{ fontSize: '15px', color: '#606266' }">{{ <span :style="{ fontSize: '15px', color: '#606266' }">{{
...@@ -592,6 +612,7 @@ ...@@ -592,6 +612,7 @@
tabrefresh: true, tabrefresh: true,
searchParam: { searchParam: {
id: '', id: '',
type:'',
operateName: '', operateName: '',
assistantVal: '', assistantVal: '',
receptionVal: '', receptionVal: '',
...@@ -673,6 +694,20 @@ ...@@ -673,6 +694,20 @@
departmentId: '', departmentId: '',
allTilst: [], allTilst: [],
allList: {}, allList: {},
consultationTypeList:[
{
label:'名医问诊',
value:2
},
{
label:'极速问诊',
value:1
},
{
label:'-',
value:0
},
]
}; };
}, },
watch: { watch: {
...@@ -1045,6 +1080,7 @@ ...@@ -1045,6 +1080,7 @@
this.assistantTime = ''; this.assistantTime = '';
this.searchParam = Object.assign(this.searchParam, { this.searchParam = Object.assign(this.searchParam, {
id: '', id: '',
type:'',
operateName: '', operateName: '',
assistantVal: '', assistantVal: '',
receptionVal: '', receptionVal: '',
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册