9800活动上线,营业资质非必填

This commit is contained in:
丁杰 2026-06-22 14:35:50 +08:00
parent fd5923a4dc
commit ee20019de3
6 changed files with 13 additions and 17 deletions

View File

@ -7,8 +7,8 @@
"type" : "uni-app:app-ios" "type" : "uni-app:app-ios"
}, },
{ {
"customPlaygroundType" : "device", "customPlaygroundType" : "local",
"playground" : "standard", "playground" : "custom",
"type" : "uni-app:app-android" "type" : "uni-app:app-android"
} }
] ]

View File

@ -2,8 +2,8 @@
"name" : "美融融商家", "name" : "美融融商家",
"appid" : "__UNI__BBE6285", "appid" : "__UNI__BBE6285",
"description" : "同城便捷到家美业“技术外卖”服务、同城预约到店服务平台美融融为同城爱美人群提供更优质的更全面的服务。", "description" : "同城便捷到家美业“技术外卖”服务、同城预约到店服务平台美融融为同城爱美人群提供更优质的更全面的服务。",
"versionName" : "1.0.21", "versionName" : "1.0.22",
"versionCode" : 1021, "versionCode" : 1022,
"transformPx" : false, "transformPx" : false,
/* 5+App */ /* 5+App */
"app-plus" : { "app-plus" : {

View File

@ -185,7 +185,7 @@
</view> </view>
</view> </view>
<view class="notice-bar card-box"> <view class="notice-bar card-box" v-if="noticeList.length > 0">
<image class="notice-icon" <image class="notice-icon"
src="https://mrrplus.oss-cn-beijing.aliyuncs.com/photo/system/75f624b8-a6ed-4787-9380-1a087062805b.png"> src="https://mrrplus.oss-cn-beijing.aliyuncs.com/photo/system/75f624b8-a6ed-4787-9380-1a087062805b.png">
</image> </image>
@ -270,11 +270,7 @@ export default {
displayScore: 0, displayScore: 0,
animationTimer: null, animationTimer: null,
noticeList: [{ noticeList: [],
id: 0,
title: '',
url: ''
}],
quickActions: [{ quickActions: [{
name: '扫码验券', name: '扫码验券',

View File

@ -372,7 +372,7 @@ export default {
this.formData.id = options.id; this.formData.id = options.id;
this.getInit(); this.getInit();
} else { } else {
request.post("/sj/firstclass", {}).then((res) => { request.post("/sj/firstclass", { id: uni.getStorageSync("sjId") }).then((res) => {
this.serviceTypes = this.serviceTypes.concat(res.data); this.serviceTypes = this.serviceTypes.concat(res.data);
}); });
} }
@ -539,7 +539,7 @@ export default {
this.formData.video = null; this.formData.video = null;
}, },
async getInit() { async getInit() {
const firstclass = await request.post("/sj/firstclass"); const firstclass = await request.post("/sj/firstclass", { id: uni.getStorageSync("sjId") });
this.serviceTypes = this.serviceTypes.concat(firstclass.data); this.serviceTypes = this.serviceTypes.concat(firstclass.data);
await request await request

View File

@ -225,7 +225,7 @@
</view> </view>
<view class="form-item-image-box box-cont"> <view class="form-item-image-box box-cont">
<text class="label required">行业资质</text> <text class="label">行业资质</text>
<view class="image-list"> <view class="image-list">
<view class="image-item" v-for="(img, index) in displayData.qualifications_sector" <view class="image-item" v-for="(img, index) in displayData.qualifications_sector"
:key="'industry-' + index"> :key="'industry-' + index">

View File

@ -120,14 +120,14 @@ const request = async (options, isUpdate) => {
if (process.env.NODE_ENV === "development") { if (process.env.NODE_ENV === "development") {
baseURL = url; // 发布到生产环境时,此处代码会被摇树移除掉。 baseURL = url; // 发布到生产环境时,此处代码会被摇树移除掉。
baseURL = "http://test.mrrwlkj.top"; // 发布到生产环境时,此处代码会被摇树移除掉。 // baseURL = "http://test.mrrwlkj.top"; // 发布到生产环境时,此处代码会被摇树移除掉。
// baseURL = 'http://dev.mrrwlkj.top'; // 发布到生产环境时,此处代码会被摇树移除掉。 // baseURL = 'http://dev.mrrwlkj.top'; // 发布到生产环境时,此处代码会被摇树移除掉。
// baseURL = "https://app.mrrweb.com.cn"; baseURL = "https://app.mrrweb.com.cn";
} else { } else {
baseURL = url; // 发布到生产环境时,此处代码会被摇树移除掉。 baseURL = url; // 发布到生产环境时,此处代码会被摇树移除掉。
baseURL = "http://test.mrrwlkj.top"; // 发布到生产环境时,此处代码会被摇树移除掉。 // baseURL = "http://test.mrrwlkj.top"; // 发布到生产环境时,此处代码会被摇树移除掉。
// baseURL = 'http://dev.mrrwlkj.top'; // 发布到生产环境时,此处代码会被摇树移除掉。 // baseURL = 'http://dev.mrrwlkj.top'; // 发布到生产环境时,此处代码会被摇树移除掉。
// baseURL = "https://app.mrrweb.com.cn"; baseURL = "https://app.mrrweb.com.cn";
console.log("生产环境"); console.log("生产环境");
} }