manage-client 4.1.150 → 4.1.152

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
+ import Vue from 'vue'
3
+
4
+ export default function () {
5
+ // 收费查询
6
+ Vue.component('charge-query', (resolve) => { require(['./sale/businessquery/ChargeQuery'], resolve) })
7
+ }
@@ -167,11 +167,11 @@
167
167
  <div class="col-sm-2 form-group">
168
168
  <label class="font_normal_body" title="参数:设备类型">用气设备</label>
169
169
  <v-select id="f_meter_brand"
170
- v-model="model.f_devices_type"
171
- :value.sync="model.f_devices_type"
170
+ v-model="model.device"
171
+ :value.sync="model.device"
172
172
  :options='$parent.$parent.devicesTypes'
173
173
  placeholder='请选择'
174
- condition="f_devices_type like '%{}%'" :search="false"
174
+ condition="device = '{}'" :search="false"
175
175
  close-on-select style="width: 60%">
176
176
  </v-select>
177
177
  </div>
@@ -208,6 +208,15 @@
208
208
  close-on-select :search="false">
209
209
  </v-select>
210
210
  </div>
211
+ <div class="form-group col-sm-2">
212
+ <label class="font_normal_body">用户等级</label>
213
+ <v-select v-model="model.f_user_level"
214
+ placeholder='用户等级'
215
+ :value.sync="model.f_user_level"
216
+ :options='$parent.$parent.userlevel'
217
+ condition="f_user_level = '{}'"
218
+ close-on-select style="width: 60%"></v-select>
219
+ </div>
211
220
  </div>
212
221
  </div>
213
222
  </criteria>
@@ -442,6 +451,7 @@ import {HttpResetClass, PagedList} from 'vue-client'
442
451
  orgCondtionStr: '(' + this.$login.f.orgid + ')',
443
452
  orgid:[this.$login.f.orgid],
444
453
  usetypes: [{label: '全部', value: ''},{label: '是', value: `= '壁挂炉'`},{label: '否', value: `!= '壁挂炉'`}],
454
+ userlevel: this.$appdata.getParam('用户等级') ? [{label: '全部', value: ''}, ...this.$appdata.getParam('用户等级')] : [],
445
455
  zonesdata:''
446
456
  }
447
457
  },
@@ -224,9 +224,9 @@
224
224
  </template>
225
225
  <script>
226
226
  import {HttpResetClass, PagedList} from 'vue-client'
227
- import UserGasEcharts from './UserGasEchartsList'
228
- import * as Util from '../../../Util'
229
- import plugins from '../../../plugins/GetLoginInfoService'
227
+ import UserGasEcharts from '../../components/webmeter/newwebmeter/UserGasEchartsList'
228
+ import * as Util from '../../Util'
229
+ import plugins from '../../plugins/GetLoginInfoService'
230
230
  import plugin from 'system-clients/src/plugins/GetLoginInfoService'
231
231
  let readySomething = async function (self) {
232
232
  self.$refs.paged.$refs.cri.model.startDate = Util.addDate(new Date(),-6).substring(0,10) + ' 00:00:00'
@@ -539,7 +539,11 @@
539
539
  })
540
540
  },
541
541
  clearmsg() {
542
- this.$refs.paged.$refs.cri.model = {}
542
+ Object.keys(this.$refs.paged.$refs.criteria.model).forEach((key) => {
543
+ if(key !== 'f_error_level'){
544
+ this.$refs.paged.$refs.criteria.model[key] = []
545
+ }
546
+ })
543
547
  },
544
548
  close() {
545
549
  this.show = false
File without changes
File without changes
File without changes
File without changes
@@ -1,2 +0,0 @@
1
- #Thu Jun 04 15:26:04 CST 2026
2
- gradle.version=9.3.0
Binary file
File without changes