You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
478 B
29 lines
478 B
2 years ago
|
<template>
|
||
|
<view>
|
||
|
<image src="../static/union5.jpg" mode="widthFix" class="width90 mart20" v-for="(item,index) in choicelist" :key="index" @click="jumprechangeVip()">
|
||
|
</image>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
choicelist: [1, 2, 3, 4, 5, 6]
|
||
|
}
|
||
|
},
|
||
|
methods: {
|
||
|
//跳转充值
|
||
|
jumprechangeVip(){
|
||
|
uni.navigateTo({
|
||
|
url:'../home/home'
|
||
|
})
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss">
|
||
|
|
||
|
</style>
|