diff --git a/src/views/moneyManage/receiveDetail/receiveDetail.vue b/src/views/moneyManage/receiveDetail/receiveDetail.vue
index 5e080aa..056238c 100644
--- a/src/views/moneyManage/receiveDetail/receiveDetail.vue
+++ b/src/views/moneyManage/receiveDetail/receiveDetail.vue
@@ -169,11 +169,11 @@
- 退款
+ 退款
编辑
撤回
+ @click="openRecall('recall')">撤回
审核
-
+
-
+
+
+
+ {{ textContent }}
+
+
+
+
+
+
@@ -476,13 +485,22 @@ const closeAddForm = () => {
addFormData.value = {}
}
//撤回弹窗
-
+const textContent = ref('')
const recallDialog = ref(false)
-const openRecall = () => {
+const openRecall = (val) => {
+ console.log('打开弹窗',val);
+
+ if(val == 'refund'){
+ textContent.value = '将要对该订单退款!'
+ }
+ if(val == 'recall'){
+ textContent.value = '将要撤回该信息!'
+ }
recallDialog.value = true
}
const closeRecall = () => {
recallDialog.value = false
+ textContent.value = ''
}
//图片上传
const handleImgSuccess = (response, uploadFile) => {
@@ -901,6 +919,70 @@ const tableData = [
left: 50%; // 距离左侧50%
transform: translate(-50%, -50%); // 向左、向上平移自身宽高的50%,实现居中
z-index: 1000; // 确保在其他元素上层显示
+
+ .close {
+ position: absolute;
+ left: 625px;
+ top: 20px;
+ height: 38px;
+ width: 38px;
+ opacity: 0;
+
+ .Btn {
+ height: 100%;
+ width: 100%;
+ border-radius: 10px;
+ }
+ }
+
+ .text {
+ position: absolute;
+ left: 185px;
+ top: 190px;
+ height: 67px;
+ width: 500px;
+
+ .txt {
+ height: 100%;
+ width: 100%;
+ color: #001a42;
+ font-family: "PingFang SC";
+ font-size: 48px;
+ font-style: normal;
+ font-weight: 900;
+ line-height: normal;
+ }
+ }
+
+ .cancle {
+ position: absolute;
+ left: 185px;
+ top: 304px;
+ height: 55px;
+ width: 150px;
+ opacity: 0;
+
+ .Btn {
+ height: 100%;
+ width: 100%;
+ border-radius: 20px;
+ }
+ }
+
+ .confirm {
+ position: absolute;
+ left: 375px;
+ top: 304px;
+ height: 55px;
+ width: 150px;
+ opacity: 0;
+
+ .Btn {
+ height: 100%;
+ width: 100%;
+ border-radius: 20px;
+ }
+ }
}
:deep(.adddialog) {