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
352 B
29 lines
352 B
1 month ago
|
<template>
|
||
|
<view class="banyou">
|
||
|
<image mode="widthFix" @click="toPage()" src="@/static/lvyou/kaiqi.png"></image>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
|
||
|
};
|
||
|
},
|
||
|
methods: {
|
||
|
toPage() {
|
||
|
uni.navigateBack()
|
||
|
},
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style scoped lang="scss">
|
||
|
.banyou{
|
||
|
image{
|
||
|
width: 100%;
|
||
|
}
|
||
|
}
|
||
|
</style>
|