sale-client 3.5.210 → 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 +1 -1
- package/src/components/common/userinfo_detail/ic_detail/PriceAdjustmentQueryUser.vue +10 -2
- package/src/components/revenue/base/leftview/CheckGas.vue +1 -1
- package/src/components/revenue/comprehen/SpecialUser/SpecialUserManage.vue +1 -1
- package/src/filiale/fugu/components/FilesManage/UserGeneralInfoTest.vue +699 -0
- package/src/filiale/fugu/components/FilesManage/UserPaperInfoTest.vue +51 -0
- package/src/filiale/fugu/components/plugins/FileManageService.js +395 -0
- package/src/filiale/fugu/sale.js +3 -1
- package/src/filiale/macheng/CardMeterCenter.vue +939 -0
- package/src/filiale/macheng/sale.js +2 -1
- package/src/filiale/rizhao/UserPriceChangeManage.vue +662 -0
- package/src/filiale/rizhao/sale.js +2 -0
- package/src/filiale/tongchuan/ChargeList.vue +1 -0
- package/src/filiale/xiangyun/cardChargeQuery.vue +2 -0
- package/src/filiale/xiangyun/cardChargeQuery1.vue +2 -0
- package/src/filiale/xiangyun/machineChargeQuery.vue +4 -2
- package/src/filiale/xiangyun/machineChargeQuery1.vue +3 -1
- package/src/filiale/xiangyun/sale.js +20 -20
- package/src/main.js +22 -22
package/package.json
CHANGED
|
@@ -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="
|
|
7
|
+
<tabs header="管理" v-if="permission('黑名单管理')">
|
|
8
8
|
<black-list-mangae @deal-msg="dealMsg"></black-list-mangae>
|
|
9
9
|
</tabs>
|
|
10
10
|
</tab-button>
|