权证发起转让

This commit is contained in:
唐明明
2021-09-18 17:13:47 +08:00
parent ac4552a3ee
commit b7cacb38c7
12 changed files with 4128 additions and 3184 deletions

View File

@@ -6,6 +6,7 @@
<view class="order-list" v-for="(item,index) in lists" :key="index">
<NumberWeightTemplate :item="item" />
<view class="actions">
<view @click="navMarkets(item.symbol)" class="nowPay">权证转让</view>
<view @click="nowTake(item.symbol)" class="nowPay">去提货</view>
</view>
</view>
@@ -80,6 +81,10 @@
uni.navigateTo({
url:'./numberWeightInfo?symbol='+symbol
})
},
// 转让权证
navMarkets(symbol){
this.$Router.push({name: 'marketTransfer', params:{symbol}})
}
}
}