shish пре 1 година
родитељ
комит
686922bf97
2 измењених фајлова са 6 додато и 21 уклоњено
  1. 1 1
      mallApp/src/pages/settle/pay.vue
  2. 5 20
      mallApp/src/pages/settle/result.vue

+ 1 - 1
mallApp/src/pages/settle/pay.vue

@@ -131,7 +131,7 @@ export default {
       left: 0;
       width: 100vw;
       height: 290upx;
-      background: #07be0b;
+      background: #049E2C;
       border-radius: 0upx 0upx 83upx 83upx;
       z-index: 1;
     }

+ 5 - 20
mallApp/src/pages/settle/result.vue

@@ -5,41 +5,23 @@
       <view class="result-view">
         <view :class="['iconfont', 'iconchenggong']"></view>
         <view class="result-title">支付成功</view>
-        <button class="admin-button-com big" @click="getDetail()">订单详情</button>
         <button class="admin-button-com big" @click="goBack()" style="margin-top:30upx;">返回</button>
-        <view style="margin-top:50upx;font-size:36upx;text-decoration:underline;" @click="goClearRemind()">如何查看我还有多少待结账</view>
       </view>
-
-      <!-- #ifdef MP-WEIXIN -->
-      <!-- <view style="width:690upx;height:25upx;background-color: #f5f5f5;"></view>
-      <ad-custom unit-id="adunit-b3f48f1b6c1a39ff"></ad-custom> -->
-      <!-- #endif -->
-
     </view>
   </view>
 </template>
 <script>
 export default {
-  name: "AppResult",
+  name: "result",
 	data() {
 		return {
-			id:0
 		}
 	},
   methods: {
-    getDetail(){
-      this.pageTo({ url: "/admin/clear/info?id="+this.id,type:2})
-    },
     goBack () {
       uni.navigateBack()
     },
-    goClearRemind() {
-        this.$msg('开发中')
-        return false
-        this.pageTo({ url: "/admin/order/clearRemind"})
-    },
     init(){
-      this.id = this.option.id ? this.option.id : 0
     }
   },
 };
@@ -57,7 +39,7 @@ export default {
     left: 0;
     width: 100%;
     height: 299upx;
-    background: #3385ff;
+    background: #049E2C;
     border-radius: 0upx 0upx 83upx 83upx;
   }
   .result-view {
@@ -92,6 +74,9 @@ export default {
   .admin-button-com {
     margin-bottom: 20upx;
     width: 100%;
+    border: 1px solid #b3b0b0;
+    border-radius: 8upx;
+    color:#666666;
   }
 }
 </style>