safecheck-client 4.0.0-53 → 4.0.0-55

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 (29) hide show
  1. package/package.json +1 -1
  2. package/src/App.vue +31 -31
  3. package/src/components/NewDefectList/DefectListNew.vue +663 -663
  4. package/src/components/Util/SafecheckUpload.vue +281 -281
  5. package/src/components/android/AndroidDefectDetails.vue +725 -725
  6. package/src/components/android/PhoneUpUserinfo.vue +1249 -1249
  7. package/src/components/android/SafecheckDevices.vue +1339 -1340
  8. package/src/components/pc/AddToCheckBook.vue +237 -237
  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/CheckBookList.vue +366 -366
  15. package/src/components/pc/CheckBookSearchArea.vue +560 -560
  16. package/src/components/pc/CheckBookSearchUnit.vue +229 -229
  17. package/src/components/pc/CheckBookSearchUser.vue +659 -659
  18. package/src/components/pc/CheckBookSearchUserList.vue +674 -674
  19. package/src/components/pc/CheckBookUser.vue +333 -333
  20. package/src/components/pc/DefectDeal.vue +1007 -1007
  21. package/src/filiale/meihekou/android/AreaPlan.vue +569 -569
  22. package/src/filiale/meihekou/android/CheckPlanList.vue +198 -198
  23. package/src/filiale/meihekou/android/CheckPlanListArea.vue +190 -190
  24. package/src/filiale/meihekou/android/CurrentCreate.vue +1087 -1087
  25. package/src/filiale/meihekou/android/MeterReading.vue +106 -106
  26. package/src/filiale/meihekou/android/SafecheckOrderV.vue +1954 -1903
  27. package/src/filiale/meihekou/android/SafecheckUserInfo.vue +787 -787
  28. package/src/filiale/meihekou/android.js +19 -19
  29. package/src/filiale/meihekou/pc.js +12 -12
