diff --git a/src/views/moneyManage/refundDetail/refundFinance.vue b/src/views/moneyManage/refundDetail/refundFinance.vue
index b05aefd..7916289 100644
--- a/src/views/moneyManage/refundDetail/refundFinance.vue
+++ b/src/views/moneyManage/refundDetail/refundFinance.vue
@@ -4,11 +4,13 @@
{{ t('common.jwcode') }}
-
+
{{ t('common.customerName') }}
-
+
{{ t('common.productName') }}
@@ -16,8 +18,8 @@
{{ t('common.market') }}
-
+
{{ t('common.orderStatus') }}
@@ -41,9 +43,10 @@
{{ t('common.payTime') }}
-
+
{{ t('common.search') }}
@@ -62,23 +65,26 @@
-
+
-
- {{
- scope.row.permanentGold }} {{ t('cash.unit') }}
- {{ scope.row.goodsNum }} {{ scope.row.numUnit }}
-
+
+ {{
+ scope.row.permanentGold }} {{ t('cash.unit') }}
+ {{ scope.row.goodsNum }} {{ scope.row.numUnit }}
+
- {{ scope.row.refundModel === 1 ? t('common_list.refundModelPart') : t('common_list.refundModelAll') }}
+ {{ scope.row.refundModel === 1 ? t('common_list.refundModelPart') : t('common_list.refundModelAll')
+ }}
-
+
@@ -120,14 +126,16 @@
-
- {{ t('common_add.permanentGold') }}
- {{ t('cash.unit') }}
-
-
- {{ t('common_add.freeGold') }}
- {{ t('cash.unit') }}
-
+
+ {{ t('common_add.permanentGold') }}
+ {{
+ t('cash.unit') }}
+
+
+ {{ t('common_add.freeGold') }}
+ {{
+ t('cash.unit') }}
+
-
-
+
+
-
+
- {{ t('cash.progress.headFinance') }}
{{ headFinance || t('common.noAuditorRecorded') }}
+ {{ t('cash.progress.headFinance') }}
{{ headFinance || t('common.noAuditorRecorded')
+ }}
-
-
+
+
-
+
@@ -297,12 +316,16 @@
-
-
-
+
+
+
+ {{ t('common_list.rejectReason') }}:{{ rejectReason }}
{{ t('common.confirm') }}
@@ -360,6 +383,7 @@ import { useI18n } from 'vue-i18n'
const { t } = useI18n()
const currentStep = ref(0)// 进度图
+const rejectReason = ref('')// 驳回理由,进度图
const searchForm = ref({
jwcode: '',
markets: []
@@ -512,6 +536,7 @@ const handlePass = async function () {
}
try {
const params = {
+ rejectReason: addForm.value.remark,
id: auditRow.value.id,
status: 20,
areaFinance: adminData.value.adminName,
@@ -598,6 +623,7 @@ const showStep = function (row) {
return
}
+ rejectReason.value = row.rejectReason || ''
isReject.value = false
submitter.value = row.submitter || ''
areaFinance.value = row.areaFinance || ''
@@ -903,6 +929,15 @@ onMounted(() => {
justify-content: center;
}
+ .reject-reason {
+ margin-top: 2vh;
+ width: 40%;
+ margin-left: 30%;
+ background-color: white;
+ padding: 1vh;
+ border-radius: 10px;
+ }
+
.steps-btn {
height: 15vh;
display: flex;
diff --git a/src/views/moneyManage/refundDetail/refundHeader.vue b/src/views/moneyManage/refundDetail/refundHeader.vue
index a7c9d31..0359c48 100644
--- a/src/views/moneyManage/refundDetail/refundHeader.vue
+++ b/src/views/moneyManage/refundDetail/refundHeader.vue
@@ -315,7 +315,9 @@
+
{{ t('common_list.rejectReason') }}:{{ rejectReason }}
+
{{ t('common.confirm') }}
@@ -387,6 +389,7 @@ const searchForm = ref({
statuses: []
})
const isReject = ref(false)// 进度图有没有驳回状态
+const rejectReason = ref('')// 驳回理由,进度图
const addForm = ref({
remark: ''
})
@@ -574,6 +577,7 @@ const handlePass = async function () {
}
try {
const params = {
+ rejectReason: addForm.value.remark,
id: auditRow.value.id,
executor: addForm.value.executor,
status: 40,
@@ -798,6 +802,7 @@ const showStep = function (row) {
return
}
+ rejectReason.value = row.rejectReason || ''
isReject.value = false
submitter.value = row.submitter || ''
areaFinance.value = row.areaFinance || ''
@@ -975,6 +980,15 @@ onMounted(() => {
justify-content: center;
}
+ .reject-reason {
+ margin-top: 2vh;
+ width: 40%;
+ margin-left: 30%;
+ background-color: white;
+ padding: 1vh;
+ border-radius: 10px;
+ }
+
.steps-btn {
height: 15vh;
display: flex;