9800活动上线,营业资质非必填
This commit is contained in:
parent
fd5923a4dc
commit
ee20019de3
|
|
@ -7,8 +7,8 @@
|
|||
"type" : "uni-app:app-ios"
|
||||
},
|
||||
{
|
||||
"customPlaygroundType" : "device",
|
||||
"playground" : "standard",
|
||||
"customPlaygroundType" : "local",
|
||||
"playground" : "custom",
|
||||
"type" : "uni-app:app-android"
|
||||
}
|
||||
]
|
||||
|
|
|
|||
|
|
@ -2,8 +2,8 @@
|
|||
"name" : "美融融商家",
|
||||
"appid" : "__UNI__BBE6285",
|
||||
"description" : "同城便捷到家美业“技术外卖”服务、同城预约到店服务平台美融融为同城爱美人群提供更优质的更全面的服务。",
|
||||
"versionName" : "1.0.21",
|
||||
"versionCode" : 1021,
|
||||
"versionName" : "1.0.22",
|
||||
"versionCode" : 1022,
|
||||
"transformPx" : false,
|
||||
/* 5+App特有相关 */
|
||||
"app-plus" : {
|
||||
|
|
|
|||
|
|
@ -185,7 +185,7 @@
|
|||
</view>
|
||||
</view>
|
||||
|
||||
<view class="notice-bar card-box">
|
||||
<view class="notice-bar card-box" v-if="noticeList.length > 0">
|
||||
<image class="notice-icon"
|
||||
src="https://mrrplus.oss-cn-beijing.aliyuncs.com/photo/system/75f624b8-a6ed-4787-9380-1a087062805b.png">
|
||||
</image>
|
||||
|
|
@ -270,11 +270,7 @@ export default {
|
|||
displayScore: 0,
|
||||
animationTimer: null,
|
||||
|
||||
noticeList: [{
|
||||
id: 0,
|
||||
title: '',
|
||||
url: ''
|
||||
}],
|
||||
noticeList: [],
|
||||
|
||||
quickActions: [{
|
||||
name: '扫码验券',
|
||||
|
|
|
|||
|
|
@ -372,7 +372,7 @@ export default {
|
|||
this.formData.id = options.id;
|
||||
this.getInit();
|
||||
} else {
|
||||
request.post("/sj/firstclass", {}).then((res) => {
|
||||
request.post("/sj/firstclass", { id: uni.getStorageSync("sjId") }).then((res) => {
|
||||
this.serviceTypes = this.serviceTypes.concat(res.data);
|
||||
});
|
||||
}
|
||||
|
|
@ -539,7 +539,7 @@ export default {
|
|||
this.formData.video = null;
|
||||
},
|
||||
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);
|
||||
|
||||
await request
|
||||
|
|
|
|||
|
|
@ -225,7 +225,7 @@
|
|||
</view>
|
||||
|
||||
<view class="form-item-image-box box-cont">
|
||||
<text class="label required">行业资质</text>
|
||||
<text class="label">行业资质</text>
|
||||
<view class="image-list">
|
||||
<view class="image-item" v-for="(img, index) in displayData.qualifications_sector"
|
||||
:key="'industry-' + index">
|
||||
|
|
|
|||
|
|
@ -120,14 +120,14 @@ const request = async (options, isUpdate) => {
|
|||
|
||||
if (process.env.NODE_ENV === "development") {
|
||||
baseURL = url; // 发布到生产环境时,此处代码会被摇树移除掉。
|
||||
baseURL = "http://test.mrrwlkj.top"; // 发布到生产环境时,此处代码会被摇树移除掉。
|
||||
// baseURL = "http://test.mrrwlkj.top"; // 发布到生产环境时,此处代码会被摇树移除掉。
|
||||
// baseURL = 'http://dev.mrrwlkj.top'; // 发布到生产环境时,此处代码会被摇树移除掉。
|
||||
// baseURL = "https://app.mrrweb.com.cn";
|
||||
baseURL = "https://app.mrrweb.com.cn";
|
||||
} else {
|
||||
baseURL = url; // 发布到生产环境时,此处代码会被摇树移除掉。
|
||||
baseURL = "http://test.mrrwlkj.top"; // 发布到生产环境时,此处代码会被摇树移除掉。
|
||||
// baseURL = "http://test.mrrwlkj.top"; // 发布到生产环境时,此处代码会被摇树移除掉。
|
||||
// baseURL = 'http://dev.mrrwlkj.top'; // 发布到生产环境时,此处代码会被摇树移除掉。
|
||||
// baseURL = "https://app.mrrweb.com.cn";
|
||||
baseURL = "https://app.mrrweb.com.cn";
|
||||
|
||||
console.log("生产环境");
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue