system-clients 3.2.0-3 → 3.2.1-4
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/components/server/ModifyPw.vue +107 -107
- package/src/components/server/ResSelectGroup.vue +198 -198
- package/src/filiale/qianneng/ModifyPw.vue +107 -0
- package/src/filiale/qianneng/sale.js +7 -0
- package/src/plugins/validation.js +4 -0
- package/src/styles/less/aofeng/themeOne/BinaryTemplate.less +686 -686
- package/src/system.js +8 -1
- package/.gradle/4.4/fileChanges/last-build.bin +0 -0
- package/.gradle/4.4/fileHashes/fileHashes.bin +0 -0
- package/.gradle/4.4/fileHashes/fileHashes.lock +0 -0
package/src/system.js
CHANGED
@@ -26,7 +26,7 @@ import ResSelectGroup from './components/server/ResSelectGroup'
|
|
26
26
|
//资源选择测试
|
27
27
|
import TestResSelect from './components/server/TestResSelect'
|
28
28
|
import RoleSelector from "./components/server/RoleSelector";
|
29
|
-
export default function (val) {
|
29
|
+
export default function (val, filiale) {
|
30
30
|
//验证码开关赋值
|
31
31
|
if(val!=null){
|
32
32
|
GetLoginInfoService.Verification=val
|
@@ -90,4 +90,11 @@ export default function (val) {
|
|
90
90
|
|
91
91
|
//省市区、街道、小区、楼栋级联查询
|
92
92
|
Vue.component('pcd-building-select', (resolve) => { require(['./components/server/PcdBuildingSelect'], resolve) })
|
93
|
+
|
94
|
+
if (filiale) {
|
95
|
+
let filialeComp = require(`./filiale/${filiale}/sale`).specialComp
|
96
|
+
for (let key in filialeComp) {
|
97
|
+
Vue.component(key, filialeComp[key])
|
98
|
+
}
|
99
|
+
}
|
93
100
|
}
|
Binary file
|
Binary file
|
Binary file
|