Commit 53d97782 authored by 高滢's avatar 高滢

feat(任务概览): 页面

parent 66b6b886
...@@ -47,3 +47,22 @@ export function selectMaterial(data) { ...@@ -47,3 +47,22 @@ export function selectMaterial(data) {
data: data data: data
}) })
} }
// 查看任务概览任务详情
export function selectTaskInfo(data){
return request({
url:'/task/getById',
method:'post',
data: data
})
}
// 查看任务概览数据统计
export function selectDataStatistics(data){
return request({
url:'/task/dataStatistics',
method: 'post',
data: data
})
}
...@@ -118,3 +118,7 @@ ...@@ -118,3 +118,7 @@
top: 20px; top: 20px;
transform: translateX(100%); transform: translateX(100%);
} }
.el-checkbox__input.is-disabled + span.el-checkbox__label {
color: #606266;
}
...@@ -150,7 +150,7 @@ ...@@ -150,7 +150,7 @@
@click="goTaskDetails(item.taskId)" @click="goTaskDetails(item.taskId)"
>{{ item.taskNo ? item.taskNo : '--' }} >{{ item.taskNo ? item.taskNo : '--' }}
<span v-show="index + 1 != scope.row.taskSampleRelation.length"> <span v-show="index + 1 != scope.row.taskSampleRelation.length">
,
</span></el-link </span></el-link
> >
</div> </div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment