12345678910111213141516171819202122232425262728293031323334353637 |
- <template>
- <view class="content">
- <view class="one">
- 首页
- </view>
- <view class="two">
- <button @tap="toPath('/pagesCommon/test/index')" size="mini">分包一测试页面</button>
- <button @tap="toPath('/pagesHome/home/index')" size="mini">系统首页</button>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- }
- },
- onLoad() {
- const that = this;
- },
- methods: {
- toPath(e) {
- uni.navigateTo({
- url: e
- })
- }
- }
- }
- </script>
- <style lang="scss">
- .content {
- text-align: center;
- }
- </style>
|