Browse Source

1

lihuilin/feature-20251104102812-现金二期
ZhangYong 6 days ago
parent
commit
49a8b80a37
  1. 32
      src/views/moneyManage/receiveDetail/receiveManage.vue

32
src/views/moneyManage/receiveDetail/receiveManage.vue

@ -209,7 +209,7 @@
@click="openAuditForm(scope.row)">审核 @click="openAuditForm(scope.row)">审核
</el-link> </el-link>
<el-link <el-link
v-else-if="activeTab == 'pass' && !(scope.row.status == 6 || scope.row.status == 4) && scope.row.receivedMarket == scope.row.submitterMarket"
v-else-if="activeTab == 'pass' && !(scope.row.status == 6 || scope.row.status == 4) && scope.row.receivedMarket == adminData.markets"
style="color: #2741DE;" @click="openEditForm(scope.row)">编辑 style="color: #2741DE;" @click="openEditForm(scope.row)">编辑
</el-link> </el-link>
<el-link <el-link
@ -1016,7 +1016,7 @@ const navigateTo = async (tab) => {
// 2.4 // 2.4
// //
const openAuditForm = (row) => { const openAuditForm = (row) => {
auditFormData.value = {...row, market: row.marketName};
auditFormData.value = { ...row, market: row.marketName };
ifGold(auditFormData.value) ifGold(auditFormData.value)
console.log('isGold', isGold.value); console.log('isGold', isGold.value);
@ -1122,7 +1122,7 @@ watch(auditFormisible, (val) => {
const openEditForm = (row) => { const openEditForm = (row) => {
console.log('row.aaa', row.handlingCharge); console.log('row.aaa', row.handlingCharge);
editFormData.value = {...row};
editFormData.value = { ...row };
// //
if (row.goodsName === '金币充值') isEditGold.value = true; if (row.goodsName === '金币充值') isEditGold.value = true;
else isEditGold.value = false; else isEditGold.value = false;
@ -1234,7 +1234,7 @@ const handleMouseMove = (e) => {
// //
const getAdminData = async () => { const getAdminData = async () => {
try { try {
const result = await API({url: '/admin/userinfo', data: {}});
const result = await API({ url: '/admin/userinfo', data: {} });
adminData.value = result; adminData.value = result;
// //
@ -1258,7 +1258,7 @@ const getAdminData = async () => {
// //
const getActivitys = async () => { const getActivitys = async () => {
try { try {
const result = await API({url: '/cashCollection/getActivityList', data: {}});
const result = await API({ url: '/cashCollection/getActivityList', data: {} });
if (result.code === 200) { if (result.code === 200) {
activityList.value = result.data; activityList.value = result.data;
} else { } else {
@ -1271,8 +1271,8 @@ const getActivitys = async () => {
}; };
// 2.8 // 2.8
const throttledhandelAuditReject = _.throttle(handelAuditReject, 3000, {trailing: false});
const throttledsubmitEditForm = _.throttle(submitEditForm, 3000, {trailing: false});
const throttledhandelAuditReject = _.throttle(handelAuditReject, 3000, { trailing: false });
const throttledsubmitEditForm = _.throttle(submitEditForm, 3000, { trailing: false });
const throttledsubmitRefund = _.throttle(submitRefund, 5000, { const throttledsubmitRefund = _.throttle(submitRefund, 5000, {
trailing: false trailing: false
}) })
@ -1299,20 +1299,14 @@ onMounted(async () => {
}); });
// 2.10 使 // 2.10 使
const handleCurrencyChange = () => {
};
const handleCurrencyChange = () => { };
const beforeUpload = () => true; const beforeUpload = () => true;
const handelImgErr = () => {
};
const handleImageChange = () => {
};
const customUpload = () => {
};
const handleDatePickerChange = () => {
};
const handelImgErr = () => { };
const handleImageChange = () => { };
const customUpload = () => { };
const handleDatePickerChange = () => { };
const disabledDate = () => false; const disabledDate = () => false;
const handleSortChange = () => {
};
const handleSortChange = () => { };
const getMarket = async function () { const getMarket = async function () {
try { try {
const result = await API({ const result = await API({

Loading…
Cancel
Save