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.

26 lines
423 B

2 months ago
<template>
<view style="background-color: #fff;">
<view style="border-bottom: 1px solid grey;padding: 15rpx;margin-bottom: 20rpx;">{{title}}</view>
<view>
具体解决办法
</view>
</view>
</template>
<script>
export default {
onLoad(option) {
console.log(option.item);
this.title = option.item
},
data() {
return {
title: ""
};
}
}
</script>
<style lang="scss">
page {}
</style>