|
|
@@ -229,7 +229,7 @@
|
|
|
<hc-new-drawer v-model="isOnlineVerifyDrawer" modal-class="hc-online-verify-drawer" to-id="app" @close="onlineVerifyDrawerClose">
|
|
|
<hc-new-card>
|
|
|
<template #header>
|
|
|
- <div class="online-verify-title">这是标题名称</div>
|
|
|
+ <div class="online-verify-title">{{ onlineTitle }}</div>
|
|
|
</template>
|
|
|
<template #extra>
|
|
|
<div class="online-verify-icon" @click="onlineVerifyDrawerClose">
|
|
|
@@ -814,6 +814,7 @@ const batchLocal = async () => {
|
|
|
//在线验签
|
|
|
const onlineLoading = ref(false)
|
|
|
const onlineVerifyData = ref({})
|
|
|
+const onlineTitle = ref('')
|
|
|
const isOnlineVerifyDrawer = ref(false)
|
|
|
const onlineVerifyOptions = {
|
|
|
sizes: [50, 50],
|
|
|
@@ -836,6 +837,7 @@ const batchOnline = async () => {
|
|
|
return
|
|
|
}
|
|
|
//发起请求
|
|
|
+ onlineTitle.value = rows[0]?.name
|
|
|
const ids = arrToId(rows)
|
|
|
onlineLoading.value = true
|
|
|
const { error, code, msg, data } = await queryApi.onlineVerify({
|
|
|
@@ -845,7 +847,7 @@ const batchOnline = async () => {
|
|
|
onlineLoading.value = false
|
|
|
if (!error && code === 200) {
|
|
|
onlineVerifyData.value = getObjValue(data)
|
|
|
- //cscTableData.value = getArrValue(data['certBeanVOList'])
|
|
|
+ cscTableData.value = getArrValue(data['certBeanVOList'])
|
|
|
isOnlineVerifyDrawer.value = true
|
|
|
} else {
|
|
|
onlineVerifyData.value = {}
|
|
|
@@ -855,7 +857,7 @@ const batchOnline = async () => {
|
|
|
|
|
|
//签名信息
|
|
|
const cscTableColumn = [
|
|
|
- { key:'user', name: '签名者', width: 300 },
|
|
|
+ { key:'dn', name: '签名者', width: 300 },
|
|
|
{ key:'time', name: '签名时间', width: 200 },
|
|
|
{ key:'val', name: '摘要' },
|
|
|
]
|