safecheck-client 3.0.33-5 → 3.0.33-50

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 (55) hide show
  1. package/package.json +3 -3
  2. package/src/App.vue +31 -31
  3. package/src/components/paper/PaperList.vue +5 -4
  4. package/src/components/planmanage/checkUserList.vue +34 -2
  5. package/src/components/report/CheckPlanCountChartArea.vue +5 -0
  6. package/src/filiale/Util.js +5 -0
  7. package/src/filiale/bayan/android/AddPlanItem.vue +12 -3
  8. package/src/filiale/bayan/android/SafecheckOrderV.vue +4 -1
  9. package/src/filiale/bayan/android/SafecheckUserInfo.vue +532 -508
  10. package/src/filiale/dexin/android/SafecheckDevices.vue +1 -1
  11. package/src/filiale/dexin/android/WebMeterOpen.vue +1 -1
  12. package/src/filiale/dexin/android/WebMeterOpenEdit.vue +25 -37
  13. package/src/filiale/fugou/pc/AddToCheckBook.vue +56 -119
  14. package/src/filiale/fugou/pc/CheckBook.vue +2 -0
  15. package/src/filiale/fugou/pc/CheckBookEntry.vue +47 -19
  16. package/src/filiale/fugou/pc/CheckBookList.vue +2 -2
  17. package/src/filiale/fugou/pc/CheckBookSearchUser.vue +733 -574
  18. package/src/filiale/fugou/pc/CheckBookUser.vue +102 -45
  19. package/src/filiale/fugou/pc/PlanManage.vue +62 -8
  20. package/src/filiale/fugou/pc/checkUserList.vue +222 -42
  21. package/src/filiale/hanzhong/pc/CheckHiddenDanger.vue +15 -5
  22. package/src/filiale/hanzhong/pc/CheckSafeDetail.vue +12 -2
  23. package/src/filiale/hanzhong/pc/CheckSafeStatus.vue +12 -3
  24. package/src/filiale/hanzhong/pc/CheckSearchUser.vue +13 -0
  25. package/src/filiale/hanzhong/pc/CheckUserList.vue +30 -11
  26. package/src/filiale/hanzhong/pc/CheckerSafeDetail.vue +11 -2
  27. package/src/filiale/jingyang/pc/ReportCheckItemList.vue +543 -0
  28. package/src/filiale/jingyang/pc.js +1 -0
  29. package/src/filiale/rongchuang/android/SafecheckDevices.vue +468 -748
  30. package/src/filiale/rongchuang/android/SafecheckOrderV.vue +984 -1234
  31. package/src/filiale/rongchuang/android.js +1 -0
  32. package/src/filiale/rongchuang/pc/NewCheckpaper.vue +294 -305
  33. package/src/filiale/rongchuang/pc/PaperList.vue +812 -0
  34. package/src/filiale/rongchuang/pc.js +1 -0
  35. package/src/filiale/tongchuan/pc/checkUserList.vue +2 -2
  36. package/src/filiale/weinan/android/SafecheckDevices.vue +1082 -1025
  37. package/src/filiale/weinan/android/SafecheckOrderV.vue +71 -26
  38. package/src/filiale/weinan/pc/CheckSearchUser.vue +1078 -0
  39. package/src/filiale/weinan/pc/DefectPaperNew.vue +1065 -1059
  40. package/src/filiale/weinan/pc.js +45 -44
  41. package/src/filiale/wensu/pc/CheckSearchUser.vue +2 -0
  42. package/src/filiale/wensu/pc/DefectPaperNew.vue +1148 -1148
  43. package/src/filiale/wensu/pc/checkUserList.vue +650 -650
  44. package/src/filiale/wenxi/android/SafecheckUserInfo.vue +1 -1
  45. package/src/filiale/wuhai/pc/PaperList.vue +785 -0
  46. package/src/filiale/wuhai/pc.js +1 -0
  47. package/src/filiale/yangchunboneng/android/SafecheckOrderV.vue +2 -2
  48. package/src/filiale/yongzhou/pc/CheckPlan.vue +59 -0
  49. package/src/filiale/yongzhou/pc/DefectPaperNew.vue +1105 -0
  50. package/src/filiale/yongzhou/pc/SelectCheckPlan.vue +364 -0
  51. package/src/filiale/yongzhou/pc/communityTypeDetailM.vue +94 -187
  52. package/src/filiale/yongzhou/pc/safeDetail.vue +212 -14
  53. package/src/filiale/yongzhou/pc.js +3 -0
  54. package/src/filiale/yunchengminsheng/pc/checkUserList.vue +18 -1
  55. package/src/main.js +1 -1
