sale-client 4.2.44 → 4.2.45

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.
Files changed (51) hide show
  1. package/build/dev-server.js +30 -52
  2. package/index.html +2 -7
  3. package/package.json +1 -1
  4. package/src/App.vue +1 -1
  5. package/src/components/revenue/HandManager/MeterBookUser.vue +726 -726
  6. package/src/components/revenue/comprehen/ComprehenOperation/QrPay/QrPaymentDetailed.vue +423 -423
  7. package/src/components/revenue/comprehen/Maintenance/hand/handOperate.vue +469 -469
  8. package/src/components/revenue/machineHandManage/ArrearsQuery.vue +938 -938
  9. package/src/components/webMeter/MeterManage/WebMeterBatchOperationValve.vue +970 -970
  10. package/src/filiale/alashan/eticket/EticketRecordList.vue +428 -428
  11. package/src/filiale/bayan/ChargeList.vue +1010 -1010
  12. package/src/filiale/bayan/StockListmain.vue +543 -543
  13. package/src/filiale/bazhong/UserInfoDetailManageNew.vue +245 -245
  14. package/src/filiale/bazhong/ic_detail/ChangeMeterQueryUser.vue +370 -370
  15. package/src/filiale/bazhong/sale.js +8 -8
  16. package/src/filiale/beifangshiye/OtherChargeNew.vue +625 -625
  17. package/src/filiale/jinhong/CardMeterCenterInner.vue +5 -0
  18. package/src/filiale/jinhong/IOTMeterCenterInner.vue +597 -592
  19. package/src/filiale/jinhong/InsuranceTemp.vue +2 -3
  20. package/src/filiale/jinhong/MachineMeterCenter.vue +5 -0
  21. package/src/filiale/lixianV3/ArrearsQuery.vue +938 -938
  22. package/src/filiale/lixianV3/InsuranceChargesDetails.vue +425 -425
  23. package/src/filiale/meihekou/common/userinfo_detail/ic_detail/MachineRecordQuery.vue +281 -281
  24. package/src/filiale/qianneng/revenue/sms/AccountMessageList.vue +508 -508
  25. package/src/filiale/ronghao/ArrearsQuery.vue +974 -974
  26. package/src/filiale/ronghao/CardService.js +2144 -2144
  27. package/src/filiale/ronghao/InsuranceManage.vue +58 -58
  28. package/src/filiale/ronghao/MachineChargeService.js +149 -149
  29. package/src/filiale/ronghao/NoCardMeterCenter.vue +534 -534
  30. package/src/filiale/ronghao/PaymentCode.vue +174 -174
  31. package/src/filiale/ronghao/PriceChangeCompensation/CompensationManage.vue +26 -26
  32. package/src/filiale/ronghao/PriceChangeCompensation/IotCompensation.vue +318 -318
  33. package/src/filiale/ronghao/PriceChangeCompensation/JbCompensation.vue +343 -343
  34. package/src/filiale/ronghao/PriceChangeCompensation/SurplusRecordDetail.vue +74 -74
  35. package/src/filiale/ronghao/ReplaceCardManage.vue +415 -415
  36. package/src/filiale/ronghao/Upload.vue +654 -654
  37. package/src/filiale/ronghao/cardDown.vue +1141 -1141
  38. package/src/filiale/ronghao/changemeterOperate.vue +315 -315
  39. package/src/filiale/ronghao/fillgasSpecific.vue +313 -313
  40. package/src/filiale/ronghao/ic_detail/ChargeRecordQuery.vue +106 -106
  41. package/src/filiale/ronghao/ic_detail/WatchCollection.vue +115 -115
  42. package/src/filiale/ronghao/ic_detail/WebHandQueryUser.vue +411 -411
  43. package/src/filiale/ronghao/machineDown.vue +1176 -1176
  44. package/src/filiale/ronghao/replacementSingleInfoOperation.vue +315 -315
  45. package/src/filiale/ronghao/specificInformation.vue +537 -537
  46. package/src/filiale/yangchun/ChargeList.vue +954 -954
  47. package/src/filiale/yuncheng/changemeterListMaintain.vue +504 -504
  48. package/src/filiale/zhongsheng/BlackListList.vue +293 -293
  49. package/src/filiale/zhongyi/HandQueryUser.vue +389 -389
  50. package/src/main.js +1 -1
  51. package/src/plugins/CardService.js +2217 -2217
@@ -43,9 +43,9 @@
43
43
  <label class="font_normal_body">结束日期</label>
44
44
  <input v-model="model.f_expiration_date" style="width: 60%" placeholder="保险到期时间" :value.sync='model.f_expiration_date' class="input_search" type="text" >
45
45
  </div>
46
- <div class="col-sm-4 form-group" >
46
+ <div class="col-sm-4 form-group" :class="[$v.f_insurance_company.required ? 'has-error' : '']">
47
47
  <label class="font_normal_body" title="参数:保险公司">保险公司</label>
48
- <input v-show="false" v-model="$refs.f_insurance_company.selectedItems"
48
+ <input v-show="false" v-model="$refs.f_insurance_company.selectedItems" v-validate:f_insurance_company='{required: true }'
49
49
  type="text">
50
50
  <v-select
51
51
  v-model="model.f_insurance_company"
@@ -74,7 +74,6 @@
74
74
  </div>
75
75
  </template>
76
76
  <script>
77
- import {HttpResetClass} from 'vue-client'
78
77
  import * as Util from '../../Util'
79
78
  export default {
80
79
  title: '保险费用',
@@ -531,6 +531,11 @@ let asyncMachineMeterCenter = async function (self) {
531
531
  return (num1 * multiple - num2 * multiple) / multiple
532
532
  },
533
533
  confirm () {
534
+ if (this.insurance && this.insurance.f_money_all > 0) {
535
+ if (!this.insurance.f_insurance_company) {
536
+ return this.$showMessage('请填写保险公司')
537
+ }
538
+ }
534
539
  this.eticket_msg = false
535
540
  // 如果有变更原因说明有变更
536
541
  if (this.data.f_collection < 0) {