sale-client 3.7.42 → 3.7.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.
File without changes
@@ -0,0 +1,2 @@
1
+ #Mon Jan 05 11:37:36 CST 2026
2
+ gradle.version=5.2.1
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sale-client",
3
- "version": "3.7.42",
3
+ "version": "3.7.43",
4
4
  "description": "收费模块前台组件",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -310,26 +310,26 @@
310
310
 
311
311
  // 判断限购
312
312
  // 获取限购值
313
- let limit_param = {
314
- f_userinfo_id: self.row.f_userinfo_id,
315
- f_user_id: self.row.f_user_id,
316
- f_stairprice_id: self.row.f_stairprice_id
317
- }
318
- let http = new HttpResetClass()
319
- let getLimit = await http.load('POST', 'rs/logic/sale_getLimitGas', {data: limit_param}, {resolveMsg: null, rejectMsg: '获取限购值失败!!'})
320
- console.log('获取限购值', getLimit)
321
- self.hasLimit = getLimit.data.hasLimit
322
- if (self.hasLimit) {
323
- if (getLimit.data.f_limit_value < 0 || getLimit.data.f_limit_amount < 0) {
324
- self.maxmoney = 0
325
- self.limitmoney = true
326
- console.log(self.maxmoney, self.limitmoney)
327
- self.$showAlert(`${getLimit.data.msg}\n限购原因:${getLimit.data.limitMessage}`, 'warning', 3000)
328
- // self.$dispatch('refresh')
329
- } else {
330
- self.maxgas = getLimit.data.f_limit_value
331
- }
332
- }
313
+ // let limit_param = {
314
+ // f_userinfo_id: self.row.f_userinfo_id,
315
+ // f_user_id: self.row.f_user_id,
316
+ // f_stairprice_id: self.row.f_stairprice_id
317
+ // }
318
+ // let http = new HttpResetClass()
319
+ // let getLimit = await http.load('POST', 'rs/logic/sale_getLimitGas', {data: limit_param}, {resolveMsg: null, rejectMsg: '获取限购值失败!!'})
320
+ // console.log('获取限购值', getLimit)
321
+ // self.hasLimit = getLimit.data.hasLimit
322
+ // if (self.hasLimit) {
323
+ // if (getLimit.data.f_limit_value < 0 || getLimit.data.f_limit_amount < 0) {
324
+ // self.maxmoney = 0
325
+ // self.limitmoney = true
326
+ // console.log(self.maxmoney, self.limitmoney)
327
+ // self.$showAlert(`${getLimit.data.msg}\n限购原因:${getLimit.data.limitMessage}`, 'warning', 3000)
328
+ // // self.$dispatch('refresh')
329
+ // } else {
330
+ // self.maxgas = getLimit.data.f_limit_value
331
+ // }
332
+ // }
333
333
  }
334
334
 
335
335
  export default {