Compare commits
No commits in common. "ae040fb280f86b168be30219ca1226689c39545d" and "9c725735aff82fc8f00d3b6c8412640a86e98d0e" have entirely different histories.
ae040fb280
...
9c725735af
@ -147,7 +147,7 @@ const tipOpen = () => {
|
|||||||
<div class="min-w-50px">{{auctionData?.nowAuctionPrice?.nextPrice}}</div>
|
<div class="min-w-50px">{{auctionData?.nowAuctionPrice?.nextPrice}}</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div v-if="quoteStatus&&auctionData?.nowAuctionPrice?.nowPrice&&auctionData?.nowAuctionPrice?.nowPrice!=='0'" class="mt-10px mb-10px">
|
<div v-if="quoteStatus&&auctionData?.nowAuctionPrice&&auctionData?.nowAuctionPrice?.nowPrice!=='0'" class="mt-10px mb-10px">
|
||||||
<van-button @click.stop="goBuy" color="#FFB25F" class="w-344px !h-[40px]">
|
<van-button @click.stop="goBuy" color="#FFB25F" class="w-344px !h-[40px]">
|
||||||
<div>{{
|
<div>{{
|
||||||
`${t('live_room.confirm')} ${auctionData?.nowAuctionPrice?.currency} ${auctionData?.nowAuctionPrice?.nowPrice ?? 0}`
|
`${t('live_room.confirm')} ${auctionData?.nowAuctionPrice?.currency} ${auctionData?.nowAuctionPrice?.nowPrice ?? 0}`
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
<script setup>
|
<script setup>
|
||||||
import pdfView from './pdfView'
|
import pdfView from './pdfView'
|
||||||
import { contractView } from "~/api/goods/index.js"
|
import { contractView } from "~/api/goods/index.js"
|
||||||
import { signOnline } from "~/api/goods/index.js"
|
|
||||||
import { authStore } from "~/stores/auth/index.js"
|
import { authStore } from "~/stores/auth/index.js"
|
||||||
import {useI18n} from "vue-i18n";
|
import {useI18n} from "vue-i18n";
|
||||||
|
|
||||||
@ -46,24 +45,10 @@ const handleCollapseChange = (name) => {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const goSignature = async () => {
|
const goSignature = () => {
|
||||||
const res = await signOnline({
|
|
||||||
auctionArtworkUuid:payment.value.auctionArtworkUuid
|
|
||||||
})
|
|
||||||
if (res.status===0){
|
|
||||||
if(res.data.signType==='fdd'){
|
|
||||||
window.location.href = res.data.fddVerifyUrl
|
|
||||||
}else{
|
|
||||||
router.push({
|
router.push({
|
||||||
path: '/signature/panel'
|
path: '/signature/panel'
|
||||||
})
|
})
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
console.log('goSignature')
|
|
||||||
// router.push({
|
|
||||||
// path: '/signature/panel'
|
|
||||||
// })
|
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user