Commit d1265a08 by qinjianhui

Merge branch 'dev' into 'master'

Dev

See merge request !27
parents 9e843d08 b9eddc46
...@@ -12,6 +12,8 @@ import { ...@@ -12,6 +12,8 @@ import {
MessageBox, MessageBox,
Pagination, Pagination,
Loading, Loading,
Row,
Col,
DatePicker, DatePicker,
Switch, Switch,
Select, Select,
...@@ -56,6 +58,8 @@ const components = [ ...@@ -56,6 +58,8 @@ const components = [
Submenu, Submenu,
MenuItemGroup, MenuItemGroup,
Tabs, Tabs,
Row,
Col,
TabPane, TabPane,
Tag, Tag,
Checkbox, Checkbox,
......
...@@ -66,10 +66,16 @@ const routes = [ ...@@ -66,10 +66,16 @@ const routes = [
meta: { title: '定时任务' }, meta: { title: '定时任务' },
}, },
{ {
path: '/saas/announceManage', path: '/saas/countryCode',
component: () => import('@/views/system/announceManage.vue'), component: () => import('@/views/system/countryCode.vue'),
name: 'system_announce_manage', name: 'system_countryCode',
meta: { title: '公告管理' }, meta: { title: '国家代码' },
},
{
path: '/saas/abbreviation',
component: () => import('@/views/system/abbreviation.vue'),
name: 'system_abbreviation',
meta: { title: '州省简称' },
}, },
], ],
}, },
......
...@@ -198,9 +198,17 @@ export default { ...@@ -198,9 +198,17 @@ export default {
{ {
id: 5, id: 5,
path: '', path: '',
label: '公告管理', label: '国家代码',
icon: 'el-icon-s-promotion', icon: 'el-icon-s-flag',
index: '/saas/announceManage', index: '/saas/countryCode',
children: [],
},
{
id: 6,
path: '',
label: '州省简称',
icon: 'el-icon-s-help',
index: '/saas/abbreviation',
children: [], children: [],
}, },
], ],
......
...@@ -998,7 +998,9 @@ export default { ...@@ -998,7 +998,9 @@ export default {
}, },
], ],
pendingVisible: false, pendingVisible: false,
pendingForm: {}, pendingForm: {
closeReason: '',
},
imgPreviewUrl: '', imgPreviewUrl: '',
subscript: 0, subscript: 0,
imgList: [], imgList: [],
...@@ -1222,6 +1224,12 @@ export default { ...@@ -1222,6 +1224,12 @@ export default {
width: 80, width: 80,
}, },
{ {
label: '取消原因',
key: 'userCanncelReason',
show: this.statusCode === 'CLOSED',
width: 80,
},
{
label: '操作', label: '操作',
fixed: 'right', fixed: 'right',
width: this.columnWidth(), width: this.columnWidth(),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment