| xqd
@@ -44,7 +44,7 @@
|
|
|
</div>
|
|
|
<div class="content">
|
|
|
<ul v-if="activityList.length">
|
|
|
- <li v-for="(item, index) in activityList" :key="index" @click="activityDetails(item.order_id)">
|
|
|
+ <li v-for="(item, index) in activityList" :key="index" @click="specialDetails(item.id)">
|
|
|
<div>
|
|
|
<div>
|
|
|
<img :src="item.image" alt="">
|
| xqd
@@ -101,8 +101,8 @@
|
|
|
}
|
|
|
});
|
|
|
},
|
|
|
- activityDetails: function (order_id) {
|
|
|
- return window.location.href=$h.U({ c: 'my', a: 'sign_my_order', q: {order_id: order_id } });
|
|
|
+ specialDetails: function (order_id) {
|
|
|
+ return window.location.href=$h.U({ c: 'special', a: 'details', q: {id: order_id } });
|
|
|
},
|
|
|
// 获取历史列表
|
|
|
geLogList: function () {
|