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

增加外呼列表子菜单

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