apply-clients 3.1.66 → 3.1.68

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "apply-clients",
3
- "version": "3.1.66",
3
+ "version": "3.1.68",
4
4
  "description": "报建前端模块",
5
5
  "main": "src/index.js",
6
6
  "directories": {
@@ -1,278 +1,282 @@
1
- <template>
2
- <div>
3
- <criteria-paged :model="model" v-ref:cp>
4
- <criteria partial='criteria' @condition-changed='search' v-ref:cri>
5
- <div novalidate class="form-horizontal select-overspread container-fluid auto" partial>
6
- <div class="row">
7
- <div class="form-group col-sm-4">
8
- <label class="font_normal_body">客户名称:</label>
9
- <input type="text" class="input_search" v-model="model.f_user_name"
10
- v-on:keyup.enter="search" condition=" (f_user_name like '%{}%' or f_contact like '%{}%') " placeholder='二选一输入'>
11
- </div>
12
- <div class="form-group col-sm-4">
13
- <label class="font_normal_body">报建编号:</label>
14
- <input type="text" class="input_search" placeholder='报建编号' v-model="model.f_apply_num"
15
- v-on:keyup.enter="search"
16
- condition="u.f_apply_num like '%{}%'">
17
- </div>
18
- <div class="form-group col-sm-3 operate">
19
- <label class="font_normal_body"></label>
20
- <button type="button" class="btn btn-info head-but" @click="search(),$parent.$parent.close()" v-el:cx>查询</button>
21
- <button class="button_clear button_spacing" @click="$parent.$parent.clear()">清空</button>
22
- <div
23
- :class="{'button_shrink_top':$parent.$parent.criteriaShow,'button_shrink_bottom':!$parent.$parent.criteriaShow}"
24
- @click="$parent.$parent.hidden()"
25
- class="button_spacing"
26
- style="float: right">
27
- </div>
28
- </div>
29
- </div>
30
- <div class="row" v-show="$parent.$parent.criteriaShow">
31
- <div class="form-group col-sm-4">
32
- <label class="font_normal_body">合同编号:</label>
33
- <input type="text" class="input_search" placeholder='合同编号' v-model="model.f_contract_number"
34
- v-on:keyup.enter="search"
35
- condition="f_contract_number like '%{}%'">
36
- </div>
37
- <div class="form-group col-sm-4">
38
- <label class="font_normal_body">票&emsp;&emsp;号:</label>
39
- <input type="text" class="input_search" placeholder='票号' v-model="model.f_ticket_number"
40
- v-on:keyup.enter="search"
41
- condition="c.f_ticket_number like '%{}%'">
42
- </div>
43
- <div class="form-group col-sm-4">
44
- <label class="font_normal_body">用户地址:</label>
45
- <input type="text" class="input_search" placeholder='用户地址' v-model="model.f_address"
46
- v-on:keyup.enter="search"
47
- condition="f_address like '%{}%'">
48
- </div>
49
- <div class="form-group col-sm-4">
50
- <label class="font_normal_body">小&emsp;&emsp;区:</label>
51
- <v-select
52
- v-model="model.f_residential_area"
53
- placeholder='请选择'
54
- condition="u.f_residential_area = '{}'"
55
- :value.sync="model.f_residential_area"
56
- :options='$parent.$parent.area'
57
- class="select select_list"
58
- search="true"
59
- :value-single="true"
60
- close-on-select ></v-select>
61
- </div>
62
- <div class="col-sm-4 form-group">
63
- <label class="font_normal_body">报建类型:</label>
64
- <v-select
65
- v-model="model.f_apply_type"
66
- placeholder='报建类型'
67
- condition="f_apply_type like '%{}%'"
68
- :value.sync="model.f_apply_type"
69
- :options='$parent.$parent.applytype'
70
- class="select select_list"
71
- :value-single="true"
72
- close-on-select ></v-select>
73
- </div>
74
- <div class="col-sm-4 form-group">
75
- <label class="font_normal_body">办理环节:</label>
76
- <v-select
77
- v-model="model.defname"
78
- placeholder='办理环节'
79
- condition="defname = '{}'"
80
- :value.sync="model.defname"
81
- :options='$parent.$parent.defnames'
82
- class="select select_list"
83
- :value-single="true"
84
- close-on-select ></v-select>
85
- </div>
86
- <div class="form-group col-sm-4">
87
- <label for="startDate" class="font_normal_body">开始时间:</label>
88
- <datepicker id="startDate" placeholder="开始日期"
89
- style="width: 60%!important;"
90
- v-model="model.startDate"
91
- :value.sync="model.startDate"
92
- :format="'yyyy-MM-dd 00:00:00'"
93
- :show-reset-button="true"
94
- condition="f_apply_date >= '{}'">
95
- </datepicker>
96
- </div>
97
- <div class="form-group col-sm-4">
98
- <label for="endDate" class="font_normal_body">结束时间:</label>
99
- <datepicker id="endDate" placeholder="结束日期"
100
- style="width: 60%!important;"
101
- v-model="model.endDate"
102
- :value.sync="model.endDate"
103
- :format="'yyyy-MM-dd 23:59:59'"
104
- :show-reset-button="true"
105
- condition="f_apply_date <= '{}'">
106
- </datepicker>
107
- </div>
108
- <div class="form-group col-sm-4">
109
- <label for="endDate" class="font_normal_body">收费日期:</label>
110
- <datepicker id="f_charge_date" placeholder="收费日期"
111
- style="width: 60%!important;"
112
- v-model="model.f_charge_date"
113
- :value.sync="model.f_charge_date"
114
- :format="'yyyy-MM-dd'"
115
- :show-reset-button="true"
116
- condition="c.f_charge_date <= '{} 23:59:59' and c.f_charge_date >= '{} 00:00:00'">
117
- </datepicker>
118
- </div>
119
- </div>
120
- </div>
121
- </criteria>
122
- <data-grid :model="model" partial='list' v-ref:grid class="list_area table_sy">
123
- <template partial='head'>
124
- <tr>
125
- <th>序号</th>
126
- <th><div style="width:80px">流程操作</div></th>
127
- <th>报建编号</th>
128
- <th>当前环节</th>
129
- <th>客户名称/联系人</th>
130
- <th>合同编号</th>
131
- <th>电话</th>
132
- <th>地址</th>
133
- <th>报建类型</th>
134
- <th>报建日期</th>
135
- </tr>
136
- </template>
137
- <template partial='body'>
138
- <tr>
139
- <td style="text-align: center;">
140
- <nobr>{{$index+1}}</nobr>
141
- </td>
142
- <td style="text-align: center;">
143
- <dropdown>
144
- <button @click="$parent.$parent.$parent.checkfuncs(row)" type="button" data-toggle="dropdown" style="border: 0px;background: none;">
145
- <span class="glyphicon glyphicon-th-list" style="position: inherit;"></span>
146
- </button>
147
- <ul slot="dropdown-menu" class="dropdown-menu dropdown-menu-right">
148
- <li v-for="(index,func) in $parent.$parent.$parent.funcs">
149
- <a href="#" @click="$parent.$parent.$parent.$parent.func(func,row)">{{func.title}}</a>
150
- </li>
151
- </ul>
152
- </dropdown>
153
- </td>
154
- <td style="text-align: center;">
155
- <nobr><font>{{row.f_apply_num}}</font></nobr>
156
- </td>
157
- <td style="text-align: center;">
158
- <nobr>{{row.defname}}</nobr>
159
- </td>
160
- <td style="text-align: center;">
161
- <nobr>{{row.f_user_name}}/{{row.f_contact}}</nobr>
162
- </td>
163
- <td style="text-align: center;">
164
- <nobr>{{row.f_contract_number}}</nobr>
165
- </td>
166
- <td style="text-align: center;">
167
- <nobr>{{row.f_phone}}</nobr>
168
- </td>
169
- <td style="text-align: center;">
170
- <nobr>{{row.f_address}}</nobr>
171
- </td>
172
- <td style="text-align: center;">
173
- <nobr>{{row.f_apply_type}}</nobr>
174
- </td>
175
- <td style="text-align: center;">
176
- <nobr>{{row.f_apply_date}}</nobr>
177
- </td>
178
- </tr>
179
- </template>
180
- </data-grid>
181
- </criteria-paged>
182
- </div>
183
- </template>
184
- <script>
185
- import {HttpResetClass} from 'vue-client'
186
- import {PagedList} from 'vue-client'
187
- export default {
188
- title: '报建业务信息',
189
- data () {
190
- return {
191
- // applytype: [{label: '全部', value: ''}, ...this.$appdata.getParam('报建类型')],
192
- applytype: [{label:"全部",value:''}, {label:"集中报建",value:'集中报建'}, {label:"非民用报建",value:'非民用报建'},{label:"散户报建",value:'散户报建'}],
193
- funcs: [],
194
- defnames: [],
195
- model: new PagedList('rs/sql/checkuserfunction', 20, {
196
- data: {
197
- id: this.$login.f.id,
198
- org: this.$login.f.orgs
199
- }
200
- }),
201
- criteriaShow: false, // 控制查询条件
202
- area:[]
203
- }
204
- },
205
- ready () {
206
- // 调用查询
207
- this.$refs.cp.$refs.cri.search()
208
- this.getDefnames()
209
- this.getAreaAll()
210
- },
211
- methods: {
212
- clear () {
213
- Object.keys(this.$refs.cp.$refs.cri.model).forEach((key) => {
214
- this.$refs.cp.$refs.cri.model[key] = ''
215
- })
216
- },
217
- // 获取配置
218
- checkfuncs (row) {
219
- this.funcs = this.$function_vue.functions
220
- console.log("测试",this.funcs)
221
- },
222
- // 获取所有办理环节
223
- getDefnames () {
224
- let http = new HttpResetClass()
225
- http.load('POST', 'rs/logic/getAllDefname', {}, {
226
- resolveMsg: null,
227
- rejectMsg: null
228
- }).then((res) => {
229
- this.defnames = [{label: '全部', value: ''}, ...res.data]
230
- })
231
- },
232
- // 控制查询条件
233
- hidden () {
234
- this.$dispatch('hidden', this.criteriaShow)
235
- this.criteriaShow = !this.criteriaShow
236
- },
237
- async getAreaAll () {
238
- let http = new HttpResetClass()
239
- let condition = "f_filialeid = " + this.$login.f.orgid
240
- let res = await http.load('POST','rs/logic/apply_queryArea',{data:{condition:condition}}, {resolveMsg: null, rejectMsg: null})
241
-
242
- this.area = res.data.queryArea.map(item => {
243
- return {
244
- 'label': item.f_residential_area,
245
- 'value': item.f_residential_area,
246
- }
247
- })
248
- },
249
- // 关闭
250
- close () {
251
- this.$dispatch('close')
252
- },
253
- // 点击功能操作
254
- func (func, row) {
255
- this.$dispatch('func', func, row)
256
- }
257
- },
258
- events: {
259
- }
260
- }
261
- </script>
262
- <style scoped>
263
- .operate{
264
- text-align: right;
265
- display: flex;
266
- align-items: center; /*子元素中线居中*/
267
- justify-content: flex-end; /*子元素靠右*/
268
- margin-top: 7px;
269
- }
270
- .head-but{
271
- margin-left: 5px;
272
- height: 34px;
273
- background-color: #6aa6e2;
274
- border-radius: 4px;
275
- font-family: PingFang;
276
- color: #ffffff;
277
- }
278
- </style>
1
+ <template>
2
+ <div>
3
+ <criteria-paged :model="model" v-ref:cp>
4
+ <criteria partial='criteria' @condition-changed='search' v-ref:cri>
5
+ <div novalidate class="form-horizontal select-overspread container-fluid auto" partial>
6
+ <div class="row">
7
+ <div class="form-group col-sm-4">
8
+ <label class="font_normal_body">客户名称:</label>
9
+ <input type="text" class="input_search" v-model="model.f_user_name"
10
+ v-on:keyup.enter="search" condition=" (f_user_name like '%{}%' or f_contact like '%{}%') " placeholder='二选一输入'>
11
+ </div>
12
+ <div class="form-group col-sm-4">
13
+ <label class="font_normal_body">报建编号:</label>
14
+ <input type="text" class="input_search" placeholder='报建编号' v-model="model.f_apply_num"
15
+ v-on:keyup.enter="search"
16
+ condition="u.f_apply_num like '%{}%'">
17
+ </div>
18
+ <div class="form-group col-sm-3 operate">
19
+ <label class="font_normal_body"></label>
20
+ <button type="button" class="btn btn-info head-but" @click="search(),$parent.$parent.close()" v-el:cx>查询</button>
21
+ <button class="button_search button_spacing" @click="$parent.$parent.loadPage()">返回</button>
22
+ <button class="button_clear button_spacing" @click="$parent.$parent.clear()">清空</button>
23
+ <div
24
+ :class="{'button_shrink_top':$parent.$parent.criteriaShow,'button_shrink_bottom':!$parent.$parent.criteriaShow}"
25
+ @click="$parent.$parent.hidden()"
26
+ class="button_spacing"
27
+ style="float: right">
28
+ </div>
29
+ </div>
30
+ </div>
31
+ <div class="row" v-show="$parent.$parent.criteriaShow">
32
+ <div class="form-group col-sm-4">
33
+ <label class="font_normal_body">合同编号:</label>
34
+ <input type="text" class="input_search" placeholder='合同编号' v-model="model.f_contract_number"
35
+ v-on:keyup.enter="search"
36
+ condition="f_contract_number like '%{}%'">
37
+ </div>
38
+ <div class="form-group col-sm-4">
39
+ <label class="font_normal_body">票&emsp;&emsp;号:</label>
40
+ <input type="text" class="input_search" placeholder='票号' v-model="model.f_ticket_number"
41
+ v-on:keyup.enter="search"
42
+ condition="c.f_ticket_number like '%{}%'">
43
+ </div>
44
+ <div class="form-group col-sm-4">
45
+ <label class="font_normal_body">用户地址:</label>
46
+ <input type="text" class="input_search" placeholder='用户地址' v-model="model.f_address"
47
+ v-on:keyup.enter="search"
48
+ condition="f_address like '%{}%'">
49
+ </div>
50
+ <div class="form-group col-sm-4">
51
+ <label class="font_normal_body">小&emsp;&emsp;区:</label>
52
+ <v-select
53
+ v-model="model.f_residential_area"
54
+ placeholder='请选择'
55
+ condition="u.f_residential_area = '{}'"
56
+ :value.sync="model.f_residential_area"
57
+ :options='$parent.$parent.area'
58
+ class="select select_list"
59
+ search="true"
60
+ :value-single="true"
61
+ close-on-select ></v-select>
62
+ </div>
63
+ <div class="col-sm-4 form-group">
64
+ <label class="font_normal_body">报建类型:</label>
65
+ <v-select
66
+ v-model="model.f_apply_type"
67
+ placeholder='报建类型'
68
+ condition="f_apply_type like '%{}%'"
69
+ :value.sync="model.f_apply_type"
70
+ :options='$parent.$parent.applytype'
71
+ class="select select_list"
72
+ :value-single="true"
73
+ close-on-select ></v-select>
74
+ </div>
75
+ <div class="col-sm-4 form-group">
76
+ <label class="font_normal_body">办理环节:</label>
77
+ <v-select
78
+ v-model="model.defname"
79
+ placeholder='办理环节'
80
+ condition="defname = '{}'"
81
+ :value.sync="model.defname"
82
+ :options='$parent.$parent.defnames'
83
+ class="select select_list"
84
+ :value-single="true"
85
+ close-on-select ></v-select>
86
+ </div>
87
+ <div class="form-group col-sm-4">
88
+ <label for="startDate" class="font_normal_body">开始时间:</label>
89
+ <datepicker id="startDate" placeholder="开始日期"
90
+ style="width: 60%!important;"
91
+ v-model="model.startDate"
92
+ :value.sync="model.startDate"
93
+ :format="'yyyy-MM-dd 00:00:00'"
94
+ :show-reset-button="true"
95
+ condition="f_apply_date >= '{}'">
96
+ </datepicker>
97
+ </div>
98
+ <div class="form-group col-sm-4">
99
+ <label for="endDate" class="font_normal_body">结束时间:</label>
100
+ <datepicker id="endDate" placeholder="结束日期"
101
+ style="width: 60%!important;"
102
+ v-model="model.endDate"
103
+ :value.sync="model.endDate"
104
+ :format="'yyyy-MM-dd 23:59:59'"
105
+ :show-reset-button="true"
106
+ condition="f_apply_date <= '{}'">
107
+ </datepicker>
108
+ </div>
109
+ <div class="form-group col-sm-4">
110
+ <label for="endDate" class="font_normal_body">收费日期:</label>
111
+ <datepicker id="f_charge_date" placeholder="收费日期"
112
+ style="width: 60%!important;"
113
+ v-model="model.f_charge_date"
114
+ :value.sync="model.f_charge_date"
115
+ :format="'yyyy-MM-dd'"
116
+ :show-reset-button="true"
117
+ condition="c.f_charge_date <= '{} 23:59:59' and c.f_charge_date >= '{} 00:00:00'">
118
+ </datepicker>
119
+ </div>
120
+ </div>
121
+ </div>
122
+ </criteria>
123
+ <data-grid :model="model" partial='list' v-ref:grid class="list_area table_sy">
124
+ <template partial='head'>
125
+ <tr>
126
+ <th>序号</th>
127
+ <th><div style="width:80px">流程操作</div></th>
128
+ <th>报建编号</th>
129
+ <th>当前环节</th>
130
+ <th>客户名称/联系人</th>
131
+ <th>合同编号</th>
132
+ <th>电话</th>
133
+ <th>地址</th>
134
+ <th>报建类型</th>
135
+ <th>报建日期</th>
136
+ </tr>
137
+ </template>
138
+ <template partial='body'>
139
+ <tr>
140
+ <td style="text-align: center;">
141
+ <nobr>{{$index+1}}</nobr>
142
+ </td>
143
+ <td style="text-align: center;">
144
+ <dropdown>
145
+ <button @click="$parent.$parent.$parent.checkfuncs(row)" type="button" data-toggle="dropdown" style="border: 0px;background: none;">
146
+ <span class="glyphicon glyphicon-th-list" style="position: inherit;"></span>
147
+ </button>
148
+ <ul slot="dropdown-menu" class="dropdown-menu dropdown-menu-right">
149
+ <li v-for="(index,func) in $parent.$parent.$parent.funcs">
150
+ <a href="#" @click="$parent.$parent.$parent.$parent.func(func,row)">{{func.title}}</a>
151
+ </li>
152
+ </ul>
153
+ </dropdown>
154
+ </td>
155
+ <td style="text-align: center;">
156
+ <nobr><font>{{row.f_apply_num}}</font></nobr>
157
+ </td>
158
+ <td style="text-align: center;">
159
+ <nobr>{{row.defname}}</nobr>
160
+ </td>
161
+ <td style="text-align: center;">
162
+ <nobr>{{row.f_user_name}}/{{row.f_contact}}</nobr>
163
+ </td>
164
+ <td style="text-align: center;">
165
+ <nobr>{{row.f_contract_number}}</nobr>
166
+ </td>
167
+ <td style="text-align: center;">
168
+ <nobr>{{row.f_phone}}</nobr>
169
+ </td>
170
+ <td style="text-align: center;">
171
+ <nobr>{{row.f_address}}</nobr>
172
+ </td>
173
+ <td style="text-align: center;">
174
+ <nobr>{{row.f_apply_type}}</nobr>
175
+ </td>
176
+ <td style="text-align: center;">
177
+ <nobr>{{row.f_apply_date}}</nobr>
178
+ </td>
179
+ </tr>
180
+ </template>
181
+ </data-grid>
182
+ </criteria-paged>
183
+ </div>
184
+ </template>
185
+ <script>
186
+ import {HttpResetClass} from 'vue-client'
187
+ import {PagedList} from 'vue-client'
188
+ export default {
189
+ title: '报建业务信息',
190
+ data () {
191
+ return {
192
+ // applytype: [{label: '全部', value: ''}, ...this.$appdata.getParam('报建类型')],
193
+ applytype: [{label:"全部",value:''}, {label:"集中报建",value:'集中报建'}, {label:"非民用报建",value:'非民用报建'},{label:"散户报建",value:'散户报建'}],
194
+ funcs: [],
195
+ defnames: [],
196
+ model: new PagedList('rs/sql/checkuserfunction', 20, {
197
+ data: {
198
+ id: this.$login.f.id,
199
+ org: this.$login.f.orgs
200
+ }
201
+ }),
202
+ criteriaShow: false, // 控制查询条件
203
+ area:[]
204
+ }
205
+ },
206
+ ready () {
207
+ // 调用查询
208
+ this.$refs.cp.$refs.cri.search()
209
+ this.getDefnames()
210
+ this.getAreaAll()
211
+ },
212
+ methods: {
213
+ loadPage () {
214
+ this.$dispatch('close')
215
+ },
216
+ clear () {
217
+ Object.keys(this.$refs.cp.$refs.cri.model).forEach((key) => {
218
+ this.$refs.cp.$refs.cri.model[key] = ''
219
+ })
220
+ },
221
+ // 获取配置
222
+ checkfuncs (row) {
223
+ this.funcs = this.$function_vue.functions
224
+ console.log("测试",this.funcs)
225
+ },
226
+ // 获取所有办理环节
227
+ getDefnames () {
228
+ let http = new HttpResetClass()
229
+ http.load('POST', 'rs/logic/getAllDefname', {}, {
230
+ resolveMsg: null,
231
+ rejectMsg: null
232
+ }).then((res) => {
233
+ this.defnames = [{label: '全部', value: ''}, ...res.data]
234
+ })
235
+ },
236
+ // 控制查询条件
237
+ hidden () {
238
+ this.$dispatch('hidden', this.criteriaShow)
239
+ this.criteriaShow = !this.criteriaShow
240
+ },
241
+ async getAreaAll () {
242
+ let http = new HttpResetClass()
243
+ let condition = "f_filialeid = " + this.$login.f.orgid
244
+ let res = await http.load('POST','rs/logic/apply_queryArea',{data:{condition:condition}}, {resolveMsg: null, rejectMsg: null})
245
+
246
+ this.area = res.data.queryArea.map(item => {
247
+ return {
248
+ 'label': item.f_residential_area,
249
+ 'value': item.f_residential_area,
250
+ }
251
+ })
252
+ },
253
+ // 关闭
254
+ close () {
255
+ this.$dispatch('close')
256
+ },
257
+ // 点击功能操作
258
+ func (func, row) {
259
+ this.$dispatch('func', func, row)
260
+ }
261
+ },
262
+ events: {
263
+ }
264
+ }
265
+ </script>
266
+ <style scoped>
267
+ .operate{
268
+ text-align: right;
269
+ display: flex;
270
+ align-items: center; /*子元素中线居中*/
271
+ justify-content: flex-end; /*子元素靠右*/
272
+ margin-top: 7px;
273
+ }
274
+ .head-but{
275
+ margin-left: 5px;
276
+ height: 34px;
277
+ background-color: #6aa6e2;
278
+ border-radius: 4px;
279
+ font-family: PingFang;
280
+ color: #ffffff;
281
+ }
282
+ </style>
@@ -25,11 +25,9 @@
25
25
  <div class="form-group col-sm-2 operate">
26
26
  <button type="button" class="btn btn-info head-but" @click="$parent.$parent.show = !$parent.$parent.show">工程发起</button>
27
27
  <button type="button" class="btn btn-info head-but" @click="search(),$parent.$parent.close()" v-el:cx>查询</button>
28
- <button class="button_search button_spacing" @click="$parent.$parent.loadPage()">返回</button>
29
- <button class="button_clear button_spacing" @click="$parent.$parent.clear()">清空</button>
30
- <button class="button_search button_spacing" @click="$parent.$parent.applySendAll()"
31
- style="margin-right: 9px">批量回访
32
- </button>
28
+ <button type="button" class="btn btn-info head-but" @click="$parent.$parent.loadPage()">返回</button>
29
+ <button type="button" class="btn btn-info head-but" @click="$parent.$parent.clear()">清空</button>
30
+ <button type="button" class="btn btn-info head-but" @click="$parent.$parent.applySendAll()" >批量回访</button>
33
31
  <div
34
32
  :class="{'button_shrink_top':$parent.$parent.criteriaShow,'button_shrink_bottom':!$parent.$parent.criteriaShow}"
35
33
  @click="$parent.$parent.hidden()"
@@ -283,7 +281,7 @@
283
281
  }
284
282
  },{resolveMsg:null,rejectMsg:null}).then(res=>{
285
283
  this.$showMessage("回访成功")
286
- this.$refs.cp.$refs.grid.load()
284
+ this.$refs.cp.$refs.cri.search()
287
285
  })
288
286
  },
289
287
  isChecked(v) {
@@ -75,6 +75,11 @@
75
75
  // 显示分页
76
76
  this.$refs.queryuser.$refs.cp.pager = true
77
77
  this.$refs.queryuser.$refs.cp.$refs.cri.search()
78
+ this.showtotal = false
79
+ this.topheight = '100%'
80
+ this.botheight = '0%'
81
+ this.$refs.queryuser.$refs.cp.pager = true
82
+ this.$refs.queryuser.$refs.cp.$refs.cri.search()
78
83
  },
79
84
  'onMessage' (data) {
80
85
  console.log('接收消息')
@@ -148,6 +153,7 @@
148
153
  },
149
154
  // 关闭详情页等
150
155
  'close' () {
156
+ debugger
151
157
  this.showtotal = false
152
158
  this.topheight = '100%'
153
159
  this.botheight = '0%'