vue2-client 1.2.3 → 1.2.6
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/docs/notice.md +22 -22
- package/package.json +1 -1
- package/src/base-client/components/iot/DataAnalysisView/DataAnalysisView.vue +244 -244
- package/src/base-client/plugins/AppData.js +1 -2
- package/src/router/async/router.map.js +57 -59
- package/src/services/api/manage.js +3 -1
- package/src/utils/routerUtil.js +366 -366
- package/src/pages/system/applyInstallView/Core.vue +0 -570
- package/src/pages/system/applyInstallView/LFComponents/AddPanel.vue +0 -52
- package/src/pages/system/applyInstallView/LFComponents/Control.vue +0 -78
- package/src/pages/system/applyInstallView/LFComponents/DataDialog.vue +0 -24
- package/src/pages/system/applyInstallView/LFComponents/NodePanel.vue +0 -103
- package/src/pages/system/applyInstallView/PropertySetting/Base.vue +0 -124
- package/src/pages/system/applyInstallView/PropertySetting/CommonProperty.vue +0 -104
- package/src/pages/system/applyInstallView/PropertySetting/PropertyDialog.vue +0 -43
- package/src/pages/system/applyInstallView/background/base.png +0 -0
- package/src/pages/system/applyInstallView/background/click.png +0 -0
- package/src/pages/system/applyInstallView/background/download.png +0 -0
- package/src/pages/system/applyInstallView/background/end.png +0 -0
- package/src/pages/system/applyInstallView/background/push.png +0 -0
- package/src/pages/system/applyInstallView/background/start.png +0 -0
- package/src/pages/system/applyInstallView/background/step.png +0 -0
- package/src/pages/system/applyInstallView/background/time.png +0 -0
- package/src/pages/system/applyInstallView/config.js +0 -22
- package/src/pages/system/applyInstallView/data.json +0 -1284
- package/src/pages/system/applyInstallView/index.vue +0 -34
- package/src/pages/system/applyInstallView/registerNode/Connect.vue +0 -43
- package/src/pages/system/applyInstallView/registerNode/index.js +0 -16
- package/src/pages/system/applyInstallView/registerNode/registerBackEdge.js +0 -44
- package/src/pages/system/applyInstallView/registerNode/registerBase.js +0 -139
- package/src/pages/system/applyInstallView/registerNode/registerConnect.js +0 -60
- package/src/pages/system/applyInstallView/registerNode/registerDownload.js +0 -92
- package/src/pages/system/applyInstallView/registerNode/registerEnd.js +0 -110
- package/src/pages/system/applyInstallView/registerNode/registerPolyline.js +0 -14
- package/src/pages/system/applyInstallView/registerNode/registerPush.js +0 -127
- package/src/pages/system/applyInstallView/registerNode/registerStart.js +0 -105
- package/src/pages/system/applyInstallView/registerNode/registerStep.js +0 -209
- package/src/pages/system/applyInstallView/registerNode/registerTask.js +0 -29
|
@@ -1,59 +1,57 @@
|
|
|
1
|
-
// 视图组件
|
|
2
|
-
const view = {
|
|
3
|
-
tabs: () => import('@vue2-client/layouts/tabs'),
|
|
4
|
-
blank: () => import('@vue2-client/layouts/BlankView'),
|
|
5
|
-
page: () => import('@vue2-client/layouts/PageView'),
|
|
6
|
-
singlePage: () => import('@vue2-client/layouts/SinglePageView')
|
|
7
|
-
}
|
|
8
|
-
// 动态路由对象定义
|
|
9
|
-
const routerResource = {}
|
|
10
|
-
// --------------------------------------基本视图组件--------------------------------------
|
|
11
|
-
// 空白视图
|
|
12
|
-
routerResource.blank = view.blank
|
|
13
|
-
// 单页面视图
|
|
14
|
-
routerResource.singlePage = view.singlePage
|
|
15
|
-
// --------------------------------------系统配置--------------------------------------
|
|
16
|
-
routerResource.system = view.blank
|
|
17
|
-
// 字典管理
|
|
18
|
-
routerResource.dictionaryManage = () => import(/* webpackChunkName: "dictionary" */ '@vue2-client/pages/system/dictionary')
|
|
19
|
-
// 查询配置管理
|
|
20
|
-
routerResource.queryParamsManage = () => import(/* webpackChunkName: "queryParams" */ '@vue2-client/pages/system/queryParams')
|
|
21
|
-
//
|
|
22
|
-
routerResource.
|
|
23
|
-
//
|
|
24
|
-
routerResource.
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
Object.assign(routerMap, routerResource)
|
|
59
|
-
export default routerMap
|
|
1
|
+
// 视图组件
|
|
2
|
+
const view = {
|
|
3
|
+
tabs: () => import('@vue2-client/layouts/tabs'),
|
|
4
|
+
blank: () => import('@vue2-client/layouts/BlankView'),
|
|
5
|
+
page: () => import('@vue2-client/layouts/PageView'),
|
|
6
|
+
singlePage: () => import('@vue2-client/layouts/SinglePageView')
|
|
7
|
+
}
|
|
8
|
+
// 动态路由对象定义
|
|
9
|
+
const routerResource = {}
|
|
10
|
+
// --------------------------------------基本视图组件--------------------------------------
|
|
11
|
+
// 空白视图
|
|
12
|
+
routerResource.blank = view.blank
|
|
13
|
+
// 单页面视图
|
|
14
|
+
routerResource.singlePage = view.singlePage
|
|
15
|
+
// --------------------------------------系统配置--------------------------------------
|
|
16
|
+
routerResource.system = view.blank
|
|
17
|
+
// 字典管理
|
|
18
|
+
routerResource.dictionaryManage = () => import(/* webpackChunkName: "dictionary" */ '@vue2-client/pages/system/dictionary')
|
|
19
|
+
// 查询配置管理
|
|
20
|
+
routerResource.queryParamsManage = () => import(/* webpackChunkName: "queryParams" */ '@vue2-client/pages/system/queryParams')
|
|
21
|
+
// --------------------------------------报表组件--------------------------------------
|
|
22
|
+
routerResource.reportTable = () => import(/* webpackChunkName: "ReportTableHome" */ '@vue2-client/pages/report/ReportTableHome')
|
|
23
|
+
// --------------------------------------资源管理--------------------------------------
|
|
24
|
+
routerResource.resourceManageMain = () => import(/* webpackChunkName: "resourceManageMain" */ '@vue2-client/pages/resourceManage/resourceManageMain')
|
|
25
|
+
|
|
26
|
+
// 基础路由组件注册
|
|
27
|
+
const routerMap = {
|
|
28
|
+
login: {
|
|
29
|
+
authority: '*',
|
|
30
|
+
path: '/login',
|
|
31
|
+
component: () => import('@vue2-client/pages/login')
|
|
32
|
+
},
|
|
33
|
+
root: {
|
|
34
|
+
path: '/',
|
|
35
|
+
name: '首页',
|
|
36
|
+
redirect: '/login',
|
|
37
|
+
component: view.tabs
|
|
38
|
+
},
|
|
39
|
+
exp403: {
|
|
40
|
+
authority: '*',
|
|
41
|
+
name: 'exp403',
|
|
42
|
+
path: '403',
|
|
43
|
+
component: () => import('@vue2-client/pages/exception/403')
|
|
44
|
+
},
|
|
45
|
+
exp404: {
|
|
46
|
+
name: 'exp404',
|
|
47
|
+
path: '404',
|
|
48
|
+
component: () => import('@vue2-client/pages/exception/404')
|
|
49
|
+
},
|
|
50
|
+
exp500: {
|
|
51
|
+
name: 'exp500',
|
|
52
|
+
path: '500',
|
|
53
|
+
component: () => import('@vue2-client/pages/exception/500')
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
Object.assign(routerMap, routerResource)
|
|
57
|
+
export default routerMap
|
|
@@ -6,7 +6,9 @@ const manageApi = {
|
|
|
6
6
|
// 查询:检查链接有效性
|
|
7
7
|
checkUrlWork: '/webmeterapi/foreignaidCheckUrl',
|
|
8
8
|
// 操作:客户数据
|
|
9
|
-
doCustomerInfo: '/webmeterapi/foreignaidDoCustomerInfo'
|
|
9
|
+
doCustomerInfo: '/webmeterapi/foreignaidDoCustomerInfo',
|
|
10
|
+
// 查询:获取字典键列表
|
|
11
|
+
getDictionaryValue: '/webmeterapi/getDictionaryValue'
|
|
10
12
|
}
|
|
11
13
|
|
|
12
14
|
export { manageApi }
|