sale-client 3.6.387 → 3.6.388-2
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 +1 -1
- package/src/components/common/userinfo_detail/ic_detail/ChargeQueryUser.vue +12 -1
- package/src/components/common/userinfo_detail/ic_detail/RecordQueryUser.vue +13 -2
- package/src/components/common/userinfo_detail/ic_detail/WebChargeQueryUser.vue +12 -1
- package/src/components/revenue/comprehen/Maintenance/otherRecords/otherChargeAudit.vue +839 -0
- package/src/filiale/fugou/components/revenue/base/rightview/CardList.vue +526 -0
- package/src/filiale/gehua/WebMeterList.vue +1 -1
- package/src/filiale/jingyang/charge/ChargeList.vue +8 -8
- package/.gradle/5.2.1/fileChanges/last-build.bin +0 -0
- package/.gradle/5.2.1/fileHashes/fileHashes.lock +0 -0
- package/.gradle/5.2.1/gc.properties +0 -0
- package/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
- package/.gradle/buildOutputCleanup/cache.properties +0 -2
- package/.gradle/vcs-1/gc.properties +0 -0
package/package.json
CHANGED
|
@@ -41,7 +41,14 @@
|
|
|
41
41
|
close-on-select
|
|
42
42
|
condition="f_type = '{}'"></v-select>
|
|
43
43
|
</div>
|
|
44
|
-
|
|
44
|
+
<div class="col-sm-2 form-group">
|
|
45
|
+
<label class="font_normal_body">表具状态</label>
|
|
46
|
+
<v-select :value.sync="model.f_table_state" v-model='model.f_table_state'
|
|
47
|
+
style="width:60%"
|
|
48
|
+
:options='$parent.$parent.tablestates' placeholder='表具状态'
|
|
49
|
+
close-on-select
|
|
50
|
+
condition="f_table_state = '{}'"></v-select>
|
|
51
|
+
</div>
|
|
45
52
|
<div style="float: right">
|
|
46
53
|
<button @click="search()" class="button_search" style="margin-right: 10px" v-el:cba>查询</button>
|
|
47
54
|
<export-excel :data="$parent.$parent.getCondition" :footer="$parent.$parent.footer"
|
|
@@ -248,6 +255,10 @@ export default {
|
|
|
248
255
|
label: '全部',
|
|
249
256
|
value: ''
|
|
250
257
|
}, ...this.$appdata.getParam('收费类型')] : [],
|
|
258
|
+
tablestates: this.$appdata.getParam('表具状态') ? [{
|
|
259
|
+
label: '全部',
|
|
260
|
+
value: ''
|
|
261
|
+
}, ...this.$appdata.getParam('表具状态')] : [],
|
|
251
262
|
// 控制单选
|
|
252
263
|
radio: [],
|
|
253
264
|
searchValue: this.$appdata.getSingleValue('综合条件查询') ? this.$appdata.getSingleValue('综合条件查询') : 'f_userfiles_id',
|
|
@@ -35,6 +35,14 @@
|
|
|
35
35
|
close-on-select
|
|
36
36
|
condition="f_state = '{}'"></v-select>
|
|
37
37
|
</div>
|
|
38
|
+
<div class="col-sm-2 form-group">
|
|
39
|
+
<label class="font_normal_body">表具状态</label>
|
|
40
|
+
<v-select :value.sync="model.f_table_state" v-model='model.f_table_state'
|
|
41
|
+
style="width:60%"
|
|
42
|
+
:options='$parent.$parent.istablestates' placeholder='表具状态'
|
|
43
|
+
close-on-select
|
|
44
|
+
condition="f_table_state = '{}'"></v-select>
|
|
45
|
+
</div>
|
|
38
46
|
|
|
39
47
|
|
|
40
48
|
<div style="float: right">
|
|
@@ -91,8 +99,7 @@
|
|
|
91
99
|
</div>
|
|
92
100
|
<table class="table-hover">
|
|
93
101
|
<tr class="table-bordered" style="position: relative">
|
|
94
|
-
<td
|
|
95
|
-
style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;color: #5CB95C;font-weight: bold">
|
|
102
|
+
<td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;color: #5CB95C;font-weight: bold">
|
|
96
103
|
汇总信息
|
|
97
104
|
</td>
|
|
98
105
|
<td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px">
|
|
@@ -123,6 +130,10 @@
|
|
|
123
130
|
label: '全部',
|
|
124
131
|
value: ''
|
|
125
132
|
}, ...this.$appdata.getParam('是否有效')] : [],
|
|
133
|
+
istablestates: this.$appdata.getParam('表具状态') ? [{
|
|
134
|
+
label: '全部',
|
|
135
|
+
value: ''
|
|
136
|
+
}, ...this.$appdata.getParam('表具状态')] : [],
|
|
126
137
|
// 控制单选
|
|
127
138
|
radio: [],
|
|
128
139
|
searchValue: this.$appdata.getSingleValue('综合条件查询') ? this.$appdata.getSingleValue('综合条件查询') : 'f_userfiles_id',
|
|
@@ -41,7 +41,14 @@
|
|
|
41
41
|
close-on-select
|
|
42
42
|
condition="f_type = '{}'"></v-select>
|
|
43
43
|
</div>
|
|
44
|
-
|
|
44
|
+
<div class="col-sm-2 form-group">
|
|
45
|
+
<label class="font_normal_body">表具状态</label>
|
|
46
|
+
<v-select :value.sync="model.f_table_state" v-model='model.f_table_state'
|
|
47
|
+
style="width:60%"
|
|
48
|
+
:options='$parent.$parent.tablestates' placeholder='表具状态'
|
|
49
|
+
close-on-select
|
|
50
|
+
condition="f_table_state = '{}'"></v-select>
|
|
51
|
+
</div>
|
|
45
52
|
<div style="float: right">
|
|
46
53
|
<button @click="search()" class="button_search" style="margin-right: 10px" v-el:cba>查询</button>
|
|
47
54
|
<print-data :defaultfield="$parent.$parent.defaultfield" :field="$parent.$parent.isIot?$parent.$parent.iotFields:$parent.$parent.fields" :is-selected="true" :model="$parent.$parent.printModel"
|
|
@@ -187,6 +194,10 @@
|
|
|
187
194
|
label: '全部',
|
|
188
195
|
value: ''
|
|
189
196
|
}, ...this.$appdata.getParam('收费类型')] : [],
|
|
197
|
+
tablestates: this.$appdata.getParam('表具状态') ? [{
|
|
198
|
+
label: '全部',
|
|
199
|
+
value: ''
|
|
200
|
+
}, ...this.$appdata.getParam('表具状态')] : [],
|
|
190
201
|
// 控制单选
|
|
191
202
|
radio: [],
|
|
192
203
|
// 选中的页
|