safecheck-client 4.0.1-4 → 4.0.1-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.
Files changed (30) hide show
  1. package/package.json +1 -1
  2. package/src/components/NewDefectList/DefectListNew.vue +663 -663
  3. package/src/components/NewDefectList/DefectPaperNew.vue +1184 -1184
  4. package/src/components/Util/SafecheckUpload.vue +281 -281
  5. package/src/components/android/PhoneUpUserinfo.vue +1249 -1249
  6. package/src/components/android/SafeRightTree.vue +218 -218
  7. package/src/components/android/SafecheckDevices.vue +1340 -1340
  8. package/src/components/paper/PaperList.vue +797 -797
  9. package/src/components/pc/CheckBook.vue +303 -303
  10. package/src/components/pc/CheckBookArea.vue +146 -146
  11. package/src/components/pc/CheckBookCompany.vue +144 -144
  12. package/src/components/pc/CheckBookDetails.vue +161 -161
  13. package/src/components/pc/CheckBookEntry.vue +60 -60
  14. package/src/components/pc/CheckBookSearchArea.vue +560 -560
  15. package/src/components/pc/CheckBookSearchUnit.vue +229 -229
  16. package/src/components/pc/CheckBookSearchUser.vue +659 -659
  17. package/src/components/pc/CheckBookSearchUserList.vue +674 -674
  18. package/src/components/pc/CheckBookUser.vue +333 -333
  19. package/src/components/pc/PaperDefectMain.vue +880 -880
  20. package/src/filiale/jinhong/pc/checkUserList.vue +742 -743
  21. package/src/filiale/meihekou/android/CheckPlanList.vue +198 -198
  22. package/src/filiale/meihekou/android/CheckPlanListArea.vue +190 -190
  23. package/src/filiale/meihekou/android/CurrentCreate.vue +1038 -1038
  24. package/src/filiale/meihekou/android/PaperFeedback.vue +1542 -1542
  25. package/src/filiale/meihekou/android/SafecheckDevices.vue +1340 -1340
  26. package/src/filiale/meihekou/android/SafecheckOrderV.vue +2433 -2433
  27. package/src/filiale/meihekou/android.js +22 -22
  28. package/src/filiale/meihekou/pc/NewCheckpaper.vue +2027 -2027
  29. package/src/filiale/qingjian/pc/NewCheckpaper.vue +1 -0
  30. package/src/main.js +33 -33
@@ -975,6 +975,7 @@ export default {
975
975
  "金额异常差值":{"index":10,"type":"number","readonly": true},
976
976
  "表箱号":{"index":11,"type":"string","readonly": true},
977
977
  "燃气表照片":{"index":12,"type":"picture","checkmust": false},
978
+ "已用气量":{"index":13,"type":"number","checkmust": false},//基表数
978
979
  }
979
980
  }
980
981
  },
package/src/main.js CHANGED
@@ -1,33 +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('meihekou')
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
- })
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('jinhong')
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
+ })