sale-client 4.2.41 → 4.2.43

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": "sale-client",
3
- "version": "4.2.41",
3
+ "version": "4.2.43",
4
4
  "description": "收费模块前台组件",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -27,7 +27,7 @@
27
27
  "yarn": "^1.22.10"
28
28
  },
29
29
  "devDependencies": {
30
- "vue-client": "1.25.41",
30
+ "vue-client": "1.26.2",
31
31
  "less-loader": "^2.2.3",
32
32
  "system-clients": "4.0.12",
33
33
  "ldap-clients": "3.0.96",
@@ -9,7 +9,7 @@
9
9
  <button class="button_search" v-show="warninginfo.data.state.blacklist&&!warninginfo.data.state.dibao" @click="operational('basic-living')" style="width: max-content;">低保续保</button>
10
10
  <button class="button_search" v-show="warninginfo.data.state.blacklist&&!warninginfo.data.state.dibao && warninginfo.data.state.dibaoend" @click="operational('stop-basic-living')" style="width: max-content;">停止续保</button>
11
11
  <button class="button_search" v-show="!(!warninginfo.data.state.dibao&&warninginfo.data.state.dibaoend) && warninginfo.data.state.chargeAccount" @click="success()">确认</button>
12
- <button class="button_search" v-show="!warninginfo.data.state.chargeAccount" @click="goToAccount()">去挂账管理</button>
12
+ <button class="button_search" v-show="warninginfo.data.state.hasOwnProperty('chargeAccount') && warninginfo.data.state.chargeAccount === false" @click="goToAccount()">去挂账管理</button>
13
13
  </span>
14
14
  </div>
15
15
  <p>{{authorityInformation}}</p>
@@ -654,12 +654,22 @@ let loadParamGem = async function (self) {
654
654
  }
655
655
  },
656
656
  methods: {
657
- openBatchModal () {
657
+ async openBatchModal() {
658
658
  let rowdata = this.$refs.paged.$refs.grid.getRowData()
659
659
  if (rowdata.length <= 0) {
660
660
  this.$showMessage('请至少选择一个表具!')
661
661
  return
662
662
  }
663
+ const getAdjustables = await this.$resetpost('api/af-revenue/sql/singleTable_OrderBy',{
664
+ data: {
665
+ tablename: 't_adjustablebox',
666
+ items: 'f_adjustable_name as label, id as value',
667
+ condition: `f_filialeid = '${this.f_filialeid}'`,
668
+ orderitem: 'id desc'
669
+ }
670
+ })
671
+ console.log('调压箱数据', getAdjustables)
672
+ this.adjustablesNew = getAdjustables.data
663
673
  this.showModifyAdjustables = true
664
674
  },
665
675
  async batchModifyAdjustables() {
package/src/main.js CHANGED
@@ -2,7 +2,7 @@ import Vue from 'vue'
2
2
  import all from 'vue-client/src/all'
3
3
  import App from './App'
4
4
  import system from 'system-clients/src/system'
5
- import FilialeSale from './filiale/jinhong/sale'
5
+ import FilialeSale from './filiale/qingjian/sale'
6
6
  import sale from './sale'
7
7
  import address from 'address-client/src/address'
8
8
  import ldap from 'ldap-clients/src/ldap'