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

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

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