liveh5-nuxt/app/pages/signature/protocol/index.vue

145 lines
4.0 KiB
Vue
Raw Normal View History

<script setup>
import {showToast,showLoadingToast } from 'vant';
import pdfView from './pdfView'
import { contractView } from "~/api/goods/index.js"
import { signOnline } from "~/api/goods/index.js"
import { authStore } from "~/stores/auth/index.js"
2025-02-26 03:11:29 +00:00
import {useI18n} from "vue-i18n";
2025-03-07 03:48:59 +00:00
import { useThrottleFn } from '@vueuse/core'
import { contractUserinfo } from "@/api/auth/index.js"
import { ref } from 'vue';
definePageMeta({
layout: 'default',
2025-02-26 03:11:29 +00:00
i18n: 'signature.protocol.title'
})
const { userInfo, payment } = authStore()
2025-02-26 03:11:29 +00:00
const $t=useI18n().t
const activeNames = ref([])
const router = useRouter()
const pmblUrl = ref('') // 存储拍卖笔录的URL
const jmxyUrl=ref('')//竞买协议
const pmyjqrsUrl=ref('')//拍卖移交确认书
// 协议列表数据
const protocolList = computed(() => [
2025-02-25 09:00:07 +00:00
{ id: '1', title: $t('signature.agreement.notice'), pdfName: 'pmgg', type: 'local' },
{ id: '2', title: $t('signature.agreement.rules'), pdfName: 'pmgz', type: 'local' },
{ id: '3', title: $t('signature.agreement.buyerGuide'), pdfName: 'jmxz', type: 'local' },
{ id: '4', title: $t('signature.agreement.buyerAgreement'), pdfName: jmxyUrl.value, type: 'remote' },
2025-02-25 09:00:07 +00:00
{ id: '5', title: $t('signature.agreement.record'), pdfName: pmblUrl.value, type: 'remote' },
{ id: '6', title: $t('signature.agreement.transfer'), pdfName: pmyjqrsUrl.value, type: 'remote' }
])
const toast=ref(false)
// 获取拍卖笔录PDF
const fetchPmblPdf = async () => {
try {
const res = await contractView({
auctionArtworkUuid: payment.value.auctionArtworkUuid,
phone:userInfo.value.telNum,
registerType:1,
signOrder:1
})
if(res.status===0){
jmxyUrl.value=res.data.ViewUrls?.jmxy1
pmblUrl.value=res.data.ViewUrls?.ppbl6
pmyjqrsUrl.value=res.data.ViewUrls?.ppqr5
}
} catch (error) {
2025-03-02 03:09:06 +00:00
}
}
// 监听折叠面板变化
const handleCollapseChange = (name) => {
activeNames.value = name
if (['4','5','6'].includes(name) && !protocolList.value.find(x=>x.id===name)?.pdfName) {
fetchPmblPdf()
}
}
2025-03-07 03:48:59 +00:00
const goSignature =useThrottleFn(async () => {
try{
toast.value=showLoadingToast({
message: $t('common.loading'),
forbidClick: true,
});
//先走特殊验证接口
const res1 = await contractUserinfo({phone:userInfo.value.telNum})
if(res1.status===0){
//特殊验证通过
if(res1.data.specialType===1){
await router.push({
path: '/signature/panel'
})
}else if(res1.data.specialType===0){
//特殊验证不通过
if(userInfo.value.userExtend.isMainland===1){
const res = await signOnline({
auctionArtworkUuid:payment.value.auctionArtworkUuid
})
if (res.status===0){
if(res.data.signType==='fdd'){
window.location.href = res.data.fddVerifyUrl
}else{
await router.push({
path: '/signature/panel'
})
}
}
}else if(userInfo.value.userExtend.isMainland===0){
await router.push({
path: '/signature/panel'
})
}
}
}
}finally{
}
2025-03-07 03:48:59 +00:00
},2000)
</script>
<template>
<div class="bg-#EBEBEB h-screen-nav flex flex-col">
<div class="h-50px text-14px text-#191919 bg-#fff flex items-center px-21px mb-6px shrink-0">
2025-02-25 09:00:07 +00:00
{{ $t('signature.tips.prePayment') }}
</div>
<van-collapse
accordion
v-model="activeNames"
class="grow-1"
@change="handleCollapseChange"
>
<van-collapse-item
v-for="item in protocolList"
:key="item.id"
:name="item.id"
class="mb-6px"
>
<template #title>
<div class="text-#2B53AC text-14px">{{ item.title }}</div>
</template>
<pdfView
:pdf-name="item.pdfName"
:type="item.type"
:is-active="activeNames === item.id"
/>
</van-collapse-item>
</van-collapse>
<div class="h-81px bg-#fff flex justify-center pt-7px border-t">
<van-button
color="#2B53AC"
class="w-213px van-btn-h-38px"
@click="goSignature"
>
2025-02-25 09:00:07 +00:00
{{ $t('signature.button.agreeAndSign') }}
</van-button>
</div>
</div>
</template>