123456789101112131415161718192021222324252627282930313233343536373839 |
- <template>
- <view class="content">
-
-
- </view>
- </template>
- <script>
- export default {
- components: {
-
- },
- data() {
- return {
-
- };
- },
- onLoad(options) {
- uni.showModal({
- title: '返回内容',
- content: options.data,
- showCancel: false,
- });
- },
- methods: {
-
- }
- };
- </script>
- <style lang="scss">
- page,
- .content {
- background: $page-color-base;
- height: 100%;
- }
- </style>
|