12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <template>
- <view class="content">
- <view class="card">
- <p @click="toreport">上报跳转</p>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- title: 'Hello',
- subTitle: '2020-05-15',
- }
- },
- onLoad() {
-
- },
- methods: {
- toreport() {
- uni.navigateTo({
- url: '/report/report'
- });
- }
- }
- }
- </script>
- <style>
- .content {
- width: 100%;
- height: 100%;
- }
- .card {
- width: 95%;
- margin: 0 auto;
- padding: 10rpx 20rpx;
- border-radius: 8rpx;
- background: #fff;
- }
- .text-area {
- display: flex;
- justify-content: center;
- }
- .title {
- font-size: 36rpx;
- color: #8f8f94;
- }
- .test {
- color: red;
- margin-top: 20rpx;
- }
- </style>
|