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.
28 lines
352 B
28 lines
352 B
<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>
|
|
|