290144e9
易尊强
第一次
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
<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>
|