- ¥{{ cashierOrder.amount }}
+ ¥{{ cashierOrder.payAmount }}
退款金额
退款单号:{{ cashierOrder.orderNo }}
@@ -245,7 +245,7 @@
-
+
退款仅支持全额退款,退款金额将按照支付信息原路退回、优惠券、储值卡等原路退回处理
@@ -270,8 +270,8 @@ import {refundApi} from "@/api/cashier/refund";
name: "order_Cashier",
data(){
return{
- // 退款密码
- password:"",
+ // 退款备注
+ refundRemark:"",
radio1:"油号选错",
// 油号列表
oilNameList:[],
diff --git a/fuintCashierWeb/src/views/cashier/orderComponents/order_Goods.vue b/fuintCashierWeb/src/views/cashier/orderComponents/order_Goods.vue
index bb93660f9..5eb7d488a 100644
--- a/fuintCashierWeb/src/views/cashier/orderComponents/order_Goods.vue
+++ b/fuintCashierWeb/src/views/cashier/orderComponents/order_Goods.vue
@@ -180,6 +180,34 @@
+
+
+
+ ¥{{ goods.payAmount }}
+
+ 退款金额
+ 退款单号:{{ goods.orderNo }}
+
+ 退款原因
+
+
+
+
+
+
+
+
+
+ 退款仅支持全额退款,退款金额将按照支付信息原路退回、优惠券、储值卡等原路退回处理
+
+
+
@@ -236,6 +264,10 @@ export default {
},
// 支付列表
payList:[],
+ dialogRefund: false,
+ radio1:"油号选错",
+ goods:{},
+ refundRemark:"",
orderStatistics: {
numberOfProducts:'0',
diff --git a/fuintCashierWeb/src/views/cashier/orderComponents/order_Oil.vue b/fuintCashierWeb/src/views/cashier/orderComponents/order_Oil.vue
index e12e8b9fc..21c22e746 100644
--- a/fuintCashierWeb/src/views/cashier/orderComponents/order_Oil.vue
+++ b/fuintCashierWeb/src/views/cashier/orderComponents/order_Oil.vue
@@ -245,7 +245,7 @@
-
+
退款仅支持全额退款,退款金额将按照支付信息原路退回、优惠券、储值卡等原路退回处理
@@ -274,7 +274,7 @@
userName:"",
oilOrder:{},
// 退款密码
- password:"",
+ refundRemark:"",
radio1:"油号选错",
dialogRefund:false,
// 员工列表
diff --git a/fuintCashierWeb/src/views/cashier/vipComponents/balanceList.vue b/fuintCashierWeb/src/views/cashier/vipComponents/balanceList.vue
index 6a58d1bee..7d7a39aba 100644
--- a/fuintCashierWeb/src/views/cashier/vipComponents/balanceList.vue
+++ b/fuintCashierWeb/src/views/cashier/vipComponents/balanceList.vue
@@ -6,16 +6,41 @@
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 搜索
-
-
- 搜索
-
+
+
+
+
@@ -31,7 +56,7 @@
余额汇总
-
{{ totalBalance }}
+
{{ totalBalance.toFixed(2) }}
充值总额
-
{{ totalRecharge }}
+
{{ totalRecharge.toFixed(2) }}
消费总额
-
{{ totalConsumption }}
+
{{ totalConsumption.toFixed(2) }}
@@ -121,7 +146,7 @@
充值总额
-
{{ totalRecharge1 }}
+
{{ totalRecharge1.toFixed(2) }}
消费总额
-
{{ totalConsumption1 }}
+
{{ totalConsumption1.toFixed(2) }}
@@ -160,7 +185,6 @@
{{scope.row.type}}{{ getOilName(oilNameList,scope.row.oilType) }}
-
充值
@@ -171,7 +195,8 @@
-
+
+
@@ -239,6 +264,7 @@ import {oilNumbers} from "@/api/cashier/oilnumber";
outCount1:0,
totalConsumption1:0,
totalRecharge1:0,
+ dateRange:[],
// 用户列表
userList:[],
@@ -307,6 +333,16 @@ import {oilNumbers} from "@/api/cashier/oilnumber";
this.getOilNameList();
},
methods: {
+ // 搜索按钮操作
+ handleQuery() {
+ this.queryParams.page = 1;
+ if (this.activeName == 'ascendCard'){
+ this.getCardOilList();
+ }
+ if (this.activeName == 'balanceCard'){
+ this.getCardBalanceList();
+ }
+ },
getOilName(list,id){
let name = ""
list.forEach(item => {
@@ -345,7 +381,8 @@ import {oilNumbers} from "@/api/cashier/oilnumber";
if (val!=undefined){
this.queryParams.page = val
}
- listCardBalanceRecord(this.queryParams).then(res => {
+ console.log(this.queryParams)
+ listCardBalanceRecord(this.addDateRange(this.queryParams, this.dateRange)).then(res => {
this.cardBalanceList = res.data.records
this.total = res.data.total
})
@@ -355,7 +392,7 @@ import {oilNumbers} from "@/api/cashier/oilnumber";
if (val!=undefined){
this.queryParams.page = val
}
- cardBalanceCount(this.queryParams).then(res => {
+ cardBalanceCount(this.addDateRange(this.queryParams, this.dateRange)).then(res => {
this.inCount = res.data.inCount
this.outCount = res.data.outCount
this.totalBalance = res.data.totalBalance
@@ -365,9 +402,9 @@ import {oilNumbers} from "@/api/cashier/oilnumber";
},
getCardOilList(val){
if (val!=undefined){
- this.queryParams1.page = val
+ this.queryParams.page = val
}
- listCardOilRecord(this.queryParams1).then(res => {
+ listCardOilRecord(this.addDateRange(this.queryParams, this.dateRange)).then(res => {
this.cardOilList = res.data.records
this.total1 = res.data.total
})
@@ -375,18 +412,22 @@ import {oilNumbers} from "@/api/cashier/oilnumber";
},
getCardOilCount(val){
if (val!=undefined){
- this.queryParams1.page = val
+ this.queryParams.page = val
}
- cardOilCount().then(res => {
+ cardOilCount(this.addDateRange(this.queryParams, this.dateRange)).then(res => {
this.inCount1 = res.data.inCount
this.outCount1 = res.data.outCount
this.totalConsumption1 = res.data.totalConsumption
this.totalRecharge1 = res.data.totalRecharge
- console.log(res)
+ // console.log(res)
})
},
handleClick(tab, event) {
- console.log(tab, event);
+ // console.log(tab, event);
+ this.queryParams = {
+ page: 1,
+ pageSize: 10,
+ }
if (this.activeName == 'ascendCard'){
this.getCardOilList();
}