manage-client 3.2.180 → 3.2.182
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/build/dev-server.js +8 -2
- package/package.json +1 -1
- package/src/components/sale/businessquery/ArrearsQuery.vue +12 -5
- package/src/components/sale/config/exportConfig.js +1 -1
- package/src/filiale/gehua/ChargeQuery.vue +1309 -0
- package/src/filiale/gehua/sale.js +7 -0
- package/src/filiale/kelai/AreaChargeQuery.vue +1 -1
- package/src/filiale/kelai/exportConfig.js +1 -1
- package/src/filiale/meihekou/YingShouMingXi.vue +3 -3
- package/src/filiale/qianneng/RecordInfoQuery.vue +1287 -0
- package/src/filiale/qianneng/exportConfig.js +22 -0
- package/src/filiale/qianneng/sale.js +3 -1
- package/src/filiale/tongchuan/ChargeQuery.vue +1 -1
- package/src/filiale/tongchuan/config/exportConfig.js +1 -1
- package/src/filiale/zhongyi/FillCardQuery.vue +581 -0
- package/src/filiale/zhongyi/GasStatistics.vue +22 -0
- package/src/filiale/zhongyi/LostContactAnalysisList.vue +650 -0
- package/src/filiale/zhongyi/exportConfig.js +1080 -0
- package/src/filiale/zhongyi/sale.js +2 -3
- package/src/filiale/zhongyi/webmeterManage.js +12 -0
- package/yarn-error.log +0 -7659
|
@@ -171,7 +171,7 @@
|
|
|
171
171
|
|
|
172
172
|
<script>
|
|
173
173
|
import {HttpResetClass, PagedList} from 'vue-client'
|
|
174
|
-
import exportConfig from '
|
|
174
|
+
import exportConfig from './exportConfig'
|
|
175
175
|
|
|
176
176
|
let readySomething = async function (self) {
|
|
177
177
|
self.$refs.paged.$refs.cri.model.startDate = self.$login.toStandardDateString() + ' 00:00:00'
|
|
@@ -171,7 +171,7 @@ export default{
|
|
|
171
171
|
'f_oughtfee_all': '合计欠费金额','f_oughtfee_col': '实际欠费金额', 'f_cost_type': '缴费方式', 'f_meter_type': '气表类型'
|
|
172
172
|
},
|
|
173
173
|
areaChargeQueryConfig: {
|
|
174
|
-
'f_residential_area': '小区','f_price': '单价','f_gas': '购气方量','f_money': '
|
|
174
|
+
'f_residential_area': '小区','f_price': '单价','f_households': '户数','f_gas': '购气方量','f_preamount': '购气应收金额','f_money': '购气实收金额'
|
|
175
175
|
},
|
|
176
176
|
arrearsGYConfig: {
|
|
177
177
|
'f_userinfo_code': '客户编号', 'f_user_name': '客户名称', 'f_meternumber': '表号', 'f_residential_area': '小区名称', 'f_address': '客户地址',
|
|
@@ -104,11 +104,11 @@
|
|
|
104
104
|
</div>
|
|
105
105
|
<div class="col-sm-2 form-group">
|
|
106
106
|
<label class="font_normal_body">收费类型</label>
|
|
107
|
-
<v-select v-model="model.
|
|
107
|
+
<v-select v-model="model.f_type1"
|
|
108
108
|
multiple
|
|
109
109
|
placeholder='请选择'
|
|
110
|
-
condition="
|
|
111
|
-
:value.sync="model.
|
|
110
|
+
condition="f_type1 in {}"
|
|
111
|
+
:value.sync="model.f_type1"
|
|
112
112
|
:options='$parent.$parent.chargetype'
|
|
113
113
|
close-on-select clear-button></v-select>
|
|
114
114
|
</div>
|