diff --git a/.env.prod b/.env.prod index d1b97bd..3276ad9 100644 --- a/.env.prod +++ b/.env.prod @@ -2,7 +2,7 @@ NODE_ENV = 'production' # 页面标题 -VUE_APP_TITLE = "车联通"后台管理系统 +VUE_APP_TITLE = "车联通"管理系统 # 芋道管理系统/生产环境 # VUE_APP_BASE_API = 'https://www.nuoyunr.com' diff --git a/src/views/drivingSchool/DriveSchoolPay/form/ExportDialog.vue b/src/views/drivingSchool/DriveSchoolPay/form/ExportDialog.vue index 392c07d..e58f34f 100644 --- a/src/views/drivingSchool/DriveSchoolPay/form/ExportDialog.vue +++ b/src/views/drivingSchool/DriveSchoolPay/form/ExportDialog.vue @@ -73,6 +73,16 @@ /> + + + + + + @@ -146,6 +156,9 @@ {{ stats.subject3DeductTotal }} + + {{ stats.totalDiscount }} + @@ -162,13 +175,15 @@ - + + + - + @@ -271,6 +286,7 @@ export default { payFeesTimeRange: null, cashierConfirmTimeRange: null, cashierConfirm: '', + discountIndex: null, pageNo: 1, pageSize: 10 }, @@ -299,12 +315,17 @@ export default { { value: '1', label: '已到账' }, { value: null, label: '待确认' } ], + discountIndexList: [ + { value: '0', label: '无优惠' }, + { value: '1', label: '有优惠' } + ], selectedTimeType: 'cashierConfirm', sourceList: [], stats: { studentCount: 0, totalAmount: 0, + totalDiscount: 0, subject2DeductTotal: 0, subject3DeductTotal: 0, }, @@ -369,6 +390,7 @@ export default { this.stats = { studentCount: statsRes.data.studentCount || 0, totalAmount: statsRes.data.totalAmount || 0, + totalDiscount: statsRes.data.totalDiscount || 0, subject2DeductTotal: statsRes.data.subject2DeductTotal || 0, subject3DeductTotal: statsRes.data.subject3DeductTotal || 0 }; @@ -416,6 +438,7 @@ export default { payFeesTimeRange: null, cashierConfirmTimeRange: null, cashierConfirm: '', + discountIndex: null, pageNo: 1, pageSize: 10 }; diff --git a/src/views/drivingSchool/DriveSchoolPay/form/SchoolCourseOrderForm.vue b/src/views/drivingSchool/DriveSchoolPay/form/SchoolCourseOrderForm.vue index 0b47069..081f668 100644 --- a/src/views/drivingSchool/DriveSchoolPay/form/SchoolCourseOrderForm.vue +++ b/src/views/drivingSchool/DriveSchoolPay/form/SchoolCourseOrderForm.vue @@ -65,31 +65,50 @@ - - - {{ item.label }} - - - + + + + + + {{ item.label }} + + + + + + + + + + + - - - - + + + - + - - + + + + + + + + @@ -255,6 +274,9 @@ export default { gradTime: undefined, schemeId: undefined, orderRemark: undefined, + discount: undefined, + actualPayment: undefined, + }, ifEndRadio: [ { @@ -444,6 +466,8 @@ export default { gradTime: undefined, schemeId: undefined, orderRemark: undefined, + discount: undefined, + actualPayment: undefined, } this.resetForm('formRef') } diff --git a/src/views/drivingSchool/DriveSchoolPay/index.vue b/src/views/drivingSchool/DriveSchoolPay/index.vue index 37b1971..d8c7b64 100644 --- a/src/views/drivingSchool/DriveSchoolPay/index.vue +++ b/src/views/drivingSchool/DriveSchoolPay/index.vue @@ -34,6 +34,17 @@ + + + + + + + + +