| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- export default {
- // app应用名称
- appName: '通用办公',
- // 验证码发送间隔
- sendCodeTime: 60,
- //首页banner图数据
- bannnerData: [{
- id: "1",
- imgPath: "../../static/banner-01.png"
- },
- {
- id: "2",
- imgPath: "../../static/banner-02.png"
- }
- ],
- //任务列表数据
- roleListData: {
- //审核员数据
- auditorList: [{
- id: "1",
- imagePath: "../../static/icon_tosubmit.png",
- imageBg: "#fe940a",
- text: "待审转办",
- navigateToUrl: "/pages/workOrderList/workOrderList",
- },
- {
- id: "2",
- imagePath: "../../static/icon_orderBack.png",
- imageBg: "#4792f8",
- text: "退回待审转办"
- },
- {
- id: "3",
- imagePath: "../../static/icon_delayed.png",
- imageBg: "#ff7451",
- text: "居委延时审核"
- },
- {
- id: "4",
- imagePath: "../../static/icon_tosubmit.png",
- imageBg: "#ff7451",
- text: "居委退回审核"
- },
- {
- id: "5",
- imagePath: "../../static/icon_already.png",
- imageBg: "#1ccd8d",
- text: "已办待回访"
- },
- {
- id: "6",
- imagePath: "../../static/icon_backlog.png",
- imageBg: "#7068e2",
- text: "正在办理"
- },
- {
- id: "7",
- imagePath: "../../static/icon_unsuccessful.png",
- imageBg: "#f26564",
- text: "超期未果"
- },
- {
- id: "8",
- imagePath: "../../static/icon_unsuccessful.png",
- imageBg: "#f26564",
- text: "已办未果"
- },
- {
- id: "9",
- imagePath: "../../static/icon_already.png",
- imageBg: "#1ccd8d",
- text: "已办结"
- },
- {
- id: "10",
- imagePath: "../../static/icon_backlog.png",
- imageBg: "#1ccd8d",
- text: "已转督办"
- },
- {
- id: "11",
- imagePath: "../../static/icon_backlog.png",
- imageBg: "#1ccd8d",
- text: "已退回重办"
- },
- {
- id: "12",
- imagePath: "../../static/icon-search.png",
- imageBg: "#1ccd8d",
- text: "工单查询"
- }
- ],
- //办理人员测试
- acceptList: [{
- id: "1",
- imagePath: "../../static/icon_tosubmit.png",
- imageBg: "#fe940a",
- text: "待审转办",
- navigateToUrl: "/pages/workOrderList/workOrderList?workOrderListType=1&tab=0",
- },
- {
- id: "12",
- imagePath: "../../static/icon-search.png",
- imageBg: "#1ccd8d",
- text: "工单查询",
- navigateToUrl: "/pages/workOrderList/workOrderList?workOrderListType=0&tab=''",
- }
- ]
- },
- //公告管理数据
- noticListData: [{
- id: "1",
- imagePath: "../../static/icon_noticefi.png",
- imageBg: "#4792f8",
- textTit: "暂无内容",
- textCon: "正在加急赶工中..."
- },
- {
- id: "2",
- imagePath: "../../static/icon_warning.png",
- imageBg: "#ff0000",
- textTit: "暂无内容",
- textCon: "正在加急赶工中..."
- },
- {
- id: "3",
- imagePath: "../../static/icon_overtime.png",
- imageBg: "#ff9600",
- textTit: "暂无内容",
- textCon: "正在加急赶工中..."
- },
- ]
- };
|