vue2-client 1.4.11 → 1.4.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +366 -362
- package/index.js +30 -30
- package/package.json +78 -78
- package/src/App.vue +4 -2
- package/src/base-client/components/common/AddressSearchCombobox/AddressSearchCombobox.vue +225 -225
- package/src/base-client/components/common/CreateQuery/CreateQueryItem.vue +777 -777
- package/src/base-client/components/common/CreateSimpleFormQuery/CreateSimpleFormQueryItem.vue +553 -553
- package/src/base-client/components/common/FormGroupQuery/FormGroupQuery.vue +165 -165
- package/src/base-client/components/common/JSONToTree/jsontotree.vue +275 -275
- package/src/base-client/components/common/XAddForm/XAddForm.vue +354 -354
- package/src/base-client/components/common/XAddNativeForm/XAddNativeForm.vue +327 -327
- package/src/base-client/components/common/XCard/XCard.vue +64 -64
- package/src/base-client/components/common/XForm/XForm.vue +274 -274
- package/src/base-client/components/common/XForm/XFormItem.vue +389 -389
- package/src/base-client/components/common/XFormTable/index.md +96 -96
- package/src/base-client/components/system/QueryParamsDetailsView/QueryParamsDetailsView.vue +281 -281
- package/src/base-client/components/ticket/TicketDetailsView/TicketDetailsView.vue +807 -807
- package/src/base-client/components/ticket/TicketDetailsView/index.md +29 -29
- package/src/base-client/components/ticket/TicketDetailsView/part/TicketDetailsFlow.vue +260 -260
- package/src/base-client/components/ticket/TicketSubmitSuccessView/TicketSubmitSuccessView.vue +532 -532
- package/src/base-client/components/ticket/TicketSubmitSuccessView/index.md +29 -29
- package/src/base-client/plugins/AppData.js +69 -69
- package/src/base-client/plugins/GetLoginInfoService.js +179 -179
- package/src/base-client/plugins/PagedList.js +177 -177
- package/src/base-client/plugins/compatible/LoginServiceOA.js +20 -20
- package/src/base-client/plugins/i18n-extend.js +32 -32
- package/src/components/Ellipsis/index.md +38 -38
- package/src/components/NumberInfo/index.md +43 -43
- package/src/components/STable/README.md +341 -341
- package/src/components/STable/index.js +318 -318
- package/src/components/Trend/index.md +45 -45
- package/src/components/checkbox/ColorCheckbox.vue +157 -157
- package/src/components/checkbox/ImgCheckbox.vue +163 -163
- package/src/components/exception/ExceptionPage.vue +2 -2
- package/src/components/form/FormRow.vue +52 -52
- package/src/components/index.js +36 -36
- package/src/components/menu/SideMenu.vue +62 -62
- package/src/components/menu/menu.js +273 -273
- package/src/components/setting/Setting.vue +235 -235
- package/src/components/table/StandardTable.vue +141 -141
- package/src/components/table/advance/ActionColumns.vue +158 -158
- package/src/components/table/advance/SearchArea.vue +355 -355
- package/src/components/tool/AStepItem.vue +60 -60
- package/src/components/tool/AvatarList.vue +68 -68
- package/src/components/tool/Drawer.vue +142 -142
- package/src/components/tool/TagSelect.vue +83 -83
- package/src/components/transition/PageToggleTransition.vue +97 -97
- package/src/config/default/setting.config.js +1 -1
- package/src/config/replacer/resolve.config.js +67 -67
- package/src/layouts/AdminLayout.vue +174 -174
- package/src/layouts/header/AdminHeader.vue +104 -104
- package/src/layouts/header/HeaderNotice.vue +167 -167
- package/src/layouts/header/HeaderSearch.vue +67 -67
- package/src/layouts/header/InstitutionDetail.vue +181 -181
- package/src/layouts/tabs/TabsHead.vue +190 -190
- package/src/layouts/tabs/TabsView.vue +379 -379
- package/src/mock/goods/index.js +108 -108
- package/src/pages/CreateQueryPage.vue +65 -65
- package/src/pages/dashboard/workplace/WorkPlace.vue +141 -0
- package/src/pages/dashboard/workplace/i18n.js +40 -0
- package/src/pages/dashboard/workplace/index.js +2 -0
- package/src/pages/dashboard/workplace/index.less +59 -0
- package/src/pages/login/Login.vue +27 -41
- package/src/pages/report/ReportTable.js +124 -124
- package/src/pages/report/ReportTableHome.vue +28 -28
- package/src/pages/resourceManage/orgListManage.vue +98 -98
- package/src/pages/system/dictionary/index.vue +43 -43
- package/src/pages/system/file/index.vue +317 -317
- package/src/pages/system/queryParams/index.vue +43 -43
- package/src/router/async/config.async.js +27 -27
- package/src/router/async/router.map.js +5 -0
- package/src/router/index.js +27 -27
- package/src/services/api/DictionaryDetailsViewApi.js +6 -6
- package/src/services/api/LogDetailsViewApi.js +10 -10
- package/src/services/api/QueryParamsDetailsViewApi.js +6 -6
- package/src/services/api/TicketDetailsViewApi.js +34 -34
- package/src/services/api/commonTempTable.js +10 -10
- package/src/services/api/index.js +17 -17
- package/src/services/api/manage.js +8 -8
- package/src/services/apiService.js +1 -0
- package/src/services/user.js +13 -5
- package/src/store/modules/index.js +4 -4
- package/src/store/mutation-types.js +1 -0
- package/src/theme/default/nprogress.less +76 -76
- package/src/theme/default/style.less +47 -47
- package/src/utils/colors.js +103 -103
- package/src/utils/excel/Blob.js +180 -180
- package/src/utils/excel/Export2Excel.js +141 -141
- package/src/utils/formatter.js +68 -68
- package/src/utils/i18n.js +80 -80
- package/src/utils/request.js +109 -33
- package/src/utils/routerUtil.js +364 -364
- package/src/utils/theme-color-replacer-extend.js +91 -91
- package/src/utils/themeUtil.js +100 -100
- package/src/utils/util.js +230 -230
- package/vue.config.js +7 -0
|
@@ -88,7 +88,7 @@ export default {
|
|
|
88
88
|
const password = this.form.getFieldValue('password')
|
|
89
89
|
switch (this.compatible) {
|
|
90
90
|
case 'V3': {
|
|
91
|
-
login(name, password).then(this.afterLogin)
|
|
91
|
+
login(name, password).then(this.afterLogin).finally(() => { this.logging = false })
|
|
92
92
|
break
|
|
93
93
|
}
|
|
94
94
|
case 'OA' : {
|
|
@@ -96,7 +96,9 @@ export default {
|
|
|
96
96
|
break
|
|
97
97
|
}
|
|
98
98
|
case 'V4' : {
|
|
99
|
-
V4Login(name, password).then(this.afterLoginV4)
|
|
99
|
+
V4Login(name, password).then(this.afterLoginV4).catch(msg => {
|
|
100
|
+
this.error = msg
|
|
101
|
+
}).finally(() => { this.logging = false })
|
|
100
102
|
break
|
|
101
103
|
}
|
|
102
104
|
}
|
|
@@ -115,41 +117,23 @@ export default {
|
|
|
115
117
|
const name = this.form.getFieldValue('name')
|
|
116
118
|
const password = this.form.getFieldValue('password')
|
|
117
119
|
this.logging = false
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
//
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
this.setV4AccessToken(V4Token)
|
|
134
|
-
// 向本地缓存中临时存储compatible
|
|
135
|
-
if (loginRes.access_token || pass) {
|
|
136
|
-
const encrypt = new JSEncrypt()
|
|
137
|
-
encrypt.setPublicKey('MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCqPvovSfXcwBbW8cKMCgwqNpsYuzF8RPAPFb7LGsnVo44JhM/xxzDyzoYtdfNmtbIuKVi9PzIsyp6rg+09gbuI6UGwBZ5DWBDBMqv5MPdOF5dCQkB2Bbr5yPfURPENypUz+pBFBg41d+BC+rwRiXELwKy7Y9caD/MtJyHydj8OUwIDAQAB')
|
|
138
|
-
const data = encrypt.encrypt(JSON.stringify({ username: name, password: password }))
|
|
139
|
-
// 获取路由配置
|
|
140
|
-
getRoutesConfig(data).then(result => {
|
|
141
|
-
this.$login.login(result).then(() => {
|
|
142
|
-
this.afterGeneral(result)
|
|
143
|
-
if (result.deps === '用户工单登记') {
|
|
144
|
-
this.$router.push(this.ticketPage).catch(() => {})
|
|
145
|
-
} else {
|
|
146
|
-
this.$router.push(this.homePage).catch(() => {})
|
|
147
|
-
}
|
|
148
|
-
})
|
|
120
|
+
this.setV4AccessToken(res)
|
|
121
|
+
const encrypt = new JSEncrypt()
|
|
122
|
+
encrypt.setPublicKey('MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCqPvovSfXcwBbW8cKMCgwqNpsYuzF8RPAPFb7LGsnVo44JhM/xxzDyzoYtdfNmtbIuKVi9PzIsyp6rg+09gbuI6UGwBZ5DWBDBMqv5MPdOF5dCQkB2Bbr5yPfURPENypUz+pBFBg41d+BC+rwRiXELwKy7Y9caD/MtJyHydj8OUwIDAQAB')
|
|
123
|
+
const data = encrypt.encrypt(JSON.stringify({ username: name, password: password }))
|
|
124
|
+
// 获取路由配置
|
|
125
|
+
getRoutesConfig(data).then(result => {
|
|
126
|
+
this.$login.login(result).then(() => {
|
|
127
|
+
this.afterGeneral(result)
|
|
128
|
+
if (result.deps === '用户工单登记') {
|
|
129
|
+
this.$router.push(this.ticketPage).catch(() => {
|
|
130
|
+
})
|
|
131
|
+
} else {
|
|
132
|
+
this.$router.push(this.homePage).catch(() => {
|
|
133
|
+
})
|
|
134
|
+
}
|
|
149
135
|
})
|
|
150
|
-
}
|
|
151
|
-
this.error = loginRes.msg
|
|
152
|
-
}
|
|
136
|
+
})
|
|
153
137
|
},
|
|
154
138
|
afterLogin (res) {
|
|
155
139
|
const name = this.form.getFieldValue('name')
|
|
@@ -208,11 +192,13 @@ export default {
|
|
|
208
192
|
setAuthorization({ token: data, expireAt: dateAfter })
|
|
209
193
|
}
|
|
210
194
|
},
|
|
211
|
-
setV4AccessToken (
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
195
|
+
setV4AccessToken (res) {
|
|
196
|
+
localStorage.setItem(ACCESS_TOKEN, res.access_token)
|
|
197
|
+
let timestamp = new Date().getTime()// 当前的时间戳
|
|
198
|
+
timestamp = timestamp + res.expire * 60 * 1000
|
|
199
|
+
// 格式化时间获取年月日, 登陆过期时间
|
|
200
|
+
const dateAfter = new Date(timestamp)
|
|
201
|
+
setAuthorization({ token: res.access_token, expireAt: dateAfter })
|
|
216
202
|
}
|
|
217
203
|
}
|
|
218
204
|
}
|
|
@@ -1,124 +1,124 @@
|
|
|
1
|
-
export default {
|
|
2
|
-
name: 'ReportTable',
|
|
3
|
-
functional: true,
|
|
4
|
-
render (h, content) {
|
|
5
|
-
if (!content.props.tableData) {
|
|
6
|
-
console.log('没有报表数据')
|
|
7
|
-
return
|
|
8
|
-
}
|
|
9
|
-
console.log('content=>', content)
|
|
10
|
-
const html = reportCompute(h, content.props.tableData)
|
|
11
|
-
console.log('html=>', html)
|
|
12
|
-
// 报表整体高度和宽度
|
|
13
|
-
const reportClass = `h-${html.h} w-${html.w}`
|
|
14
|
-
return (
|
|
15
|
-
<div id='ReportTableHome'>
|
|
16
|
-
<div id='reportTable' class={reportClass}>
|
|
17
|
-
{html.el}
|
|
18
|
-
</div>
|
|
19
|
-
</div>
|
|
20
|
-
)
|
|
21
|
-
}
|
|
22
|
-
}
|
|
23
|
-
/**
|
|
24
|
-
* class类生成
|
|
25
|
-
* @param w 宽
|
|
26
|
-
* @param h 高
|
|
27
|
-
* @param l left
|
|
28
|
-
* @param t top
|
|
29
|
-
* @returns {string}
|
|
30
|
-
*/
|
|
31
|
-
function generClass ({ w = 1, h = 1, l, t }) {
|
|
32
|
-
return `w-${w} h-${h} l-${l} t-${t}`
|
|
33
|
-
}
|
|
34
|
-
/**
|
|
35
|
-
* 判断是否是个Number数据
|
|
36
|
-
* @param value
|
|
37
|
-
* @returns {boolean}
|
|
38
|
-
*/
|
|
39
|
-
function typeNumber (value) {
|
|
40
|
-
return Object.prototype.toString.call(value) === '[object Number]'
|
|
41
|
-
}
|
|
42
|
-
/**
|
|
43
|
-
* 判断是否是个object数据
|
|
44
|
-
* @param value
|
|
45
|
-
* @returns {boolean}
|
|
46
|
-
*/
|
|
47
|
-
function typeObject (value) {
|
|
48
|
-
return Object.prototype.toString.call(value) === '[object Object]'
|
|
49
|
-
}
|
|
50
|
-
/**
|
|
51
|
-
* 判断是否是个Array数据
|
|
52
|
-
* @param value
|
|
53
|
-
* @returns {boolean}
|
|
54
|
-
*/
|
|
55
|
-
function typeArray (value) {
|
|
56
|
-
return Object.prototype.toString.call(value) === '[object Array]'
|
|
57
|
-
}
|
|
58
|
-
/**
|
|
59
|
-
* 一行数据转换html函数
|
|
60
|
-
* @param h vue的h
|
|
61
|
-
* @param row 一行json数据
|
|
62
|
-
* @param left 起始left距离
|
|
63
|
-
* @param top 起始top距离
|
|
64
|
-
* @returns {{el: Array, h: number}}
|
|
65
|
-
*/
|
|
66
|
-
function rowCompute (h, row, left, top) {
|
|
67
|
-
if (typeObject(row)) {
|
|
68
|
-
const el = []
|
|
69
|
-
const keys = Object.keys(row).filter((res) => res !== 'span')
|
|
70
|
-
let heigth = 0
|
|
71
|
-
for (const key of keys.values()) {
|
|
72
|
-
const value = row[key]['value'] ? row[key]['value'] : row[key]
|
|
73
|
-
const style = { l: left, t: top + heigth }
|
|
74
|
-
style.w = row[key]['span'] ? row[key]['span'] : 1
|
|
75
|
-
const nextL = left + style.w
|
|
76
|
-
const nextT = top + heigth
|
|
77
|
-
const divObject = rowCompute(h, value, nextL, nextT)
|
|
78
|
-
el.push(divObject.el)
|
|
79
|
-
style.h = divObject.h ? divObject.h : 1
|
|
80
|
-
heigth += style.h
|
|
81
|
-
const attrs = { class: generClass(style) + ' title' }
|
|
82
|
-
const div = <div {...attrs}>{key === 'value' ? value : key}</div>
|
|
83
|
-
el.push(div)
|
|
84
|
-
}
|
|
85
|
-
return { h: heigth, el: el }
|
|
86
|
-
} else if (typeArray(row)) {
|
|
87
|
-
const el = []
|
|
88
|
-
for (const [i, value] of row.entries()) {
|
|
89
|
-
const style = { l: (left + i), t: top, w: 1, h: 1 }
|
|
90
|
-
const extraClass = typeNumber(value) ? 'bold' : 'title'
|
|
91
|
-
const attrs = { class: generClass(style) + ` ${extraClass}` }
|
|
92
|
-
const div = <div {...attrs}>{value}</div>
|
|
93
|
-
el.push(div)
|
|
94
|
-
}
|
|
95
|
-
return { h: 1, el: el }
|
|
96
|
-
}
|
|
97
|
-
}
|
|
98
|
-
/**
|
|
99
|
-
* 完整报表数据转换html函数
|
|
100
|
-
* @param h vue的h
|
|
101
|
-
* @param jsonArr json数组
|
|
102
|
-
* @returns {{el: Array, h: number}}
|
|
103
|
-
*/
|
|
104
|
-
function reportCompute (h, jsonArr) {
|
|
105
|
-
const html = []
|
|
106
|
-
let heigth = 0
|
|
107
|
-
let width = 0
|
|
108
|
-
for (const [index, row] of jsonArr.entries()) {
|
|
109
|
-
const rowHtml = rowCompute(h, row, 0, index)
|
|
110
|
-
// 取第一行的宽度作为整个报表的宽度
|
|
111
|
-
if (index === 0) {
|
|
112
|
-
const reg = /w-\d\s/
|
|
113
|
-
for (const vNode of rowHtml.el) {
|
|
114
|
-
if (!vNode.data || !vNode.data.class) continue
|
|
115
|
-
const c = vNode.data.class
|
|
116
|
-
const w = c.match(reg)[0].split('-')[1]
|
|
117
|
-
width += (w - 0)
|
|
118
|
-
}
|
|
119
|
-
}
|
|
120
|
-
heigth += rowHtml.h
|
|
121
|
-
html.push(rowHtml.el)
|
|
122
|
-
}
|
|
123
|
-
return { el: html, h: heigth, w: width }
|
|
124
|
-
}
|
|
1
|
+
export default {
|
|
2
|
+
name: 'ReportTable',
|
|
3
|
+
functional: true,
|
|
4
|
+
render (h, content) {
|
|
5
|
+
if (!content.props.tableData) {
|
|
6
|
+
console.log('没有报表数据')
|
|
7
|
+
return
|
|
8
|
+
}
|
|
9
|
+
console.log('content=>', content)
|
|
10
|
+
const html = reportCompute(h, content.props.tableData)
|
|
11
|
+
console.log('html=>', html)
|
|
12
|
+
// 报表整体高度和宽度
|
|
13
|
+
const reportClass = `h-${html.h} w-${html.w}`
|
|
14
|
+
return (
|
|
15
|
+
<div id='ReportTableHome'>
|
|
16
|
+
<div id='reportTable' class={reportClass}>
|
|
17
|
+
{html.el}
|
|
18
|
+
</div>
|
|
19
|
+
</div>
|
|
20
|
+
)
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* class类生成
|
|
25
|
+
* @param w 宽
|
|
26
|
+
* @param h 高
|
|
27
|
+
* @param l left
|
|
28
|
+
* @param t top
|
|
29
|
+
* @returns {string}
|
|
30
|
+
*/
|
|
31
|
+
function generClass ({ w = 1, h = 1, l, t }) {
|
|
32
|
+
return `w-${w} h-${h} l-${l} t-${t}`
|
|
33
|
+
}
|
|
34
|
+
/**
|
|
35
|
+
* 判断是否是个Number数据
|
|
36
|
+
* @param value
|
|
37
|
+
* @returns {boolean}
|
|
38
|
+
*/
|
|
39
|
+
function typeNumber (value) {
|
|
40
|
+
return Object.prototype.toString.call(value) === '[object Number]'
|
|
41
|
+
}
|
|
42
|
+
/**
|
|
43
|
+
* 判断是否是个object数据
|
|
44
|
+
* @param value
|
|
45
|
+
* @returns {boolean}
|
|
46
|
+
*/
|
|
47
|
+
function typeObject (value) {
|
|
48
|
+
return Object.prototype.toString.call(value) === '[object Object]'
|
|
49
|
+
}
|
|
50
|
+
/**
|
|
51
|
+
* 判断是否是个Array数据
|
|
52
|
+
* @param value
|
|
53
|
+
* @returns {boolean}
|
|
54
|
+
*/
|
|
55
|
+
function typeArray (value) {
|
|
56
|
+
return Object.prototype.toString.call(value) === '[object Array]'
|
|
57
|
+
}
|
|
58
|
+
/**
|
|
59
|
+
* 一行数据转换html函数
|
|
60
|
+
* @param h vue的h
|
|
61
|
+
* @param row 一行json数据
|
|
62
|
+
* @param left 起始left距离
|
|
63
|
+
* @param top 起始top距离
|
|
64
|
+
* @returns {{el: Array, h: number}}
|
|
65
|
+
*/
|
|
66
|
+
function rowCompute (h, row, left, top) {
|
|
67
|
+
if (typeObject(row)) {
|
|
68
|
+
const el = []
|
|
69
|
+
const keys = Object.keys(row).filter((res) => res !== 'span')
|
|
70
|
+
let heigth = 0
|
|
71
|
+
for (const key of keys.values()) {
|
|
72
|
+
const value = row[key]['value'] ? row[key]['value'] : row[key]
|
|
73
|
+
const style = { l: left, t: top + heigth }
|
|
74
|
+
style.w = row[key]['span'] ? row[key]['span'] : 1
|
|
75
|
+
const nextL = left + style.w
|
|
76
|
+
const nextT = top + heigth
|
|
77
|
+
const divObject = rowCompute(h, value, nextL, nextT)
|
|
78
|
+
el.push(divObject.el)
|
|
79
|
+
style.h = divObject.h ? divObject.h : 1
|
|
80
|
+
heigth += style.h
|
|
81
|
+
const attrs = { class: generClass(style) + ' title' }
|
|
82
|
+
const div = <div {...attrs}>{key === 'value' ? value : key}</div>
|
|
83
|
+
el.push(div)
|
|
84
|
+
}
|
|
85
|
+
return { h: heigth, el: el }
|
|
86
|
+
} else if (typeArray(row)) {
|
|
87
|
+
const el = []
|
|
88
|
+
for (const [i, value] of row.entries()) {
|
|
89
|
+
const style = { l: (left + i), t: top, w: 1, h: 1 }
|
|
90
|
+
const extraClass = typeNumber(value) ? 'bold' : 'title'
|
|
91
|
+
const attrs = { class: generClass(style) + ` ${extraClass}` }
|
|
92
|
+
const div = <div {...attrs}>{value}</div>
|
|
93
|
+
el.push(div)
|
|
94
|
+
}
|
|
95
|
+
return { h: 1, el: el }
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
/**
|
|
99
|
+
* 完整报表数据转换html函数
|
|
100
|
+
* @param h vue的h
|
|
101
|
+
* @param jsonArr json数组
|
|
102
|
+
* @returns {{el: Array, h: number}}
|
|
103
|
+
*/
|
|
104
|
+
function reportCompute (h, jsonArr) {
|
|
105
|
+
const html = []
|
|
106
|
+
let heigth = 0
|
|
107
|
+
let width = 0
|
|
108
|
+
for (const [index, row] of jsonArr.entries()) {
|
|
109
|
+
const rowHtml = rowCompute(h, row, 0, index)
|
|
110
|
+
// 取第一行的宽度作为整个报表的宽度
|
|
111
|
+
if (index === 0) {
|
|
112
|
+
const reg = /w-\d\s/
|
|
113
|
+
for (const vNode of rowHtml.el) {
|
|
114
|
+
if (!vNode.data || !vNode.data.class) continue
|
|
115
|
+
const c = vNode.data.class
|
|
116
|
+
const w = c.match(reg)[0].split('-')[1]
|
|
117
|
+
width += (w - 0)
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
heigth += rowHtml.h
|
|
121
|
+
html.push(rowHtml.el)
|
|
122
|
+
}
|
|
123
|
+
return { el: html, h: heigth, w: width }
|
|
124
|
+
}
|
|
@@ -1,28 +1,28 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<report-table :tableData="tableData"></report-table>
|
|
3
|
-
</template>
|
|
4
|
-
|
|
5
|
-
<script>
|
|
6
|
-
import { post } from '@vue2-client/services/api'
|
|
7
|
-
import ReportTable from '@vue2-client/pages/report/ReportTable'
|
|
8
|
-
export default {
|
|
9
|
-
name: 'ReportTableHome',
|
|
10
|
-
components: { ReportTable },
|
|
11
|
-
data () {
|
|
12
|
-
return {
|
|
13
|
-
tableData: null
|
|
14
|
-
}
|
|
15
|
-
},
|
|
16
|
-
created () {
|
|
17
|
-
},
|
|
18
|
-
mounted () {
|
|
19
|
-
this.getData()
|
|
20
|
-
},
|
|
21
|
-
methods: {
|
|
22
|
-
async getData () {
|
|
23
|
-
this.tableData = await post('/api/af-system/logic/reportTest', {})
|
|
24
|
-
console.log('数据=>', JSON.stringify(this.tableData))
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
</script>
|
|
1
|
+
<template>
|
|
2
|
+
<report-table :tableData="tableData"></report-table>
|
|
3
|
+
</template>
|
|
4
|
+
|
|
5
|
+
<script>
|
|
6
|
+
import { post } from '@vue2-client/services/api'
|
|
7
|
+
import ReportTable from '@vue2-client/pages/report/ReportTable'
|
|
8
|
+
export default {
|
|
9
|
+
name: 'ReportTableHome',
|
|
10
|
+
components: { ReportTable },
|
|
11
|
+
data () {
|
|
12
|
+
return {
|
|
13
|
+
tableData: null
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
created () {
|
|
17
|
+
},
|
|
18
|
+
mounted () {
|
|
19
|
+
this.getData()
|
|
20
|
+
},
|
|
21
|
+
methods: {
|
|
22
|
+
async getData () {
|
|
23
|
+
this.tableData = await post('/api/af-system/logic/reportTest', {})
|
|
24
|
+
console.log('数据=>', JSON.stringify(this.tableData))
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
</script>
|
|
@@ -1,98 +1,98 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div id="orgListManage">
|
|
3
|
-
<a-card :bordered="false">
|
|
4
|
-
<!--<a-row :gutter="48">-->
|
|
5
|
-
<!--<a-col>-->
|
|
6
|
-
<!--<a-space>-->
|
|
7
|
-
<!--<a-button type="primary" @click="addItem" v-if="!buttonState || buttonState.add">-->
|
|
8
|
-
<!--<a-icon :style="iconStyle" type="plus"/>新增-->
|
|
9
|
-
<!--</a-button>-->
|
|
10
|
-
<!--<a-button-->
|
|
11
|
-
<!--v-if="!buttonState || buttonState.edit"-->
|
|
12
|
-
<!--:loading="editDataLoading"-->
|
|
13
|
-
<!--:disabled="!isModify"-->
|
|
14
|
-
<!--class="btn-success"-->
|
|
15
|
-
<!--type="dashed"-->
|
|
16
|
-
<!--@click="editItem">-->
|
|
17
|
-
<!--<a-icon :style="iconStyle" type="edit"/>修改-->
|
|
18
|
-
<!--</a-button>-->
|
|
19
|
-
<!--<a-button :disabled="!isDelete" type="danger" @click="deleteItem" v-if="!buttonState || buttonState.delete">-->
|
|
20
|
-
<!--<a-icon :style="iconStyle" type="delete"/>删除-->
|
|
21
|
-
<!--</a-button>-->
|
|
22
|
-
<!--</a-space>-->
|
|
23
|
-
<!--<span :style="{ float: 'right', overflow: 'hidden', marginBottom: '8px' }">-->
|
|
24
|
-
<!--<a-button-group>-->
|
|
25
|
-
<!--<a-button @click="toggleIsFormShow">-->
|
|
26
|
-
<!--<a-icon :style="iconStyle" type="vertical-align-top"/>-->
|
|
27
|
-
<!--</a-button>-->
|
|
28
|
-
<!--<a-button @click="refresh(true)">-->
|
|
29
|
-
<!--<a-icon :style="iconStyle" type="reload" />-->
|
|
30
|
-
<!--</a-button>-->
|
|
31
|
-
<!--<a-button @click="showDrawer">-->
|
|
32
|
-
<!--<a-icon :style="iconStyle" type="table" />-->
|
|
33
|
-
<!--</a-button>-->
|
|
34
|
-
<!--<a-button @click="exports">-->
|
|
35
|
-
<!--<a-icon :style="iconStyle" type="cloud-download"/>-->
|
|
36
|
-
<!--</a-button>-->
|
|
37
|
-
<!--</a-button-group>-->
|
|
38
|
-
<!--</span>-->
|
|
39
|
-
<!--</a-col>-->
|
|
40
|
-
<!--</a-row>-->
|
|
41
|
-
<a-table
|
|
42
|
-
:columns="columns"
|
|
43
|
-
:data-source="funTree"
|
|
44
|
-
:pagination="false"
|
|
45
|
-
bordered
|
|
46
|
-
rowKey="id"
|
|
47
|
-
size="middle">
|
|
48
|
-
</a-table>
|
|
49
|
-
</a-card>
|
|
50
|
-
</div>
|
|
51
|
-
</template>
|
|
52
|
-
|
|
53
|
-
<script>
|
|
54
|
-
import { getOrganization, searchFun } from '@vue2-client/base-client/plugins/GetLoginInfoService'
|
|
55
|
-
import { getColumnsJson } from '@vue2-client/services/api'
|
|
56
|
-
export default {
|
|
57
|
-
// 组织管理
|
|
58
|
-
name: 'orgListManage',
|
|
59
|
-
data () {
|
|
60
|
-
return {
|
|
61
|
-
columnsJson: [],
|
|
62
|
-
funTree: [],
|
|
63
|
-
columns: [
|
|
64
|
-
{
|
|
65
|
-
title: '组织名称',
|
|
66
|
-
dataIndex: 'name'
|
|
67
|
-
},
|
|
68
|
-
{
|
|
69
|
-
title: '排序',
|
|
70
|
-
dataIndex: 'position'
|
|
71
|
-
},
|
|
72
|
-
{
|
|
73
|
-
title: '组件目录',
|
|
74
|
-
dataIndex: 'f_dir'
|
|
75
|
-
},
|
|
76
|
-
{
|
|
77
|
-
title: '描述',
|
|
78
|
-
dataIndex: 'f_description'
|
|
79
|
-
}
|
|
80
|
-
]
|
|
81
|
-
}
|
|
82
|
-
},
|
|
83
|
-
created () {
|
|
84
|
-
},
|
|
85
|
-
async mounted () {
|
|
86
|
-
getColumnsJson('orgListManage', (res) => {
|
|
87
|
-
this.columnsJson = res
|
|
88
|
-
})
|
|
89
|
-
const fun = await getOrganization()
|
|
90
|
-
this.funTree = searchFun(fun, '组织机构')
|
|
91
|
-
},
|
|
92
|
-
methods: {
|
|
93
|
-
}
|
|
94
|
-
}
|
|
95
|
-
</script>
|
|
96
|
-
|
|
97
|
-
<style lang="less">
|
|
98
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<div id="orgListManage">
|
|
3
|
+
<a-card :bordered="false">
|
|
4
|
+
<!--<a-row :gutter="48">-->
|
|
5
|
+
<!--<a-col>-->
|
|
6
|
+
<!--<a-space>-->
|
|
7
|
+
<!--<a-button type="primary" @click="addItem" v-if="!buttonState || buttonState.add">-->
|
|
8
|
+
<!--<a-icon :style="iconStyle" type="plus"/>新增-->
|
|
9
|
+
<!--</a-button>-->
|
|
10
|
+
<!--<a-button-->
|
|
11
|
+
<!--v-if="!buttonState || buttonState.edit"-->
|
|
12
|
+
<!--:loading="editDataLoading"-->
|
|
13
|
+
<!--:disabled="!isModify"-->
|
|
14
|
+
<!--class="btn-success"-->
|
|
15
|
+
<!--type="dashed"-->
|
|
16
|
+
<!--@click="editItem">-->
|
|
17
|
+
<!--<a-icon :style="iconStyle" type="edit"/>修改-->
|
|
18
|
+
<!--</a-button>-->
|
|
19
|
+
<!--<a-button :disabled="!isDelete" type="danger" @click="deleteItem" v-if="!buttonState || buttonState.delete">-->
|
|
20
|
+
<!--<a-icon :style="iconStyle" type="delete"/>删除-->
|
|
21
|
+
<!--</a-button>-->
|
|
22
|
+
<!--</a-space>-->
|
|
23
|
+
<!--<span :style="{ float: 'right', overflow: 'hidden', marginBottom: '8px' }">-->
|
|
24
|
+
<!--<a-button-group>-->
|
|
25
|
+
<!--<a-button @click="toggleIsFormShow">-->
|
|
26
|
+
<!--<a-icon :style="iconStyle" type="vertical-align-top"/>-->
|
|
27
|
+
<!--</a-button>-->
|
|
28
|
+
<!--<a-button @click="refresh(true)">-->
|
|
29
|
+
<!--<a-icon :style="iconStyle" type="reload" />-->
|
|
30
|
+
<!--</a-button>-->
|
|
31
|
+
<!--<a-button @click="showDrawer">-->
|
|
32
|
+
<!--<a-icon :style="iconStyle" type="table" />-->
|
|
33
|
+
<!--</a-button>-->
|
|
34
|
+
<!--<a-button @click="exports">-->
|
|
35
|
+
<!--<a-icon :style="iconStyle" type="cloud-download"/>-->
|
|
36
|
+
<!--</a-button>-->
|
|
37
|
+
<!--</a-button-group>-->
|
|
38
|
+
<!--</span>-->
|
|
39
|
+
<!--</a-col>-->
|
|
40
|
+
<!--</a-row>-->
|
|
41
|
+
<a-table
|
|
42
|
+
:columns="columns"
|
|
43
|
+
:data-source="funTree"
|
|
44
|
+
:pagination="false"
|
|
45
|
+
bordered
|
|
46
|
+
rowKey="id"
|
|
47
|
+
size="middle">
|
|
48
|
+
</a-table>
|
|
49
|
+
</a-card>
|
|
50
|
+
</div>
|
|
51
|
+
</template>
|
|
52
|
+
|
|
53
|
+
<script>
|
|
54
|
+
import { getOrganization, searchFun } from '@vue2-client/base-client/plugins/GetLoginInfoService'
|
|
55
|
+
import { getColumnsJson } from '@vue2-client/services/api'
|
|
56
|
+
export default {
|
|
57
|
+
// 组织管理
|
|
58
|
+
name: 'orgListManage',
|
|
59
|
+
data () {
|
|
60
|
+
return {
|
|
61
|
+
columnsJson: [],
|
|
62
|
+
funTree: [],
|
|
63
|
+
columns: [
|
|
64
|
+
{
|
|
65
|
+
title: '组织名称',
|
|
66
|
+
dataIndex: 'name'
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
title: '排序',
|
|
70
|
+
dataIndex: 'position'
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
title: '组件目录',
|
|
74
|
+
dataIndex: 'f_dir'
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
title: '描述',
|
|
78
|
+
dataIndex: 'f_description'
|
|
79
|
+
}
|
|
80
|
+
]
|
|
81
|
+
}
|
|
82
|
+
},
|
|
83
|
+
created () {
|
|
84
|
+
},
|
|
85
|
+
async mounted () {
|
|
86
|
+
getColumnsJson('orgListManage', (res) => {
|
|
87
|
+
this.columnsJson = res
|
|
88
|
+
})
|
|
89
|
+
const fun = await getOrganization()
|
|
90
|
+
this.funTree = searchFun(fun, '组织机构')
|
|
91
|
+
},
|
|
92
|
+
methods: {
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
</script>
|
|
96
|
+
|
|
97
|
+
<style lang="less">
|
|
98
|
+
</style>
|