sale-client 3.5.209 → 3.5.211

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": "3.5.209",
3
+ "version": "3.5.211",
4
4
  "description": "收费模块前台组件",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -544,7 +544,7 @@ export default {
544
544
  f_user_name: '',
545
545
  // 用户电话
546
546
  f_user_phone: '',
547
- f_people_num: 0,
547
+ f_people_num: this.$appdata.getSingleValue('默认人口数') ? this.$appdata.getSingleValue('默认人口数') : 0,
548
548
  f_packaging: '',
549
549
  // 备用电话
550
550
  f_rent_phone: '',
@@ -92,7 +92,11 @@
92
92
  <th>
93
93
  <nobr>操作日期</nobr>
94
94
  </th>
95
-
95
+ <th>
96
+ <nobr>
97
+ 收费记录时间
98
+ </nobr>
99
+ </th>
96
100
  <th>
97
101
  <nobr>人员</nobr>
98
102
  </th>
@@ -162,7 +166,11 @@
162
166
  <td style="text-align: center;">
163
167
  <nobr>{{row.f_operate_date}}</nobr>
164
168
  </td>
165
-
169
+ <td style="text-align: center;">
170
+ <nobr>
171
+ {{row.f_sfjl===null?"00:00:00.000":row.f_sfjl}}
172
+ </nobr>
173
+ </td>
166
174
  <td style="text-align: center;">
167
175
  <nobr>{{row.f_operator}}</nobr>
168
176
  </td>
@@ -20,7 +20,7 @@
20
20
  <script>
21
21
  import {HttpResetClass} from 'vue-client'
22
22
  let checkGas = async function (self) {
23
- let temp = []
23
+ let temp = {data:[]}
24
24
  try {
25
25
  let http = new HttpResetClass()
26
26
  temp = await http.load('POST', 'rs/sql/sale_checkGas', {data: {id: self.data.f_userinfo_id}}, {resolveMsg: null, rejectMsg: null})
@@ -4,7 +4,7 @@
4
4
  <tabs header="低保户管理" v-if="permission('低保户管理')">
5
5
  <basic-living-manage @deal-msg="dealMsg" ></basic-living-manage>
6
6
  </tabs>
7
- <tabs header="黑名单管理" v-if="permission('黑名单管理')">
7
+ <tabs header="管理" v-if="permission('黑名单管理')">
8
8
  <black-list-mangae @deal-msg="dealMsg"></black-list-mangae>
9
9
  </tabs>
10
10
  </tab-button>