manage-client 3.3.193 → 3.3.195
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/sale/businessquery/ArrearsQuery.vue +6 -0
- package/src/components/sale/businessquery/FillGasQuery.vue +1 -0
- package/src/filiale/meihekou/YingShouMingXi.vue +556 -556
- package/src/filiale/taizhoukesi/config/exportConfig.js +521 -188
- package/src/filiale/yuncheng/LostContactAnalysisList.vue +3 -5
- package/src/filiale/yuncheng/config/exportConfig.js +2058 -598
package/package.json
CHANGED
|
@@ -295,6 +295,9 @@
|
|
|
295
295
|
<th>
|
|
296
296
|
<nobr>用户证号</nobr>
|
|
297
297
|
</th>
|
|
298
|
+
<th>
|
|
299
|
+
<nobr>身份证号</nobr>
|
|
300
|
+
</th>
|
|
298
301
|
<th>
|
|
299
302
|
<nobr>册内序号</nobr>
|
|
300
303
|
</th>
|
|
@@ -401,6 +404,9 @@
|
|
|
401
404
|
<td style="text-align: center;">
|
|
402
405
|
<nobr>{{ row.f_book_no }}</nobr>
|
|
403
406
|
</td>
|
|
407
|
+
<td style="text-align: center;">
|
|
408
|
+
<nobr>{{ row.f_idnumber }}</nobr>
|
|
409
|
+
</td>
|
|
404
410
|
<td style="text-align: center;">
|
|
405
411
|
<nobr>{{ row.f_meter_book_sort }}</nobr>
|
|
406
412
|
</td>
|
|
@@ -114,6 +114,7 @@
|
|
|
114
114
|
<label class="font_normal_body">气价名称</label>
|
|
115
115
|
<v-select :value.sync="model.f_price_name"
|
|
116
116
|
v-model="model.f_price_name"
|
|
117
|
+
multiple
|
|
117
118
|
:options="$parent.$parent.pricenames" placeholder='气价名称'
|
|
118
119
|
condition="f_price_name in {}"
|
|
119
120
|
></v-select>
|