12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <template>
- <view style="padding: 0 36upx;">
- <view style="text-align: center;margin: 0 auto;padding: 10upx 0;">
- <van-icon color="#eee;" size="88px" name="passed" />
- </view>
- <view style="text-align: center;padding: 10upx 0;">订单支付成功</view>
- <view class="submitRemin" @click="lookfor" style="background-color: #fff;color:#303133;border: 1px solid #D9332E;">查看订单详情</view>
- <view class="submitRemin" @click="submitRemin">继续购物</view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return{
- order_id:''
- }
- },
- onLoad(e) {
- this.order_id = e.order_id;
- },
- methods:{
- // ji xu gou wu
- submitRemin() {
- uni.$emit('finshlist')
- uni.navigateBack({
- delta: 2
- });
- },
- // cha kan ding dan xiang qing
- lookfor() {
- let order_id = this.order_id ;
- uni.navigateTo({
- url: `/pages/myOrder/order?id=${order_id}`
- });
- }
- }
-
- }
- </script>
- <style>
- </style>
|