vue2-client 1.2.46 → 1.2.49
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 +130 -114
- package/docs/notice.md +22 -22
- package/package.json +1 -1
- package/src/App.vue +99 -99
- package/src/base-client/components/common/AmapMarker/AmapPointRendering.vue +1 -1
- package/src/base-client/components/common/FormGroupEdit/FormGroupEdit.vue +149 -149
- package/src/base-client/components/common/XAddForm/XAddForm.vue +339 -339
- package/src/base-client/components/common/XAddNativeForm/XAddNativeForm.vue +316 -316
- package/src/base-client/components/common/XForm/XForm.vue +275 -275
- package/src/base-client/components/iot/CustomerDetailsView/CustomerDetailsView.vue +225 -225
- package/src/base-client/components/iot/DataAnalysisView/DataAnalysisView.vue +244 -244
- package/src/base-client/components/iot/DeviceBrandDetailsView/DeviceBrandDetailsView.vue +452 -452
- package/src/base-client/components/iot/DeviceDetailsView/part/DeviceDetailsCount.vue +330 -330
- package/src/base-client/components/iot/DeviceDetailsView/part/DeviceDetailsException.vue +57 -57
- package/src/base-client/components/iot/DeviceDetailsView/part/DeviceDetailsInstructOperate.vue +121 -121
- package/src/base-client/components/iot/DeviceDetailsView/part/DeviceDetailsRead.vue +131 -131
- package/src/base-client/components/iot/DeviceTypeDetailsView/DeviceTypeDetailsView.vue +276 -276
- package/src/base-client/components/iot/InstructDetailsView/InstructDetailsView.vue +469 -469
- package/src/base-client/components/iot/LogDetailsView/LogDetailsView.vue +379 -379
- package/src/base-client/components/iot/MeterDetailsView/MeterDetailsView.vue +359 -359
- package/src/base-client/components/iot/MeterDetailsView/part/MeterDetailsCount.vue +335 -335
- package/src/base-client/components/iot/MeterDetailsView/part/MeterDetailsException.vue +184 -184
- package/src/base-client/components/iot/MeterDetailsView/part/MeterDetailsHandPlan.vue +291 -291
- package/src/base-client/components/iot/MeterDetailsView/part/MeterDetailsInstruct.vue +236 -236
- package/src/base-client/components/iot/MeterDetailsView/part/MeterDetailsMain.vue +256 -256
- package/src/base-client/components/iot/MeterDetailsView/part/MeterDetailsSellGas.vue +189 -189
- package/src/base-client/components/iot/WebmeterAnalysisView/WebmeterAnalysisView.vue +722 -722
- package/src/base-client/components/system/DictionaryDetailsView/DictionaryDetailsView.vue +231 -231
- package/src/base-client/components/system/QueryParamsDetailsView/QueryParamsDetailsView.vue +247 -247
- package/src/base-client/components/ticket/EmployeeDetailsView/EmployeeDetailsView.vue +370 -370
- package/src/base-client/components/ticket/TicketDetailsView/TicketDetailsView.vue +853 -844
- 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/plugins/AppData.js +17 -27
- package/src/base-client/plugins/GetLoginInfoService.js +252 -252
- package/src/components/exception/ExceptionPage.vue +70 -70
- package/src/components/setting/Setting.vue +235 -235
- package/src/config/index.js +3 -3
- package/src/layouts/SinglePageView.vue +78 -78
- package/src/layouts/header/HeaderNotice.vue +0 -1
- package/src/pages/exception/403.vue +21 -21
- package/src/pages/exception/404.vue +21 -21
- package/src/pages/exception/500.vue +21 -21
- package/src/pages/report/ReportTableHome.vue +28 -28
- package/src/pages/resourceManage/depListManage.vue +23 -23
- package/src/pages/resourceManage/funListManage.vue +23 -23
- package/src/pages/resourceManage/index.js +15 -15
- package/src/pages/resourceManage/orgListManage.vue +98 -98
- package/src/pages/resourceManage/roleListManage.vue +23 -23
- package/src/pages/resourceManage/staffListManage.vue +23 -23
- package/src/pages/system/ticket/submitTicketSuccess.vue +33 -13
- package/src/router/async/config.async.js +26 -26
- package/src/router/index.js +27 -27
- package/src/services/api/common.js +47 -47
- package/src/services/api/index.js +39 -39
- package/src/services/user.js +34 -34
- package/src/theme/default/style.less +47 -47
- package/src/utils/indexedDB.js +146 -146
- package/src/utils/map-utils.js +17 -0
- package/src/utils/routerUtil.js +359 -359
- package/vue.config.js +143 -143
|
@@ -1,78 +1,78 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<page-toggle-transition :disabled="animate.disabled" :animate="animate.name" :direction="animate.direction">
|
|
3
|
-
<template v-if="login">
|
|
4
|
-
<iframe
|
|
5
|
-
ref="singlepage"
|
|
6
|
-
:src="iframeSrc"
|
|
7
|
-
:name="this.fullPath"
|
|
8
|
-
class="single-page-iframe"
|
|
9
|
-
@load="load">
|
|
10
|
-
</iframe>
|
|
11
|
-
</template>
|
|
12
|
-
</page-toggle-transition>
|
|
13
|
-
</template>
|
|
14
|
-
|
|
15
|
-
<script>
|
|
16
|
-
import PageToggleTransition from '@vue2-client/components/transition/PageToggleTransition'
|
|
17
|
-
import { ACCESS_TOKEN } from '@vue2-client/store/mutation-types'
|
|
18
|
-
import { mapState, mapMutations } from 'vuex'
|
|
19
|
-
|
|
20
|
-
export default {
|
|
21
|
-
name: 'SinglePageView',
|
|
22
|
-
components: { PageToggleTransition },
|
|
23
|
-
props: {
|
|
24
|
-
singlePageUrl: {
|
|
25
|
-
type: String,
|
|
26
|
-
default: ''
|
|
27
|
-
},
|
|
28
|
-
fullPath: {
|
|
29
|
-
type: String,
|
|
30
|
-
default: ''
|
|
31
|
-
}
|
|
32
|
-
},
|
|
33
|
-
data () {
|
|
34
|
-
return {
|
|
35
|
-
iframe: null
|
|
36
|
-
}
|
|
37
|
-
},
|
|
38
|
-
computed: {
|
|
39
|
-
...mapState('setting', ['animate', 'iframeSrc']),
|
|
40
|
-
...mapState('account', ['login'])
|
|
41
|
-
},
|
|
42
|
-
mounted () {
|
|
43
|
-
if (!this.login) {
|
|
44
|
-
this.setLogin(JSON.parse(sessionStorage.getItem(process.env.VUE_APP_LOGIN_KEY)))
|
|
45
|
-
}
|
|
46
|
-
this.iframe = this.$refs.singlepage.contentWindow
|
|
47
|
-
this.path = this.$route.path
|
|
48
|
-
},
|
|
49
|
-
methods: {
|
|
50
|
-
...mapMutations('account', ['setLogin']),
|
|
51
|
-
load () {
|
|
52
|
-
const appdata = {
|
|
53
|
-
singleValues: this.$appdata.getSingleValues(),
|
|
54
|
-
params: this.$appdata.getParams()
|
|
55
|
-
}
|
|
56
|
-
const data = {
|
|
57
|
-
token: localStorage.getItem(ACCESS_TOKEN),
|
|
58
|
-
login: this.login,
|
|
59
|
-
appdata: appdata,
|
|
60
|
-
page: this.singlePageUrl
|
|
61
|
-
}
|
|
62
|
-
console.log('发送参数', data)
|
|
63
|
-
if (this.iframe) {
|
|
64
|
-
this.iframe.postMessage(data, '*')
|
|
65
|
-
}
|
|
66
|
-
this.$emit('load', this.fullPath)
|
|
67
|
-
}
|
|
68
|
-
}
|
|
69
|
-
}
|
|
70
|
-
</script>
|
|
71
|
-
|
|
72
|
-
<style lang="less">
|
|
73
|
-
.single-page-iframe {
|
|
74
|
-
width: 100%;
|
|
75
|
-
height: calc(100vh - 117px);
|
|
76
|
-
border: none;
|
|
77
|
-
}
|
|
78
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<page-toggle-transition :disabled="animate.disabled" :animate="animate.name" :direction="animate.direction">
|
|
3
|
+
<template v-if="login">
|
|
4
|
+
<iframe
|
|
5
|
+
ref="singlepage"
|
|
6
|
+
:src="iframeSrc"
|
|
7
|
+
:name="this.fullPath"
|
|
8
|
+
class="single-page-iframe"
|
|
9
|
+
@load="load">
|
|
10
|
+
</iframe>
|
|
11
|
+
</template>
|
|
12
|
+
</page-toggle-transition>
|
|
13
|
+
</template>
|
|
14
|
+
|
|
15
|
+
<script>
|
|
16
|
+
import PageToggleTransition from '@vue2-client/components/transition/PageToggleTransition'
|
|
17
|
+
import { ACCESS_TOKEN } from '@vue2-client/store/mutation-types'
|
|
18
|
+
import { mapState, mapMutations } from 'vuex'
|
|
19
|
+
|
|
20
|
+
export default {
|
|
21
|
+
name: 'SinglePageView',
|
|
22
|
+
components: { PageToggleTransition },
|
|
23
|
+
props: {
|
|
24
|
+
singlePageUrl: {
|
|
25
|
+
type: String,
|
|
26
|
+
default: ''
|
|
27
|
+
},
|
|
28
|
+
fullPath: {
|
|
29
|
+
type: String,
|
|
30
|
+
default: ''
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
data () {
|
|
34
|
+
return {
|
|
35
|
+
iframe: null
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
computed: {
|
|
39
|
+
...mapState('setting', ['animate', 'iframeSrc']),
|
|
40
|
+
...mapState('account', ['login'])
|
|
41
|
+
},
|
|
42
|
+
mounted () {
|
|
43
|
+
if (!this.login) {
|
|
44
|
+
this.setLogin(JSON.parse(sessionStorage.getItem(process.env.VUE_APP_LOGIN_KEY)))
|
|
45
|
+
}
|
|
46
|
+
this.iframe = this.$refs.singlepage.contentWindow
|
|
47
|
+
this.path = this.$route.path
|
|
48
|
+
},
|
|
49
|
+
methods: {
|
|
50
|
+
...mapMutations('account', ['setLogin']),
|
|
51
|
+
load () {
|
|
52
|
+
const appdata = {
|
|
53
|
+
singleValues: this.$appdata.getSingleValues(),
|
|
54
|
+
params: this.$appdata.getParams()
|
|
55
|
+
}
|
|
56
|
+
const data = {
|
|
57
|
+
token: localStorage.getItem(ACCESS_TOKEN),
|
|
58
|
+
login: this.login,
|
|
59
|
+
appdata: appdata,
|
|
60
|
+
page: this.singlePageUrl
|
|
61
|
+
}
|
|
62
|
+
console.log('发送参数', data)
|
|
63
|
+
if (this.iframe) {
|
|
64
|
+
this.iframe.postMessage(data, '*')
|
|
65
|
+
}
|
|
66
|
+
this.$emit('load', this.fullPath)
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
</script>
|
|
71
|
+
|
|
72
|
+
<style lang="less">
|
|
73
|
+
.single-page-iframe {
|
|
74
|
+
width: 100%;
|
|
75
|
+
height: calc(100vh - 117px);
|
|
76
|
+
border: none;
|
|
77
|
+
}
|
|
78
|
+
</style>
|
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<exception-page :home-route="homePage" :style="`min-height: ${minHeight}`" type="403" />
|
|
3
|
-
</template>
|
|
4
|
-
|
|
5
|
-
<script>
|
|
6
|
-
import ExceptionPage from '@vue2-client/components/exception/ExceptionPage'
|
|
7
|
-
import { mapState } from 'vuex'
|
|
8
|
-
export default {
|
|
9
|
-
name: 'Exp403',
|
|
10
|
-
components: { ExceptionPage },
|
|
11
|
-
computed: {
|
|
12
|
-
...mapState('setting', ['pageMinHeight', 'homePage']),
|
|
13
|
-
minHeight () {
|
|
14
|
-
return this.pageMinHeight ? this.pageMinHeight + 'px' : '100vh'
|
|
15
|
-
}
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
</script>
|
|
19
|
-
|
|
20
|
-
<style scoped lang="less">
|
|
21
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<exception-page :home-route="homePage" :style="`min-height: ${minHeight}`" type="403" />
|
|
3
|
+
</template>
|
|
4
|
+
|
|
5
|
+
<script>
|
|
6
|
+
import ExceptionPage from '@vue2-client/components/exception/ExceptionPage'
|
|
7
|
+
import { mapState } from 'vuex'
|
|
8
|
+
export default {
|
|
9
|
+
name: 'Exp403',
|
|
10
|
+
components: { ExceptionPage },
|
|
11
|
+
computed: {
|
|
12
|
+
...mapState('setting', ['pageMinHeight', 'homePage']),
|
|
13
|
+
minHeight () {
|
|
14
|
+
return this.pageMinHeight ? this.pageMinHeight + 'px' : '100vh'
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
</script>
|
|
19
|
+
|
|
20
|
+
<style scoped lang="less">
|
|
21
|
+
</style>
|
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<exception-page :home-route="homePage" :style="`min-height: ${minHeight}`" type="404" />
|
|
3
|
-
</template>
|
|
4
|
-
|
|
5
|
-
<script>
|
|
6
|
-
import ExceptionPage from '@vue2-client/components/exception/ExceptionPage'
|
|
7
|
-
import { mapState } from 'vuex'
|
|
8
|
-
export default {
|
|
9
|
-
name: 'Exp404',
|
|
10
|
-
components: { ExceptionPage },
|
|
11
|
-
computed: {
|
|
12
|
-
...mapState('setting', ['pageMinHeight', 'homePage']),
|
|
13
|
-
minHeight () {
|
|
14
|
-
return this.pageMinHeight ? this.pageMinHeight + 'px' : '100vh'
|
|
15
|
-
}
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
</script>
|
|
19
|
-
|
|
20
|
-
<style scoped lang="less">
|
|
21
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<exception-page :home-route="homePage" :style="`min-height: ${minHeight}`" type="404" />
|
|
3
|
+
</template>
|
|
4
|
+
|
|
5
|
+
<script>
|
|
6
|
+
import ExceptionPage from '@vue2-client/components/exception/ExceptionPage'
|
|
7
|
+
import { mapState } from 'vuex'
|
|
8
|
+
export default {
|
|
9
|
+
name: 'Exp404',
|
|
10
|
+
components: { ExceptionPage },
|
|
11
|
+
computed: {
|
|
12
|
+
...mapState('setting', ['pageMinHeight', 'homePage']),
|
|
13
|
+
minHeight () {
|
|
14
|
+
return this.pageMinHeight ? this.pageMinHeight + 'px' : '100vh'
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
</script>
|
|
19
|
+
|
|
20
|
+
<style scoped lang="less">
|
|
21
|
+
</style>
|
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<exception-page :home-route="homePage" :style="`min-height: ${minHeight}`" type="500" />
|
|
3
|
-
</template>
|
|
4
|
-
|
|
5
|
-
<script>
|
|
6
|
-
import ExceptionPage from '@vue2-client/components/exception/ExceptionPage'
|
|
7
|
-
import { mapState } from 'vuex'
|
|
8
|
-
export default {
|
|
9
|
-
name: 'Exp500',
|
|
10
|
-
components: { ExceptionPage },
|
|
11
|
-
computed: {
|
|
12
|
-
...mapState('setting', ['pageMinHeight', 'homePage']),
|
|
13
|
-
minHeight () {
|
|
14
|
-
return this.pageMinHeight ? this.pageMinHeight + 'px' : '100vh'
|
|
15
|
-
}
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
</script>
|
|
19
|
-
|
|
20
|
-
<style scoped lang="less">
|
|
21
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<exception-page :home-route="homePage" :style="`min-height: ${minHeight}`" type="500" />
|
|
3
|
+
</template>
|
|
4
|
+
|
|
5
|
+
<script>
|
|
6
|
+
import ExceptionPage from '@vue2-client/components/exception/ExceptionPage'
|
|
7
|
+
import { mapState } from 'vuex'
|
|
8
|
+
export default {
|
|
9
|
+
name: 'Exp500',
|
|
10
|
+
components: { ExceptionPage },
|
|
11
|
+
computed: {
|
|
12
|
+
...mapState('setting', ['pageMinHeight', 'homePage']),
|
|
13
|
+
minHeight () {
|
|
14
|
+
return this.pageMinHeight ? this.pageMinHeight + 'px' : '100vh'
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
</script>
|
|
19
|
+
|
|
20
|
+
<style scoped lang="less">
|
|
21
|
+
</style>
|
|
@@ -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('webmeterapi/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('webmeterapi/reportTest', {})
|
|
24
|
+
console.log('数据=>', JSON.stringify(this.tableData))
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
</script>
|
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div id="depListManage">
|
|
3
|
-
|
|
4
|
-
</div>
|
|
5
|
-
</template>
|
|
6
|
-
|
|
7
|
-
<script>
|
|
8
|
-
export default {
|
|
9
|
-
name: 'depListManage',
|
|
10
|
-
data () {
|
|
11
|
-
return {}
|
|
12
|
-
},
|
|
13
|
-
created () {
|
|
14
|
-
},
|
|
15
|
-
mounted () {
|
|
16
|
-
},
|
|
17
|
-
methods: {}
|
|
18
|
-
}
|
|
19
|
-
</script>
|
|
20
|
-
|
|
21
|
-
<style lang="less">
|
|
22
|
-
|
|
23
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<div id="depListManage">
|
|
3
|
+
|
|
4
|
+
</div>
|
|
5
|
+
</template>
|
|
6
|
+
|
|
7
|
+
<script>
|
|
8
|
+
export default {
|
|
9
|
+
name: 'depListManage',
|
|
10
|
+
data () {
|
|
11
|
+
return {}
|
|
12
|
+
},
|
|
13
|
+
created () {
|
|
14
|
+
},
|
|
15
|
+
mounted () {
|
|
16
|
+
},
|
|
17
|
+
methods: {}
|
|
18
|
+
}
|
|
19
|
+
</script>
|
|
20
|
+
|
|
21
|
+
<style lang="less">
|
|
22
|
+
|
|
23
|
+
</style>
|
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div id="funListManage">
|
|
3
|
-
|
|
4
|
-
</div>
|
|
5
|
-
</template>
|
|
6
|
-
|
|
7
|
-
<script>
|
|
8
|
-
export default {
|
|
9
|
-
name: 'funListManage',
|
|
10
|
-
data () {
|
|
11
|
-
return {}
|
|
12
|
-
},
|
|
13
|
-
created () {
|
|
14
|
-
},
|
|
15
|
-
mounted () {
|
|
16
|
-
},
|
|
17
|
-
methods: {}
|
|
18
|
-
}
|
|
19
|
-
</script>
|
|
20
|
-
|
|
21
|
-
<style lang="less">
|
|
22
|
-
|
|
23
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<div id="funListManage">
|
|
3
|
+
|
|
4
|
+
</div>
|
|
5
|
+
</template>
|
|
6
|
+
|
|
7
|
+
<script>
|
|
8
|
+
export default {
|
|
9
|
+
name: 'funListManage',
|
|
10
|
+
data () {
|
|
11
|
+
return {}
|
|
12
|
+
},
|
|
13
|
+
created () {
|
|
14
|
+
},
|
|
15
|
+
mounted () {
|
|
16
|
+
},
|
|
17
|
+
methods: {}
|
|
18
|
+
}
|
|
19
|
+
</script>
|
|
20
|
+
|
|
21
|
+
<style lang="less">
|
|
22
|
+
|
|
23
|
+
</style>
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import depListManage from '@vue2-client/pages/resourceManage/depListManage'
|
|
2
|
-
import funListManage from '@vue2-client/pages/resourceManage/funListManage'
|
|
3
|
-
import orgListManage from '@vue2-client/pages/resourceManage/orgListManage'
|
|
4
|
-
import resourceManageMain from '@vue2-client/pages/resourceManage/resourceManageMain'
|
|
5
|
-
import roleListManage from '@vue2-client/pages/resourceManage/roleListManage'
|
|
6
|
-
import staffListManage from '@vue2-client/pages/resourceManage/staffListManage'
|
|
7
|
-
|
|
8
|
-
export default resourceManageMain
|
|
9
|
-
export {
|
|
10
|
-
depListManage,
|
|
11
|
-
funListManage,
|
|
12
|
-
orgListManage,
|
|
13
|
-
roleListManage,
|
|
14
|
-
staffListManage
|
|
15
|
-
}
|
|
1
|
+
import depListManage from '@vue2-client/pages/resourceManage/depListManage'
|
|
2
|
+
import funListManage from '@vue2-client/pages/resourceManage/funListManage'
|
|
3
|
+
import orgListManage from '@vue2-client/pages/resourceManage/orgListManage'
|
|
4
|
+
import resourceManageMain from '@vue2-client/pages/resourceManage/resourceManageMain'
|
|
5
|
+
import roleListManage from '@vue2-client/pages/resourceManage/roleListManage'
|
|
6
|
+
import staffListManage from '@vue2-client/pages/resourceManage/staffListManage'
|
|
7
|
+
|
|
8
|
+
export default resourceManageMain
|
|
9
|
+
export {
|
|
10
|
+
depListManage,
|
|
11
|
+
funListManage,
|
|
12
|
+
orgListManage,
|
|
13
|
+
roleListManage,
|
|
14
|
+
staffListManage
|
|
15
|
+
}
|