Commit fcf63f29 authored by beisir's avatar beisir

feat:订单列表页接口

parent 6664c6a8
...@@ -13,6 +13,7 @@ const kdspHost = 'https://kdsp-api-vcc3.liangkebang.net'; ...@@ -13,6 +13,7 @@ const kdspHost = 'https://kdsp-api-vcc3.liangkebang.net';
// const talosHost = 'http://192.168.29.89:8098'; // 唐峰 // const talosHost = 'http://192.168.29.89:8098'; // 唐峰
// const talosHost = 'http://192.168.25.210:8080'; // 张超 // const talosHost = 'http://192.168.25.210:8080'; // 张超
// const talosHost = 'http://192.168.28.83:80'; // 董彪 // const talosHost = 'http://192.168.28.83:80'; // 董彪
// const talosHost = 'http://192.168.25.122:8098'; // 王永杰
const opapiHost = 'https://opapi-vcc3.liangkebang.net'; const opapiHost = 'https://opapi-vcc3.liangkebang.net';
const VCC_CHANNEL = ''; const VCC_CHANNEL = '';
const TERMINAL = 'H5'; const TERMINAL = 'H5';
......
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
> >
<count-down :end-time="+new Date(item.endTime)" /> <count-down :end-time="+new Date(item.endTime)" />
</template> </template>
<template v-else-if="item.openGroupStatus === 2"> <template v-else>
<span :class="cardInfoMation[item.openGroupStatus].class">{{ <span :class="cardInfoMation[item.openGroupStatus].class">{{
cardInfoMation[item.openGroupStatus].message cardInfoMation[item.openGroupStatus].message
}}</span> }}</span>
...@@ -56,6 +56,17 @@ ...@@ -56,6 +56,17 @@
> >
查看订单 查看订单
</cr-button> </cr-button>
<!-- v-if="item.showOrderDetail" -->
<!-- 支付中按钮跳转支付页面 -->
<cr-button
size="small"
plain
type="primary"
shape="circle"
@click.stop="goGroupDetails(item)"
>
去支付
</cr-button>
</div> </div>
</div> </div>
</div> </div>
...@@ -100,7 +111,11 @@ export default { ...@@ -100,7 +111,11 @@ export default {
listFinished: false, listFinished: false,
cardInfoMation: { cardInfoMation: {
// 开团状态:1拼团中、2拼团成功、3拼团失败 4.整体拼团处理中 // 开团状态:1拼团中、2拼团成功、3拼团失败 4.整体拼团处理中
0: {
class: 'Ol__head-fail',
message: '支付中',
footTxt: '拼团成功即可退款0元拿'
},
1: { 1: {
message: '', message: '',
footTxt: '拼团成功即可退款0元拿' footTxt: '拼团成功即可退款0元拿'
......
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