12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <template>
- <view class="content">
- <view class="order-icon">
- <img src="/static/index/oder-ok.png" alt="">
- </view>
- <view class="order-text">下单成功</view>
- <view class="texts">潮庭工作人员正在为您安排配送</view>
- <view class="button" @click="indexTaps">
- 返回首页
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- }
- },
- onLoad() {
- },
- methods: {
- indexTaps(){
- uni.reLaunch({
- url:"/pages/index/index"
- })
- }
- }
- }
- </script>
- <style lang="scss">
- .content{
- text-align: center;
- .order-icon{
- margin-top: 120rpx;
- img{
- width: 160rpx;
- height: 160rpx;
- }
- }
- .order-text{
- color: #222;
- font-size: 36rpx;
- margin-top: 20rpx;
- }
- .texts{
- font-size: 28rpx;
- color: #222;
- margin-top: 25rpx;
- }
- .button{
- width: 320rpx;
- height: 80rpx;
- background: #222222;
- border-radius: 40rpx;
- color: #fff;
- font-size: 32rpx;
- line-height: 80rpx;
- margin: 120rpx auto;
- }
- }
- </style>
|