safecheck-client 3.0.33-1 → 3.0.33-3

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.
@@ -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', 'rs/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', 'rs/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,66 +1,66 @@
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" :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>
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
- props: {
35
- showtype:{
36
- type: String
37
- }
38
- },
39
- created () {
40
- },
41
- ready () {
42
- },
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
54
- },
55
- },
56
- events: {
57
-
58
- }
59
- }
60
- </script>
61
-
62
- <style lang="less">
63
- #checkbookEntry {
64
- height: 700px;
65
- }
66
- </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" :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>
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
+ props: {
35
+ showtype:{
36
+ type: String
37
+ }
38
+ },
39
+ created () {
40
+ },
41
+ ready () {
42
+ },
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
54
+ },
55
+ },
56
+ events: {
57
+
58
+ }
59
+ }
60
+ </script>
61
+
62
+ <style lang="less">
63
+ #checkbookEntry {
64
+ height: 700px;
65
+ }
66
+ </style>