feat: 完成商家改版相关页面与请求工具修改

This commit is contained in:
丁杰 2026-06-02 15:23:41 +08:00
parent 85fbbd0990
commit 9610fe2679
3 changed files with 4 additions and 4 deletions

View File

@ -637,7 +637,7 @@
// === 1. ===
// /
uni.navigateTo({
url: '/pages/ruzhu/submitres'
url: '/pages/ruzhu/ruzhu?type=1'
});
} else if (state === 0) {
// === 2. / ===

View File

@ -395,7 +395,7 @@ export default {
if (this.isUnderReview) {
// === ===
uni.navigateTo({
url: '/pages/ruzhu/submitres'
url: '/pages/ruzhu/ruzhu?type=1'
});
} else {
// === / ===
@ -410,7 +410,7 @@ export default {
uni.navigateTo({ url: '/pages/ruzhu/ruzhu' });
} else if (this.isUnderReview) {
//
uni.navigateTo({ url: '/pages/ruzhu/submitres' });
uni.navigateTo({ url: '/pages/ruzhu/ruzhu?type=1' });
} else {
//
this.navigateToForm();

View File

@ -35,7 +35,7 @@ export default {
async getCustomerService() {
try {
const res = await request.post('/sj/userSjAuth/getCustomerService');
console.log('客服接口返回:', JSON.stringify(res));
console.log('客服接口返回:', res);
if (res && (res.state == 1 || res.code == 200)) {
this.infoData = res.data || {};
}