|
|
@@ -20,7 +20,7 @@
|
|
|
</span>
|
|
|
</div>
|
|
|
<ul class="order-list-wrap" id="b2border-wrapper" v-show="orderList.length > 0">
|
|
|
- <li v-for="item in orderList">
|
|
|
+ <li v-for="item in orderList" @click="goDetails(item)">
|
|
|
<div class="list-title">{{item.enName}}</div>
|
|
|
<div class="clearfix list-content">
|
|
|
<div class="fl left">
|
|
|
@@ -85,6 +85,9 @@
|
|
|
this.getResource()
|
|
|
},
|
|
|
methods: {
|
|
|
+ goDetails(item) {
|
|
|
+ this.$router.push('/mobile/order/orderbtob_details?id=' + item.id)
|
|
|
+ },
|
|
|
getResource(Reset) {
|
|
|
// this.isSearchSearchingMore = false
|
|
|
this.$http.get('/sale/orders/info/nosearch', {params: {
|