apply-clients 3.4.85 → 3.4.88

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.
@@ -37,7 +37,9 @@
37
37
  }
38
38
  </style>
39
39
  <div style="margin-bottom: 20px">
40
- <span style="font-size: 20px">开户费预览</span>
40
+ <span v-if="selectdata.defname!='营业厅缴费'" style="font-size: 20px">开户费预览</span>
41
+ <span v-if="selectdata.defname==='营业厅缴费'&& selectdata.f_apply_type === '散户报建'&& charge.f_payment_term === '材料费' " style="font-size: 20px">新装费预览</span>
42
+ <span v-if="selectdata.defname==='营业厅缴费'&& selectdata.f_apply_type === '改装报建'&& charge.f_payment_term === '材料费' " style="font-size: 20px">改装费预览</span>
41
43
  </div>
42
44
  <div id="printCharge">
43
45
  <table border="1" width="100%">
@@ -67,7 +69,7 @@
67
69
  <td colspan="2">收费明细</td>
68
70
  <td v-if="selectdata.defname!='营业厅缴费'" colspan="2">新装开户费</td>
69
71
  <td v-if="selectdata.defname==='营业厅缴费'&& selectdata.f_apply_type === '散户报建'&& charge.f_payment_term === '材料费' " colspan="2">新装材料费</td>
70
- <td v-if="selectdata.defname==='营业厅缴费'&& selectdata.f_apply_type === '改装报建'&& charge.f_payment_term === '材料费' " colspan="2">新装材料费</td>
72
+ <td v-if="selectdata.defname==='营业厅缴费'&& selectdata.f_apply_type === '改装报建'&& charge.f_payment_term === '材料费' " colspan="2">改装材料费</td>
71
73
  <td >{{ charge.f_charge_money }}</td>
72
74
  <td colspan="4"></td>
73
75
  </tr>
@@ -108,10 +110,9 @@
108
110
  import {HttpResetClass} from 'vue-client'
109
111
  export default {
110
112
  title: '打印收费票据',
111
- props: ['selectdata', 'charge','billnum'],
113
+ props: ['selectdata', 'charge', 'billnum'],
112
114
  data () {
113
115
  return {
114
- billnum: ''
115
116
  }
116
117
  },
117
118
  ready () {
@@ -74,9 +74,9 @@
74
74
  </tr>
75
75
  <tr>
76
76
  <td >表号</td>
77
- <td ></td>
77
+ <td >{{userfiles.f_meternumber}}</td>
78
78
  <td >表底数</td>
79
- <td ></td>
79
+ <td >{{userfiles.f_meter_base}}</td>
80
80
  <td >开通人</td>
81
81
  <td ></td>
82
82
  <td >协议号</td>
@@ -103,9 +103,9 @@
103
103
  </tr>
104
104
  </table>
105
105
  </div>
106
- <div style="margin-top: 20px">
106
+ <!-- <div style="margin-top: 20px">
107
107
  <span :style="billnum.isOk?'color: blue;font-weight: bold':'color: red;font-weight: bold'">{{billnum.msg}}</span>
108
- </div>
108
+ </div>-->
109
109
  <print-element v-show="false" v-ref:print id='printCharge' styleid='printChargeStyle'
110
110
  top='20' left='30' width='100%' height='100%'>
111
111
  </print-element>
@@ -119,15 +119,28 @@ import {toStandardDateString, toStandardTimeString, toStartAndEndDateString} fro
119
119
  props: ['selectdata','billnum'],
120
120
  data () {
121
121
  return {
122
- billnum: ''
122
+ userfiles: {}
123
123
  }
124
124
  },
125
125
  ready () {
126
+ this.getuserfiles()
126
127
  },
127
128
  methods: {
128
129
  // 获取当前时间 格式 2023-07-09 23:59:59
129
130
  getdate () {
130
131
  return toStandardDateString()
132
+ },
133
+ getuserfiles () {
134
+ let http = new HttpResetClass()
135
+ let data = {
136
+ condition: `f_userinfo_id = '${this.selectdata.f_userinfo_id}'`
137
+ }
138
+ http.load('POST', 'rs/logic/getUserinfoAndUserfiles', {data: data}, {
139
+ resolveMsg: null,
140
+ rejectMsg: null
141
+ }).then(res => {
142
+ this.userfiles = res.data.userfiles[0]
143
+ })
131
144
  }
132
145
  },
133
146
  computed: {
@@ -68,9 +68,9 @@
68
68
  </tr>
69
69
  </table>
70
70
  </div>
71
- <div style="margin-top: 20px">
71
+ <!-- <div style="margin-top: 20px">
72
72
  <span :style="billnum.isOk?'color: blue;font-weight: bold':'color: red;font-weight: bold'">{{billnum.msg}}</span>
73
- </div>
73
+ </div>-->
74
74
  <print-element v-show="false" v-ref:print id='printCharge' styleid='printChargeStyle'
75
75
  top='20' left='30' width='100%' height='100%'>
76
76
  </print-element>
@@ -8,6 +8,7 @@ let specialComp = {
8
8
  'apply-charge-management': (resolve) => { require(['./pc/chargeManagement'], resolve) },
9
9
  'apply-print-activatecard': (resolve) => { require(['./pc/printactivatecard'], resolve) },
10
10
  'apply-print-install': (resolve) => { require(['./pc/printinstall'], resolve) },
11
- 'add-material-science': (resolve) => { require(['./pc/addMaterialScience'], resolve) }
11
+ 'add-material-science': (resolve) => { require(['./pc/addMaterialScience'], resolve) },
12
+ 'apply-charge-list': (resolve) => { require(['./pc/ApplyChargeList'], resolve) }
12
13
  }
13
14
  exports.specialComp = specialComp