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.
@@ -0,0 +1,7 @@
1
+ // 分公司特殊组件页面注册
2
+ let specialComp = {
3
+ // 收费查询
4
+ 'charge-query': (resolve) => { require(['./ChargeQuery'], resolve) },
5
+ }
6
+ exports.specialComp = specialComp
7
+
@@ -171,7 +171,7 @@
171
171
 
172
172
  <script>
173
173
  import {HttpResetClass, PagedList} from 'vue-client'
174
- import exportConfig from '../../components/sale/config/exportConfig'
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.f_type"
107
+ <v-select v-model="model.f_type1"
108
108
  multiple
109
109
  placeholder='请选择'
110
- condition="f_type in {}"
111
- :value.sync="model.f_type"
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>