safecheck-client 3.0.34-90 → 3.0.34-91

Sign up to get free protection for your applications and to get access to all the features.
Files changed (27) hide show
  1. package/package.json +1 -1
  2. package/src/components/android/AddPlanItemYy.vue +451 -451
  3. package/src/components/android/examples/SafeListExamples.vue +283 -279
  4. package/src/components/android/examples/UserExamples.vue +137 -137
  5. package/src/filiale/jingyang/android/AddPlanItem.vue +458 -458
  6. package/src/filiale/jingyang/android/CurrentCreate.vue +1080 -1080
  7. package/src/filiale/jingyang/android/SafecheckOrderV.vue +2734 -2734
  8. package/src/filiale/jingyang/android.js +15 -15
  9. package/src/filiale/qingtongxia/android/AddPlanItem.vue +450 -450
  10. package/src/filiale/qingtongxia/android/CurrentCreate.vue +1053 -1053
  11. package/src/filiale/qingtongxia/android/PhoneUpUserinfo.vue +1230 -1230
  12. package/src/filiale/qingtongxia/android/SafecheckUserInfo.vue +782 -782
  13. package/src/filiale/qingtongxia/android.js +14 -14
  14. package/src/filiale/ruihua/android/SafecheckOrderV.vue +2747 -2747
  15. package/src/filiale/ruihua/android.js +11 -11
  16. package/src/filiale/siyang/android/AddPlanItem.vue +450 -450
  17. package/src/filiale/siyang/android/AppCheckPlan.vue +246 -246
  18. package/src/filiale/siyang/android.js +15 -15
  19. package/src/filiale/siyang/pc/CheckBookList.vue +396 -396
  20. package/src/filiale/siyang/pc.js +22 -22
  21. package/src/filiale/wuan/android/SafecheckOrderV.vue +2241 -2241
  22. package/src/filiale/wuan/android/SafecheckUserInfo.vue +596 -596
  23. package/src/filiale/xilan/android/AddPlanItem.vue +457 -0
  24. package/src/filiale/xilan/android/CurrentCreate.vue +1060 -0
  25. package/src/filiale/xilan/android.js +11 -0
  26. package/src/main.js +33 -34
  27. package/src/safecheck-android.js +307 -307
@@ -0,0 +1,11 @@
1
+ // 分公司特殊组件页面注册
2
+ import Vue from "vue";
3
+
4
+ // 手机特殊目录注册到该文件中
5
+ let specialComp = {
6
+ 'add-plan-item': (resolve) => { require(['./android/AddPlanItem'], resolve) },
7
+ 'current-create': (resolve) => { require(['./android/CurrentCreate'], resolve) },
8
+ }
9
+
10
+ exports.specialComp = specialComp
11
+
package/src/main.js CHANGED
@@ -1,34 +1,33 @@
1
- import Vue from 'vue'
2
- import App from './App'
3
- import { all } from 'vue-client'
4
- import { system } from 'system-clients'
5
- import safecheck from './safecheck'
6
- import echarts from 'echarts'
7
- // import safecheck from './rongcheng'
8
-
9
- all()
10
- // 验证码开关赋值
11
- var Verificationfalg = false
12
- system(Verificationfalg)
13
- // system()
14
- safecheck('siyang')
15
- // safecheck('jingyang');
16
- // safecheck('rizhao')
17
- require('./bootstrap/less/bootstrap.less')
18
- require('./expandcss.less')
19
-
20
- Vue.prototype.$echarts = echarts
21
- Vue.android = false
22
-
23
- Vue.url = '/SafeCheck/rs/'
24
- if(Vue.android)
25
- Vue.url = Vue.staticUrl
26
- Vue.interval = 1*60*1000
27
- Vue.nopic = 'file:///android_asset/nopic.png'
28
- Vue.mapSetup = false
29
-
30
- /* eslint-disable no-new */
31
- new Vue({
32
- el: 'body',
33
- components: { App }
34
- })
1
+ import Vue from 'vue'
2
+ import App from './App'
3
+ import { all } from 'vue-client'
4
+ import { system } from 'system-clients'
5
+ import safecheck from './safecheck'
6
+ import echarts from 'echarts'
7
+ // import safecheck from './rongcheng'
8
+
9
+ all()
10
+ // 验证码开关赋值
11
+ var Verificationfalg = false
12
+ system(Verificationfalg)
13
+ // system()
14
+ safecheck('siyang')
15
+ // safecheck('rizhao')
16
+ require('./bootstrap/less/bootstrap.less')
17
+ require('./expandcss.less')
18
+
19
+ Vue.prototype.$echarts = echarts
20
+ Vue.android = false
21
+
22
+ Vue.url = '/SafeCheck/rs/'
23
+ if(Vue.android)
24
+ Vue.url = Vue.staticUrl
25
+ Vue.interval = 1*60*1000
26
+ Vue.nopic = 'file:///android_asset/nopic.png'
27
+ Vue.mapSetup = false
28
+
29
+ /* eslint-disable no-new */
30
+ new Vue({
31
+ el: 'body',
32
+ components: { App }
33
+ })