|
@@ -2,14 +2,14 @@
|
|
|
<scroll-view scroll-y class="container">
|
|
<scroll-view scroll-y class="container">
|
|
|
<!-- Banner -->
|
|
<!-- Banner -->
|
|
|
<view class="banner">
|
|
<view class="banner">
|
|
|
- <text class="banner-title">🧪 检查检验报告</text>
|
|
|
|
|
|
|
+ <text class="banner-title">🧪 检验记录</text>
|
|
|
</view>
|
|
</view>
|
|
|
|
|
|
|
|
<!-- 检查报告卡片列表 -->
|
|
<!-- 检查报告卡片列表 -->
|
|
|
<view v-if="reportList.length" class="card-list">
|
|
<view v-if="reportList.length" class="card-list">
|
|
|
<view class="card" v-for="item in reportList" :key="item.id">
|
|
<view class="card" v-for="item in reportList" :key="item.id">
|
|
|
<view class="card-header">
|
|
<view class="card-header">
|
|
|
- <image :src="item.icon" class="card-icon" />
|
|
|
|
|
|
|
+ <!--<image :src="item.icon" class="card-icon" />-->
|
|
|
<view class="header-info">
|
|
<view class="header-info">
|
|
|
<text class="item-title">{{ item.name }}</text>
|
|
<text class="item-title">{{ item.name }}</text>
|
|
|
<text class="item-status">{{ item.status }}</text>
|
|
<text class="item-status">{{ item.status }}</text>
|
|
@@ -41,25 +41,25 @@
|
|
|
|
|
|
|
|
const reportList = ref([{
|
|
const reportList = ref([{
|
|
|
id: 1,
|
|
id: 1,
|
|
|
- name: '胸部CT检查',
|
|
|
|
|
|
|
+ name: '装配间隙',
|
|
|
icon: '/static/icons/ct.png',
|
|
icon: '/static/icons/ct.png',
|
|
|
status: '✅ 已出报告',
|
|
status: '✅ 已出报告',
|
|
|
- applyDate: '2025-06-10 09:15',
|
|
|
|
|
- reportDate: '2025-06-10 17:30'
|
|
|
|
|
|
|
+ applyDate: '2025-08-20 09:15',
|
|
|
|
|
+ reportDate: '2025-08-20 17:30'
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
id: 2,
|
|
id: 2,
|
|
|
- name: '血常规检验',
|
|
|
|
|
|
|
+ name: '装配间隙',
|
|
|
icon: '/static/icons/blood.png',
|
|
icon: '/static/icons/blood.png',
|
|
|
status: '✅ 已出报告',
|
|
status: '✅ 已出报告',
|
|
|
- applyDate: '2025-06-08 10:00',
|
|
|
|
|
- reportDate: '2025-06-08 13:40'
|
|
|
|
|
|
|
+ applyDate: '2025-08-28 10:00',
|
|
|
|
|
+ reportDate: '2025-08-28 13:40'
|
|
|
}
|
|
}
|
|
|
])
|
|
])
|
|
|
|
|
|
|
|
const viewReport = (item) => {
|
|
const viewReport = (item) => {
|
|
|
uni.navigateTo({
|
|
uni.navigateTo({
|
|
|
- url: `/pages/inspection/ReportDetail?id=${item.id}`
|
|
|
|
|
|
|
+ url: `/pages/work/report/ReportDetail?id=${item.id}`
|
|
|
})
|
|
})
|
|
|
}
|
|
}
|
|
|
</script>
|
|
</script>
|