audit.detail
parent
6c1b67d865
commit
339e41d5e2
|
|
@ -11,7 +11,7 @@
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
<view v-if="data && data.checkable" class="h-100rpx">
|
<view v-if="checkable" class="h-100rpx">
|
||||||
<view
|
<view
|
||||||
class="fixed bottom-0 left-0 right-0 h-120rpx bg-white flex items-center px-base space-x-30rpx"
|
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 id = ref(null)
|
||||||
const type = ref(null)
|
const type = ref(null)
|
||||||
const data = ref(null)
|
const data = ref(null)
|
||||||
|
const checkable = ref(false)
|
||||||
|
|
||||||
const modalRef = ref(null)
|
const modalRef = ref(null)
|
||||||
|
|
||||||
|
|
@ -115,7 +116,8 @@ const getData = async () => {
|
||||||
subject_type: type.value,
|
subject_type: type.value,
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
data.value = resData
|
data.value = resData.data
|
||||||
|
checkable.value = resData.checkable
|
||||||
console.log(resData)
|
console.log(resData)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue