sale-client 3.6.520 → 3.6.522-rc

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.
@@ -1,2 +1,2 @@
1
- #Thu Apr 10 10:42:44 CST 2025
1
+ #Fri Aug 23 18:20:38 CST 2024
2
2
  gradle.version=5.2.1
@@ -19,6 +19,13 @@ var devConfig = {
19
19
  children: false // 不输出子模块构建信息
20
20
  },
21
21
  proxy: {
22
+ 'af-revenue/images': {
23
+ pathRewrite: {
24
+ 'resource/af-revenue/images': '/api/af-revenue/sql'
25
+ },
26
+ changeOrigin: true,
27
+ target: 'http://192.168.50.4:8400/'
28
+ },
22
29
  '/api': {
23
30
  target: v4Url
24
31
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sale-client",
3
- "version": "3.6.520",
3
+ "version": "3.6.522-rc",
4
4
  "description": "收费模块前台组件",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -338,7 +338,7 @@
338
338
  <v-select :options='$parent.$parent.devicetypes' :search='true'
339
339
  :value.sync="model.f_devices_type"
340
340
  close-on-select
341
- condition="f_devices_type = '{}'" placeholder='用气设备'
341
+ condition="f_devices_type like '%{}%'" placeholder='用气设备'
342
342
  v-model='model.f_devices_type'>
343
343
  </v-select>
344
344
  </div>
@@ -67,8 +67,8 @@ import {HttpResetClass} from 'vue-client'
67
67
  .then((res) => {
68
68
  this.service = res.data[0]
69
69
  console.log('99889', this.service)
70
- // self.getrepair()
71
- this.$goto('new-repair-paper', {curActivity: this.service.serviceacitivity[1]})
70
+ const repairActivity = this.service.serviceacitivity.find(item => item.f_workorder_type === '报修单')
71
+ this.$goto('new-repair-paper', {curActivity: repairActivity || this.service.serviceacitivity[1]})
72
72
  })
73
73
  },
74
74
  async getServiceRepair () {
@@ -38,7 +38,7 @@ import LogicService from "../plugins/LogicService";
38
38
  let asyncMachineMeterCenter = async function (self){
39
39
  await self.$getConfig(self,'disableGen')
40
40
  console.log('欠费禁用config', self.config)
41
- self.data.disable = self.config.disableGen
41
+ self.disable = self.config.disableGen
42
42
  }
43
43
 
44
44
  export default {
@@ -49,7 +49,7 @@ import LogicService from "../plugins/LogicService";
49
49
  config: {
50
50
  disableGen: true
51
51
  },
52
- disable:true,
52
+ disable:'',
53
53
  blodid: '',
54
54
  showupload: true,
55
55
  model: {},
@@ -15,7 +15,7 @@
15
15
  </div>
16
16
  <div class="col-sm-6 form-group" style="padding-right: 5px;">
17
17
  <label class=" font_normal_body">厂&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;家&nbsp;</label>
18
- <input type="text" class="input_search" style="width:60%" v-model="row.f_manufactor"
18
+ <input type="text" class="input_search" style="width:60%" v-model="row.f_brand"
19
19
  placeholder='厂家' v-next-el="{id: $index+'brand'}">
20
20
  </div>
21
21
  </div>
@@ -37,8 +37,8 @@
37
37
  <div class="row auto" style="margin-left: 10px;">
38
38
  <div class="col-sm-6 form-group" style="padding-right: 5px;">
39
39
  <label class="font_normal_body">&nbsp;安&nbsp;装&nbsp;人&nbsp;</label>
40
- <input type="text" class="input_search" style="width:60%" v-model="row.f_instaler_person"
41
- placeholder='安装人' v-next-el="{id: $index+'f_instaler_person'}" :id="$index+'brand'">
40
+ <input type="text" class="input_search" style="width:60%" v-model="row.f_input_person"
41
+ placeholder='安装人' v-next-el="{id: $index+'f_input_person'}" :id="$index+'brand'">
42
42
  </div>
43
43
  <div class="col-sm-6 form-group" style="padding-right: 5px;">
44
44
  <label class="font_normal_body">生产日期</label>
@@ -25,7 +25,7 @@
25
25
  </div>
26
26
  <div class="col-sm-6 form-group" style="padding-right: 5px;">
27
27
  <label class="font_normal_body">安装人&nbsp;&nbsp;&nbsp;</label>
28
- <input type="text" class="input_search" style="width:60%" v-model="row.f_instaler_person" placeholder='安装人' v-next-el="{id: $index+'devicesmodel'}" :id="$index+'brand'">
28
+ <input type="text" class="input_search" style="width:60%" v-model="row.f_input_person" placeholder='安装人' v-next-el="{id: $index+'devicesmodel'}" :id="$index+'brand'">
29
29
  </div>
30
30
 
31
31
  </div>
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/yangchun/sale'
5
+ import FilialeSale from './filiale/rongcheng/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'