manage-client 3.3.159 → 3.3.160
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
|
@@ -255,20 +255,20 @@
|
|
|
255
255
|
<input type="text" style="width:60%" class="input_search" v-model="model.f_userfiles_address"
|
|
256
256
|
condition="f_userfiles_address like '%{}%'" placeholder="用气点">
|
|
257
257
|
</div>
|
|
258
|
+
<div class="col-sm-2 form-group">
|
|
259
|
+
<label class="font_normal_body">用气性质</label>
|
|
260
|
+
<v-select :value.sync="model.f_gasproperties" v-model="model.f_gasproperties"
|
|
261
|
+
:options='$parent.$parent.gasproperties' placeholder='请选择' multiple
|
|
262
|
+
condition="f_gasproperties in {}"
|
|
263
|
+
></v-select>
|
|
264
|
+
</div>
|
|
258
265
|
<!-- <div class="col-sm-2 form-group">-->
|
|
259
266
|
<!-- <label class="font_normal_body">用气性质</label>-->
|
|
260
267
|
<!-- <v-select :value.sync="model.f_gasproperties" v-model="model.f_gasproperties"-->
|
|
261
268
|
<!-- :options='$parent.$parent.gasproperties' placeholder='请选择'-->
|
|
262
|
-
<!-- condition="f_gasproperties
|
|
263
|
-
<!-- ></v-select>-->
|
|
269
|
+
<!-- condition="f_gasproperties = '{}'"-->
|
|
270
|
+
<!-- close-on-select></v-select>-->
|
|
264
271
|
<!-- </div>-->
|
|
265
|
-
<div class="col-sm-2 form-group">
|
|
266
|
-
<label class="font_normal_body">用气性质</label>
|
|
267
|
-
<v-select :value.sync="model.f_gasproperties" v-model="model.f_gasproperties"
|
|
268
|
-
:options='$parent.$parent.gasproperties' placeholder='请选择'
|
|
269
|
-
condition="f_gasproperties = '{}'"
|
|
270
|
-
close-on-select></v-select>
|
|
271
|
-
</div>
|
|
272
272
|
<div class="col-sm-2 form-group">
|
|
273
273
|
<label class="font_normal_body">气价类型</label>
|
|
274
274
|
<v-select :value.sync="model.pricetype" v-model="model.pricetype"
|
|
@@ -488,6 +488,11 @@
|
|
|
488
488
|
condition="f_network_valve='{}'">
|
|
489
489
|
</v-select>
|
|
490
490
|
</div>
|
|
491
|
+
<div class="col-sm-2 form-group" >
|
|
492
|
+
<label class="font_normal_body">备注信息</label>
|
|
493
|
+
<input type="text" style="width:60%" class="input_search" v-model="model.f_comments"
|
|
494
|
+
condition="f_comments like '%{}%'" placeholder='备注信息'>
|
|
495
|
+
</div>
|
|
491
496
|
</div>
|
|
492
497
|
</div>
|
|
493
498
|
</criteria>
|
|
@@ -1198,7 +1203,7 @@
|
|
|
1198
1203
|
userTypeChange () {
|
|
1199
1204
|
this.gasproperties=[]
|
|
1200
1205
|
if(this.$refs.paged.$refs.cri.model !==null) {
|
|
1201
|
-
this.$refs.paged.$refs.cri.model.f_gasproperties=
|
|
1206
|
+
this.$refs.paged.$refs.cri.model.f_gasproperties=[]
|
|
1202
1207
|
this.gasproperties = this.$appdata.getParam(this.$refs.paged.$refs.cri.model.f_user_type[0])
|
|
1203
1208
|
// this.gasproperties.push({label: '全部', value: ''})
|
|
1204
1209
|
}
|
|
@@ -108,7 +108,7 @@ export default{
|
|
|
108
108
|
'f_userinfo_code': '用户编号', 'f_user_name': '用户名称', 'f_pregas': '气量', 'f_collection': '收款', 'f_stairamount1': '一阶气量', 'f_stair2amount': '二阶气量', 'f_stair3amount': '三阶气量'
|
|
109
109
|
},
|
|
110
110
|
otherexportConfig: {
|
|
111
|
-
'f_userinfo_code': '用户编号', 'f_user_name': '用户名称', 'f_address': '用户地址', 'id': '收费编号', 'f_typename': '品名规格', 'f_unitprice': '单价', 'f_number': '数量', 'f_payment': '付款方式', 'f_operate_date': '收费日期'
|
|
111
|
+
'f_userinfo_code': '用户编号', 'f_user_name': '用户名称', 'f_address': '用户地址', 'f_user_phone': '用户电话','id': '收费编号', 'f_typename': '品名规格', 'f_unitprice': '单价', 'f_number': '数量', 'f_payment': '付款方式', 'f_operate_date': '收费日期'
|
|
112
112
|
},
|
|
113
113
|
loginQueryexportConfig: {
|
|
114
114
|
'f_userinfo_id': '登录人编号','f_user_name': '登录人名称', 'logindate': '登录时间', 'type': '类型'
|