ソースを参照

隐藏登录回退

yuxingxing 2 年 前
コミット
27f37110f3

+ 0 - 65
pages.json

@@ -148,19 +148,6 @@
 						}
 					}
 				},
-				{
-					"path": "goods_search/index",
-					"style": {
-						"navigationBarTitleText": "搜索商品",
-						"app-plus": {
-							// #ifdef APP-PLUS
-							"titleNView": {
-								"type": "default"
-							}
-							// #endif
-						}
-					}
-				},
 				{
 					"path": "order_pay_status/index",
 					"style": {
@@ -1141,58 +1128,6 @@
 						}
 					}
 				},
-				{
-					"path": "vip_paid/index",
-					"style": {
-						"navigationBarTitleText": "SVIP会员",
-						"app-plus": {
-							// #ifdef APP-PLUS
-							"titleNView": {
-								"type": "default"
-							}
-							// #endif
-						}
-					}
-				},
-				{
-					"path": "vip_coupon/index",
-					"style": {
-						"navigationBarTitleText": "会员优惠券",
-						"app-plus": {
-							// #ifdef APP-PLUS
-							"titleNView": {
-								"type": "default"
-							}
-							// #endif
-						}
-					}
-				},
-				{
-					"path": "vip_clause/index",
-					"style": {
-						"navigationBarTitleText": "会员协议",
-						"app-plus": {
-							// #ifdef APP-PLUS
-							"titleNView": {
-								"type": "default"
-							}
-							// #endif
-						}
-					}
-				},
-				{
-					"path": "vip_active/index",
-					"style": {
-						"navigationBarTitleText": "激活会员",
-						"app-plus": {
-							// #ifdef APP-PLUS
-							"titleNView": {
-								"type": "default"
-							}
-							// #endif
-						}
-					}
-				},
 				{
 					"path": "offline_pay/index",
 					"style": {

ファイルの差分が大きいため隠しています
+ 0 - 128
pages/annex/vip_active/index.vue


+ 0 - 62
pages/annex/vip_clause/index.vue

@@ -1,62 +0,0 @@
-<template>
-	<view>
-		<view class="title">{{agreement.title}}</view>
-		<view class="cont" v-html="agreement.content"></view>
-	</view>
-</template>
-
-<script>
-	import {
-		memberCard
-	} from '@/api/user.js';
-
-	export default {
-		data() {
-			return {
-				agreement: ''
-			}
-		},
-		onLoad() {
-			this.memberCard();
-		},
-		methods: {
-			memberCard() {
-				uni.showLoading({
-					title: this.$t(`正在加载中`)
-				});
-				memberCard().then(res => {
-					uni.hideLoading();
-					const {
-						member_explain
-					} = res.data;
-					this.agreement = member_explain;
-				}).catch(err => {
-					uni.hideLoading();
-				});
-			}
-		}
-	}
-</script>
-
-<style>
-	page {
-		background-color: #FFFFFF;
-	}
-</style>
-
-<style scoped lang="scss">
-	.title {
-		padding-top: 60rpx;
-		font-size: 30rpx;
-		text-align: center;
-	}
-
-	.cont {
-		padding: 50rpx 30rpx;
-	    /deep/ img {
-			max-width: 100% !important; 
-		}
-	}
-	
-	
-</style>

ファイルの差分が大きいため隠しています
+ 0 - 160
pages/annex/vip_coupon/index.vue


ファイルの差分が大きいため隠しています
+ 0 - 711
pages/annex/vip_paid/index.vue


ファイルの差分が大きいため隠しています
+ 0 - 9
pages/extension/components/vconsole.min.js


ファイルの差分が大きいため隠しています
+ 0 - 2259
pages/goods_details/index_mall.vue


+ 100 - 89
pages/index/diy/index_mall.vue

@@ -7,102 +7,113 @@
 					:activeStyle="{ color: '#FFD373', fontWeight: 'bold' }" keyName="title"></u-tabs>
 			</view>
 		</view>
-		<!-- 内容切换 -->
-		<view class="tab-content" v-if="current == 0">
-			<!-- 轮播 -->
-			<view class="swiper-group">
-				<u-swiper :list="swiperList" indicator indicatorMode="line" circular></u-swiper>
-			</view>
-			<!-- 宫格 -->
-			<view class="grid-box">
-				<view class="grid-group">
-					<view class="grid-item">
-						<image src="../../../static/menus/秒杀专区.png" mode="aspectFit" @click="menusTap('秒杀专区',0)"></image>
-						<text>秒杀专区</text>
-					</view>
-					<view class="grid-item">
-						<image src="../../../static/menus/红包商城.png" mode="aspectFit" @click="menusTap('红包商城',3)"></image>
-						<text>红包商城</text>
-					</view>
-					<view class="grid-item">
-						<image src="../../../static/menus/积分专区.png" mode="aspectFit" @click="menusTap('积分专区',1)"></image>
-						<text>积分专区</text>
-					</view>
-					<view class="grid-item">
-						<image src="../../../static/menus/创客专区.png" mode="aspectFit" @click="menusTap('创客专区',4)"></image>
-						<text>创客专区</text>
-					</view>
-					<view class="grid-item">
-						<image src="../../../static/menus/城市合伙人.png" mode="aspectFit" @click="menusTap('城市合伙人',5)">
-						</image>
-						<text>城市合伙人</text>
-					</view>
-					<view class="grid-item">
-						<image src="../../../static/menus/积分抵扣专区.png" mode="aspectFit" @click="menusTap('积分抵扣专区',2)">
-						</image>
-						<text>抵扣专区</text>
+		<view v-if="!isLogin">
+			<u-skeleton :loading="true" rows="20" :animate="true"></u-skeleton>
+		</view>
+		<view v-else>
+			<!-- 内容切换 -->
+			<view class="tab-content" v-if="current == 0">
+				<!-- 轮播 -->
+				<view class="swiper-group">
+					<u-swiper :list="swiperList" indicator indicatorMode="line" circular></u-swiper>
+				</view>
+				<!-- 宫格 -->
+				<view class="grid-box">
+					<view class="grid-group">
+						<view class="grid-item">
+							<image src="../../../static/menus/秒杀专区.png" mode="aspectFit" @click="menusTap('秒杀专区', 0)">
+							</image>
+							<text>秒杀专区</text>
+						</view>
+						<view class="grid-item">
+							<image src="../../../static/menus/红包商城.png" mode="aspectFit" @click="menusTap('红包商城', 3)">
+							</image>
+							<text>红包商城</text>
+						</view>
+						<view class="grid-item">
+							<image src="../../../static/menus/积分专区.png" mode="aspectFit" @click="menusTap('积分专区', 1)">
+							</image>
+							<text>积分专区</text>
+						</view>
+						<view class="grid-item">
+							<image src="../../../static/menus/创客专区.png" mode="aspectFit" @click="menusTap('创客专区', 4)">
+							</image>
+							<text>创客专区</text>
+						</view>
+						<view class="grid-item">
+							<image src="../../../static/menus/城市合伙人.png" mode="aspectFit" @click="menusTap('城市合伙人', 5)">
+							</image>
+							<text>城市合伙人</text>
+						</view>
+						<view class="grid-item">
+							<image src="../../../static/menus/积分抵扣专区.png" mode="aspectFit"
+								@click="menusTap('积分抵扣专区', 2)">
+							</image>
+							<text>抵扣专区</text>
+						</view>
 					</view>
 				</view>
-			</view>
 
-			<!-- 通知 -->
-			<view class="notice">
-				<u-notice-bar :text="notice" direction="column" duration="3000" @click="goNoticeDetail($event)">
-				</u-notice-bar>
-			</view>
-			<!-- 通知弹框 -->
-			<view>
-				<u-modal :show="noticeShow" title="通告" confirmText="我已知晓" confirmColor="#FABA59" @confirm="noticeClose">
-					<view class="slot-content">
-						<rich-text :nodes="noticeContent"></rich-text>
-					</view>
-				</u-modal>
-			</view>
+				<!-- 通知 -->
+				<view class="notice">
+					<u-notice-bar :text="notice" direction="column" duration="3000" @click="goNoticeDetail($event)">
+					</u-notice-bar>
+				</view>
+				<!-- 通知弹框 -->
+				<view>
+					<u-modal :show="noticeShow" title="通告" confirmText="我已知晓" confirmColor="#FABA59"
+						@confirm="noticeClose">
+						<view class="slot-content">
+							<rich-text :nodes="noticeContent"></rich-text>
+						</view>
+					</u-modal>
+				</view>
 
-			<!-- 爆款专区 -->
-			<view class="sale-group">
-				<view class="sale-content">
-					<view class="title">爆款专区 <view class="more">
+				<!-- 爆款专区 -->
+				<view class="sale-group">
+					<view class="sale-content">
+						<view class="title">爆款专区 <view class="more">
+							</view>
 						</view>
-					</view>
-					<view class="goods-scroll">
-						<scroll-view scroll-x="true" v-if="tempArrBao.length > 0">
-							<view class="goods-item" v-for="(item, index) in tempArrBao" :key="index"
-								@click="goDetail(item)">
-								<image :src="item.goodsCover" mode="aspectFit"></image>
-								<view class="goods-name">
-									<u-text prefixIcon="bookmark"
-										iconStyle="font-size: 16px; color:red;min-height: 30px;" :lines="2" bold block
-										size="12" :text="item.goodsName"></u-text>
-									<view class="tags">赠送{{ item.obtainIntegral }}红积分</view>
-									<view class="price">¥{{ item.salePrice - 0 }}</view>
+						<view class="goods-scroll">
+							<scroll-view scroll-x="true" v-if="tempArrBao.length > 0">
+								<view class="goods-item" v-for="(item, index) in tempArrBao" :key="index"
+									@click="goDetail(item)">
+									<image :src="item.goodsCover" mode="aspectFit"></image>
+									<view class="goods-name">
+										<u-text prefixIcon="bookmark"
+											iconStyle="font-size: 16px; color:red;min-height: 30px;" :lines="2" bold
+											block size="12" :text="item.goodsName"></u-text>
+										<view class="tags">赠送{{ item.obtainIntegral }}红积分</view>
+										<view class="price">¥{{ item.salePrice - 0 }}</view>
+									</view>
 								</view>
-							</view>
-						</scroll-view>
-						<u-empty v-else mode="list" icon="http://cdn.uviewui.com/uview/empty/list.png"/>
+							</scroll-view>
+							<u-empty v-else mode="list" icon="http://cdn.uviewui.com/uview/empty/list.png" />
+						</view>
 					</view>
 				</view>
-			</view>
-			<!-- 商品推荐列表 -->
-			<view class="goods-list">
-				<view class="title">
-					<view class="line"></view>
-					商品推荐
-					<view class="line"></view>
+				<!-- 商品推荐列表 -->
+				<view class="goods-list">
+					<view class="title">
+						<view class="line"></view>
+						商品推荐
+						<view class="line"></view>
+					</view>
+					<goodListMall @changeTab="changeTab" :tempArr="tempArr" :iSshowH="false" @detail="goDetail"
+						:isSortType="isSortType"></goodListMall>
 				</view>
-				<goodListMall @changeTab="changeTab" :tempArr="tempArr" :iSshowH="false" @detail="goDetail"
-					:isSortType="isSortType"></goodListMall>
 			</view>
-		</view>
 
-		<view class="tab-content" v-show="current >= 1">
-			<!-- 轮播 -->
-			<view class="swiper-group">
-				<u-swiper :list="swiperTabList" indicator indicatorMode="line" circular></u-swiper>
+			<view class="tab-content" v-show="current >= 1">
+				<!-- 轮播 -->
+				<view class="swiper-group">
+					<u-swiper :list="swiperTabList" indicator indicatorMode="line" circular></u-swiper>
+				</view>
+				<!-- 商品列表 -->
+				<goodListMall @changeTab="changeTab" :iSshowH="true" @detail="goDetail" :currentId="currentId"
+					:isSortType="isSortType"></goodListMall>
 			</view>
-			<!-- 商品列表 -->
-			<goodListMall @changeTab="changeTab" :iSshowH="true" @detail="goDetail" :currentId="currentId"
-				:isSortType="isSortType"></goodListMall>
 		</view>
 	</view>
 </template>
@@ -675,11 +686,11 @@ export default {
 	},
 	onLoad(options) {
 	},
-	onShow(){
-		
+	onShow() {
+
 	},
-	updated(){
-		
+	updated() {
+
 	},
 	watch: {
 		isLogin: {
@@ -724,7 +735,7 @@ export default {
 				this.navigationList.unshift(tuiJian)
 			})
 		},
-		menusTap(url,zoneType) {
+		menusTap(url, zoneType) {
 			// #ifdef H5
 			location.href = url
 			// #endif

+ 2 - 2
pages/users/wechat_login/index.vue

@@ -3,12 +3,12 @@
 		<view class="system-height" :style="{ height: statusBarHeight }"></view>
 		<!-- #ifdef MP -->
 		<view class="title-bar" style="height: 43px;">
-			<view class="icon" @click="back" v-if="!isHome">
+			<!-- <view class="icon" @click="back" v-if="!isHome">
 				<image src="../static/left.png"></image>
 			</view>
 			<view class="icon" @click="home" v-else>
 				<image src="../static/home.png"></image>
-			</view>
+			</view> -->
 			{{$t(`账户登录`)}}
 		</view>
 		<!-- #endif -->

この差分においてかなりの量のファイルが変更されているため、一部のファイルを表示していません