system-clients 3.2.53 → 3.2.54-furuike
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/package.json +1 -1
- package/src/filiale/chengtou/system.js +5 -5
- package/src/filiale/furuike/Main.vue +826 -827
- package/src/filiale/qianneng/system.js +8 -8
- package/src/filiale/tongchuan/Login.vue +561 -561
- package/src/filiale/zhoukou/Main.vue +807 -807
- package/src/filiale/zhoukou/system.js +6 -6
- package/src/system.js +113 -115
- package/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/src/components/common/ProgressBase.vue +0 -83
@@ -1,6 +1,6 @@
|
|
1
|
-
// 分公司特殊组件页面注册
|
2
|
-
|
3
|
-
let specialComp = {
|
4
|
-
'home-page': (resolve) => require(['./Main'], resolve)
|
5
|
-
}
|
6
|
-
exports.specialComp = specialComp
|
1
|
+
// 分公司特殊组件页面注册
|
2
|
+
|
3
|
+
let specialComp = {
|
4
|
+
'home-page': (resolve) => require(['./Main'], resolve)
|
5
|
+
}
|
6
|
+
exports.specialComp = specialComp
|
package/src/system.js
CHANGED
@@ -1,115 +1,113 @@
|
|
1
|
-
import Vue from 'vue'
|
2
|
-
import GetLoginInfoService from './plugins/GetLoginInfoService'
|
3
|
-
import GetAppDataService from './stores/AppData'
|
4
|
-
// 热力
|
5
|
-
import HeatGetLoginInfoService from './plugins/HeatGetLoginInfoService'
|
6
|
-
import HeatGetAppDataService from './stores/HeatAppData'
|
7
|
-
// 热力登陆控制
|
8
|
-
Vue.$heatCompatibility = Vue.prototype.$heatCompatibility = false
|
9
|
-
|
10
|
-
// /** **************************登录与主界面相关******************************/
|
11
|
-
|
12
|
-
import login from './components/server/Login'
|
13
|
-
import changeDeclare from './components/server/ChangeDeclare'
|
14
|
-
import addChangemsg from './components/server/AddChangeMsg'
|
15
|
-
import homePage from './components/Main'
|
16
|
-
import leftTree from './components/server/LeftTree'
|
17
|
-
import iconTree from './components/server/IconTree'
|
18
|
-
import modifyPw from './components/server/ModifyPw'
|
19
|
-
import LoadData from './components/server/LoadData'
|
20
|
-
import RightTree from './components/server/RightTree'
|
21
|
-
import TestRightTree from './components/server/TestRightTree'
|
22
|
-
//资源选择
|
23
|
-
import ResSelect from './components/server/ResSelect'
|
24
|
-
import ResSelectGroup from './components/server/ResSelectGroup'
|
25
|
-
|
26
|
-
//资源选择测试
|
27
|
-
import TestResSelect from './components/server/TestResSelect'
|
28
|
-
import RoleSelector from "./components/server/RoleSelector";
|
29
|
-
|
30
|
-
// BAinformation备案信息展示(空不展示, 传入什么展示什么,可以传标签)
|
31
|
-
export default function (val,filiale, {showLogin = false, show_daiBan = false, BAinformation = null} = {}) {
|
32
|
-
console.log(val,filiale,showLogin)
|
33
|
-
//验证码开关赋值
|
34
|
-
if(val!=null){
|
35
|
-
GetLoginInfoService.Verification=val
|
36
|
-
}
|
37
|
-
//登录提示赋值
|
38
|
-
GetLoginInfoService.depPrompt=showLogin
|
39
|
-
//展示待办赋值
|
40
|
-
GetLoginInfoService.showDaiBan=show_daiBan
|
41
|
-
// 备案信息复制
|
42
|
-
GetLoginInfoService.BAinformation = BAinformation
|
43
|
-
Vue.use(GetLoginInfoService)
|
44
|
-
Vue.use(GetAppDataService)
|
45
|
-
Vue.use(HeatGetLoginInfoService)
|
46
|
-
Vue.use(HeatGetAppDataService)
|
47
|
-
|
48
|
-
Vue.component('login', login)
|
49
|
-
Vue.component('change-declare', changeDeclare)
|
50
|
-
Vue.component('add-changemsg', addChangemsg)
|
51
|
-
Vue.component('home-page', homePage)
|
52
|
-
Vue.component('left-tree', leftTree)
|
53
|
-
Vue.component('icon-tree', iconTree)
|
54
|
-
Vue.component('modify-pw', modifyPw)
|
55
|
-
Vue.component('load-data', LoadData)
|
56
|
-
Vue.component('right-tree', RightTree)
|
57
|
-
Vue.component('test-right-tree', TestRightTree)
|
58
|
-
Vue.component('role-selector', RoleSelector)
|
59
|
-
//资源选择
|
60
|
-
Vue.component('res-select', ResSelect)
|
61
|
-
Vue.component('res-select-group', ResSelectGroup)
|
62
|
-
//资源选择测试
|
63
|
-
Vue.component('test-res-select', TestResSelect)
|
64
|
-
|
65
|
-
// 参数管理(新)
|
66
|
-
Vue.component('param-manage', (resolve) => { require(['./components/parammanage/ParamManage'], resolve) })
|
67
|
-
// 参数管理
|
68
|
-
Vue.component('param-page', (resolve) => { require(['./components/parammanage/ParamPage'], resolve) })
|
69
|
-
// 参数管理
|
70
|
-
Vue.component('single-page', (resolve) => { require(['./components/parammanage/SinglePage'], resolve) })
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
// 参数管理
|
75
|
-
Vue.component('param-
|
76
|
-
// 参数管理
|
77
|
-
Vue.component('
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
//
|
82
|
-
Vue.component('
|
83
|
-
//
|
84
|
-
Vue.component('
|
85
|
-
//
|
86
|
-
Vue.component('
|
87
|
-
// pos
|
88
|
-
Vue.component('pos-manage', (resolve) => { require(['./components/equipment/
|
89
|
-
// pos
|
90
|
-
Vue.component('pos-manage
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
Vue.component('
|
97
|
-
//
|
98
|
-
Vue.component('image-viewer', (resolve) => { require(['./components/server/
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
}
|
115
|
-
}
|
1
|
+
import Vue from 'vue'
|
2
|
+
import GetLoginInfoService from './plugins/GetLoginInfoService'
|
3
|
+
import GetAppDataService from './stores/AppData'
|
4
|
+
// 热力
|
5
|
+
import HeatGetLoginInfoService from './plugins/HeatGetLoginInfoService'
|
6
|
+
import HeatGetAppDataService from './stores/HeatAppData'
|
7
|
+
// 热力登陆控制
|
8
|
+
Vue.$heatCompatibility = Vue.prototype.$heatCompatibility = false
|
9
|
+
|
10
|
+
// /** **************************登录与主界面相关******************************/
|
11
|
+
|
12
|
+
import login from './components/server/Login'
|
13
|
+
import changeDeclare from './components/server/ChangeDeclare'
|
14
|
+
import addChangemsg from './components/server/AddChangeMsg'
|
15
|
+
import homePage from './components/Main'
|
16
|
+
import leftTree from './components/server/LeftTree'
|
17
|
+
import iconTree from './components/server/IconTree'
|
18
|
+
import modifyPw from './components/server/ModifyPw'
|
19
|
+
import LoadData from './components/server/LoadData'
|
20
|
+
import RightTree from './components/server/RightTree'
|
21
|
+
import TestRightTree from './components/server/TestRightTree'
|
22
|
+
//资源选择
|
23
|
+
import ResSelect from './components/server/ResSelect'
|
24
|
+
import ResSelectGroup from './components/server/ResSelectGroup'
|
25
|
+
|
26
|
+
//资源选择测试
|
27
|
+
import TestResSelect from './components/server/TestResSelect'
|
28
|
+
import RoleSelector from "./components/server/RoleSelector";
|
29
|
+
|
30
|
+
// BAinformation备案信息展示(空不展示, 传入什么展示什么,可以传标签)
|
31
|
+
export default function (val,filiale, {showLogin = false, show_daiBan = false, BAinformation = null} = {}) {
|
32
|
+
console.log(val,filiale,showLogin)
|
33
|
+
//验证码开关赋值
|
34
|
+
if(val!=null){
|
35
|
+
GetLoginInfoService.Verification=val
|
36
|
+
}
|
37
|
+
//登录提示赋值
|
38
|
+
GetLoginInfoService.depPrompt=showLogin
|
39
|
+
//展示待办赋值
|
40
|
+
GetLoginInfoService.showDaiBan=show_daiBan
|
41
|
+
// 备案信息复制
|
42
|
+
GetLoginInfoService.BAinformation = BAinformation
|
43
|
+
Vue.use(GetLoginInfoService)
|
44
|
+
Vue.use(GetAppDataService)
|
45
|
+
Vue.use(HeatGetLoginInfoService)
|
46
|
+
Vue.use(HeatGetAppDataService)
|
47
|
+
|
48
|
+
Vue.component('login', login)
|
49
|
+
Vue.component('change-declare', changeDeclare)
|
50
|
+
Vue.component('add-changemsg', addChangemsg)
|
51
|
+
Vue.component('home-page', homePage)
|
52
|
+
Vue.component('left-tree', leftTree)
|
53
|
+
Vue.component('icon-tree', iconTree)
|
54
|
+
Vue.component('modify-pw', modifyPw)
|
55
|
+
Vue.component('load-data', LoadData)
|
56
|
+
Vue.component('right-tree', RightTree)
|
57
|
+
Vue.component('test-right-tree', TestRightTree)
|
58
|
+
Vue.component('role-selector', RoleSelector)
|
59
|
+
//资源选择
|
60
|
+
Vue.component('res-select', ResSelect)
|
61
|
+
Vue.component('res-select-group', ResSelectGroup)
|
62
|
+
//资源选择测试
|
63
|
+
Vue.component('test-res-select', TestResSelect)
|
64
|
+
|
65
|
+
// 参数管理(新)
|
66
|
+
Vue.component('param-manage', (resolve) => { require(['./components/parammanage/ParamManage'], resolve) })
|
67
|
+
// 参数管理
|
68
|
+
Vue.component('param-page', (resolve) => { require(['./components/parammanage/ParamPage'], resolve) })
|
69
|
+
// 参数管理
|
70
|
+
Vue.component('single-page', (resolve) => { require(['./components/parammanage/SinglePage'], resolve) })
|
71
|
+
|
72
|
+
// 参数管理(旧)
|
73
|
+
Vue.component('param-manages', (resolve) => { require(['./components/parammanage/ParamManages'], resolve) })
|
74
|
+
// 参数管理
|
75
|
+
Vue.component('param-pages', (resolve) => { require(['./components/parammanage/ParamPages'], resolve) })
|
76
|
+
// 参数管理
|
77
|
+
Vue.component('single-pages', (resolve) => { require(['./components/parammanage/SinglePages'], resolve) })
|
78
|
+
|
79
|
+
// 终端管理
|
80
|
+
Vue.component('equipment-manage', (resolve) => { require(['./components/equipment/EquipmentManage'], resolve) })
|
81
|
+
// pc端控制
|
82
|
+
Vue.component('pc-manage', (resolve) => { require(['./components/equipment/PcManage'], resolve) })
|
83
|
+
// phone端控制
|
84
|
+
Vue.component('phone-manage', (resolve) => { require(['./components/equipment/PhoneManage'], resolve) })
|
85
|
+
// pos端控制
|
86
|
+
Vue.component('pos-manage', (resolve) => { require(['./components/equipment/PosManage'], resolve) })
|
87
|
+
// pos管理
|
88
|
+
Vue.component('pos-manage-both', (resolve) => { require(['./components/equipment/PosManageBoth'], resolve) })
|
89
|
+
// pos参数管理
|
90
|
+
Vue.component('pos-param-manage', (resolve) => { require(['./components/equipment/PosParamManage'], resolve) })
|
91
|
+
|
92
|
+
// 材料字典
|
93
|
+
Vue.component('material-data', (resolve) => { require(['./components/materialManage/materialData.vue'], resolve) })
|
94
|
+
Vue.component('material-data-list', (resolve) => { require(['./components/materialManage/materialList.vue'], resolve) })
|
95
|
+
// 图片查看器
|
96
|
+
Vue.component('image-viewer', (resolve) => { require(['./components/server/ImageViewer'], resolve) })
|
97
|
+
// 测试图片查看器
|
98
|
+
Vue.component('image-viewer-test', (resolve) => { require(['./components/server/ImageVieweTest'], resolve) })
|
99
|
+
|
100
|
+
//省市区、街道、小区、楼栋级联查询
|
101
|
+
Vue.component('pcd-building-select', (resolve) => { require(['./components/server/PcdBuildingSelect'], resolve) })
|
102
|
+
|
103
|
+
|
104
|
+
// 大屏
|
105
|
+
Vue.component('login-page', (resolve) => { require(['./components/server/LoginPage'], resolve) })
|
106
|
+
Vue.component('login-view', (resolve) => { require(['./components/server/LoginView'], resolve) })
|
107
|
+
if (filiale) {
|
108
|
+
let filialeComp = require(`./filiale/${filiale}/system`).specialComp
|
109
|
+
for (let key in filialeComp) {
|
110
|
+
Vue.component(key, filialeComp[key])
|
111
|
+
}
|
112
|
+
}
|
113
|
+
}
|
Binary file
|
@@ -1,83 +0,0 @@
|
|
1
|
-
<template>
|
2
|
-
<div class="m-progress" style="width:100%">
|
3
|
-
<div class="m-progress-outer">
|
4
|
-
<div class="m-progress-inner">
|
5
|
-
<div :class="['u-progress-bg', {'u-success-bg':getProgress(progress,width) >= 100}]" :style="{width: `${getProgress(progress,width) >= 100 ? 100:getProgress(progress,width)}%`,height: `${strokeWidth}px`}"></div>
|
6
|
-
</div>
|
7
|
-
</div>
|
8
|
-
<div v-if="showInfo">
|
9
|
-
<svg class="u-success" v-if="getProgress(progress,width)>=100" viewBox="64 64 896 896" data-icon="check-circle" aria-hidden="true" focusable="false"><path d="M512 64C264.6 64 64 264.6 64 512s200.6 448 448 448 448-200.6 448-448S759.4 64 512 64zm193.5 301.7l-210.6 292a31.8 31.8 0 0 1-51.7 0L318.5 484.9c-3.8-5.3 0-12.7 6.5-12.7h46.9c10.2 0 19.9 4.9 25.9 13.3l71.2 98.8 157.2-218c6-8.3 15.6-13.3 25.9-13.3H699c6.5 0 10.3 7.4 6.5 12.7z"></path></svg>
|
10
|
-
<p class="u-progress-text" v-else>{{getProgress(progress,width)>=100 ? 100:getProgress(progress,width) }}%</p>
|
11
|
-
</div>
|
12
|
-
</div>
|
13
|
-
</template>
|
14
|
-
<script>
|
15
|
-
export default {
|
16
|
-
name: 'Progress',
|
17
|
-
props: {
|
18
|
-
width: { // 进度条总宽度
|
19
|
-
type: Number,
|
20
|
-
default: 100
|
21
|
-
},
|
22
|
-
progress: { // 当前进度
|
23
|
-
type: Number,
|
24
|
-
default: 0
|
25
|
-
},
|
26
|
-
strokeWidth: { // 进度条线的宽度
|
27
|
-
type: Number,
|
28
|
-
default: 13
|
29
|
-
},
|
30
|
-
showInfo: { // 是否显示进度数值或状态图标
|
31
|
-
type: Boolean,
|
32
|
-
default: true
|
33
|
-
}
|
34
|
-
},
|
35
|
-
|
36
|
-
methods: {
|
37
|
-
// 进度的转换
|
38
|
-
getProgress(val1,val2){
|
39
|
-
if (val1 === 0 || val2 === 0) {
|
40
|
-
return 0
|
41
|
-
}
|
42
|
-
return (Math.round(val1/val2 * 10000) /100)
|
43
|
-
},
|
44
|
-
}
|
45
|
-
}
|
46
|
-
</script>
|
47
|
-
<style lang="less" scoped>
|
48
|
-
.m-progress {
|
49
|
-
height: 13px;
|
50
|
-
margin: 0 auto;
|
51
|
-
display: flex;
|
52
|
-
.m-progress-outer {
|
53
|
-
width: 61%;
|
54
|
-
.m-progress-inner {
|
55
|
-
display: inline-block;
|
56
|
-
width: 100%;
|
57
|
-
background: #f1f0f0;
|
58
|
-
border-radius: 13px;
|
59
|
-
.u-progress-bg {
|
60
|
-
// background: #1890FF;
|
61
|
-
background: linear-gradient(to right, rgb(16, 142, 233), rgb(135, 208, 104));
|
62
|
-
border-radius: 100px;
|
63
|
-
transition: all .3s cubic-bezier(.08,.82,.17,1);
|
64
|
-
}
|
65
|
-
.u-success-bg {
|
66
|
-
border-radius: 100px;
|
67
|
-
background: #52C41A;
|
68
|
-
}
|
69
|
-
}
|
70
|
-
}
|
71
|
-
.u-success {
|
72
|
-
width: 12px;
|
73
|
-
height: 12px;
|
74
|
-
fill: #52C41A;
|
75
|
-
margin-left: 2px;
|
76
|
-
}
|
77
|
-
.u-progress-text {
|
78
|
-
font-size: 12px;
|
79
|
-
margin-left: 2px;
|
80
|
-
color: rgba(0,0,0,.45);
|
81
|
-
}
|
82
|
-
}
|
83
|
-
</style>
|