safecheck-client 4.0.2-39 → 4.0.2-41

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,181 +1,181 @@
1
- <template>
2
- <div class="auto">
3
- <criteria-paged :model="model" v-ref:paged>
4
- <criteria partial='criteria' @condition-changed='search' v-ref:cri>
5
- <div partial>
6
- <form>
7
- <div class="row app-row">
8
- <div class="col-xs-4">
9
- <img src="../../../assets/用户ID.png" style="width: 20px;margin-bottom: 5px" alt="">
10
- <label class="font text-left">用户名称:</label>
11
- </div>
12
- <div class="col-xs-8" >
13
- <input class="search_input input-font"
14
- v-model=model.f_user_name condition="f_user_name like '%{}%'" style="width: 70%" placeholder="请输入用户名称" />
15
- </div>
16
- </div>
17
- <div class="row app-row">
18
- <div class="col-xs-4">
19
- <img src="../../../assets/用户ID.png" style="width: 20px;margin-bottom: 5px" alt="">
20
- <label class="font text-left">表 &nbsp;&nbsp; &nbsp;&nbsp; 号:</label>
21
- </div>
22
- <div class="col-xs-8" >
23
- <input class="search_input input-font"
24
- v-model=model.f_meternumber condition="f_meternumber = '{}'" style="width: 70%" placeholder="请输入表号" />
25
- <button type="button" name="button" class="btn btn-primary" style="width: 25%" @click="$parent.$parent.scan">扫码</button>
26
- </div>
27
- </div>
28
- <div class="row app-row">
29
- <div class="col-xs-4">
30
- <img src="../../../assets/用户ID.png" style="width: 20px;margin-bottom: 5px" alt="">
31
- <label class="font text-left">基表号:</label>
32
- </div>
33
- <div class="col-xs-8" >
34
- <input class="search_input input-font"
35
- v-model="model.f_base_meternumber" condition="f_base_meternumber like '%{}%'" />
36
- </div>
37
- </div>
38
- <div class="row app-row">
39
- <div class="col-xs-4">
40
- <img src="../../../assets/小区.png" style="width: 20px;margin-bottom: 5px" alt="">
41
- <label class="font text-left">用户地址:</label>
42
- </div>
43
- <div class="col-xs-8" >
44
- <input class="search_input input-font"
45
- v-model=model.f_address condition="f_address like '%{}%'" />
46
- </div>
47
- </div>
48
- <div class="row text-center" style="margin-top: 20px;">
49
- <button type="button" class="btn btn-lg btn-font btn-color" style="width: 45%;" @click="search">查询</button>
50
- </div>
51
- </form>
52
- </div>
53
- </criteria>
54
-
55
- <list :model="model" partial='list'>
56
- <div partial>
57
- <div @click="$parent.$parent.$parent.inspect(row)" class="auto app-text" style="margin-top: 5px;">
58
- <div class="panel" style="padding: 10px 10px 5px 10px;">
59
- <div class="panel-body panel-self">
60
- <div class="row">
61
- <p class="panel-title col-xs-4 text-left font">用户编号</p>
62
- <p class="panel-title col-xs-8 text-left input-font">{{ row.f_userinfo_id }}</p>
63
- </div>
64
- <div class="row">
65
- <p class="panel-title col-xs-4 text-left font">用户名称</p>
66
- <p class="panel-title col-xs-8 text-left input-font">{{ row.f_user_name }}</p>
67
- </div>
68
- <div class="row">
69
- <p class="panel-title col-xs-4 text-left font">表号</p>
70
- <p class="panel-title col-xs-8 text-left input-font">{{ row.f_meternumber }}</p>
71
- </div>
72
- <div class="row">
73
- <p class="panel-title col-xs-4 text-left font">周检环节</p>
74
- <p class="panel-title col-xs-8 text-left input-font">{{ row.f_complete }}</p>
75
- </div>
76
- <div class="row">
77
- <p class="panel-title col-xs-4 text-left font">周检状态</p>
78
- <p class="panel-title col-xs-8 text-left input-font">{{ row.f_state }}</p>
79
- </div>
80
- </div>
81
- </div>
82
-
83
- </div>
84
- </div>
85
- </list>
86
- </criteria-paged>
87
- </div>
88
- </template>
89
-
90
- <script>
91
- import {HttpResetClass, PagedList} from 'vue-client'
92
- import Vue from 'vue'
93
- import * as Util from '../../Util'
94
-
95
- export default {
96
- title: '周检待办',
97
- data () {
98
- let model = new PagedList(`${this.$androidUtil.getProxyUrl()}/api/af-safecheck/sql/getWeekPaper`, 20,
99
- {
100
- f_user_name:'this.f_user_name'
101
- })
102
- model.f_user_name = `${Vue.user.name}`
103
- return {
104
- model: model,
105
-
106
- }
107
- },
108
- ready () {
109
- },
110
- computed: {
111
- },
112
- methods:{
113
- scan(){
114
- HostApp.__this__=this,
115
- HostApp.scanCode({callback:"javascript:HostApp.__this__.getCode();"})
116
- },
117
- getCode(){
118
- let datapa = HostApp.getCode().data;
119
- this.$refs.paged.$refs.cri.model.f_meternumber=datapa
120
- },
121
- search () {
122
- this.$refs.paged.$refs.cri.search()
123
- },
124
- inspect (row) {
125
- var pardate = {
126
- _this:this,
127
- tittle:'周检单查看',
128
- safe:true
129
- }
130
- this.$dispatch('gotoson',pardate)
131
- this.$goto('step-header-bar', {weekdata: row}, 'self')
132
-
133
- },
134
- }
135
- }
136
- </script>
137
- <style scoped>
138
- .app-row {
139
- background-color: white;
140
- padding: 10px 10px 0 10px;
141
- border-bottom: 1px solid rgba(235, 235, 235, 0.5);
142
- }
143
- .search_input {
144
- border: 0;
145
- outline: none;
146
- }
147
- .font{
148
- font: 15px PingFang-SC-Medium;
149
- color: #666666;
150
- }
151
- .input-font{
152
- font: 15px PingFang-SC-Medium;
153
- color: #333333;
154
- }
155
- .btn-font{
156
- font:600 16px PingFang-SC-Bold;
157
- color: #499EDF;
158
- }
159
- .btn-color{
160
- background-color: #FFFFFF;
161
- border-radius: 10px ;
162
- border: 1px solid #499EDF;
163
- }
164
- .app-text {
165
- font-size: 12px;
166
- }
167
- .panel-self{
168
- border-radius: 10px;
169
- border:1px solid #499EDF;
170
- background-color: #F8F8F8;
171
- }
172
- .yybtn-color{
173
- border-radius: 4px ;
174
- border: 1px solid #499EDF;
175
- }
176
- .qxbtn-color{
177
- background-color: #FFFFFF;
178
- border-radius: 4px ;
179
- border: 1px solid #499EDF;
180
- }
181
- </style>
1
+ <template>
2
+ <div class="auto">
3
+ <criteria-paged :model="model" v-ref:paged>
4
+ <criteria partial='criteria' @condition-changed='search' v-ref:cri>
5
+ <div partial>
6
+ <form>
7
+ <div class="row app-row">
8
+ <div class="col-xs-4">
9
+ <img src="../../../assets/用户ID.png" style="width: 20px;margin-bottom: 5px" alt="">
10
+ <label class="font text-left">用户名称:</label>
11
+ </div>
12
+ <div class="col-xs-8" >
13
+ <input class="search_input input-font"
14
+ v-model=model.f_user_name condition="f_user_name like '%{}%'" style="width: 70%" placeholder="请输入用户名称" />
15
+ </div>
16
+ </div>
17
+ <div class="row app-row">
18
+ <div class="col-xs-4">
19
+ <img src="../../../assets/用户ID.png" style="width: 20px;margin-bottom: 5px" alt="">
20
+ <label class="font text-left">表 &nbsp;&nbsp; &nbsp;&nbsp; 号:</label>
21
+ </div>
22
+ <div class="col-xs-8" >
23
+ <input class="search_input input-font"
24
+ v-model=model.f_meternumber condition="f_meternumber = '{}'" style="width: 70%" placeholder="请输入表号" />
25
+ <button type="button" name="button" class="btn btn-primary" style="width: 25%" @click="$parent.$parent.scan">扫码</button>
26
+ </div>
27
+ </div>
28
+ <div class="row app-row">
29
+ <div class="col-xs-4">
30
+ <img src="../../../assets/用户ID.png" style="width: 20px;margin-bottom: 5px" alt="">
31
+ <label class="font text-left">基表号:</label>
32
+ </div>
33
+ <div class="col-xs-8" >
34
+ <input class="search_input input-font"
35
+ v-model="model.f_base_meternumber" condition="f_base_meternumber like '%{}%'" />
36
+ </div>
37
+ </div>
38
+ <div class="row app-row">
39
+ <div class="col-xs-4">
40
+ <img src="../../../assets/小区.png" style="width: 20px;margin-bottom: 5px" alt="">
41
+ <label class="font text-left">用户地址:</label>
42
+ </div>
43
+ <div class="col-xs-8" >
44
+ <input class="search_input input-font"
45
+ v-model=model.f_address condition="f_address like '%{}%'" />
46
+ </div>
47
+ </div>
48
+ <div class="row text-center" style="margin-top: 20px;">
49
+ <button type="button" class="btn btn-lg btn-font btn-color" style="width: 45%;" @click="search">查询</button>
50
+ </div>
51
+ </form>
52
+ </div>
53
+ </criteria>
54
+
55
+ <list :model="model" partial='list'>
56
+ <div partial>
57
+ <div @click="$parent.$parent.$parent.inspect(row)" class="auto app-text" style="margin-top: 5px;">
58
+ <div class="panel" style="padding: 10px 10px 5px 10px;">
59
+ <div class="panel-body panel-self">
60
+ <div class="row">
61
+ <p class="panel-title col-xs-4 text-left font">用户编号</p>
62
+ <p class="panel-title col-xs-8 text-left input-font">{{ row.f_userinfo_id }}</p>
63
+ </div>
64
+ <div class="row">
65
+ <p class="panel-title col-xs-4 text-left font">用户名称</p>
66
+ <p class="panel-title col-xs-8 text-left input-font">{{ row.f_user_name }}</p>
67
+ </div>
68
+ <div class="row">
69
+ <p class="panel-title col-xs-4 text-left font">表号</p>
70
+ <p class="panel-title col-xs-8 text-left input-font">{{ row.f_meternumber }}</p>
71
+ </div>
72
+ <div class="row">
73
+ <p class="panel-title col-xs-4 text-left font">周检环节</p>
74
+ <p class="panel-title col-xs-8 text-left input-font">{{ row.f_complete }}</p>
75
+ </div>
76
+ <div class="row">
77
+ <p class="panel-title col-xs-4 text-left font">周检状态</p>
78
+ <p class="panel-title col-xs-8 text-left input-font">{{ row.f_state }}</p>
79
+ </div>
80
+ </div>
81
+ </div>
82
+
83
+ </div>
84
+ </div>
85
+ </list>
86
+ </criteria-paged>
87
+ </div>
88
+ </template>
89
+
90
+ <script>
91
+ import {HttpResetClass, PagedList} from 'vue-client'
92
+ import Vue from 'vue'
93
+ import * as Util from '../../Util'
94
+
95
+ export default {
96
+ title: '周检待办',
97
+ data () {
98
+ let model = new PagedList(`${this.$androidUtil.getProxyUrl()}/api/af-safecheck/sql/getWeekPaper`, 20,
99
+ {
100
+ f_user_name:'this.f_user_name'
101
+ })
102
+ model.f_user_name = `${Vue.user.name}`
103
+ return {
104
+ model: model,
105
+
106
+ }
107
+ },
108
+ ready () {
109
+ },
110
+ computed: {
111
+ },
112
+ methods:{
113
+ scan(){
114
+ HostApp.__this__=this,
115
+ HostApp.scanCode({callback:"javascript:HostApp.__this__.getCode();"})
116
+ },
117
+ getCode(){
118
+ let datapa = HostApp.getCode().data;
119
+ this.$refs.paged.$refs.cri.model.f_meternumber=datapa
120
+ },
121
+ search () {
122
+ this.$refs.paged.$refs.cri.search()
123
+ },
124
+ inspect (row) {
125
+ var pardate = {
126
+ _this:this,
127
+ tittle:'周检单查看',
128
+ safe:true
129
+ }
130
+ this.$dispatch('gotoson',pardate)
131
+ this.$goto('step-header-bar', {weekdata: row}, 'self')
132
+
133
+ },
134
+ }
135
+ }
136
+ </script>
137
+ <style scoped>
138
+ .app-row {
139
+ background-color: white;
140
+ padding: 10px 10px 0 10px;
141
+ border-bottom: 1px solid rgba(235, 235, 235, 0.5);
142
+ }
143
+ .search_input {
144
+ border: 0;
145
+ outline: none;
146
+ }
147
+ .font{
148
+ font: 15px PingFang-SC-Medium;
149
+ color: #666666;
150
+ }
151
+ .input-font{
152
+ font: 15px PingFang-SC-Medium;
153
+ color: #333333;
154
+ }
155
+ .btn-font{
156
+ font:600 16px PingFang-SC-Bold;
157
+ color: #499EDF;
158
+ }
159
+ .btn-color{
160
+ background-color: #FFFFFF;
161
+ border-radius: 10px ;
162
+ border: 1px solid #499EDF;
163
+ }
164
+ .app-text {
165
+ font-size: 12px;
166
+ }
167
+ .panel-self{
168
+ border-radius: 10px;
169
+ border:1px solid #499EDF;
170
+ background-color: #F8F8F8;
171
+ }
172
+ .yybtn-color{
173
+ border-radius: 4px ;
174
+ border: 1px solid #499EDF;
175
+ }
176
+ .qxbtn-color{
177
+ background-color: #FFFFFF;
178
+ border-radius: 4px ;
179
+ border: 1px solid #499EDF;
180
+ }
181
+ </style>
@@ -1,146 +1,146 @@
1
- <template>
2
- <div class="auto select-overspread">
3
- <criteria-paged :model="model" v-ref:paged>
4
- <criteria partial='criteria' @condition-changed='$parent.selfSearch' v-ref:criteria>
5
- <div novalidate class="form-horizontal select-overspread container-fluid auto" partial>
6
- <div class="row">
7
- <div class="form-group col-sm-3" >
8
- <label class="font_normal_body">小区名称</label>
9
- <input type="text" class="input_search" style="width:60%" v-model="model.f_residential_area" placeholder='小区名称'
10
- condition="f_residential_area like '%{}%'" @keyup.enter="search()">
11
- </div>
12
- <div class="form-group col-sm-2 button-range" >
13
- <button class="button_search" style="margin-right: 10px" @click="search()" v-el:cba>查询</button>
14
- <button class="button_search" style="margin-right: 10px" @click="$parent.$parent.send()" v-el:cba>下发</button>
15
- </div>
16
- </div>
17
- </div>
18
- </criteria>
19
- <data-grid :model="model" class="table_sy" partial='list' v-ref:grid >
20
- <template partial='head' >
21
- <tr>
22
- <th><nobr><input type="checkbox" onClick="event.cancelBubble = true" :checked="$parent.$parent.$parent.checkAll" @change="$parent.$parent.$parent.setCheckAll()"/>全选</nobr></th>
23
- <th><nobr>省市区/县</nobr></th>
24
- <th><nobr>街道/乡镇</nobr></th>
25
- <th><nobr>小区名称</nobr></th>
26
- <th><nobr>用户数量</nobr></th>
27
- <th><nobr>详细地址</nobr></th>
28
- <th><nobr>小区备注</nobr></th>
29
- </tr>
30
- </template>
31
- <template partial='body' >
32
- <tr >
33
- <td style="text-align: center;"><input type="checkbox" onClick="event.cancelBubble = true" :checked="$parent.$parent.$parent.isChecked(row.id)" @change="$parent.$parent.$parent.setCheckes(row.id)" /></td>
34
- <td style="text-align:center">{{row.f_pcd}}</td>
35
- <td style="text-align:center">{{row.f_street}}</td>
36
- <td style="text-align:center">{{row.f_residential_area}}</td>
37
- <td style="text-align:center"> <button @click.stop="$parent.$parent.$parent.details(row)" class="btn btn-link"><b>{{row.num?row.num:0}}</b></button></td>
38
- <td style="text-align:center">{{row.f_area_address}}</td>
39
- <td style="text-align:center">{{row.f_comments}}</td>
40
- </tr>
41
- </template>
42
- <template partial='foot'></template>
43
- </data-grid>
44
- </criteria-paged>
45
- <modal :show.sync="showSendModal" :backdrop="false" width="90%" height="90%">
46
- <article slot="modal-body" class="modal-body" style="height: 80vh">
47
- <check-book-search-user-list v-if="showSendModal" :row="row" :addcondata="addcondata" :bookrowsdata="{bookrows:checkes,checkAll:checkAll}" :needprops="needprops":userlogin="userlogin"></check-book-search-user-list>
48
- </article>
49
- <footer slot="modal-footer">
50
- </footer>
51
-
52
- </modal>
53
- </div>
54
- </template>
55
-
56
- <script>
57
- import {HttpResetClass, PagedList} from 'vue-client'
58
-
59
- export default {
60
- title: '安检记录列表',
61
- props: ['row','needprops'],
62
- data () {
63
- return {
64
- rowdata: this.row,
65
- showSendModal:false,
66
- checkBookRow:{
67
- },
68
- userlogin:{
69
- id:this.$login.f.id,
70
- name:this.$login.f.name,
71
- orgid:this.$login.f.orgid,
72
- orgstr:this.$login.f.orgs,
73
- },
74
- model: new PagedList('api/af-safecheck/sql/getCheckBookArea', 50),
75
- checkAll:false,
76
- checkes:[],
77
- addcondata:''
78
- }
79
- },
80
- ready(){
81
- console.log(this.row)
82
- const val = this.row
83
- if (val) {
84
- this.checkAll=false
85
- this.checkes=[]
86
- this.rowdata = val
87
- const condition = `f_check_book_id =${val.id}`
88
- this.model.search(condition)
89
- }
90
- },
91
- watch: {
92
- 'row' (val) {
93
- if (val) {
94
- this.checkAll=false
95
- this.checkes=[]
96
- this.rowdata = val
97
- const condition = `f_check_book_id =${val.id}`
98
- this.model.search(condition)
99
- }
100
- }
101
- },
102
- methods: {
103
- setCheckAll() {
104
- this.checkAll=this.checkAll?false:true;
105
- // 全选改变后,清空选中数据
106
- this.checkes = []
107
- },
108
- isChecked(v) {
109
- // 如果全选,不在的按选中算,否则,在的按选中算
110
- if (this.checkAll) {
111
- return this.checkes.indexOf(v) == -1
112
- } else {
113
- return this.checkes.indexOf(v) != -1
114
- }
115
- },
116
- setCheckes(id) {
117
- let index=this.checkes.indexOf(id)
118
- if(index<0){
119
- this.checkes.push(id)
120
- }else{
121
- this.checkes.splice(index,1)
122
- }
123
- },
124
- send(){
125
- if(!this.checkAll && this.checkes.length == 0){
126
- return this.$showMessage('请选择单位')
127
- }
128
- this.showSendModal = true
129
- },
130
- details(row){
131
- this.$emit('showuser' ,row)
132
- },
133
- selfSearch (args) {
134
- if (this.rowdata.id) {
135
- this.checkAll=false
136
- this.checkes=[]
137
- args.condition += `and f_check_book_id =${this.rowdata.id}`
138
- this.model.search(args.condition)
139
- this.addcondata = args.model.f_residential_area ? ` and area.f_residential_area like '%${args.model.f_residential_area}%'`: ''
140
- } else {
141
- this.$showMessage('请选择片区')
142
- }
143
- }
144
- }
145
- }
146
- </script>
1
+ <template>
2
+ <div class="auto select-overspread">
3
+ <criteria-paged :model="model" v-ref:paged>
4
+ <criteria partial='criteria' @condition-changed='$parent.selfSearch' v-ref:criteria>
5
+ <div novalidate class="form-horizontal select-overspread container-fluid auto" partial>
6
+ <div class="row">
7
+ <div class="form-group col-sm-3" >
8
+ <label class="font_normal_body">小区名称</label>
9
+ <input type="text" class="input_search" style="width:60%" v-model="model.f_residential_area" placeholder='小区名称'
10
+ condition="f_residential_area like '%{}%'" @keyup.enter="search()">
11
+ </div>
12
+ <div class="form-group col-sm-2 button-range" >
13
+ <button class="button_search" style="margin-right: 10px" @click="search()" v-el:cba>查询</button>
14
+ <button class="button_search" style="margin-right: 10px" @click="$parent.$parent.send()" v-el:cba>下发</button>
15
+ </div>
16
+ </div>
17
+ </div>
18
+ </criteria>
19
+ <data-grid :model="model" class="table_sy" partial='list' v-ref:grid >
20
+ <template partial='head' >
21
+ <tr>
22
+ <th><nobr><input type="checkbox" onClick="event.cancelBubble = true" :checked="$parent.$parent.$parent.checkAll" @change="$parent.$parent.$parent.setCheckAll()"/>全选</nobr></th>
23
+ <th><nobr>省市区/县</nobr></th>
24
+ <th><nobr>街道/乡镇</nobr></th>
25
+ <th><nobr>小区名称</nobr></th>
26
+ <th><nobr>用户数量</nobr></th>
27
+ <th><nobr>详细地址</nobr></th>
28
+ <th><nobr>小区备注</nobr></th>
29
+ </tr>
30
+ </template>
31
+ <template partial='body' >
32
+ <tr >
33
+ <td style="text-align: center;"><input type="checkbox" onClick="event.cancelBubble = true" :checked="$parent.$parent.$parent.isChecked(row.id)" @change="$parent.$parent.$parent.setCheckes(row.id)" /></td>
34
+ <td style="text-align:center">{{row.f_pcd}}</td>
35
+ <td style="text-align:center">{{row.f_street}}</td>
36
+ <td style="text-align:center">{{row.f_residential_area}}</td>
37
+ <td style="text-align:center"> <button @click.stop="$parent.$parent.$parent.details(row)" class="btn btn-link"><b>{{row.num?row.num:0}}</b></button></td>
38
+ <td style="text-align:center">{{row.f_area_address}}</td>
39
+ <td style="text-align:center">{{row.f_comments}}</td>
40
+ </tr>
41
+ </template>
42
+ <template partial='foot'></template>
43
+ </data-grid>
44
+ </criteria-paged>
45
+ <modal :show.sync="showSendModal" :backdrop="false" width="90%" height="90%">
46
+ <article slot="modal-body" class="modal-body" style="height: 80vh">
47
+ <check-book-search-user-list v-if="showSendModal" :row="row" :addcondata="addcondata" :bookrowsdata="{bookrows:checkes,checkAll:checkAll}" :needprops="needprops":userlogin="userlogin"></check-book-search-user-list>
48
+ </article>
49
+ <footer slot="modal-footer">
50
+ </footer>
51
+
52
+ </modal>
53
+ </div>
54
+ </template>
55
+
56
+ <script>
57
+ import {HttpResetClass, PagedList} from 'vue-client'
58
+
59
+ export default {
60
+ title: '安检记录列表',
61
+ props: ['row','needprops'],
62
+ data () {
63
+ return {
64
+ rowdata: this.row,
65
+ showSendModal:false,
66
+ checkBookRow:{
67
+ },
68
+ userlogin:{
69
+ id:this.$login.f.id,
70
+ name:this.$login.f.name,
71
+ orgid:this.$login.f.orgid,
72
+ orgstr:this.$login.f.orgs,
73
+ },
74
+ model: new PagedList('api/af-safecheck/sql/getCheckBookArea', 50),
75
+ checkAll:false,
76
+ checkes:[],
77
+ addcondata:''
78
+ }
79
+ },
80
+ ready(){
81
+ console.log(this.row)
82
+ const val = this.row
83
+ if (val) {
84
+ this.checkAll=false
85
+ this.checkes=[]
86
+ this.rowdata = val
87
+ const condition = `f_check_book_id =${val.id}`
88
+ this.model.search(condition)
89
+ }
90
+ },
91
+ watch: {
92
+ 'row' (val) {
93
+ if (val) {
94
+ this.checkAll=false
95
+ this.checkes=[]
96
+ this.rowdata = val
97
+ const condition = `f_check_book_id =${val.id}`
98
+ this.model.search(condition)
99
+ }
100
+ }
101
+ },
102
+ methods: {
103
+ setCheckAll() {
104
+ this.checkAll=this.checkAll?false:true;
105
+ // 全选改变后,清空选中数据
106
+ this.checkes = []
107
+ },
108
+ isChecked(v) {
109
+ // 如果全选,不在的按选中算,否则,在的按选中算
110
+ if (this.checkAll) {
111
+ return this.checkes.indexOf(v) == -1
112
+ } else {
113
+ return this.checkes.indexOf(v) != -1
114
+ }
115
+ },
116
+ setCheckes(id) {
117
+ let index=this.checkes.indexOf(id)
118
+ if(index<0){
119
+ this.checkes.push(id)
120
+ }else{
121
+ this.checkes.splice(index,1)
122
+ }
123
+ },
124
+ send(){
125
+ if(!this.checkAll && this.checkes.length == 0){
126
+ return this.$showMessage('请选择单位')
127
+ }
128
+ this.showSendModal = true
129
+ },
130
+ details(row){
131
+ this.$emit('showuser' ,row)
132
+ },
133
+ selfSearch (args) {
134
+ if (this.rowdata.id) {
135
+ this.checkAll=false
136
+ this.checkes=[]
137
+ args.condition += `and f_check_book_id =${this.rowdata.id}`
138
+ this.model.search(args.condition)
139
+ this.addcondata = args.model.f_residential_area ? ` and area.f_residential_area like '%${args.model.f_residential_area}%'`: ''
140
+ } else {
141
+ this.$showMessage('请选择片区')
142
+ }
143
+ }
144
+ }
145
+ }
146
+ </script>