许成详 6 years ago
parent
commit
3cfa640adc
2 changed files with 6 additions and 1 deletions
  1. 4
    0
      src/common/css/reset.css
  2. 2
    1
      src/pages/user/placeOrder/index.vue

+ 4
- 0
src/common/css/reset.css View File

77
 
77
 
78
 ::-webkit-scrollbar {
78
 ::-webkit-scrollbar {
79
 	display: none;
79
 	display: none;
80
+}
81
+
82
+.van-dialog__message .van-dialog__message--has-title{
83
+	text-align: center;
80
 }
84
 }

+ 2
- 1
src/pages/user/placeOrder/index.vue View File

293
         coupon: JSON.stringify(this.postData.coupon)
293
         coupon: JSON.stringify(this.postData.coupon)
294
       }).then((res) => {
294
       }).then((res) => {
295
         this.$dialog.alert({
295
         this.$dialog.alert({
296
-          message: '下单成功!'
296
+          message: '下单成功!',
297
+          confirmButtonText: '返回等待'
297
         }).then(() => {
298
         }).then(() => {
298
           this.$router.push({ name: 'orderList' })
299
           this.$router.push({ name: 'orderList' })
299
         })
300
         })