123456789101112131415161718192021222324252627282930 |
- <template>
- <view>
- <button @click='add'>+</button>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- };
- },
- onLoad() {
-
- },
- methods: {
- add(){
- console.log(111111111)
- uni.navigateTo({
- url: '/pageA/find/createLifeService'
- })
- }
- }
- }
- </script>
- <style lang="scss">
- </style>
|