提交 55a2bf02 编写于 作者: vino's avatar vino

增加外呼列表子菜单

上级 17f84d4f
...@@ -347,6 +347,17 @@ export const RECEPTION_TAB_LIST = [ ...@@ -347,6 +347,17 @@ export const RECEPTION_TAB_LIST = [
}, },
] ]
// 外呼列表
export const MATCH_TAB_LIST = [
{
label: '全部',
active: '99'
},
{
label: '已匹配',
active: '21'
}
]
export const TABLE_COLUMN = [ export const TABLE_COLUMN = [
{ {
prop: "diagnoseLogId", prop: "diagnoseLogId",
......
...@@ -249,7 +249,8 @@ import { ...@@ -249,7 +249,8 @@ import {
ALL_TAB_LIST, ALL_TAB_LIST,
TRIAGE_TAB_LIST, TRIAGE_TAB_LIST,
RECEPTION_TAB_LIST, RECEPTION_TAB_LIST,
RUN_TAB_LIST RUN_TAB_LIST,
MATCH_TAB_LIST
} from "@/utils/constants"; } from "@/utils/constants";
import MatchComponent from '@/components/common/match' import MatchComponent from '@/components/common/match'
import RefundComponent from '@/components/common/refund' import RefundComponent from '@/components/common/refund'
...@@ -303,7 +304,7 @@ export default { ...@@ -303,7 +304,7 @@ export default {
doneTimeEnd: "", doneTimeEnd: "",
pageSize: 15, pageSize: 15,
pageNo: 1, pageNo: 1,
menuType: 1, // 菜单类型:1、all 2、运营 3、待分诊 4、待接诊 menuType: 1, // 菜单类型:1、all 2、运营 3、待分诊 4、待接诊 5、外呼
status: '' status: ''
}, },
tyleList: TYPE_LIST, tyleList: TYPE_LIST,
...@@ -390,6 +391,10 @@ export default { ...@@ -390,6 +391,10 @@ export default {
tabs = RECEPTION_TAB_LIST; tabs = RECEPTION_TAB_LIST;
this.searchParam.menuType = 4; this.searchParam.menuType = 4;
break; break;
case 5:
tabs = MATCH_TAB_LIST;
this.searchParam.menuType = 5;
break;
default: default:
tabs = ALL_TAB_LIST; tabs = ALL_TAB_LIST;
this.searchParam.menuType = 1; this.searchParam.menuType = 1;
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册