fix 80157
This commit is contained in:
@@ -354,4 +354,8 @@ export default {
|
||||
.exceeded-text {
|
||||
color: #d9001b;
|
||||
}
|
||||
|
||||
/deep/ .table-page-search-wrapper .ant-form-inline .ant-form-item > .ant-form-item-label {
|
||||
min-width: 120px;
|
||||
}
|
||||
</style>
|
||||
|
||||
@@ -162,6 +162,10 @@ export default {
|
||||
width: 0;
|
||||
}
|
||||
|
||||
.line-form-item:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.btn-box {
|
||||
width: 200px;
|
||||
}
|
||||
|
||||
@@ -29,14 +29,12 @@
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
|
||||
<a-col :md="6" :sm="8">
|
||||
<span style="float: left;overflow: hidden;" class="table-page-search-submitButtons">
|
||||
<a-button type="primary" @click="searchReset" icon="reload" ghost>{{ $t('reset') }}</a-button>
|
||||
<a-button type="primary" @click="searchQuery" icon="search" style="margin-left: 8px" v-has="'vehicleItemLibrary:search'">
|
||||
{{ $t('query') }}
|
||||
</a-button>
|
||||
</span>
|
||||
</a-col>
|
||||
<div style="float: right;overflow: hidden;margin-right: 11px" class="table-page-search-submitButtons">
|
||||
<a-button type="primary" @click="searchQuery" icon="search" v-has="'vehicleItemLibrary:search'">
|
||||
{{ $t('query') }}
|
||||
</a-button>
|
||||
<a-button type="primary" @click="searchReset" icon="reload" ghost>{{ $t('reset') }}</a-button>
|
||||
</div>
|
||||
</a-row>
|
||||
</a-form>
|
||||
</div>
|
||||
@@ -209,4 +207,8 @@ export default {
|
||||
|
||||
<style scoped lang="less">
|
||||
@import '~@assets/less/common.less';
|
||||
|
||||
/deep/ .table-page-search-wrapper .ant-form-inline .ant-form-item > .ant-form-item-label {
|
||||
min-width: 85px;
|
||||
}
|
||||
</style>
|
||||
|
||||
@@ -11,22 +11,22 @@
|
||||
<!--项目来源-->
|
||||
<div class="detail-page-part-form-item">
|
||||
<label>{{ $t('projectLibrary.vehicleItemLibrary.projectSource') }}</label>
|
||||
<span>{{ detailData.projectSource_dictText }}</span>
|
||||
<span>{{ detailData.projectSource_dictText || global.emptyLine }}</span>
|
||||
</div>
|
||||
<!--项目名称-->
|
||||
<div class="detail-page-part-form-item">
|
||||
<label>{{ $t('projectLibrary.projectName') }}</label>
|
||||
<span>{{ detailData.projectName }}</span>
|
||||
<span>{{ detailData.projectName || global.emptyLine }}</span>
|
||||
</div>
|
||||
<!--工作令编号-->
|
||||
<div class="detail-page-part-form-item">
|
||||
<label>{{ $t('projectLibrary.workOrderNumber') }}</label>
|
||||
<span>{{ detailData.workNumber }}</span>
|
||||
<span>{{ detailData.workNumber || global.emptyLine }}</span>
|
||||
</div>
|
||||
<!--项目负责人-->
|
||||
<div class="detail-page-part-form-item">
|
||||
<label>{{ $t('projectLibrary.vehicleItemLibrary.projectLeader') }}</label>
|
||||
<span>{{ detailData.nameWorkNo }}</span>
|
||||
<span>{{ detailData.nameWorkNo || global.emptyLine }}</span>
|
||||
</div>
|
||||
<!--项目健康状态-->
|
||||
<div class="detail-page-part-form-item">
|
||||
@@ -35,8 +35,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<!--风险性总览-->
|
||||
<a-table size="small"
|
||||
bordered
|
||||
<a-table bordered
|
||||
:columns="riskOverviewColumns"
|
||||
:data-source="riskOverviewData"
|
||||
:loading="riskOverviewLoading"
|
||||
@@ -479,4 +478,8 @@ export default {
|
||||
color: #1D2129;
|
||||
margin: 24px 0 15px 0;
|
||||
}
|
||||
|
||||
/deep/ .table-page-search-wrapper .ant-form-inline .ant-form-item > .ant-form-item-label {
|
||||
min-width: 75px;
|
||||
}
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user