neighbor.vue 1.58 KB
<template>
	<view class="page">
		<view class="coupon-tab">
			<view class="tab" @click="topage('装备制造')">
				<image src="../../static/nav/1.png"></image>
			</view>
			<view class="tab" @click="topage('医药')">
				<image src="../../static/nav/2.png"></image>
			</view>
		</view>
		<view class="coupon-tab">
			<view class="tab" @click="topage('食品')">
				<image src="../../static/nav/3.png"></image>
			</view>
			<view class="tab" @click="topage('通用航空')">
				<image src="../../static/nav/4.png"></image>
			</view>
		</view>
		<view class="coupon-tab">
			<view class="tab" @click="topage('先进材料')">
				<image src="../../static/nav/5.png"></image>
			</view>
			<view class="tab" @click="topage('其他')">
				<image src="../../static/nav/9.png"></image>
			</view>
			<!-- <view class="tab">
				<image src="../../static/nav/6.png"></image>
			</view> -->
		</view>
		<!-- <view class="coupon-tab">
			<view class="tab">
				<image src="../../static/nav/7.png"></image>
			</view>
			<view class="tab">
				<image src="../../static/nav/8.png"></image>
			</view>
		</view> -->
		<view class="coupon-tab">
			<!-- view class="tab">
				<image src="../../static/nav/9.png"></image>
			</view> -->
			<!-- <view class="tab">
				<image src="../../static/nav/9.png"></image>
			</view> -->
		</view>
	</view>
</template>

<script>
	export default {
		data() {
			return {
			};
		},
		methods: {
			topage(item) {
				uni.navigateTo({
					url: `/pages/equip/equip?data=${JSON.stringify(item)}`,
				})
			}
		}
	}
</script>

<style scoped lang="scss">
	@import 'neighbor.scss';
</style>