列表关键标识补充说明
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
b9163c18f1
commit
a3f5cdb445
|
@ -1,6 +1,6 @@
|
||||||
/* eslint-disable */
|
/* eslint-disable */
|
||||||
<template>
|
<template>
|
||||||
<BaseContainer>
|
<BaseContainer class="consistency-analysis-wrapper">
|
||||||
<template slot="search-container">
|
<template slot="search-container">
|
||||||
<el-form :inline="true">
|
<el-form :inline="true">
|
||||||
<!-- 是否加急 -->
|
<!-- 是否加急 -->
|
||||||
|
@ -412,7 +412,7 @@
|
||||||
{{$t('trials:consistencyAnalysis:table:impact')}}
|
{{$t('trials:consistencyAnalysis:table:impact')}}
|
||||||
</span>
|
</span>
|
||||||
<!-- 受到退回影响 -->
|
<!-- 受到退回影响 -->
|
||||||
<span> {{$t('trials:consistencyAnalysis:title:impactInfluence')}}</span>
|
<span>: {{$t('trials:consistencyAnalysis:title:impactInfluence')}}</span>
|
||||||
</div>
|
</div>
|
||||||
<!-- 自身一致性分析 -->
|
<!-- 自身一致性分析 -->
|
||||||
<el-dialog
|
<el-dialog
|
||||||
|
@ -1044,12 +1044,17 @@ export default {
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.remark{
|
.consistency-analysis-wrapper{
|
||||||
|
height: 100%;
|
||||||
|
position: relative;
|
||||||
|
.remark{
|
||||||
position: absolute;
|
position: absolute;
|
||||||
left: 5px;
|
left: 5px;
|
||||||
bottom: 7px;
|
bottom: 7px;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.status-primary-circle{
|
.status-primary-circle{
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
width:20px;
|
width:20px;
|
||||||
|
|
|
@ -303,6 +303,13 @@
|
||||||
|
|
||||||
<!-- 分页组件 -->
|
<!-- 分页组件 -->
|
||||||
<pagination class="page" :total="total" :page.sync="searchData.PageIndex" :limit.sync="searchData.PageSize" @pagination="getList" />
|
<pagination class="page" :total="total" :page.sync="searchData.PageIndex" :limit.sync="searchData.PageSize" @pagination="getList" />
|
||||||
|
<div class="remark">
|
||||||
|
<span class="status-primary-circle">
|
||||||
|
<!-- 回退 -->
|
||||||
|
{{$t('trials:consistencyCheck:table:back')}}
|
||||||
|
</span>
|
||||||
|
<span>: {{$t('trials:consistencyCheck:title:back')}}</span>
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<el-dialog
|
<el-dialog
|
||||||
|
@ -764,6 +771,7 @@ export default {
|
||||||
</script>
|
</script>
|
||||||
<style lang="scss">
|
<style lang="scss">
|
||||||
.consistency-list{
|
.consistency-list{
|
||||||
|
position: relative;
|
||||||
.is-circle-urgent-red{
|
.is-circle-urgent-red{
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
padding: 7px;
|
padding: 7px;
|
||||||
|
@ -792,5 +800,11 @@ export default {
|
||||||
color:#fff;
|
color:#fff;
|
||||||
font-size: 10px;
|
font-size: 10px;
|
||||||
}
|
}
|
||||||
|
.remark{
|
||||||
|
position: absolute;
|
||||||
|
left: 5px;
|
||||||
|
bottom: 7px;
|
||||||
|
font-size: 12px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue