@dongkboy 1 год назад
Родитель
Сommit
d8347b9d7a

+ 3 - 1
components/modules/index/index-nav.vue

@@ -4,7 +4,8 @@
 			:duration="duration" :interval="interval" :autoplay="autoplay" @change="categoryChange">
 			<swiper-item v-for="(page, pageindex) in categoryList" :key="pageindex">
 				<view class="category-list">
-					<view class="icon" v-for="category in page" :key="category.cat_id" @tap="tapEvent(category)">
+					<view class="icon" v-for="category in page" :key="category.cat_id" @tap="tapEvent(category)"
+						v-if="category.featureHideHandling">
 						<image :src="category.img" :style="{width:category.width,height:category.height}" mode="">
 						</image>
 						<view class="category-title">{{ category.title }}</view>
@@ -156,6 +157,7 @@
 			event(item) {},
 			//分类跳转
 			async tapEvent(e) {
+				console.log(e);
 				this.form.name = "";
 				this.form.identifyNumber = "";
 				this.form.identifyValidDate = "";

+ 9 - 0
config/login.js

@@ -239,6 +239,15 @@ async function getLoginUserInfo(token, userId) {
 			themeCode: baojiadan.data[0],
 		}
 	})
+	let featureHideHandling = await $http.get('/sys/switch/appUndeveloped/display', {
+		header: {
+			Authorization: Author,
+		}
+	});
+	store.commit('setUserModules', {
+		title: 'featureHideHandling',
+		data: featureHideHandling.data,
+	})
 	// if (userInfoRes.data.name == '游客') {
 	// 	uni.reLaunch({
 	// 		url: "/pages/user/certify"

+ 2 - 2
manifest.json

@@ -7,8 +7,8 @@
 		"sizes": "分辨率,192x192",
 		"src": "图片路径"
 	}],
-	"versionName": "3.1.2",
-	"versionCode": 312,
+	"versionName": "3.1.5",
+	"versionCode": 315,
 	"app-plus": {
 		"error": {
 			"url": "hybrid/html/error.html"

+ 2 - 2
pages.json

@@ -26,7 +26,7 @@
 		}, {
 			"path": "pages/login/mimi", //隐私协议
 			"style": {
-				"navigationBarTitleText": "隐私协议",
+				"navigationBarTitleText": "隐私政策",
 				"app-plus": {
 					"bounce": "none", //关闭反弹效果
 					"scrollIndicator": "none" //隐藏滚动条
@@ -45,7 +45,7 @@
 		}, {
 			"path": "pages/login/xieyi", //平台协议
 			"style": {
-				"navigationBarTitleText": "平台协议",
+				"navigationBarTitleText": "用户协议",
 				"app-plus": {
 					"bounce": "none", //关闭反弹效果
 					"scrollIndicator": "none" //隐藏滚动条

+ 108 - 88
pages/index/index.vue

@@ -8,7 +8,7 @@
 				<text>{{city}}</text>
 				<image src="../../static/image/index/img/jiantou.png" mode="" style="width: 12px;height: 12px;"></image>
 			</view>
-			<view class="search" style="">
+			<view class="search" :style="{opacity:featureHideHandling?1:0}">
 				<u-search :show-action="true" action-text="搜索" bg-color="#fff" maxlength="10" placeholder="请输入关键词"
 					:clearabled="false" :action-style="{position: 'absolute',right:'10px'}" search-icon="0">
 				</u-search>
@@ -26,102 +26,110 @@
 
 		</view>
 		<view class="pagebody">
-			<index-nav :resdata="categoryList" :row="2" @authModal="authModal"></index-nav>
-			<u-tabs :list="itemCategorylist" :is-scroll="false" :current="current" @change="change"
-				style="background: transparent;" active-color="#000"></u-tabs>
-			<view class="mt-1 dis j-s a-c">
-				<view class="activity dis f-c " @click="activity('/pages/index/checkIn')">
-					<text>签到有礼</text>
-					<text>福利多多</text>
-					<image src="../../static/image/index/pick-img/1.png" mode="" style="width: 32px;height: 32px;">
-					</image>
-				</view>
-				<view class="activity dis f-c " @click="activity('/pages/index/task')">
-					<text>精彩任务</text>
-					<text>奖励多多</text>
-					<image src="../../static/image/index/pick-img/2.png" mode="" style="width: 36px;height: 32px;">
-					</image>
-				</view>
-				<view class="activity dis f-c " @click="activity('/pages/index/flashSale')">
-					<text>限时秒杀</text>
-					<text>9.9元起</text>
-					<image src="../../static/image/index/pick-img/3.png" mode="" style="width: 32px;height: 32px;">
-					</image>
-				</view>
-			</view>
-			<view class="mt-3 dis j-s ">
-				<view class="flashSale dis f-c">
-					<image class="bg1" src="../../static/image/index/pick-img/bg1.png" mode=""></image>
-					<view class="title dis j-s">
-						<image src="../../static/image/index/pick-img/4.png" mode="widthFix"
-							style="width: 73px;height: 25px;"></image>
-						<view class="dis a-c">
-							<image src="../../static/image/index/pick-img/loding.png" mode=""
-								style="width: 12px;height: 12px;"></image>
-							<text>换一批</text>
-						</view>
-					</view>
-					<view class="dis j-s a-c mt-2">
-						<image src="../../static/image/index/pick-img/5.png" mode="" style="width: 56px;height: 56px;">
-						</image>
-						<image src="../../static/image/index/pick-img/8.png" mode="" style="width: 80px;height: 56px;">
+			<index-nav :resdata="categoryList" :row="featureHideHandling?2:1" @authModal="authModal"></index-nav>
+			<template v-if="featureHideHandling">
+				<u-tabs :list="itemCategorylist" :is-scroll="false" :current="current" @change="change"
+					style="background: transparent;" active-color="#000"></u-tabs>
+				<view class="mt-1 dis j-s a-c">
+					<view class="activity dis f-c " @click="activity('/pages/index/checkIn')">
+						<text>签到有礼</text>
+						<text>福利多多</text>
+						<image src="../../static/image/index/pick-img/1.png" mode="" style="width: 32px;height: 32px;">
 						</image>
 					</view>
-					<view class="dis j-s a-c mt-2">
-						<image src="../../static/image/index/pick-img/6.png" mode="" style="width: 56px;height: 56px;">
-						</image>
-						<image src="../../static/image/index/pick-img/9.png" mode="" style="width: 80px;height: 56px;">
+					<view class="activity dis f-c " @click="activity('/pages/index/task')">
+						<text>精彩任务</text>
+						<text>奖励多多</text>
+						<image src="../../static/image/index/pick-img/2.png" mode="" style="width: 36px;height: 32px;">
 						</image>
 					</view>
-					<view class="dis j-s a-c mt-2">
-						<image src="../../static/image/index/pick-img/7.png" mode="" style="width: 56px;height: 56px;">
-						</image>
-						<image src="../../static/image/index/pick-img/8.png" mode="" style="width: 80px;height: 56px;">
+					<view class="activity dis f-c " @click="activity('/pages/index/flashSale')">
+						<text>限时秒杀</text>
+						<text>9.9元起</text>
+						<image src="../../static/image/index/pick-img/3.png" mode="" style="width: 32px;height: 32px;">
 						</image>
 					</view>
 				</view>
-				<view class="hotSaleList dis f-c">
-					<image class="bg1" src="../../static/image/index/pick-img/bg2.png" mode=""></image>
-					<view class="title dis j-s">
-						<text style="font-size: 17px;color: #333;font-weight: bold;">热销榜</text>
-						<view class="dis a-c">
-							<image src="../../static/image/index/pick-img/loding.png" mode=""
-								style="width: 12px;height: 12px;"></image>
-							<text>换一批</text>
+				<view class="mt-3 dis j-s ">
+					<view class="flashSale dis f-c">
+						<image class="bg1" src="../../static/image/index/pick-img/bg1.png" mode=""></image>
+						<view class="title dis j-s">
+							<image src="../../static/image/index/pick-img/4.png" mode="widthFix"
+								style="width: 73px;height: 25px;"></image>
+							<view class="dis a-c">
+								<image src="../../static/image/index/pick-img/loding.png" mode=""
+									style="width: 12px;height: 12px;"></image>
+								<text>换一批</text>
+							</view>
 						</view>
-					</view>
-					<view class="mt-2 dis a-c j-s content" style="position: relative;">
-						<image src="../../static/image/index/pick-img/10.png" mode=""
-							style="width: 53px;height: 53px;margin-right: 8px;">
-						</image>
-						<view class="dis f-c " style="width: 55%;">
-							<text style="font-size: 12px;color: #333;line-height: 1.2;">车仆后视镜弹水剂 新升级...</text>
-							<text style="color: #FF476C;font-size: 12px;">¥ <text
-									style="font-size: 15px;font-weight: bold;line-height: 1.2;">79</text> </text>
+						<view class="dis j-s a-c mt-2">
+							<image src="../../static/image/index/pick-img/5.png" mode=""
+								style="width: 56px;height: 56px;">
+							</image>
+							<image src="../../static/image/index/pick-img/8.png" mode=""
+								style="width: 80px;height: 56px;">
+							</image>
 						</view>
-					</view>
-					<view class="mt-2 dis a-c j-s " style="position: relative;">
-						<image src="../../static/image/index/pick-img/11.png" mode=""
-							style="width: 53px;height: 53px;margin-right: 8px;">
-						</image>
-						<view class="dis f-c " style="width: 55%;">
-							<text style="font-size: 12px;color: #333;line-height: 1.2;">朗龙汽车香水车载香薰摆...</text>
-							<text style="color: #FF476C;font-size: 12px;">¥ <text
-									style="font-size: 15px;font-weight: bold; line-height: 1.2;">65.9</text> </text>
+						<view class="dis j-s a-c mt-2">
+							<image src="../../static/image/index/pick-img/6.png" mode=""
+								style="width: 56px;height: 56px;">
+							</image>
+							<image src="../../static/image/index/pick-img/9.png" mode=""
+								style="width: 80px;height: 56px;">
+							</image>
+						</view>
+						<view class="dis j-s a-c mt-2">
+							<image src="../../static/image/index/pick-img/7.png" mode=""
+								style="width: 56px;height: 56px;">
+							</image>
+							<image src="../../static/image/index/pick-img/8.png" mode=""
+								style="width: 80px;height: 56px;">
+							</image>
 						</view>
 					</view>
-					<view class=" dis a-c j-s mt-2" style="position: relative;">
-						<image src="../../static/image/index/pick-img/12.png" mode=""
-							style="width: 53px;height: 53px;margin-right: 8px;">
-						</image>
-						<view class="dis f-c  a-start " style="width: 55%;">
-							<text style="font-size: 12px;color: #333;line-height: 1.2;">新车除甲醛除异味车内除...</text>
-							<text style="color: #FF476C;font-size: 12px;">¥ <text
-									style="font-size: 15px;font-weight: bold;line-height: 1.2;">29.5</text> </text>
+					<view class="hotSaleList dis f-c">
+						<image class="bg1" src="../../static/image/index/pick-img/bg2.png" mode=""></image>
+						<view class="title dis j-s">
+							<text style="font-size: 17px;color: #333;font-weight: bold;">热销榜</text>
+							<view class="dis a-c">
+								<image src="../../static/image/index/pick-img/loding.png" mode=""
+									style="width: 12px;height: 12px;"></image>
+								<text>换一批</text>
+							</view>
+						</view>
+						<view class="mt-2 dis a-c j-s content" style="position: relative;">
+							<image src="../../static/image/index/pick-img/10.png" mode=""
+								style="width: 53px;height: 53px;margin-right: 8px;">
+							</image>
+							<view class="dis f-c " style="width: 55%;">
+								<text style="font-size: 12px;color: #333;line-height: 1.2;">车仆后视镜弹水剂 新升级...</text>
+								<text style="color: #FF476C;font-size: 12px;">¥ <text
+										style="font-size: 15px;font-weight: bold;line-height: 1.2;">79</text> </text>
+							</view>
+						</view>
+						<view class="mt-2 dis a-c j-s " style="position: relative;">
+							<image src="../../static/image/index/pick-img/11.png" mode=""
+								style="width: 53px;height: 53px;margin-right: 8px;">
+							</image>
+							<view class="dis f-c " style="width: 55%;">
+								<text style="font-size: 12px;color: #333;line-height: 1.2;">朗龙汽车香水车载香薰摆...</text>
+								<text style="color: #FF476C;font-size: 12px;">¥ <text
+										style="font-size: 15px;font-weight: bold; line-height: 1.2;">65.9</text> </text>
+							</view>
+						</view>
+						<view class=" dis a-c j-s mt-2" style="position: relative;">
+							<image src="../../static/image/index/pick-img/12.png" mode=""
+								style="width: 53px;height: 53px;margin-right: 8px;">
+							</image>
+							<view class="dis f-c  a-start " style="width: 55%;">
+								<text style="font-size: 12px;color: #333;line-height: 1.2;">新车除甲醛除异味车内除...</text>
+								<text style="color: #FF476C;font-size: 12px;">¥ <text
+										style="font-size: 15px;font-weight: bold;line-height: 1.2;">29.5</text> </text>
+							</view>
 						</view>
 					</view>
 				</view>
-			</view>
+			</template>
 		</view>
 		<auth-Modal :authShow="authShow" @btnClick="authShow=false" @maskClick="authShow=false"></auth-Modal>
 	</view>
@@ -233,7 +241,7 @@
 						title: '掌柜商城',
 						width: '92rpx',
 						height: '69rpx',
-						src: '/pages/shoppingMall/index'
+						// src: '/pages/shoppingMall/index'
 					},
 					{
 						cat_id: 5,
@@ -241,7 +249,7 @@
 						title: '洗车',
 						width: '68rpx',
 						height: '68rpx',
-						src: '/pages/carWash/carWash'
+						// src: '/pages/carWash/carWash'
 					},
 					{
 						cat_id: 6,
@@ -249,7 +257,7 @@
 						title: '车检代办',
 						width: '68rpx',
 						height: '68rpx',
-						src: '/pages/caragent/index'
+						// src: '/pages/caragent/index'
 					},
 					{
 						cat_id: 7,
@@ -273,7 +281,7 @@
 						title: '一键挪车',
 						width: '68rpx',
 						height: '68rpx',
-						src: '/pages/ticket/ticket'
+						// src: '/pages/ticket/ticket'
 					}
 				],
 
@@ -382,7 +390,7 @@
 		},
 
 		computed: {
-			...mapState(['userInfo'])
+			...mapState(['userInfo', 'featureHideHandling'])
 		},
 
 		onPageScroll(e) {
@@ -404,6 +412,7 @@
 			if (arr) {
 				uni.removeStorageSync('historyInfo');
 			}
+			this.initializeCategoryList();
 			// #ifdef APP-PLUS
 			this.getCurrentLocation();
 			this.soketInit();
@@ -416,6 +425,16 @@
 			uni.stopPullDownRefresh();
 		},
 		methods: {
+			initializeCategoryList() {
+				this.categoryList.map(val => {
+					if (!val.src) {
+						val["featureHideHandling"] = this.featureHideHandling;
+					} else {
+						val["featureHideHandling"] = true;
+					}
+					return val;
+				})
+			},
 			activity(url) {
 				uni.navigateTo({
 					url: url,
@@ -675,6 +694,7 @@
 			position: relative;
 			width: 70%;
 
+
 			.search-Scan {
 				width: 20px;
 				height: 20px;

+ 7 - 6
pages/login/login.vue

@@ -90,12 +90,13 @@
 				<button class="my-3  d-flex a-center j-center font-weight bg-color" :loading="loading"
 					:class="{'bg-hover-color':disabled}" type="primary" @tap="submit" :disabled="disabled"
 					style="letter-spacing: 20rpx;">登录</button>
-				<view class=" left-0 right-0 dis a-c j-start  text-light-muted" style="bottom:30rpx">
-					<u-checkbox v-model="checked"></u-checkbox>
-					我已确认并同意<view> <text @tap="nav('/pages/login/xieyi')" class="text-color">平台协议</text>及<text
-							class="text-color" @tap="nav('/pages/login/mimi')">隐私协议</text>政策</view>
+				<view class="  dis a-start  text-light-muted">
+					<u-checkbox v-model="checked" style="margin-top: 4px;"></u-checkbox>
+					<text>
+						我阅读并同意 <text @tap="nav('/pages/login/xieyi')" class="text-color">用户协议</text>和<text
+							class="text-color" @tap="nav('/pages/login/mimi')">隐私政策</text>,未注册用户将自动注册
+					</text>
 				</view>
-
 				<!-- #ifdef APP -->
 				<view class="third_party_login_box">
 					<view class="third_party_title"><text>第三方登录</text></view>
@@ -413,7 +414,7 @@
 			submit() {
 				if (!this.checked) {
 					return this.$refs.uToast.show({
-						title: '请阅读后勾选并同意《平台协议》及《隐私协议》政策',
+						title: '请阅读后勾选并同意《用户协议》及《隐私政策》',
 						type: 'default',
 					})
 				}

+ 3 - 0
pages/login/mimi.vue

@@ -46,6 +46,9 @@
 		<view style="font-weight: bold;text-indent: 2rem;">(1)注册成为用户</view>
 		<view style="font-weight: bold;text-indent: 2rem;text-decoration: underline;">
 			为完成创建账号,您需提供您本人的手机号码,我们将通过发送短信验证码的方式来验证您的身份是否有效。</view>
+		<view style="font-weight: bold;text-indent: 2rem;text-decoration: underline;">
+			当您选择授权使用第三方账号注册、登录时,我们会从第三方获取您共享的账号信息(如头像、昵称及其他您在页面授权的信息)与您的晋掌柜账号进行绑定用于快捷登录。在您选择使用第三方账号注册、登录的部分情况下,我们需要重新验证并绑定您的手机号码,以确认该第三方账号的真实性和关联性。
+		</view>
 		<view style="text-indent: 2rem;">在注册过程中,如果您提供以下额外信息,将有助于我们给您提供更好地服务和体验: <text
 				style="font-weight: bold;text-decoration: underline;">地址信息、车牌号码、微信账号、微信头像及晋掌柜相应页面显示您可填写的其余信息。</text>但如果您不提供这些补充信息,将不会影响您浏览我们的服务,但可能会在服务阶段要求您补充相关信息。
 		</view>

+ 18 - 6
pages/my/my.vue

@@ -54,7 +54,7 @@
 							<image class="imgIcon" src="../../static/image/my/ka.png" mode=""></image>
 							<image class="shape" src="../../static/image/my/ka-shape.png" mode=""></image>
 						</view>
-						<view class="bg dis f-c" @tap="accountTool()">
+						<view class="bg dis f-c" @tap="accountTool()" v-if="featureHideHandling">
 							<text>我的充值</text>
 							<view class="dis a-c details" style="margin-top: 7rpx;">
 								<text>查看详情</text>
@@ -80,7 +80,8 @@
 							<uni-grid :column="4" :show-border="false" :square="false" :highlight="false"
 								@change="toTools($event,'toolsList')">
 								<uni-grid-item class="" v-show="(index>=(cindex)*8) && (index<(cindex+1)*8)"
-									v-for="(item ,index) in toolsList" :index="index" :key="item.text">
+									v-for="(item ,index) in toolsList" :index="index" :key="item.text"
+									v-if="item.featureHideHandling">
 									<view class="grid-item-box dis a-c j-c f-c">
 										<image :src="item.image" mode=""
 											style="width: 34px;height: 34px;margin: 10px 9px 4px;"></image>
@@ -99,7 +100,7 @@
 		<!-- 我的工具End -->
 
 		<!-- 售后管理Start -->
-		<view class="my-tools mb-2">
+		<view class="my-tools mb-2" v-if="featureHideHandling">
 			<view class="order-body dis f-c">
 				<view class="header dis a-c">
 					<view class="tag"></view>
@@ -291,7 +292,7 @@
 					{
 						image: '/static/image/my/icon10.png',
 						text: '优惠劵',
-						url: '/pages/tools/coupon/coupon',
+						// url: '/pages/tools/coupon/coupon',
 					},
 					{
 						image: '/static/image/my/icon11.png',
@@ -305,7 +306,7 @@
 					{
 						image: '/static/image/my/icon13.png',
 						text: '任务中心',
-						url: "/pages/ad/index",
+						// url: "/pages/ad/index",
 					}
 				],
 				aboutList: [{
@@ -374,7 +375,7 @@
 		},
 
 		computed: {
-			...mapState(['userInfo', "userCheckInfo"]),
+			...mapState(['userInfo', "userCheckInfo", 'featureHideHandling']),
 
 			toolsListLength() {
 				// let length = Math.ceil(this.toolsList.length / 8);
@@ -391,6 +392,7 @@
 		async onShow() {
 			await this.loginUser();
 			await this.getInsureCount();
+			this.initializeCategoryList();
 			if (this.userInfo.sysUser.headSculpture) {
 				this.avatar = this.$base.baseUrl + this.userInfo.sysUser.headSculpture;
 			} else {
@@ -431,6 +433,16 @@
 					url: '/pages/chat/chat'
 				})
 			},
+			initializeCategoryList() {
+				this.toolsList.map(val => {
+					if (!val.url) {
+						val["featureHideHandling"] = this.featureHideHandling;
+					} else {
+						val["featureHideHandling"] = true;
+					}
+					return val;
+				})
+			},
 			promotionQrde() {
 				uni.navigateTo({
 					url: '/pages/tools/addStaff/addStaff'

+ 5 - 5
pages/orders/orders.vue

@@ -207,29 +207,29 @@
 						</view>
 					</view>
 					<view class="orderItemPane-below dis a-c  j-end f-wrap">
-						<u-button v-if="!['3','11'].includes(item.orderstatus)"
+						<u-button v-if="!['3'].includes(item.orderstatus)"
 							:custom-style="{fontSize:'12px',background:'rgba(34,152,5,0.05)',color:'#229805',borderColor:'#229805'}"
 							shape="circle" size="mini" :hair-line="false" :plain="true"
 							@click="CloseEdit(item.orderno)">进行中 <u-badge type="error" bgColor="#FF0F00"
 								v-if="item.orderStatus0" :count="item.orderStatus0"
 								:offset="[-8, -8]"></u-badge></u-button>
-						<u-button v-if="!['3','11'].includes(item.orderstatus)"
+						<u-button v-if="!['3'].includes(item.orderstatus)"
 							:custom-style="{fontSize:'12px',background:'rgba(255,86,0,0.05)',color:'#FF5600',borderColor:'#FF5600'}"
 							shape="circle" size="mini" :hair-line="false" :plain="true"
 							@click="quotehistory(item,'1')">核保中 <u-badge type="error" bgColor="#FF0F00"
 								v-if="item.orderStatus1" :count="item.orderStatus1"
 								:offset="[-8, -8]"></u-badge></u-button>
-						<u-button v-if="!['3','11'].includes(item.orderstatus)"
+						<u-button v-if="!['3'].includes(item.orderstatus)"
 							:custom-style="{fontSize:'12px',background:'rgba(255,15,0,0.05)',color:'#FF0F00',borderColor:'#FF0F00'}"
 							shape="circle" size="mini" :hair-line="false" :plain="true"
 							@click="quotehistory(item,'2')">待缴费 <u-badge type="error" bgColor="#FF0F00"
 								v-if="item.orderStatus2" :count="item.orderStatus2"
 								:offset="[-8, -8]"></u-badge></u-button>
-						<u-button v-if="!['11'].includes(item.orderstatus)"
+						<u-button
 							:custom-style="{fontSize:'12px',background:'rgba(0,82,255,0.05)',color:'#0052FF',borderColor:'#0052FF'}"
 							shape="circle" size="mini" :hair-line="false" :plain="true"
 							@click="quotehistory(item,'3')">已承保</u-button>
-						<u-button v-if="!['3','11'].includes(item.orderstatus)"
+						<u-button v-if="!['3'].includes(item.orderstatus)"
 							:custom-style="{fontSize:'12px',background:'rgba(158,0,255,0.05)',color:'#9E00FF',borderColor:'#9E00FF'}"
 							shape="circle" size="mini" :hair-line="false" :plain="true"
 							@click="quotehistory(item,'4')">核保退回 <u-badge type="error" bgColor="#FF0F00"

+ 5 - 1
pages/user/authInfo.vue

@@ -92,7 +92,7 @@
 		<view class="footer">
 			<view class="btn dis j-c a-c"
 				:style="{background:disabled?'linear-gradient(90deg, #499DFF 0%, #0052FF 100%)':'linear-gradient(90deg, rgba(73, 157, 255, 0.4) 0%, rgba(0, 82, 255, 0.4) 100%)',pointerEvents:disabled?'auto':'none'}"
-				@click="authSubmit">提交认证</view>
+				@tap="$u.throttle(authSubmit, 3000)">提交认证</view>
 		</view>
 		<auth-Modal :authShow="authShow" @btnClick="authShow=false" @maskClick="authShow=false"></auth-Modal>
 	</view>
@@ -192,8 +192,12 @@
 		},
 		methods: {
 			async authSubmit() {
+				uni.showLoading({
+					title: '正在提交,请稍等片刻'
+				});
 				let res = await this.$http.post('/userAgent/agentAuth', this.authInfo);
 				if (res.code == '200' && res.data.status) {
+					uni.hideLoading();
 					uni.navigateTo({
 						url: "/pages/user/authResult?status=" + res.data.status + '&desc=' + res.data.desc
 					})