@@ -1,161 +1,161 @@
1
- <template>
2
- <div class="auto select-overspread">
3
- <validator name='v'>
4
- <form class="form-horizontal" novalidate>
5
- <ul class="nav nav-tabs" style="margin-bottom: 10px">
6
- <li class="active"><a href="#">安检册信息</a></li>
7
- </ul>
8
- <div class="row" style="margin-top: 10px">
9
- <div class="col-sm-12 form-group" style="margin: 0">
10
- <role-selector-safe
11
- @alluser="getUsers"
12
- @re-res="getRes"
13
- role-name="安检员"
14
- role-lable="安&nbsp;检&nbsp;员&nbsp;"
15
- :value.sync="checkBook.f_checker_name"
16
- v-model="checkBook.f_checker_name">
17
- </role-selector-safe>
18
- </div>
19
- <!-- <div class="form-group col-sm-6" style="margin-top: 20px" :class="[$v.f_check_book_type.required ? 'has-error' : '']">-->
20
- <!-- <label class="font_normal_body">表册类型</label>-->
21
- <!-- <input type="text" v-show="false" v-model="checkBook.f_check_book_type"-->
22
- <!-- :value.sync="checkBook.f_check_book_type"-->
23
- <!-- v-validate:f_check_book_type='{required: true }'>-->
24
- <!-- <v-select :value.sync="checkBook.f_check_book_type" v-model='checkBook.f_check_book_type'-->
25
- <!-- :value-single="true" style="width: 60%"-->
26
- <!-- class="select_list select"-->
27
- <!-- :options='bookTypes' placeholder=''-->
28
- <!-- close-on-select></v-select>-->
29
- <!-- </div>-->
30
- <div class="form-group col-sm-6" style="margin-top: 20px" :class="[$v.f_user_type.required ? 'has-error' : '']">
31
- <label class="font_normal_body">用户类型</label>
32
- <input type="text" v-show="false" v-model="checkBook.f_user_type"
33
- v-validate:f_user_type='{required: true }'>
34
- <v-select :value.sync="checkBook.f_user_type" v-model='checkBook.f_user_type'
35
- :value-single="true" style="width: 60%"
36
- class="select_list select"
37
- :options='userTypes' placeholder=''
38
- close-on-select></v-select>
39
- </div>
40
- <div class="form-group col-sm-6" style="margin-top: 20px" :class="[$v.f_check_book_name.required ? 'has-error' : '']">
41
- <label class="font_normal_body">安检册名称</label>
42
- <input type="text" class="input_search" v-model="checkBook.f_check_book_name"
43
- style="width: 60%" v-validate:f_check_book_name='{ required: true }'>
44
- </div>
45
- </div>
46
- </form>
47
- <div style="text-align:right;height:auto;margin-top:6px;margin-right: 10%">
48
- <button @click="confirm()" class="button_search">确认</button>
49
- <!-- <button @click="deleteBook()" class="button_delete">删除</button>-->
50
- <button @click="close()" class="button_clear">取消</button>
51
- </div>
52
- </validator>
53
- </div>
54
- </template>
55
- <script>
56
- import * as Util from "../../components/Util";
57
- import bus from "../../bus";
58
- import {HttpResetClass} from 'vue-client'
59
-
60
- export default {
61
- data () {
62
- return {
63
- aroundUnit: [{label: '年', value: '年'}, {label: '月', value: '月'}, {label: '日', value: '日'}],
64
- bookTypes:[{label: '用户', value: '用户'}, {label: '小区', value: '小区'}],
65
- userTypes:[{label: '民用', value: '民用'}, {label: '非民用', value: '非民用'}],
66
- autos:[{label: '是', value: '是'}, {label: '否', value: '否'}],
67
- allUsers:[],
68
- checkBook: {
69
- f_check_book_name: '',
70
- f_run_date: '',
71
- f_around_time: '',
72
- f_around_unit: '',
73
- f_create_date: '',
74
- f_create_person: '',
75
- f_user_type:'',
76
- f_orgid: '',
77
- f_is_auto:'否',
78
- f_check_book_type:"小区",
79
- f_checker_name: '',
80
- f_checker_id:'',
81
- }
82
- }
83
- },
84
- props: ['row','showtype'],
85
- watch: {
86
- 'checkBook.f_checker_name' (val) {
87
- const user = this.allUsers.filter(item=>item.name==val);
88
- if(user.length>0){
89
- this.checkBook.f_checker_id = user[0]["id"]
90
- }
91
- console.log("777",this.checkBook)
92
- },
93
- row (row) {
94
- this.changeCheckBook(row)
95
- }
96
- },
97
- ready () {
98
- // console.log(this.$login.f.orgid)
99
- this.changeCheckBook(this.row)
100
- this.checkBook.f_user_type = this.showtype
101
- console.log('row', JSON.stringify(this.row))
102
- },
103
- methods: {
104
- changeCheckBook (row) {
105
- console.log('row改变了', row)
106
- if (row && row.id) {
107
- console.log('进入修改赋值')
108
- this.checkBook = row
109
- }
110
- },
111
- deleteBook () {
112
- console.log('delete', this.row)
113
- },
114
- close () {
115
- console.log('关闭')
116
- this.$parent.showItem = false
117
- },
118
- confirm () {
119
- if(!this.checkBook.f_check_book_name){
120
- this.$showMessage('请填写安检册名称')
121
- return
122
- }
123
- // if(!this.checkBook.f_check_book_type){
124
- // this.$showMessage('请选择表册类型')
125
- // return
126
- // }
127
- if(!this.checkBook.f_user_type){
128
- this.$showMessage('请选择用户类型')
129
- return
130
-
131
- }
132
- this.checkBook.f_orgid = this.$login.f.orgid
133
- this.checkBook.f_create_person = this.$login.f.name
134
- this.checkBook.f_create_date = Util.toStandardDateString()
135
- console.log('checkbook', this.checkBook)
136
- let http = new HttpResetClass()
137
- http.load('POST', 'api/af-safecheck/logic/safeEntity', {data: {tableName: 't_check_book', entityData: this.checkBook}},
138
- {resolveMsg: '保存安检册信息成功', rejectMsg: '保存安检册信息失败'}).then(res => {
139
- if (res.data.code === 200) {
140
- this.$showMessage('保存安检册信息成功',['confirm']).then(res=>{
141
- if (res==='confirm'){
142
- bus.$emit('fresh-main')
143
- }
144
- })
145
- }else{
146
- this.$showMessage('保存安检册信息失败')
147
- }
148
- })
149
- },
150
- getRes (obj) {
151
- if (obj.resids) {
152
- this.checkBook.f_orgid = obj.resids[0]
153
- console.log('id', this.checkBook.f_orgid)
154
- }
155
- },
156
- getUsers(obj){
157
- this.allUsers = obj
158
- }
159
- }
160
- }
161
- </script>
1
+ <template>
2
+ <div class="auto select-overspread">
3
+ <validator name='v'>
4
+ <form class="form-horizontal" novalidate>
5
+ <ul class="nav nav-tabs" style="margin-bottom: 10px">
6
+ <li class="active"><a href="#">安检册信息</a></li>
7
+ </ul>
8
+ <div class="row" style="margin-top: 10px">
9
+ <div class="col-sm-12 form-group" style="margin: 0">
10
+ <role-selector-safe
11
+ @alluser="getUsers"
12
+ @re-res="getRes"
13
+ role-name="安检员"
14
+ role-lable="安&nbsp;检&nbsp;员&nbsp;"
15
+ :value.sync="checkBook.f_checker_name"
16
+ v-model="checkBook.f_checker_name">
17
+ </role-selector-safe>
18
+ </div>
19
+ <!-- <div class="form-group col-sm-6" style="margin-top: 20px" :class="[$v.f_check_book_type.required ? 'has-error' : '']">-->
20
+ <!-- <label class="font_normal_body">表册类型</label>-->
21
+ <!-- <input type="text" v-show="false" v-model="checkBook.f_check_book_type"-->
22
+ <!-- :value.sync="checkBook.f_check_book_type"-->
23
+ <!-- v-validate:f_check_book_type='{required: true }'>-->
24
+ <!-- <v-select :value.sync="checkBook.f_check_book_type" v-model='checkBook.f_check_book_type'-->
25
+ <!-- :value-single="true" style="width: 60%"-->
26
+ <!-- class="select_list select"-->
27
+ <!-- :options='bookTypes' placeholder=''-->
28
+ <!-- close-on-select></v-select>-->
29
+ <!-- </div>-->
30
+ <div class="form-group col-sm-6" style="margin-top: 20px" :class="[$v.f_user_type.required ? 'has-error' : '']">
31
+ <label class="font_normal_body">用户类型</label>
32
+ <input type="text" v-show="false" v-model="checkBook.f_user_type"
33
+ v-validate:f_user_type='{required: true }'>
34
+ <v-select :value.sync="checkBook.f_user_type" v-model='checkBook.f_user_type'
35
+ :value-single="true" style="width: 60%"
36
+ class="select_list select"
37
+ :options='userTypes' placeholder=''
38
+ close-on-select></v-select>
39
+ </div>
40
+ <div class="form-group col-sm-6" style="margin-top: 20px" :class="[$v.f_check_book_name.required ? 'has-error' : '']">
41
+ <label class="font_normal_body">安检册名称</label>
42
+ <input type="text" class="input_search" v-model="checkBook.f_check_book_name"
43
+ style="width: 60%" v-validate:f_check_book_name='{ required: true }'>
44
+ </div>
45
+ </div>
46
+ </form>
47
+ <div style="text-align:right;height:auto;margin-top:6px;margin-right: 10%">
48
+ <button @click="confirm()" class="button_search">确认</button>
49
+ <!-- <button @click="deleteBook()" class="button_delete">删除</button>-->
50
+ <button @click="close()" class="button_clear">取消</button>
51
+ </div>
52
+ </validator>
53
+ </div>
54
+ </template>
55
+ <script>
56
+ import * as Util from "../../components/Util";
57
+ import bus from "../../bus";
58
+ import {HttpResetClass} from 'vue-client'
59
+
60
+ export default {
61
+ data () {
62
+ return {
63
+ aroundUnit: [{label: '年', value: '年'}, {label: '月', value: '月'}, {label: '日', value: '日'}],
64
+ bookTypes:[{label: '用户', value: '用户'}, {label: '小区', value: '小区'}],
65
+ userTypes:[{label: '民用', value: '民用'}, {label: '非民用', value: '非民用'}],
66
+ autos:[{label: '是', value: '是'}, {label: '否', value: '否'}],
67
+ allUsers:[],
68
+ checkBook: {
69
+ f_check_book_name: '',
70
+ f_run_date: '',
71
+ f_around_time: '',
72
+ f_around_unit: '',
73
+ f_create_date: '',
74
+ f_create_person: '',
75
+ f_user_type:'',
76
+ f_orgid: '',
77
+ f_is_auto:'否',
78
+ f_check_book_type:"小区",
79
+ f_checker_name: '',
80
+ f_checker_id:'',
81
+ }
82
+ }
83
+ },
84
+ props: ['row','showtype'],
85
+ watch: {
86
+ 'checkBook.f_checker_name' (val) {
87
+ const user = this.allUsers.filter(item=>item.name==val);
88
+ if(user.length>0){
89
+ this.checkBook.f_checker_id = user[0]["id"]
90
+ }
91
+ console.log("777",this.checkBook)
92
+ },
93
+ row (row) {
94
+ this.changeCheckBook(row)
95
+ }
96
+ },
97
+ ready () {
98
+ // console.log(this.$login.f.orgid)
99
+ this.changeCheckBook(this.row)
100
+ this.checkBook.f_user_type = this.showtype
101
+ console.log('row', JSON.stringify(this.row))
102
+ },
103
+ methods: {
104
+ changeCheckBook (row) {
105
+ console.log('row改变了', row)
106
+ if (row && row.id) {
107
+ console.log('进入修改赋值')
108
+ this.checkBook = row
109
+ }
110
+ },
111
+ deleteBook () {
112
+ console.log('delete', this.row)
113
+ },
114
+ close () {
115
+ console.log('关闭')
116
+ this.$parent.showItem = false
117
+ },
118
+ confirm () {
119
+ if(!this.checkBook.f_check_book_name){
120
+ this.$showMessage('请填写安检册名称')
121
+ return
122
+ }
123
+ // if(!this.checkBook.f_check_book_type){
124
+ // this.$showMessage('请选择表册类型')
125
+ // return
126
+ // }
127
+ if(!this.checkBook.f_user_type){
128
+ this.$showMessage('请选择用户类型')
129
+ return
130
+
131
+ }
132
+ this.checkBook.f_orgid = this.$login.f.orgid
133
+ this.checkBook.f_create_person = this.$login.f.name
134
+ this.checkBook.f_create_date = Util.toStandardDateString()
135
+ console.log('checkbook', this.checkBook)
136
+ let http = new HttpResetClass()
137
+ http.load('POST', 'api/af-safecheck/logic/safeEntity', {data: {tableName: 't_check_book', entityData: this.checkBook}},
138
+ {resolveMsg: '保存安检册信息成功', rejectMsg: '保存安检册信息失败'}).then(res => {
139
+ if (res.data.code === 200) {
140
+ this.$showMessage('保存安检册信息成功',['confirm']).then(res=>{
141
+ if (res==='confirm'){
142
+ bus.$emit('fresh-main')
143
+ }
144
+ })
145
+ }else{
146
+ this.$showMessage('保存安检册信息失败')
147
+ }
148
+ })
149
+ },
150
+ getRes (obj) {
151
+ if (obj.resids) {
152
+ this.checkBook.f_orgid = obj.resids[0]
153
+ console.log('id', this.checkBook.f_orgid)
154
+ }
155
+ },
156
+ getUsers(obj){
157
+ this.allUsers = obj
158
+ }
159
+ }
160
+ }
161
+ </script>
@@ -1,60 +1,60 @@
1
- <template>
2
- <div id='checkbookEntry' class="flex-row binary">
3
- <div class="binary-left">
4
- <tabset v-ref:tabs :close="false" class="nav-tabss">
5
- <tab header="用户查询">
6
- <check-book-search-user @book-list="setBookList" @book-all="setBookAll" @book-condition="setCondition"></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>-->
10
- <!-- </tab>-->
11
- <!-- <tab header="单位查询">-->
12
- <!-- <check-book-search-unit @book-list="setBookList" @book-all="setBookAll" @book-condition="setCondition"></check-book-search-unit>-->
13
- <!-- </tab>-->
14
- </tabset>
15
- </div>
16
- <div class="binary-right">
17
- <add-to-check-book @book-list="setBookList" @book-all="setBookAll" @book-condition="setCondition"></add-to-check-book>
18
- </div>
19
- </div>
20
- </template>
21
-
22
- <script>
23
-
24
- export default {
25
- name: 'checkBookEntry',
26
- title: '添加用户到片区',
27
- data () {
28
- return {
29
- bookList: [],
30
- bookCondition:"",
31
- bookAll: false
32
- }
33
- },
34
- created () {
35
- },
36
- ready () {
37
- },
38
- methods: {
39
- setBookList(val){
40
- console.log("555555")
41
- this.bookList = val
42
- },
43
- setBookAll(val){
44
- this.bookAll = val
45
- },
46
- setCondition(val){
47
- this.bookCondition = val
48
- },
49
- },
50
- events: {
51
-
52
- }
53
- }
54
- </script>
55
-
56
- <style lang="less">
57
- #checkbookEntry {
58
- height: 700px;
59
- }
60
- </style>
1
+ <template>
2
+ <div id='checkbookEntry' class="flex-row binary">
3
+ <div class="binary-left">
4
+ <tabset v-ref:tabs :close="false" class="nav-tabss">
5
+ <tab header="用户查询">
6
+ <check-book-search-user @book-list="setBookList" @book-all="setBookAll" @book-condition="setCondition"></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>-->
10
+ <!-- </tab>-->
11
+ <!-- <tab header="单位查询">-->
12
+ <!-- <check-book-search-unit @book-list="setBookList" @book-all="setBookAll" @book-condition="setCondition"></check-book-search-unit>-->
13
+ <!-- </tab>-->
14
+ </tabset>
15
+ </div>
16
+ <div class="binary-right">
17
+ <add-to-check-book @book-list="setBookList" @book-all="setBookAll" @book-condition="setCondition"></add-to-check-book>
18
+ </div>
19
+ </div>
20
+ </template>
21
+
22
+ <script>
23
+
24
+ export default {
25
+ name: 'checkBookEntry',
26
+ title: '添加用户到片区',
27
+ data () {
28
+ return {
29
+ bookList: [],
30
+ bookCondition:"",
31
+ bookAll: false
32
+ }
33
+ },
34
+ created () {
35
+ },
36
+ ready () {
37
+ },
38
+ methods: {
39
+ setBookList(val){
40
+ console.log("555555")
41
+ this.bookList = val
42
+ },
43
+ setBookAll(val){
44
+ this.bookAll = val
45
+ },
46
+ setCondition(val){
47
+ this.bookCondition = val
48
+ },
49
+ },
50
+ events: {
51
+
52
+ }
53
+ }
54
+ </script>
55
+
56
+ <style lang="less">
57
+ #checkbookEntry {
58
+ height: 700px;
59
+ }
60
+ </style>