Browse Source

删除无用的页面

李书文 1 year ago
parent
commit
d61df2366e
3 changed files with 1 additions and 292 deletions
  1. 1 18
      pages.json
  2. 0 56
      pages/enterprise/enterprise.vue
  3. 0 218
      pages/goodsDetails/goodsDetails.vue

+ 1 - 18
pages.json

@@ -43,30 +43,13 @@
 			"style": {
 				"navigationBarTitleText": "消息中心"
 			}
-		}
-
-		, {
+		}, {
 			"path": "pages/personal/personal",
 			"style": {
 				"navigationBarTitleText": "个人中心",
 				"navigationStyle": "custom"
 			}
 
-		}, {
-			"path": "pages/enterprise/enterprise",
-			"style": {
-				"navigationBarTitleText": "",
-				"enablePullDownRefresh": false
-			}
-
-		}, {
-			"path": "pages/goodsDetails/goodsDetails",
-			"style": {
-				"navigationBarTitleText": "",
-				"enablePullDownRefresh": false,
-				"navigationStyle": "custom"
-			}
-
 		},
 		{
 			"path": "pages/authentication/index",

+ 0 - 56
pages/enterprise/enterprise.vue

@@ -1,56 +0,0 @@
-<template>
-	<view>
-		<navigation-bar title="商家服务" background-color="#fff" front-color="#000000" />
-	</view>
-</template>
-
-<script>
-	export default {
-		data() {
-			return {
-				list: [{
-						name: 'photo',
-						title: '图片'
-					},
-					{
-						name: 'lock',
-						title: '锁头'
-					},
-					{
-						name: 'star',
-						title: '星星'
-					},
-					{
-						name: 'hourglass',
-						title: '沙漏'
-					},
-					{
-						name: 'home',
-						title: '首页'
-					},
-					{
-						name: 'star',
-						title: '音量'
-					},
-				],
-			}
-		},
-		methods: {
-			click(name) {
-				this.$refs.uToast.success(`点击了第${name}个`)
-			}
-		}
-	}
-</script>
-
-<style lang="scss">
-
-	.grid-text {
-		font-size: 14px;
-		color: #909399;
-		padding: 10rpx 0 20rpx 0rpx;
-		/* #ifndef APP-PLUS */
-		box-sizing: border-box;
-		/* #endif */
-	}
-</style>

+ 0 - 218
pages/goodsDetails/goodsDetails.vue

@@ -1,218 +0,0 @@
-<template>
-	<view>
-		<!-- <navigation-bar background-color="#fff" front-color="#000000" /> -->
-		<view class="back" @click="back">
-			<uni-icons type="back" color="#000000" size="30"></uni-icons>
-		</view>
-		<swiper style="width: 100%; height: 700rpx;" circular :indicator-dots="true" :autoplay="true">
-			<swiper-item style="width: 100%;">
-				<image style="width: 100%; height: 100%;" mode="aspectFill" src="../../static/news.jpg"></image>
-			</swiper-item>
-		</swiper>
-		<!-- <u-image width="100%" height="800rpx" :src="goods.goodsImg"></u-image> -->
-		<!-- <u-image width="100%" height="400rpx" src="../../static/news.jpg"></u-image> -->
-		<view class="title pad">
-			{{goods.goodsName}}
-		</view>
-		<view class="price pad">
-			¥{{goods.price}} {{goods.goodsUnits}}
-		</view>
-		<view class="pad">
-			<u-tag class="tag" v-for="(item,index) in type" :key="index" :text="item" type="warning" plain></u-tag>
-		</view>
-		<view class="pad">
-			<u--text prefixIcon="home" iconStyle="font-size: 50rpx" :text="goods.merchantName" size="26"></u--text>
-		</view>
-		<view class="pad">
-			<u--text prefixIcon="map" iconStyle="font-size: 50rpx" :text="goods.tradeAreaName" size="26"></u--text>
-		</view>
-		<view class="pad des">
-			<u--text text="商品描述:" size="24"></u--text>
-			<u--text :text="goods.description? goods.description : '卖家很懒,什么都没有留下'" size="24"></u--text>
-		</view>
-		<view class="footer">
-			<view class="cart">
-				<uni-icons color="#ef732a" type="cart" size="30"></uni-icons>
-				<text>购物车</text>
-				<!-- <u-icon label="购物车" size="40" color="#ef732a" labelColor="#ef732a" name="shopping-cart"></u-icon> -->
-			</view>
-			<u-button class="custom-style" type="warning" @click="addCar()">加入购物车</u-button>
-			<u-button class="custom-style" type="error" @click="buy()">提交订单</u-button>
-		</view>
-		<!-- <u-popup :show="show" @close="close" @open="open">
-			<view>
-				<view class="num">
-					<u-button class="numBtn" icon="minus" @click="minus()"></u-button>
-					<text v-model="num">{{num}}</text>
-					<u-button class="numBtn" icon="plus"  @click="add()"></u-button>
-				</view>
-				<u-button type="primary" shape="circle" size="40" text="确定" @click="addCar()"></u-button>
-			</view>
-		</u-popup> -->
-	</view>
-</template>
-
-<script>
-	import common from '../../common/js/common'
-	export default {
-		data() {
-			return {
-				id: '',
-				goods: {},
-				type: [],
-				show: false,
-				num: 1
-			}
-		},
-		onLoad(option) {
-			this.id = option.id
-			this.getGoodsDetails()
-		},
-		methods: {
-			getGoodsDetails() {
-				this.http.request({
-					url: '/level-one-server/TbGoodsTransit/getById',
-					data: {
-						id: this.id
-					},
-					success: res => {
-						this.goods = res.data.data;
-						if (this.goods) {
-							this.type = this.goods.goodsType.toString().split("、")
-						}
-					}
-				});
-			},
-			minus() {
-				if (this.num == 1) {
-					this.$$common.toast("已经到最小数量,无法在减少")
-					return
-				} else {
-					this.num--
-				}
-			},
-			add() {
-				this.num++
-			},
-			addCar() {
-				let user = uni.getStorageSync("info")
-				let params = {
-					buyUserId: user.id,
-					enterpriseId: this.goods.merchantId,
-					shopId: this.goods.shopId,
-					tradeAreaId: this.goods.tradeAreaId,
-					saleGoodsInfoId: this.goods.id,
-					goodsImg: this.goods.goodsImg,
-					goodsName: this.goods.goodsName,
-					// buyNum: parseInt(this.num)
-				}
-				this.http.request({
-					url: '/level-one-server/app/TbGoodsCart/addGoodsInShopCart',
-					data: params,
-					contentType: 'application/json; charset=utf-8',
-					method: 'POST',
-					success: res => {
-						setTimeout(function() {
-							uni.showToast({
-								title: res.data.msg
-							});
-						}, 1000)
-					}
-				});
-			},
-			// 立即购买
-			buy() {
-				this.http.request({
-					url: '/level-one-server/app/TbGoodsTransit/purchaseLevelOntGoodsTransit',
-					data: {
-						goodsTransitId: this.goods.id
-					},
-					method: 'POST',
-					contentType: 'application/json; charset=utf-8',
-					success: res => {
-						setTimeout(function() {
-							uni.showToast({
-								title: res.data.msg
-							});
-						}, 1000)
-					}
-				});
-			},
-			back() {
-				uni.navigateBack({
-					delta: 1
-				})
-			}
-		}
-	}
-</script>
-
-<style lang="scss">
-	page {
-		padding: 0;
-		background-color: #f3f4f6;
-	}
-
-	.back {
-		position: absolute;
-		top: 10rpx;
-		left: 10rpx;
-		width: 80rpx;
-		height: 80rpx;
-		border-radius: 40rpx;
-		background-color: #828282;
-		display: flex;
-		opacity: 0.7;
-		z-index: 1;
-		align-items: center;
-		justify-content: center;
-	}
-
-	.pad {
-		width: 100%;
-		padding: 10rpx;
-		display: flex;
-	}
-
-	.title {
-		font-size: 42rpx;
-	}
-
-	.price {
-		color: red;
-		font-size: 40rpx;
-	}
-
-	.cart {
-		width: 30%;
-		color: #ef732a;
-		font-size: 40rpx;
-		display: flex;
-		align-items: center;
-		justify-content: center;
-	}
-
-	.tag {
-		width: auto;
-		margin-right: 10rpx;
-	}
-
-	.custom-style {
-		width: 30%;
-		height: 100rpx;
-		font-size: 30rpx;
-	}
-
-	.des {
-		border-top: 1rpx #888 solid;
-		margin-bottom: 10rpx;
-	}
-
-	.footer {
-		padding: 20rpx;
-		width: 100%;
-		display: flex;
-		position: absolute;
-		bottom: 1rpx;
-	}
-</style>