提交 be1b78bb 编写于 作者: lyf's avatar lyf

添加路由

上级 6c7b767d
...@@ -145,6 +145,14 @@ ...@@ -145,6 +145,14 @@
@click="reMatchDot(scope.row)" @click="reMatchDot(scope.row)"
>重新匹配医生</el-button >重新匹配医生</el-button
> >
<el-button
type="primary"
size="small"
class="btn"
v-if="showBtn(scope.row, 3, 25, 26)"
@click="reMatchDot(scope.row)"
>重新联系助诊医生</el-button
>
<el-button <el-button
type="primary" type="primary"
size="small" size="small"
...@@ -295,6 +303,7 @@ export default { ...@@ -295,6 +303,7 @@ export default {
}, },
//重新匹配医生 //重新匹配医生
reMatchDot(row) { reMatchDot(row) {
console.log(row)
this.$emit("reMatchDot", row); this.$emit("reMatchDot", row);
}, },
//修改时间 //修改时间
......
...@@ -311,24 +311,25 @@ export const ALL_TAB_LIST = [ ...@@ -311,24 +311,25 @@ export const ALL_TAB_LIST = [
} }
] ]
//运营预约单列表 //运营预约单列表
export const RUN_TAB_LIST = [ export const RUN_TAB_LIST = [
{ {
label: '全部', label: '全部',
active: '99' active: '99'
}, },
{ // {
label: '待匹配', // label: '待匹配',
active: '2' // active: '2'
}, // },
{ // {
label: '已匹配', // label: '已匹配',
active: '21' // active: '21'
}, // },
{ // {
label: '待确认时间', // label: '待确认时间',
active: '25' // active: '25'
}, // },
{ {
label: '待问诊', label: '待问诊',
active: '26' active: '26'
...@@ -353,14 +354,18 @@ export const TRIAGE_TAB_LIST = [ ...@@ -353,14 +354,18 @@ export const TRIAGE_TAB_LIST = [
label: '全部', label: '全部',
active: '99' active: '99'
}, },
// {
// label: '待分诊',
// active: '22'
// },
{ {
label: '待分诊', label: '待匹配',
active: '22' active: '2'
} },
] ]
// 接诊列表 // 接诊列表
export const RECEPTION_TAB_LIST = [ export const RECEPTION_TAB_LIST = [
{ {
label: '全部', label: '全部',
active: '99' active: '99'
...@@ -380,7 +385,7 @@ export const RECEPTION_TAB_LIST = [ ...@@ -380,7 +385,7 @@ export const RECEPTION_TAB_LIST = [
] ]
// 外呼列表 // 外呼列表
export const MATCH_TAB_LIST = [ export const MATCH_TAB_LIST = [
{ {
label: '全部', label: '全部',
active: '99' active: '99'
......
...@@ -452,6 +452,10 @@ export default { ...@@ -452,6 +452,10 @@ export default {
this.setTableHeight(); this.setTableHeight();
},
destroyed(){
clearInterval(this.timer);
}, },
methods: { methods: {
selectToggle() { selectToggle() {
...@@ -826,6 +830,7 @@ export default { ...@@ -826,6 +830,7 @@ export default {
}, },
//重新匹配医生 //重新匹配医生
reMatchDot(row) { reMatchDot(row) {
console.log(row)
this.rematchingVisible = true; this.rematchingVisible = true;
this.diagnoseLogId = row.diagnoseLogId; this.diagnoseLogId = row.diagnoseLogId;
this.bizType = 10; this.bizType = 10;
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册