Commit e9de12a5 authored by beisir's avatar beisir

Merge branch 'feat/group-buy' of git.quantgroup.cn:ui/group-buy-ui into feat/group-buy

parents 32447f8d 44890876
...@@ -141,7 +141,7 @@ export default { ...@@ -141,7 +141,7 @@ export default {
padding-left: 12px; padding-left: 12px;
padding-right: 12px; padding-right: 12px;
box-sizing: border-box; box-sizing: border-box;
z-index: 2; z-index: 99;
button { button {
flex: 1; flex: 1;
font-size: 16px; font-size: 16px;
......
...@@ -16,8 +16,10 @@ ...@@ -16,8 +16,10 @@
<p class="tips"> <p class="tips">
努力返回支付结果中,请留心查看! 努力返回支付结果中,请留心查看!
</p> </p>
<div :class="['actions', !isOrder && 'no-order']"> <div v-if="isApp" :class="['actions', !isOrder && 'no-order']">
<cr-button type="primary" class="btn-primary" @click="navigateBack">返回</cr-button> <cr-button type="primary" shape="circle" class="btn-primary" @click="navigateBack"
>返回订单列表</cr-button
>
</div> </div>
</div> </div>
</template> </template>
...@@ -37,7 +39,8 @@ export default { ...@@ -37,7 +39,8 @@ export default {
time: 10, time: 10,
init: false, init: false,
returnUrl: '', returnUrl: '',
isOrder: true isOrder: true,
isApp
}; };
}, },
created() { created() {
...@@ -69,7 +72,7 @@ export default { ...@@ -69,7 +72,7 @@ export default {
}, },
methods: { methods: {
navigateBack() { navigateBack() {
this.$router.go(-1); this.$router.replace({ name: 'orderList', params: { status: 0 } });
}, },
getQuery() { getQuery() {
this.returnUrl = cookies.get('returnUrl') || ''; this.returnUrl = cookies.get('returnUrl') || '';
...@@ -175,8 +178,9 @@ export default { ...@@ -175,8 +178,9 @@ export default {
} }
button { button {
.text-17; .text-16;
width: 161px; width: 100%;
// width: 161px;
} }
} }
.info_button { .info_button {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment