apply-clients 3.4.89-23 → 3.4.89-24

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.
@@ -6,10 +6,10 @@ var proxyMiddleware = require('http-proxy-middleware')
6
6
  var app = express()
7
7
  var compiler = webpack(config)
8
8
  // var proxy = httpProxy.createProxyServer()
9
- // var ldap = 'http://221.193.244.147:8400'
10
- // var applyinstall = 'http://221.193.244.147:8400'
11
- var ldap = 'http://113.219.193.157:8100'
12
- var applyinstall = 'http://113.219.193.157:8100'
9
+ var ldap = 'http://221.193.244.147:8400'
10
+ var applyinstall = 'http://221.193.244.147:8400'
11
+ // var ldap = 'http://113.219.193.157:8100'
12
+ // var applyinstall = 'http://113.219.193.157:8100'
13
13
 
14
14
  var proxyTable = {
15
15
  '/webapps/applyinstall/excel': {
@@ -116,10 +116,10 @@ app.use(hotMiddleware)
116
116
  // serve pure static assets
117
117
  app.use('/static', express.static('./static'))
118
118
 
119
- module.exports = app.listen(8400, function (err) {
119
+ module.exports = app.listen(8300, function (err) {
120
120
  if (err) {
121
121
  console.log(err)
122
122
  return
123
123
  }
124
- console.log('Listening at http://localhost:8400')
124
+ console.log('Listening at http://localhost:8300')
125
125
  })
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "apply-clients",
3
- "version": "3.4.89-23",
3
+ "version": "3.4.89-24",
4
4
  "description": "报建前端模块",
5
5
  "main": "src/index.js",
6
6
  "directories": {
@@ -1,276 +1,276 @@
1
- <template>
2
- <div class="col-sm-12">
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-3">
8
- <label class="font_normal_body">报建类型:</label>
9
- <v-select
10
- v-model="model.f_apply_type"
11
- placeholder='报建类型'
12
- condition="f_apply_type = '{}'"
13
- :value.sync="model.f_apply_type"
14
- :options='$parent.$parent.applytype'
15
- class="select select_list"
16
- :value-single="true"
17
- @change="$parent.$parent.applyTypeChange()"
18
- close-on-select ></v-select>
19
- </div>
20
- <div class="form-group col-sm-3">
21
- <label class="font_normal_body">办理环节:</label>
22
- <v-select
23
- v-model="model.defname"
24
- placeholder='办理环节'
25
- condition="defname = '{}'"
26
- :value.sync="model.defname"
27
- :options='$parent.$parent.defnames'
28
- class="select select_list"
29
- :value-single="true"
30
- close-on-select ></v-select>
31
- </div>
32
-
33
- <div class="form-group col-sm-3">
34
- <label for="startDate" class="font_normal_body">办理时间:</label>
35
- <datepicker id="startDate" placeholder="开始日期"
36
- style="width: 60%!important;"
37
- v-model="model.startDate"
38
- :value.sync="model.startDate"
39
- :format="'yyyy-MM-dd 00:00:00'"
40
- :show-reset-button="true"
41
- condition="finishtime >= '{}'">
42
- </datepicker>
43
- </div>
44
- <div class="form-group col-sm-3">
45
- <label for="endDate" class="font_normal_body">办理时间:</label>
46
- <datepicker id="endDate" placeholder="结束日期"
47
- style="width: 60%!important;"
48
- v-model="model.endDate"
49
- :value.sync="model.endDate"
50
- :format="'yyyy-MM-dd 23:59:59'"
51
- :show-reset-button="true"
52
- condition="finishtime <= '{}'">
53
- </datepicker>
54
- </div>
55
- <div class="form-group col-sm-2 button-range">
56
- <button class="button_search button_spacing" @click="$parent.$parent.search()" v-el:cx>查询</button>
57
- <button class="button_clear button_spacing" @click="$parent.$parent.clear()">清空</button>
58
- <export-excel :data="$parent.$parent.getCondition"
59
- :field="$parent.$parent.getfield"
60
- sqlurl="rs/logic/applyExportfile"
61
- sql-name="getApplyDetailsList"
62
- template-name='报建明细导出'
63
- :choose-col="true"></export-excel>
64
- <div
65
- :class="{'button_shrink_top':$parent.$parent.criteriaShow,'button_shrink_bottom':!$parent.$parent.criteriaShow}"
66
- @click="$parent.$parent.criteriaShow = !$parent.$parent.criteriaShow"
67
- class="button_spacing"
68
- style="float: right">
69
- </div>
70
- </div>
71
- </div>
72
- <div class="row" v-show="$parent.$parent.criteriaShow">
73
- <div class="form-group col-sm-3">
74
- <label class="font_normal_body">客户名称:</label>
75
- <input type="text" style="width:60%" class="input_search" v-model="model.f_user_name"
76
- v-on:keyup.enter="$parent.$parent.search()" condition="f_user_name like '%{}%'" placeholder='客户名称'>
77
- </div>
78
- <div class="form-group col-sm-3">
79
- <label class="font_normal_body">用户编号:</label>
80
- <input type="text" style="width:60%" class="input_search" placeholder='用户编号' v-model="model.f_userinfo_code"
81
- v-on:keyup.enter="$parent.$parent.search()"
82
- condition="f_userinfo_code like '%{}%'">
83
- </div>
84
- <div class="form-group col-sm-3">
85
- <label class="font_normal_body">联系电话:</label>
86
- <input type="text" style="width:60%" class="input_search" placeholder='联系电话' v-model="model.f_phone"
87
- v-on:keyup.enter="search"
88
- condition="f_phone like '%{}%'">
89
- </div>
90
- <div class="form-group col-sm-3">
91
- <label class="font_normal_body">合同编号:</label>
92
- <input type="text" style="width:60%" class="input_search" placeholder='合同编号' v-model="model.f_contract_number"
93
- v-on:keyup.enter="search"
94
- condition="f_contract_number like '%{}%' ">
95
- </div>
96
- <div class="form-group col-sm-3">
97
- <label class="font_normal_body">用气性质:</label>
98
- <input type="text" style="width:60%" class="input_search" placeholder='用气性质' v-model="model.f_gas_nature"
99
- v-on:keyup.enter="search"
100
- condition="f_gas_nature like '%{}%' ">
101
- </div>
102
- <div class="form-group col-sm-3">
103
- <label class="font_normal_body">表号:</label>
104
- <input type="text" style="width:60%" class="input_search" placeholder='表号' v-model="model.f_meternumber"
105
- v-on:keyup.enter="search"
106
- condition="f_meternumber like '%{}%' ">
107
- </div>
108
- <div class="form-group col-sm-3">
109
- <label class="font_normal_body">组织机构:</label>
110
- <res-select
111
- restype='organization'
112
- :initresid='$parent.$parent.curorgid'
113
- @res-select="$parent.$parent.getorg"
114
- is-mul="false"
115
- ></res-select>
116
- </div>
117
- <div class="form-group col-sm-3">
118
- <label class="font_normal_body">报建性质:</label>
119
- <v-select
120
- v-model="model.f_apply_nature"
121
- placeholder='报建性质'
122
- condition="f_apply_nature = '{}'"
123
- :value.sync="model.f_apply_nature"
124
- :options='$parent.$parent.applyNatures'
125
- class="select select_list"
126
- :value-single="true"
127
- close-on-select ></v-select>
128
- </div>
129
- </div>
130
- </div>
131
- </criteria>
132
- <data-grid :model="model" partial='list' v-ref:grid class="list_area table_sy">
133
- <template partial='head'>
134
- <tr>
135
- <th style="white-space: nowrap;">序号</th>
136
- <th style="white-space: nowrap;">客户编号</th>
137
- <th style="white-space: nowrap;">客户名称</th>
138
- <th style="white-space: nowrap;">客户地址</th>
139
- <th style="white-space: nowrap;">客户电话</th>
140
- <th style="white-space: nowrap;">证件号码</th>
141
- <th style="white-space: nowrap;">合同编号</th>
142
- <th style="white-space: nowrap;">用气性质</th>
143
- <th style="white-space: nowrap;">表号</th>
144
- <th style="white-space: nowrap;">办理环节</th>
145
- <th style="white-space: nowrap;">办理人</th>
146
- <th style="white-space: nowrap;">办理时间</th>
147
- <th style="white-space: nowrap;">当前状态</th>
148
- </tr>
149
- </template>
150
- <template partial='body'>
151
- <tr>
152
- <td style="text-align: center;">
153
- <nobr>{{$index+1}}</nobr>
154
- </td>
155
- <td style="text-align: center;">
156
- <nobr>{{row.f_userinfo_code}}</nobr>
157
- </td>
158
- <td style="text-align: center;">
159
- <nobr>{{row.f_user_name}}</nobr>
160
- </td>
161
- <td style="text-align: center;">
162
- <nobr>{{row.f_address}}</nobr>
163
- </td>
164
- <td style="text-align: center;">
165
- <nobr>{{row.f_phone}}</nobr>
166
- </td>
167
- <td style="text-align: center;">
168
- <nobr>{{row.f_idnumber}}</nobr>
169
- </td>
170
- <td style="text-align: center;">
171
- <nobr>{{row.f_contract_number}}</nobr>
172
- </td>
173
- <td style="text-align: center;">
174
- <nobr>{{row.f_gas_nature}}</nobr>
175
- </td>
176
- <td style="text-align: center;">
177
- <nobr>{{row.f_meternumber}}</nobr>
178
- </td>
179
- <td style="text-align: center;">
180
- <nobr>{{row.defname}}</nobr>
181
- </td>
182
- <td style="text-align: center;">
183
- <nobr>{{row.person}}</nobr>
184
- </td>
185
- <td style="text-align: center;">
186
- <nobr>{{row.finishtime}}</nobr>
187
- </td>
188
- <td style="text-align: center;">
189
- <nobr>{{row.state}}</nobr>
190
- </td>
191
- </tr>
192
- </template>
193
- </data-grid>
194
- </criteria-paged>
195
- </div>
196
- </template>
197
- <script>
198
- import {PagedList} from 'vue-client'
199
- import {isEmpty} from '../../../components/Util'
200
- export default {
201
- title: '报建明细',
202
- data () {
203
- return {
204
- model: new PagedList('rs/sql/getApplyDetailsList', 20, {
205
- data: {
206
- orgid: this.$login.f.orgid
207
- }
208
- }),
209
- curorgid: [this.$login.f.orgid],
210
- applytype: [{label: '全部', value: ''}, ...this.$appdata.getParam('报建类型')],
211
- defnames: [{label: '全部', value: ''}], // 流程节点
212
- applyNatures: [{label: '全部', value: ''}], // 报建性质
213
- criteriaShow: false,
214
- getfield: {
215
- 'f_userinfo_code': '用户编号',
216
- 'f_user_name': '用户名称',
217
- 'f_phone': '用户电话',
218
- 'f_address': '用户地址',
219
- 'f_idnumber': '证件号码',
220
- 'f_contract_number': '合同编号',
221
- 'f_gas_nature': '用气性质',
222
- 'f_meternumber': '表号',
223
- 'person': '办理人',
224
- 'defname': '办理环节',
225
- 'finishtime': '办理时间',
226
- }
227
- }
228
- },
229
- ready () {
230
- // 调用查询
231
- this.search()
232
- },
233
- events: {
234
- },
235
- methods: {
236
- // 查询
237
- search () {
238
- this.$refs.cp.$refs.cri.search()
239
- },
240
- async applyTypeChange () {
241
- if (!isEmpty(this.$refs.cp.$refs.cri.model.f_apply_type)) {
242
- let res = await this.$resetpost('rs/logic/getDefnameByType',
243
- { f_apply_type: this.$refs.cp.$refs.cri.model.f_apply_type },
244
- {resolveMsg: null, rejectMsg: '节点信息获取失败!!!'}
245
- )
246
- this.defnames = [{label: '全部', value: ''}, ...res.data]
247
-
248
- this.applyNatures = isEmpty(this.$appdata.getParam(`${this.$refs.cp.$refs.cri.model.f_apply_type}性质`)) ? [{label: '全部', value: ''}] : [{label: '全部', value: ''}, ...this.$appdata.getParam(`${this.$refs.cp.$refs.cri.model.f_apply_type}性质`)]
249
- } else {
250
- this.defnames = [{label: '全部', value: ''}]
251
- this.applyNatures = [{label: '全部', value: ''}]
252
- }
253
- },
254
- clear () {
255
- Object.keys(this.$refs.cp.$refs.cri.model).forEach((key) => {
256
- this.$refs.cp.$refs.cri.model[key] = null
257
- })
258
- },
259
- getorg (val) {
260
- if (val.length <= 0) {
261
- return
262
- }
263
- this.model.params.data.orgid = val[0]
264
- }
265
- },
266
- computed: {
267
- getCondition () {
268
- return {
269
- condition: this.model.condition
270
- }
271
- }
272
- }
273
- }
274
- </script>
275
- <style scoped>
276
- </style>
1
+ <template>
2
+ <div class="col-sm-12">
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-3">
8
+ <label class="font_normal_body">报建类型:</label>
9
+ <v-select
10
+ v-model="model.f_apply_type"
11
+ placeholder='报建类型'
12
+ condition="f_apply_type = '{}'"
13
+ :value.sync="model.f_apply_type"
14
+ :options='$parent.$parent.applytype'
15
+ class="select select_list"
16
+ :value-single="true"
17
+ @change="$parent.$parent.applyTypeChange()"
18
+ close-on-select ></v-select>
19
+ </div>
20
+ <div class="form-group col-sm-3">
21
+ <label class="font_normal_body">办理环节:</label>
22
+ <v-select
23
+ v-model="model.defname"
24
+ placeholder='办理环节'
25
+ condition="defname = '{}'"
26
+ :value.sync="model.defname"
27
+ :options='$parent.$parent.defnames'
28
+ class="select select_list"
29
+ :value-single="true"
30
+ close-on-select ></v-select>
31
+ </div>
32
+
33
+ <div class="form-group col-sm-3">
34
+ <label for="startDate" class="font_normal_body">办理时间:</label>
35
+ <datepicker id="startDate" placeholder="开始日期"
36
+ style="width: 60%!important;"
37
+ v-model="model.startDate"
38
+ :value.sync="model.startDate"
39
+ :format="'yyyy-MM-dd 00:00:00'"
40
+ :show-reset-button="true"
41
+ condition="finishtime >= '{}'">
42
+ </datepicker>
43
+ </div>
44
+ <div class="form-group col-sm-3">
45
+ <label for="endDate" class="font_normal_body">办理时间:</label>
46
+ <datepicker id="endDate" placeholder="结束日期"
47
+ style="width: 60%!important;"
48
+ v-model="model.endDate"
49
+ :value.sync="model.endDate"
50
+ :format="'yyyy-MM-dd 23:59:59'"
51
+ :show-reset-button="true"
52
+ condition="finishtime <= '{}'">
53
+ </datepicker>
54
+ </div>
55
+ <div class="form-group col-sm-2 button-range">
56
+ <button class="button_search button_spacing" @click="$parent.$parent.search()" v-el:cx>查询</button>
57
+ <button class="button_clear button_spacing" @click="$parent.$parent.clear()">清空</button>
58
+ <export-excel :data="$parent.$parent.getCondition"
59
+ :field="$parent.$parent.getfield"
60
+ sqlurl="rs/logic/applyExportfile"
61
+ sql-name="getApplyDetailsList"
62
+ template-name='报建明细导出'
63
+ :choose-col="true"></export-excel>
64
+ <div
65
+ :class="{'button_shrink_top':$parent.$parent.criteriaShow,'button_shrink_bottom':!$parent.$parent.criteriaShow}"
66
+ @click="$parent.$parent.criteriaShow = !$parent.$parent.criteriaShow"
67
+ class="button_spacing"
68
+ style="float: right">
69
+ </div>
70
+ </div>
71
+ </div>
72
+ <div class="row" v-show="$parent.$parent.criteriaShow">
73
+ <div class="form-group col-sm-3">
74
+ <label class="font_normal_body">客户名称:</label>
75
+ <input type="text" style="width:60%" class="input_search" v-model="model.f_user_name"
76
+ v-on:keyup.enter="$parent.$parent.search()" condition="f_user_name like '%{}%'" placeholder='客户名称'>
77
+ </div>
78
+ <div class="form-group col-sm-3">
79
+ <label class="font_normal_body">用户编号:</label>
80
+ <input type="text" style="width:60%" class="input_search" placeholder='用户编号' v-model="model.f_userinfo_code"
81
+ v-on:keyup.enter="$parent.$parent.search()"
82
+ condition="f_userinfo_code like '%{}%'">
83
+ </div>
84
+ <div class="form-group col-sm-3">
85
+ <label class="font_normal_body">联系电话:</label>
86
+ <input type="text" style="width:60%" class="input_search" placeholder='联系电话' v-model="model.f_phone"
87
+ v-on:keyup.enter="search"
88
+ condition="f_phone like '%{}%'">
89
+ </div>
90
+ <div class="form-group col-sm-3">
91
+ <label class="font_normal_body">合同编号:</label>
92
+ <input type="text" style="width:60%" class="input_search" placeholder='合同编号' v-model="model.f_contract_number"
93
+ v-on:keyup.enter="search"
94
+ condition="f_contract_number like '%{}%' ">
95
+ </div>
96
+ <div class="form-group col-sm-3">
97
+ <label class="font_normal_body">用气性质:</label>
98
+ <input type="text" style="width:60%" class="input_search" placeholder='用气性质' v-model="model.f_gas_nature"
99
+ v-on:keyup.enter="search"
100
+ condition="f_gas_nature like '%{}%' ">
101
+ </div>
102
+ <div class="form-group col-sm-3">
103
+ <label class="font_normal_body">表号:</label>
104
+ <input type="text" style="width:60%" class="input_search" placeholder='表号' v-model="model.f_meternumber"
105
+ v-on:keyup.enter="search"
106
+ condition="f_meternumber like '%{}%' ">
107
+ </div>
108
+ <div class="form-group col-sm-3">
109
+ <label class="font_normal_body">组织机构:</label>
110
+ <res-select
111
+ restype='organization'
112
+ :initresid='$parent.$parent.curorgid'
113
+ @res-select="$parent.$parent.getorg"
114
+ is-mul="false"
115
+ ></res-select>
116
+ </div>
117
+ <div class="form-group col-sm-3">
118
+ <label class="font_normal_body">报建性质:</label>
119
+ <v-select
120
+ v-model="model.f_apply_nature"
121
+ placeholder='报建性质'
122
+ condition="f_apply_nature = '{}'"
123
+ :value.sync="model.f_apply_nature"
124
+ :options='$parent.$parent.applyNatures'
125
+ class="select select_list"
126
+ :value-single="true"
127
+ close-on-select ></v-select>
128
+ </div>
129
+ </div>
130
+ </div>
131
+ </criteria>
132
+ <data-grid :model="model" partial='list' v-ref:grid class="list_area table_sy">
133
+ <template partial='head'>
134
+ <tr>
135
+ <th style="white-space: nowrap;">序号</th>
136
+ <th style="white-space: nowrap;">客户编号</th>
137
+ <th style="white-space: nowrap;">客户名称</th>
138
+ <th style="white-space: nowrap;">客户地址</th>
139
+ <th style="white-space: nowrap;">客户电话</th>
140
+ <th style="white-space: nowrap;">证件号码</th>
141
+ <th style="white-space: nowrap;">合同编号</th>
142
+ <th style="white-space: nowrap;">用气性质</th>
143
+ <th style="white-space: nowrap;">表号</th>
144
+ <th style="white-space: nowrap;">办理环节</th>
145
+ <th style="white-space: nowrap;">办理人</th>
146
+ <th style="white-space: nowrap;">办理时间</th>
147
+ <th style="white-space: nowrap;">当前状态</th>
148
+ </tr>
149
+ </template>
150
+ <template partial='body'>
151
+ <tr>
152
+ <td style="text-align: center;">
153
+ <nobr>{{$index+1}}</nobr>
154
+ </td>
155
+ <td style="text-align: center;">
156
+ <nobr>{{row.f_userinfo_code}}</nobr>
157
+ </td>
158
+ <td style="text-align: center;">
159
+ <nobr>{{row.f_user_name}}</nobr>
160
+ </td>
161
+ <td style="text-align: center;">
162
+ <nobr>{{row.f_address}}</nobr>
163
+ </td>
164
+ <td style="text-align: center;">
165
+ <nobr>{{row.f_phone}}</nobr>
166
+ </td>
167
+ <td style="text-align: center;">
168
+ <nobr>{{row.f_idnumber}}</nobr>
169
+ </td>
170
+ <td style="text-align: center;">
171
+ <nobr>{{row.f_contract_number}}</nobr>
172
+ </td>
173
+ <td style="text-align: center;">
174
+ <nobr>{{row.f_gas_nature}}</nobr>
175
+ </td>
176
+ <td style="text-align: center;">
177
+ <nobr>{{row.f_meternumber}}</nobr>
178
+ </td>
179
+ <td style="text-align: center;">
180
+ <nobr>{{row.defname}}</nobr>
181
+ </td>
182
+ <td style="text-align: center;">
183
+ <nobr>{{row.person}}</nobr>
184
+ </td>
185
+ <td style="text-align: center;">
186
+ <nobr>{{row.finishtime}}</nobr>
187
+ </td>
188
+ <td style="text-align: center;">
189
+ <nobr>{{row.state}}</nobr>
190
+ </td>
191
+ </tr>
192
+ </template>
193
+ </data-grid>
194
+ </criteria-paged>
195
+ </div>
196
+ </template>
197
+ <script>
198
+ import {PagedList} from 'vue-client'
199
+ import {isEmpty} from '../../../components/Util'
200
+ export default {
201
+ title: '报建明细',
202
+ data () {
203
+ return {
204
+ model: new PagedList('rs/sql/getApplyDetailsList', 20, {
205
+ data: {
206
+ orgid: this.$login.f.orgid
207
+ }
208
+ }),
209
+ curorgid: [this.$login.f.orgid],
210
+ applytype: [{label: '全部', value: ''}, ...this.$appdata.getParam('报建类型')],
211
+ defnames: [{label: '全部', value: ''}], // 流程节点
212
+ applyNatures: [{label: '全部', value: ''}], // 报建性质
213
+ criteriaShow: false,
214
+ getfield: {
215
+ 'f_userinfo_code': '用户编号',
216
+ 'f_user_name': '用户名称',
217
+ 'f_phone': '用户电话',
218
+ 'f_address': '用户地址',
219
+ 'f_idnumber': '证件号码',
220
+ 'f_contract_number': '合同编号',
221
+ 'f_gas_nature': '用气性质',
222
+ 'f_meternumber': '表号',
223
+ 'person': '办理人',
224
+ 'defname': '办理环节',
225
+ 'finishtime': '办理时间',
226
+ }
227
+ }
228
+ },
229
+ ready () {
230
+ // 调用查询
231
+ this.search()
232
+ },
233
+ events: {
234
+ },
235
+ methods: {
236
+ // 查询
237
+ search () {
238
+ this.$refs.cp.$refs.cri.search()
239
+ },
240
+ async applyTypeChange () {
241
+ if (!isEmpty(this.$refs.cp.$refs.cri.model.f_apply_type)) {
242
+ let res = await this.$resetpost('rs/logic/getDefnameByType',
243
+ { f_apply_type: this.$refs.cp.$refs.cri.model.f_apply_type },
244
+ {resolveMsg: null, rejectMsg: '节点信息获取失败!!!'}
245
+ )
246
+ this.defnames = [{label: '全部', value: ''}, ...res.data]
247
+
248
+ this.applyNatures = isEmpty(this.$appdata.getParam(`${this.$refs.cp.$refs.cri.model.f_apply_type}性质`)) ? [{label: '全部', value: ''}] : [{label: '全部', value: ''}, ...this.$appdata.getParam(`${this.$refs.cp.$refs.cri.model.f_apply_type}性质`)]
249
+ } else {
250
+ this.defnames = [{label: '全部', value: ''}]
251
+ this.applyNatures = [{label: '全部', value: ''}]
252
+ }
253
+ },
254
+ clear () {
255
+ Object.keys(this.$refs.cp.$refs.cri.model).forEach((key) => {
256
+ this.$refs.cp.$refs.cri.model[key] = null
257
+ })
258
+ },
259
+ getorg (val) {
260
+ if (val.length <= 0) {
261
+ return
262
+ }
263
+ this.model.params.data.orgid = val[0]
264
+ }
265
+ },
266
+ computed: {
267
+ getCondition () {
268
+ return {
269
+ condition: this.model.condition
270
+ }
271
+ }
272
+ }
273
+ }
274
+ </script>
275
+ <style scoped>
276
+ </style>