|
@@ -1,128 +0,0 @@
|
|
|
-<!--<template>-->
|
|
|
-
|
|
|
-<!-- <el-row :gutter="8" justify="space-between">-->
|
|
|
-<!-- <el-col :xl="24" :lg="24" :md="24" :sm="24" :xs="24">-->
|
|
|
-<!-- <div>-->
|
|
|
-<!-- <el-col :xl="24" :lg="24" :md="24" :sm="24" :xs="24" >-->
|
|
|
-<!-- <el-card style="margin-bottom: 5px">-->
|
|
|
-
|
|
|
-<!-- <template #header>-->
|
|
|
-<!-- <div class="card-header" style="text-align: center">-->
|
|
|
-<!-- <h1 class="text1">标本出库申请详情</h1>-->
|
|
|
-<!-- </div>-->
|
|
|
-<!-- </template>-->
|
|
|
-<!-- <el-descriptions-->
|
|
|
-
|
|
|
-<!-- v-if="outboundData"-->
|
|
|
-<!-- :column="3"-->
|
|
|
-<!-- :size="small"-->
|
|
|
-<!-- border-->
|
|
|
-
|
|
|
-
|
|
|
-<!-- >-->
|
|
|
-<!-- <el-descriptions-item label="序号:" label-align="right" >{{ outboundData.id }}</el-descriptions-item>-->
|
|
|
-<!-- <el-descriptions-item label="标本编号" label-align="right">{{-->
|
|
|
-<!-- outboundData.number-->
|
|
|
-<!-- }}-->
|
|
|
-<!-- </el-descriptions-item>-->
|
|
|
-<!-- <el-descriptions-item label="申请人或申请单位:" >{{-->
|
|
|
-<!-- outboundData.applicantName-->
|
|
|
-<!-- }}-->
|
|
|
-<!-- </el-descriptions-item>-->
|
|
|
-<!-- <el-descriptions-item label="申请日期:" >{{-->
|
|
|
-<!-- outboundData.applicationDate-->
|
|
|
-<!-- }}-->
|
|
|
-<!-- </el-descriptions-item>-->
|
|
|
-<!-- <el-descriptions-item label="申请出库的用途:" >{{-->
|
|
|
-<!-- outboundData.applicationUsage-->
|
|
|
-<!-- }}-->
|
|
|
-<!-- </el-descriptions-item>-->
|
|
|
-<!-- <el-descriptions-item label="审批状态:" >{{-->
|
|
|
-<!-- outboundData.status-->
|
|
|
-<!-- }}-->
|
|
|
-<!-- </el-descriptions-item>-->
|
|
|
-<!-- <el-descriptions-item label="审批员:">{{-->
|
|
|
-<!-- outboundData.approveUsers-->
|
|
|
-<!-- }}-->
|
|
|
-<!-- </el-descriptions-item>-->
|
|
|
-<!-- <el-descriptions-item label="审批时间:">{{-->
|
|
|
-<!-- outboundData.approvalTime-->
|
|
|
-<!-- }}-->
|
|
|
-<!-- </el-descriptions-item>-->
|
|
|
-<!-- <el-descriptions-item label="备注信息:" >{{outboundData.remarks}}-->
|
|
|
-<!-- </el-descriptions-item>-->
|
|
|
-<!-- </el-descriptions>-->
|
|
|
-<!-- </el-card>-->
|
|
|
-<!-- <el-card >-->
|
|
|
-<!-- <template #header>-->
|
|
|
-<!-- <div class="card-header" style="text-align: center">-->
|
|
|
-<!-- <h1 class="text1">标本出库入库详情</h1>-->
|
|
|
-<!-- </div>-->
|
|
|
-<!-- </template>-->
|
|
|
-<!-- <el-descriptions-->
|
|
|
-<!-- v-if="outboundData"-->
|
|
|
-<!-- :column="3"-->
|
|
|
-<!-- :size="small"-->
|
|
|
-<!-- border-->
|
|
|
-<!-- >-->
|
|
|
-<!-- <div >-->
|
|
|
-<!-- <el-descriptions-item label="出库时间:">{{ outboundData.outgoingTime }}</el-descriptions-item>-->
|
|
|
-<!-- <el-descriptions-item label="出库员:">{{ outboundData.operator}}-->
|
|
|
-<!-- </el-descriptions-item>-->
|
|
|
-
|
|
|
-<!-- <el-descriptions-item label="退还日期">{{-->
|
|
|
-<!-- outboundData.returnDate-->
|
|
|
-<!-- }}-->
|
|
|
-<!-- </el-descriptions-item>-->
|
|
|
-<!-- <el-descriptions-item label="点收人:">{{-->
|
|
|
-<!-- outboundData.receiver-->
|
|
|
-<!-- }}-->
|
|
|
-<!-- </el-descriptions-item>-->
|
|
|
-
|
|
|
-
|
|
|
-<!-- <el-descriptions-item label="退还人">{{-->
|
|
|
-<!-- outboundData.returner-->
|
|
|
-<!-- }}-->
|
|
|
-<!-- </el-descriptions-item>-->
|
|
|
-<!-- </div>-->
|
|
|
-<!-- </el-descriptions>-->
|
|
|
-<!-- </el-card>-->
|
|
|
-
|
|
|
-<!-- </el-col>-->
|
|
|
-<!-- </div>-->
|
|
|
-<!-- </el-col>-->
|
|
|
-<!-- </el-row>-->
|
|
|
-
|
|
|
-<!--</template>-->
|
|
|
-<!--<script setup lang="ts">-->
|
|
|
-<!--import {ElCol} from "element-plus";-->
|
|
|
-<!--import {ref} from "vue";-->
|
|
|
-
|
|
|
-<!--import {SpecimenOutboundApi} from "@/api/museums/specimenoutbound";-->
|
|
|
-<!--const {query} = useRoute() // 查询参数-->
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-<!--let outboundData = ref(null); // 初始化响应式数据-->
|
|
|
-<!--const fetchData = async () => {-->
|
|
|
-<!-- try {-->
|
|
|
-<!-- console.log(query.dataId)-->
|
|
|
-<!-- let res: any = await SpecimenOutboundApi.getSpecimenOutbound(query.dataId)-->
|
|
|
-<!-- console.log(res)-->
|
|
|
-<!-- outboundData.value = res-->
|
|
|
-<!-- console.log(outboundData.value)-->
|
|
|
-<!-- } finally {-->
|
|
|
-<!-- }-->
|
|
|
-<!--}-->
|
|
|
-
|
|
|
-<!--// // 在组件加载时获取数据-->
|
|
|
-<!--onMounted(async () => {-->
|
|
|
-<!-- await fetchData()-->
|
|
|
-<!--})-->
|
|
|
-
|
|
|
-<!--</script>-->
|
|
|
-
|
|
|
-<!--<style scoped>-->
|
|
|
-
|
|
|
-<!--</style>-->
|