You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
600 B
38 lines
600 B
<template>
|
|
<div>
|
|
<!-- 导航栏 -->
|
|
<van-nav-bar
|
|
title="申请详情"
|
|
left-arrow
|
|
@click-left="onClickLeft"
|
|
/>
|
|
<!-- 审核结果 -->
|
|
<div class="bg-white">
|
|
<div class="text-gray-500 font-semibold p-3">审核结果</div>
|
|
<div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
// 审核的数据
|
|
const checkerList = ref([
|
|
{
|
|
name: "冯教授",
|
|
advice: "",
|
|
checkedTime: "",
|
|
status: "0",
|
|
},
|
|
{
|
|
name: "冯教授",
|
|
advice: "",
|
|
checkedTime: "",
|
|
status: "0",
|
|
}
|
|
])
|
|
function onClickLeft(){
|
|
console.log("上一页")
|
|
}
|
|
</script>
|
|
|