@@ -737,7 +737,7 @@ export default {
737
737
  },
738
738
  getGasAberrantNumber(val) {
739
739
  //tag
740
- if(!this.f_table_base.index || !this.f_gas_balance.index){
740
+ if(!this.f_table_base.index || !this.f_gas_balance.index || !this.f_gas_aberrant_number.index){
741
741
  //tag
742
742
  return
743
743
  }
@@ -214,7 +214,7 @@ export default {
214
214
  this.criteriaShow = !this.criteriaShow
215
215
  },
216
216
  async selfSearch (args) {
217
- args.condition = `${args.condition} and f_filialeids = '${Vue.user.f_orgids}'`
217
+ args.condition = `${args.condition} and f_orgid = '${Vue.user.orgid}'`
218
218
  await this.model.search(args.condition, args.model)
219
219
  },
220
220
  search () {
@@ -85,7 +85,7 @@ import Vue from 'vue'
85
85
 
86
86
  export default {
87
87
  title: '物联网表单户开通',
88
- data () {
88
+ data() {
89
89
  return {
90
90
  showpictrue: false,
91
91
  showd: false,
@@ -106,27 +106,22 @@ export default {
106
106
  }
107
107
  },
108
108
  props: {},
109
- async ready () {
109
+ async ready() {
110
110
  await this.readyInit()
111
111
  },
112
112
  methods: {
113
- readyInit () {
113
+ readyInit() {
114
114
  this.tabname = this.data.tabname
115
115
  console.log('-----------------------------------this.tabname', this.tabname)
116
116
  this.model = Object.assign({}, this.model, this.data)
117
- this.model.f_gas_person=Vue.user.name
117
+ this.model.f_gas_person = Vue.user.name
118
118
  },
119
- cameraCallBack (prop, fileName) {
119
+ cameraCallBack(prop, fileName) {
120
120
  HostApp.__this__.model.f_notified_path = fileName + '?' + Math.random()
121
121
  HostApp.__callback__ = null
122
122
  HostApp.__this__ = null
123
123
  },
124
- // 返回回调函数
125
- goback (val) {
126
- this.$dispatch('backarrdel')
127
- this.$back()
128
- },
129
- async commit () {
124
+ async commit() {
130
125
  if (!this.model.f_gas_person) {
131
126
  this.$showMessage(`请填写通气人`, ['confirm', 'cancel'])
132
127
  return
@@ -134,46 +129,39 @@ export default {
134
129
  let param = {
135
130
  f_user_id: this.model.f_user_id,
136
131
  f_userinfo_id: this.model.f_userinfo_id,
137
- f_meternumber: this.model.f_meternumber,
138
- version: this.model.version,
139
- f_table_state: '正常',
140
132
  f_open_date: Util.toStandardTimeString(),
141
133
  f_open_person: Vue.user.name,
142
134
  f_comments: this.model.f_comments,
143
- f_gas_person: this.model.f_gas_person,
144
- f_operat_type: '开通',
145
- f_describe: `${Vue.user.name}对用户${this.model.f_user_name}进行开通操作`,
146
135
  f_state: '有效',
147
136
  f_operator: Vue.user.name,
148
- f_filiale: Vue.user.f_fengongsi,
149
- f_outlets: Vue.user.f_parentname,
150
- f_orgstr: Vue.user.orgpathstr,
151
- f_filialeids: Vue.user.f_orgids,
152
- userfiles: {
153
- f_user_id: this.model.f_user_id,
154
- f_meternumber: this.model.f_meternumber,
155
- version: this.model.version,
156
- f_table_state: '正常',
157
- f_gas_date: Util.toStandardTimeString(),
158
- f_gas_person: this.model.f_gas_person,
159
- f_open_date: Util.toStandardTimeString()
160
- }
137
+ f_operatorid: Vue.user.id,
138
+ f_orgname: Vue.user.orgs,
139
+ f_orgid: Vue.user.orgid,
140
+ f_depid: Vue.user.orgid,
141
+ f_depname: Vue.user.orgs,
142
+ f_meternumber: this.model.f_meternumber,
143
+ version: this.model.version,
144
+ f_table_state: '正常',
145
+ f_gas_date: Util.toStandardTimeString(),
146
+ f_gas_person: this.model.f_gas_person,
147
+ f_userfiles_id: this.model.f_userfiles_id
161
148
  }
162
149
  this.$showMessage(`开通前请确认表号和表类型!!!`, ['confirm', 'cancel']).then((res) => {
163
150
  if (res === 'confirm') {
164
- this.$resetpost(`${this.$androidUtil.getProxyUrl()}/rs/entity/t_open_meter`, param, {rejectMsg: '开通失败', resolveMsg: '开通成功'}).then(res=>(
165
- this.$resetpost(`${this.$androidUtil.getProxyUrl()}/rs/logic/updateUserfiles`, param.userfiles).then((res) => {
166
- if (res.data == 200){this.$back()}else {this.$showMessage('网络异常,请稍后再试')}
167
- })
168
- ))
151
+ this.$resetpost(`${this.$androidUtil.getProxyUrl()}/rs/logic/updateUserfiles`, param).then((res) => {
152
+ if (res.data == 200) {
153
+ this.$showMessage('开通成功')
154
+ } else {
155
+ this.$showMessage('网络异常,请稍后再试')
156
+ }
157
+ })
169
158
  }
170
159
  })
171
-
172
160
  },
173
161
 
174
162
  },
175
163
  watch: {
176
- 'data' () {
164
+ 'data'() {
177
165
  }
178
166
  }
179
167
  }
@@ -3,11 +3,11 @@
3
3
  <div class="auto select-overspread">
4
4
  <validator name='v'>
5
5
  <ul class="nav nav-tabs">
6
- <p class="bg-info text-center" style="padding: 8px;">{{tabstitles[$parent.$refs.tabs.active]}}</p>
6
+ <p class="bg-info text-center" style="padding: 8px;">添加到目标安检册</p>
7
7
  </ul>
8
- <div class="form-horizontal select-overspread container-fluid auto" style="margin-top:20px;flex: 1;" v-show="!($parent.$refs.tabs.active == 2)">
8
+ <div class="form-horizontal select-overspread container-fluid auto" style="margin-top:20px;flex: 1;">
9
9
  <div class="row" style="text-align: center">
10
-
10
+ <p class="text-center" style="padding: 8px;">共{{usernum?usernum:0}}位用户</p>
11
11
  <div class="col-sm-12 form-group" :class="[$v.f_check_book_num.required ? 'has-error' : '']">
12
12
  <label class="font_normal_body" style="width: 26%;">目标安检册</label>
13
13
  <input type="text" v-model="model.f_check_book_num" v-show="false"
@@ -18,9 +18,18 @@
18
18
  style="width:60%"
19
19
  close-on-select></v-select>
20
20
  </div>
21
+ <!--
22
+ <div class="col-sm-6 form-group" :class="[$v.f_invoice_type.required ? 'has-error' : '']">
23
+ <label class="font_normal_body">发票类型</label>
24
+ <input type="text" v-model="model.f_invoice_type" v-show="false" v-validate:f_invoice_type='{required: true }'>
25
+ <v-select :value.sync="model.f_invoice_type" :options='invoiceType' :value-single="true" :search="false"
26
+ placeholder='发票类型' close-on-select v-model='model.f_invoice_type'>
27
+ </v-select>
28
+ </div>
29
+ -->
21
30
  </div>
22
31
  </div>
23
- <div class="row" v-show="!($parent.$refs.tabs.active == 2)">
32
+ <div class="row">
24
33
  <div style="float:right;margin-top: 250px;margin-right: 20px;">
25
34
  <button @click="confirm()" class="btn button_search" style="width: 70px" :disabled='!$v.valid'>
26
35
  <span class="glyphicon glyphicon-floppy-disk"></span>保存
@@ -30,129 +39,57 @@
30
39
  </validator>
31
40
  </div>
32
41
  </div>
33
-
34
42
  </template>
35
43
 
36
44
  <script>
37
- import * as Util from '../../../components/Util'
38
- import {HttpResetClass} from "vue-client";
39
- import bus from "../../../bus";
40
- export default {
41
- name: 'AddTobook',
42
-
43
- data () {
44
- return {
45
- model:{
46
- f_check_book_num:''
47
- },
48
- checkbook: [],
49
- checkbooks:[],
50
- tabstitles:['请选择小区添加到目标安检册','请选择单位添加到目标安检册','用户无法单独添加到安检册内']
51
- }
52
- },
53
- created () {
54
- },
55
- ready () {
56
- // this.close()
57
- new HttpResetClass().load('POST','rs/sql/safe_singleTable_OrderBy',{data: {
58
- items: 'id,f_check_book_name,f_check_book_type,f_user_type',
59
- tablename: 't_check_book',
60
- condition: `1=1`,
61
- orderitem: 'id'
62
- }}, {resolveMsg: null, rejectMsg: null}).then(res=>{
63
- console.log("checkbook", res.data)
64
- res.data.forEach(item=>{
65
- this.checkbooks.push({
66
- f_user_type:item.f_user_type,
67
- booktype:item.f_check_book_type,
68
- label:item.f_check_book_name,
69
- value:item.id
70
- })
71
- })
72
- this.checkbook = this.checkbooks.filter(item=>item.f_user_type==='民用')
73
- })
74
- },
75
- methods: {
76
- selectbook(val){
77
-
78
- },
79
- close () {
80
-
45
+ export default {
46
+ name: 'AddTobook',
47
+ props: ['usernum'],
48
+ data () {
49
+ return {
50
+ model: {
51
+ f_check_book_num: '',
52
+ f_userinfo_code: '',
53
+ f_user_state: '',
54
+ f_operator: this.$login.f.name,
55
+ f_operatorid: this.$login.f.id,
56
+ f_orgid: this.$login.f.orgid,
57
+ f_orgname: this.$login.f.orgs,
58
+ f_depid: this.$login.f.depids,
59
+ f_depname: this.$login.f.deps,
60
+ f_state: '有效'
81
61
  },
82
-
83
- confirm () {
84
- if (!this.model.f_check_book_num){
85
- this.$showMessage('请选择安检册')
86
- return
87
- }
88
- console.log(this.$parent.$refs.tabs.active)
89
- console.log(this.$parent.bookList)
90
- console.log(this.$parent.bookAll)
91
- console.log(this.$parent.bookCondition)
92
- let userCondition = ''
93
- if(this.$parent.bookAll){
94
- if(!this.$parent.bookCondition){
95
- this.$showMessage("请先查询")
96
- return
97
- }else{
98
- userCondition = this.$parent.bookCondition
99
- }
100
- }else if(this.$parent.bookList.length > 0){
101
- userCondition = this.$parent.$refs.tabs.active ===0? 'ta.id in (' + this.$parent.bookList.toString() + ')':
102
- 'tc.id in (' + this.$parent.bookList.toString() + ')'
103
- }else{
104
- this.$showMessage(this.$parent.$refs.tabs.active===0?'请选择小区':'请选择单位')
105
- return;
106
- }
107
- if(this.$parent.$refs.tabs.active ===0){
108
- new HttpResetClass().load('POST', 'rs/logic/updateCheckBook', {data: {f_check_book_id: this.model.f_check_book_num,
109
- f_check_book_type:'小区',condition:userCondition}},
110
- {resolveMsg: null, rejectMsg: '添加失败'}).then(res=>{
111
- if(res && res.data){
112
- this.model.f_check_book_num = ""
113
- this.$showMessage("本次成功添加"+res.data+"个小区",['confirm']).then(res=>{
114
- if(res==='confirm'){
115
- console.log("刷新了")
116
- bus.$emit('fresh-area')
117
- }
118
- })
119
- }else{
120
- this.$showMessage("添加失败")
121
- }
122
- })
123
- }else{
124
- new HttpResetClass().load('POST', 'rs/logic/updateCheckBook', {data: {f_check_book_id: this.model.f_check_book_num,
125
- f_check_book_type:'单位',condition:userCondition}},
126
- {resolveMsg: null, rejectMsg: '添加失败'}).then(res=>{
127
- if(res && res.data){
128
- this.model.f_check_book_num = ""
129
- this.$showMessage("本次成功添加"+res.data+"个单位",['confirm']).then(res=>{
130
- if(res==='confirm'){
131
- console.log("刷新了")
132
- bus.$emit('fresh-area')
133
- }
134
- })
135
- }else{
136
- this.$showMessage("添加失败")
137
- }
138
- })
139
- }
140
- }
62
+ checkbook: [],
63
+ f_orgid: ''
64
+ }
65
+ },
66
+ created () {
67
+ },
68
+ async ready () {
69
+ // await this.$LoadParams.loadMeterBook(this.f_filialeid)
70
+ this.$refs.paged.$refs.cri.model.performDate = this.$login.toStandardDateString()
71
+ // this.close()
72
+ },
73
+ methods: {
74
+ selectbook(val){
75
+ console.log("val",val)
76
+ this.checkbook=val
77
+ console.log(" this.checkbook.push(val)", this.checkbook)
141
78
  },
142
- watch:{
143
- '$parent.$refs.tabs.active'(val){
144
- if(val =='0'){
145
- this.checkbook = this.checkbooks.filter(item=>item.f_user_type==='民用')
146
- }else{
147
- this.checkbook = this.checkbooks.filter(item=>item.f_user_type==='非民用')
148
- }
149
- this.model.f_check_book_num = ''
150
- }
79
+ close () {
80
+ this.model.f_check_book_num = ''
81
+ this.$dispatch('add-tobook-refresh')
151
82
  },
152
- computed: {
153
-
83
+ confirm () {
84
+ this.$dispatch('add-tobook-confirm', this.model)
154
85
  }
86
+ },
87
+ computed: {
88
+ // meterbooks () {
89
+ // return [{label: '移出表册', value: 'null'}, ...this.$GetSaleParam.getMeterBooks()]
90
+ // }
155
91
  }
92
+ }
156
93
  </script>
157
94
 
158
95
  <style lang="less">
@@ -218,6 +218,8 @@ export default {
218
218
  showdetails (row) {
219
219
  console.log('showdetails',row)
220
220
  this.rowData = row
221
+ this.rowData.f_check_book_type='用户'
222
+ this.rowData.f_user_type=''
221
223
  this.showItem = false
222
224
  this.showItemUser = true
223
225
  },
@@ -3,18 +3,18 @@
3
3
  <div class="binary-left">
4
4
  <tabset v-ref:tabs :close="false" class="nav-tabss">
5
5
  <tab header="用户查询">
6
- <check-book-search-user @book-list="setBookList" @book-all="setBookAll" @book-condition="setCondition" :showtype="showtype"></check-book-search-user>
7
- </tab>
8
- <tab header="小区查询">
9
- <check-book-search-area @book-list="setBookList" @book-all="setBookAll" @book-condition="setCondition"></check-book-search-area>
6
+ <check-book-search-user @childre="childre" v-ref:mbpeople_list></check-book-search-user>
10
7
  </tab>
8
+ <!-- <tab header="小区查询">-->
9
+ <!-- <check-book-search-area @book-list="setBookList" @book-all="setBookAll" @book-condition="setCondition"></check-book-search-area>-->
10
+ <!-- </tab>-->
11
11
  <!-- <tab header="单位查询">-->
12
12
  <!-- <check-book-search-unit @book-list="setBookList" @book-all="setBookAll" @book-condition="setCondition"></check-book-search-unit>-->
13
13
  <!-- </tab>-->
14
14
  </tabset>
15
15
  </div>
16
16
  <div class="binary-right">
17
- <add-to-check-book @book-list="setBookList" @book-all="setBookAll" @book-condition="setCondition"></add-to-check-book>
17
+ <add-to-check-book v-ref:selectbok :usernum="rowsdata.length" v-if="AddTobookShow"></add-to-check-book>
18
18
  </div>
19
19
  </div>
20
20
  </template>
@@ -26,9 +26,9 @@
26
26
  title: '添加用户到片区',
27
27
  data () {
28
28
  return {
29
- bookList: [],
30
- bookCondition:"",
31
- bookAll: false
29
+ AddTobookShow: true,
30
+ rowsdata: null,
31
+ condition: ''
32
32
  }
33
33
  },
34
34
  props: {
@@ -41,20 +41,48 @@
41
41
  ready () {
42
42
  },
43
43
  methods: {
44
- setBookList(val){
45
- console.log("555555")
46
- // console.log("66666",val)
47
- this.bookList = val
48
- },
49
- setBookAll(val){
50
- this.bookAll = val
51
- },
52
- setCondition(val){
53
- this.bookCondition = val
44
+ childre(val){
45
+ this.$refs.selectbok.selectbook(val)
54
46
  },
47
+ refresh () {
48
+
49
+ }
55
50
  },
56
51
  events: {
57
-
52
+ 'add-tobook-refresh' () {
53
+ this.refresh()
54
+ },
55
+ 'add-tobook-confirm' (model) {
56
+ this.rowsdata = this.$refs.mbpeople_list.$refs.paged.$refs.grid.getRowData()
57
+ let msg = '确认将选中的用户全部移入表册?'
58
+ if (this.rowsdata === null || this.rowsdata.length == 0) {
59
+ this.$showAlert('请勾选用户!!', 'warning', 3000)
60
+ } else {
61
+ let userfilesids = []
62
+ this.rowsdata.forEach((row) => {
63
+ userfilesids.push(row.f_userinfo_id + '')
64
+ })
65
+ // 变成可以直接使用的格式
66
+ this.$showMessage(msg, ['confirm', 'cancel']).then((res) => {
67
+ if (res === 'confirm') {
68
+ this.$resetpost('rs/logic/updateCheckBook', {f_check_book_id: model.f_check_book_num,rowsdata: userfilesids}, {
69
+ resolveMsg: '保存成功',
70
+ rejectMsg: '保存失败!'
71
+ }).then(() => {
72
+ // 刷新查询
73
+ this.$refs.mbpeople_list.rowsdata = []
74
+ this.$refs.mbpeople_list.getmeterbook()
75
+ this.rowsdata = []
76
+ this.$parent.meterbookEntryShow = false
77
+ this.$refs.mbpeople_list.unnullrowdata = []
78
+ this.$refs.mbpeople_list.radio = []
79
+ this.refresh()
80
+ this.$refs.mbpeople_list.$refs.paged.$refs.cri.search()
81
+ })
82
+ }
83
+ })
84
+ }
85
+ }
58
86
  }
59
87
  }
60
88
  </script>
@@ -117,7 +117,7 @@
117
117
  <nobr>创建人</nobr>
118
118
  </th>
119
119
  <th>
120
- <nobr>小区/单位数量</nobr>
120
+ <nobr>用户数量</nobr>
121
121
  </th>
122
122
  <th>
123
123
  <nobr>已下发</nobr>
@@ -143,7 +143,7 @@
143
143
  <td style="text-align: center;">{{ row.f_user_type }}</td>
144
144
  <td style="text-align: center;">{{ row.f_create_date }}</td>
145
145
  <td style="text-align: center;">{{ row.f_create_person }}</td>
146
- <td style="text-align: center;"><button @click.stop="$parent.$parent.$parent.details(row)" class="btn btn-link"><b>{{row.f_user_type==='民用'?row.num2:row.num3}}</b></button></td>
146
+ <td style="text-align: center;"><button @click.stop="$parent.$parent.$parent.details(row)" class="btn btn-link"><b>{{row.num2}}</b></button></td>
147
147
  <td style="text-align: center;">{{ row.xiafa }}</td>
148
148
  <td style="text-align: center;">{{ row.f_user_type =='民用'?row.num-row.xiafa:row.num4-row.xiafa }}</td>
149
149
  <td style="text-align: center;">{{ row.yijian }}</td>