|
@@ -5,9 +5,9 @@
|
|
|
<div class="hc-project-icon-box">
|
|
|
<HcIcon name="stack" />
|
|
|
</div>
|
|
|
- <div class="ml-2 project-name-box">
|
|
|
- <span class="text-xl text-cut project-alias">{{ projectInfo.projectAlias }}</span>
|
|
|
- <div class="text-xs text-cut project-name">{{ projectInfo.name }}</div>
|
|
|
+ <div class="project-name-box ml-2">
|
|
|
+ <span class="text-cut project-alias text-xl">{{ projectInfo.projectAlias }}</span>
|
|
|
+ <div class="text-cut project-name text-xs">{{ projectInfo.name }}</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="hc-tree-new-switch">
|
|
@@ -31,11 +31,11 @@
|
|
|
<template #header>
|
|
|
<HcIcon name="volume-up" />
|
|
|
<span class="ml-2">您本次验收抽检案卷共</span>
|
|
|
- <span class="text-orange mx-2">{{ stats?.total }}</span>
|
|
|
+ <span class="mx-2 text-orange">{{ stats?.total }}</span>
|
|
|
<span>卷,目前已抽检</span>
|
|
|
- <span class="text-green mx-2">{{ stats?.reviewed }}</span>
|
|
|
+ <span class="mx-2 text-green">{{ stats?.reviewed }}</span>
|
|
|
<span>卷,抽检率为</span>
|
|
|
- <span class="text-blue mx-2">{{ stats?.ratio }}</span>
|
|
|
+ <span class="mx-2 text-blue">{{ stats?.ratio }}</span>
|
|
|
</template>
|
|
|
<template #extra>
|
|
|
<el-button type="danger" round @click="writingConclusion">编写结论</el-button>
|
|
@@ -43,7 +43,7 @@
|
|
|
<el-button type="danger" plain round @click="toBackHomeClick">返回主页</el-button>
|
|
|
</template>
|
|
|
<div class="hc-card-diy-search-box">
|
|
|
- <div class="text-gray text-sm mr-4 hc-card-diy-tip-view">
|
|
|
+ <div class="hc-card-diy-tip-view mr-4 text-sm text-gray">
|
|
|
<span class="mr-4">通过关键词、题名、桩号等相关信息进行搜索:</span>
|
|
|
<el-radio-group v-model="checkList" class="ml-4" @change="getTableData">
|
|
|
<el-radio label="1" size="large">案卷</el-radio>
|
|
@@ -185,7 +185,7 @@ const tableColumn = ref([
|
|
|
{ key: 'unit', name: '立卷单位' },
|
|
|
{ key: 'inspectStatusName', name: '抽检状态' },
|
|
|
{ key: 'updateStatusName', name: '抽检意见' },
|
|
|
- { key: 'action', name: '操作', width: 100 },
|
|
|
+ { key: 'action', name: '操作', width: 100, align:'center' },
|
|
|
])
|
|
|
const tableData = ref([])
|
|
|
|
|
@@ -247,7 +247,10 @@ const tableClick = (row) => {
|
|
|
isCarrySpotChecksDrawer.value = true
|
|
|
fileId.value = row.id
|
|
|
fileInfo.value = row
|
|
|
- isOpinion.value = false
|
|
|
+ console.log(fileInfo.value, 'fileInfo.value')
|
|
|
+
|
|
|
+ // isOpinion.value = false
|
|
|
+ isOpinion.value = true
|
|
|
|
|
|
}
|
|
|
const changeFile = (row)=>{
|