From 273beff9c110f6c4753b9436d872a9fa8d63b7d3 Mon Sep 17 00:00:00 2001
From: shuishen <1109946754@qq.com>
Date: Fri, 30 Jul 2021 15:42:42 +0800
Subject: [PATCH] 文件配置及部分修改

---
 pages/dispatch/issue.vue |   68 ++-------------------------------
 1 files changed, 5 insertions(+), 63 deletions(-)

diff --git a/pages/dispatch/issue.vue b/pages/dispatch/issue.vue
index ac3b753..e72ff1a 100644
--- a/pages/dispatch/issue.vue
+++ b/pages/dispatch/issue.vue
@@ -1,85 +1,27 @@
 <template>
 	<view class="container">
-		<view class="service-box">
-			<u-grid :col="4" :border="false">
-				<u-grid-item bg-color="transparent" v-for="(item, index) in serviceButton" :key="index" @click="goBusinessPage(item.url,index)">
-					<view class="service-item">
-						<image :src="item.img" mode="widthFix" class="img"></image>
-						<view class="name">{{ item.name }}</view>
-					</view>
-				</u-grid-item>
-			</u-grid>
-		</view>
+		开发中
 	</view>
 </template>
 
 <script>
-	import {
-		fakeServiceButton
-	} from "@/api/mock/dispatch.js";
-	
 	export default {
 		data() {
 			return {
-				dataList:[],
-				serviceButton: []
+			
 			};
 		},
 		onLoad() {
-			
 		},
 		onReachBottom() {
-			
+
 		},
 		mounted() {
 		},
-		methods: {
-			onLoad() {
-				// 加载服务按钮数据
-				fakeServiceButton().then(data => {
-					this.serviceButton = data;
-				});
-			},
-			//页面跳转
-			goBusinessPage(url,index){
-				uni.navigateTo({
-					url:url
-				})
-			},	
-		}
+		methods: {}
 	};
 </script>
 
-
 <style lang="scss">
-	.container {
-		background-color: #f7f7f7;
-		min-height: 100vh;
-		overflow: hidden;
-	}
-	.service-box {
-		background: #ffffff;
-		border-radius: 20px 20px 20px 20px;
-		margin: 30rpx 20rpx 0;
-		padding: 0rpx 20rpx;
-
-		.service-item {
-			display: flex;
-			flex-direction: column;
-			justify-content: space-between;
-			align-items: center;
-			width: 100%;
-			height: 120rpx;
-			font-size: 26rpx;
-			font-family: PingFang SC;
-			font-weight: 500;
-			color: #585b61;
-
-			.img {
-				width: 70rpx;
-				height: auto;
-			}
-		}
-	}
+	
 </style>
-

--
Gitblit v1.9.3