manage-client 3.2.215 → 3.2.216

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "manage-client",
3
- "version": "3.2.215",
3
+ "version": "3.2.216",
4
4
  "description": "经营管控模块前台组件",
5
5
  "main": "src/index.js",
6
6
  "directories": {
@@ -92,6 +92,7 @@
92
92
  <v-select :value.sync="model.f_meter_brand"
93
93
  v-model="model.f_meter_brand"
94
94
  :options="$parent.$parent.meterbrands"
95
+ @change="$parent.$parent.meterBrandChange"
95
96
  condition="br.f_meter_brand = '{}'"
96
97
  close-on-select></v-select>
97
98
  </div>
@@ -143,6 +144,12 @@
143
144
  <th><nobr>表内剩余金额</nobr></th>
144
145
  <th><nobr>表内单价</nobr></th>
145
146
  <th><nobr>本次抄表底数</nobr></th>
147
+ <th v-show="$parent.$parent.$parent.isShow"><nobr>流量计标况累计量</nobr></th>
148
+ <th v-show="$parent.$parent.$parent.isShow"><nobr>流量计工况累计量</nobr></th>
149
+ <th v-show="$parent.$parent.$parent.isShow"><nobr>流量计瞬时用气量(标况)</nobr></th>
150
+ <th v-show="$parent.$parent.$parent.isShow"><nobr>流量计瞬时用气量(工况)</nobr></th>
151
+ <th v-show="$parent.$parent.$parent.isShow"><nobr>流量计温度</nobr></th>
152
+ <th v-show="$parent.$parent.$parent.isShow"><nobr>流量计压力</nobr></th>
146
153
  <th><nobr>阀门状态</nobr></th>
147
154
 
148
155
  <th><nobr>上报类型</nobr></th>
@@ -169,6 +176,12 @@
169
176
  <th style="text-align:center"><nobr>{{row.f_jval}}</nobr></th>
170
177
  <th style="text-align:center"><nobr>{{row.f_price}}</nobr></th>
171
178
  <th style="text-align:center"><nobr>{{row.f_tablebase}}</nobr></th>
179
+ <th style="text-align:center" v-show="$parent.$parent.$parent.isShow"><nobr>{{row.standardConditionTotal}}</nobr></th>
180
+ <th style="text-align:center" v-show="$parent.$parent.$parent.isShow"><nobr>{{row.operatingModeTotalForDay}}</nobr></th>
181
+ <th style="text-align:center" v-show="$parent.$parent.$parent.isShow"><nobr>{{row.standardConditionFlow}}</nobr></th>
182
+ <th style="text-align:center" v-show="$parent.$parent.$parent.isShow"><nobr>{{row.operatingModeFlow}}</nobr></th>
183
+ <th style="text-align:center" v-show="$parent.$parent.$parent.isShow"><nobr>{{row.flowmeterTemperatureState}}</nobr></th>
184
+ <th style="text-align:center" v-show="$parent.$parent.$parent.isShow"><nobr>{{row.flowmeterPressureState}}</nobr></th>
172
185
  <th style="text-align:center"><nobr>{{row.f_valvestate}}</nobr></th>
173
186
 
174
187
 
@@ -273,7 +286,8 @@
273
286
  criteriaShow:false,
274
287
  orgCondtionStr: '',
275
288
  model: new PagedList('rs/sql/manage_getReportList', 50,{},{f_meterbalanceamt: 0,f_tablebase: 0,f_meterdebitamt: 0,f_total_fee}),
276
- areaList:[]
289
+ areaList:[],
290
+ isShow:false,
277
291
  }
278
292
  },
279
293
  ready () {
@@ -289,6 +303,16 @@
289
303
  this.$refs.paged.$refs.criteria.search()
290
304
  },
291
305
  methods: {
306
+ meterBrandChange(val){
307
+ console.log("气表品牌改变。。。。。" + val)
308
+ if(val !== undefined){
309
+ if(val == '真兰表端物联网表' || val == '真兰系统物联网表'){
310
+ this.isShow = true
311
+ } else {
312
+ this.isShow = false
313
+ }
314
+ }
315
+ },
292
316
  async initQueryParam () {
293
317
  let brr = []
294
318
  let http = new HttpResetClass()
@@ -1,6 +1,6 @@
1
1
  // 分公司特殊组件页面注册
2
2
  let specialComp = {
3
3
  // 上报查询
4
- 'report-list': (resolve) => { require(['./ReportList'], resolve) }
4
+ 'report-list': (resolve) => { require(['./reportList'], resolve) }
5
5
  }
6
6
  exports.specialComp = specialComp