-
+
+
+
+
+
+
+
+
+
-
-
+
-
-
+
+
+
+
+
+
+
+
+
+
+
搜索
重置
@@ -48,7 +77,9 @@
-
+
+ {{d.row.billNo}}
+
@@ -57,7 +88,7 @@
{{d.row.money | money}} 元
-
+
{{d.row.arrivalAmount | money}} 元
@@ -74,7 +105,7 @@
-
+
@@ -89,16 +120,17 @@
+
审核
+ icon="el-icon-view"
+ @click="handleView(scope.row)"
+ v-hasPermi="['system:bill:query']"
+ >详情
-
-
-
-
-
-
- {{approvalForm.mchName | defaultVaule}}
-
-
-
- {{approvalForm.money | money}} 元
-
-
- {{approvalForm.arrivalAmount | money}} 元
-
-
- {{approvalForm.serviceCharge | money}} 元
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
@@ -181,13 +175,18 @@ import {
rejectWithDrawBill, payWithDrawBill
} from "@/api/system/withdraw";
import UserLink from '@/components/Business/SmUser/UserLink.vue'
+import WithdrawDetail from '@/views/system/withdraw/detail.vue'
+import { AccountType, WithdrawType } from '@/utils/constants'
+import { getUserAccountByType } from '@/api/ss/account'
export default {
name: "Bill",
- components: { UserLink },
+ components: { WithdrawDetail, UserLink },
dicts: ['withdraw_status', 'withdraw_type', 'channel_type'],
data() {
return {
+ showDetail: false,
+ row: {},
// 遮罩层
loading: true,
// 选中数组
@@ -224,18 +223,19 @@ export default {
approvalForm: {
billId: null,
remark: null,
+ offlineImage: null
},
- approvalRules: {
- withdrawType: [
- { required: true, message: "请选择打款方式", trigger: "blur"}
- ]
- }
};
},
created() {
this.getList();
},
methods: {
+ // 查看详情
+ handleView(row) {
+ this.row = row;
+ this.showDetail = true;
+ },
// 处理打款
handlePay(row) {
if (row == null || row.billId == null) {
@@ -255,38 +255,6 @@ export default {
})
})
},
- pass() {
- this.$confirm("确定通过审核吗?", "通过", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- }).then(() => {
- passWithDrawBill(this.approvalForm).then(res => {
- if (res.code !== 200) {
- return this.$message.error(res.msg);
- }
- this.$message.success("通过成功");
- this.openApproval = false;
- this.getList();
- })
- })
- },
- reject() {
- this.$confirm("确定驳回吗?", "驳回", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- }).then(() => {
- rejectWithDrawBill(this.approvalForm).then(res => {
- if (res.code !== 200) {
- return this.$message.error(res.msg);
- }
- this.$message.success("驳回成功");
- this.openApproval = false;
- this.getList();
- })
- })
- },
// 处理审核
handleApproval(row) {
getBill(row.billId).then(response => {