1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <template>
- <view class="content">
- <image class="ok" src="../../static/commit_ok.png"></image>
- <view class="message">提交成功</view>
- <button class="button" type="primary" @click="goBack()">点击返回</button>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- }
- },
- methods: {
- goBack(){
- uni.navigateTo({
- url: 'index'
- });
- }
- }
- }
- </script>
- <style>
- .content{
- margin-top: 100rpx;
- margin-left: 10%;
- }
- .message{
- font-size: large;
- font-weight: bold;
- margin-top: 50rpx;
- margin-left: 34%;
- }
- .button{
- font-size: large;
- font-weight: bold;
- margin-top: 50rpx;
- margin-left: 20%;
- width: 50%;
- }
- </style>
|