sale-client 3.6.508 → 3.6.509
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
|
@@ -187,13 +187,13 @@
|
|
|
187
187
|
</div>
|
|
188
188
|
<div class="col-sm-2 form-group">
|
|
189
189
|
<label class="font_normal_body">使用类型</label>
|
|
190
|
-
<v-select :value.sync="model.
|
|
191
|
-
v-model="model.
|
|
192
|
-
:options='
|
|
193
|
-
placeholder='
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
>
|
|
190
|
+
<v-select :value.sync="model.f_usetype"
|
|
191
|
+
v-model="model.f_usetype"
|
|
192
|
+
:options='$parent.$parent.usetype'
|
|
193
|
+
placeholder='使用类型'
|
|
194
|
+
style="width:60%"
|
|
195
|
+
close-on-select
|
|
196
|
+
condition="f_usetype = '{}'">
|
|
197
197
|
</v-select>
|
|
198
198
|
</div>
|
|
199
199
|
<res-select-group :show-component="['company','department','operator']" :initres="$parent.$parent.initres"
|
|
@@ -521,7 +521,8 @@ export default {
|
|
|
521
521
|
'f_actualtablebase': '实际用量',
|
|
522
522
|
'f_img_path': '附件查看',
|
|
523
523
|
'f_sign_img': '签章图片',
|
|
524
|
-
'f_meter_state': '状态'
|
|
524
|
+
'f_meter_state': '状态',
|
|
525
|
+
'f_usetype': '使用类型'
|
|
525
526
|
},
|
|
526
527
|
meterbrands: [{label: '全部', value: ''}],
|
|
527
528
|
upshow: false,
|
|
@@ -813,7 +814,7 @@ export default {
|
|
|
813
814
|
usertypes () {
|
|
814
815
|
return [{label: '全部', value: ''}, ...this.$appdata.getParam('用户类型')]
|
|
815
816
|
},
|
|
816
|
-
|
|
817
|
+
usetype () {
|
|
817
818
|
return [{label: '全部', value: ''}, ...this.$appdata.getParam('使用类型')]
|
|
818
819
|
},
|
|
819
820
|
userlevels () {
|