audit.detail

main
panliang 2024-04-27 09:14:17 +08:00
parent 6c1b67d865
commit 339e41d5e2
1 changed files with 4 additions and 2 deletions

View File

@ -11,7 +11,7 @@
</view>
</view>
<view v-if="data && data.checkable" class="h-100rpx">
<view v-if="checkable" class="h-100rpx">
<view
class="fixed bottom-0 left-0 right-0 h-120rpx bg-white flex items-center px-base space-x-30rpx"
>
@ -56,6 +56,7 @@ const colums = computed(() => datajson[type.value] ?? [])
const id = ref(null)
const type = ref(null)
const data = ref(null)
const checkable = ref(false)
const modalRef = ref(null)
@ -115,7 +116,8 @@ const getData = async () => {
subject_type: type.value,
},
})
data.value = resData
data.value = resData.data
checkable.value = resData.checkable
console.log(resData)
}