sale-client 3.6.119 → 3.6.120
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,25 +1,25 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class="auto">
|
|
3
|
-
<card-refund v-if="row.f_meter_type.indexOf( '卡表')>0" :data="row"></card-refund>
|
|
4
|
-
<card-history-refund v-if="row.f_meter_type === '物联网表' && all == 'history'" :data="row"></card-history-refund>
|
|
5
|
-
<iot-refund v-if="row.f_meter_type === '物联网表' && all == 'now'" :data="row"></iot-refund>
|
|
6
|
-
<machine-Refund v-if="row.f_meter_type === '机表'" :data="row"></machine-Refund>
|
|
3
|
+
<card-refund-s v-if="row.f_meter_type.indexOf( '卡表')>0" :data="row"></card-refund-s>
|
|
4
|
+
<card-history-refund-s v-if="row.f_meter_type === '物联网表' && all == 'history'" :data="row"></card-history-refund-s>
|
|
5
|
+
<iot-refund-s v-if="row.f_meter_type === '物联网表' && all == 'now'" :data="row"></iot-refund-s>
|
|
6
|
+
<machine-Refund-s v-if="row.f_meter_type === '机表'" :data="row"></machine-Refund-s>
|
|
7
7
|
</div>
|
|
8
8
|
|
|
9
9
|
</template>
|
|
10
10
|
<script>
|
|
11
|
-
import
|
|
12
|
-
import
|
|
13
|
-
import
|
|
14
|
-
import
|
|
11
|
+
import IotRefundS from './IOTRefund'
|
|
12
|
+
import machineRefundS from './machineRefund'
|
|
13
|
+
import cardRefundS from './cardRefund'
|
|
14
|
+
import cardHistoryRefundS from './cardHistoryRefund'
|
|
15
15
|
|
|
16
16
|
export default {
|
|
17
17
|
title: '退费管理',
|
|
18
18
|
components: {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
19
|
+
IotRefundS,
|
|
20
|
+
machineRefundS,
|
|
21
|
+
cardRefundS,
|
|
22
|
+
cardHistoryRefundS
|
|
23
23
|
},
|
|
24
24
|
data () {
|
|
25
25
|
return {
|
|
@@ -16,6 +16,4 @@ export default function () {
|
|
|
16
16
|
Vue.component('machine-charge-query', (resolve) => { require(['./machineChargeQuery'], resolve) })
|
|
17
17
|
// 机表物联网表结算查询(应收)
|
|
18
18
|
Vue.component('machine-charge-query1', (resolve) => { require(['./machineChargeQuery1'], resolve) })
|
|
19
|
-
// 机表抄表
|
|
20
|
-
Vue.component('machine-hand', (resolve) => { require(['./machineHand'], resolve) })
|
|
21
19
|
}
|