123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <template>
- <view class="content">
- <view class="one">
- <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;
- .one {
- padding: 2vw 0;
- button {
- margin: 0 1vw;
- }
- }
- }
- </style>
|