Merge remote-tracking branch 'origin/develop' into develop

This commit is contained in:
zhutianqi
2021-06-10 18:01:28 +08:00
6 changed files with 3410 additions and 195 deletions
+6 -5
View File
@@ -88,16 +88,17 @@ export default {
path: '/domesticStandardsAndRegulations', path: '/domesticStandardsAndRegulations',
menuId: 'A59EFAQ7AC' menuId: 'A59EFAQ7AC'
}, },
{
title: '标准征求意见',
path: '/standardForComments',
menuId: ''
},
{ {
title: '海外标准法规', title: '海外标准法规',
path: '/foreignStandardsAndRegulations', path: '/foreignStandardsAndRegulations',
menuId: '6K8A2RZYRE' menuId: '6K8A2RZYRE'
}, },
{
title: '标准征求意见',
path: '/standardForComments',
menuId: ''
},
// { // {
// title: '国内外政策', // title: '国内外政策',
// path: '/foreignRegulationsDatabase', // path: '/foreignRegulationsDatabase',
@@ -840,13 +840,6 @@
<el-button size="mini" type="primary" class="common-button-default" icon="el-icon-check" @click="importFailed = false">确认</el-button> <el-button size="mini" type="primary" class="common-button-default" icon="el-icon-check" @click="importFailed = false">确认</el-button>
</div> </div>
</el-dialog> </el-dialog>
<!-- <AdvancedQuery-->
<!-- :isAdvancedSearch.sync="isAdvancedSearch"-->
<!-- :twoOptions="twoOptions"-->
<!-- :threeOptions="threeOptions"-->
<!-- @twoSelectChange="twoSelectChange"-->
<!-- @getDomesticStandardTableBtn="getDomesticStandardTableBtn"-->
<!-- ></AdvancedQuery>-->
<table-tools-bar v-model="isAdvancedSearch"> <table-tools-bar v-model="isAdvancedSearch">
<div slot="content"> <div slot="content">
<el-form :model="sarStandardsSearch" :inline="true" class="label-input-form table-lattice" style="display: flex;flex-wrap: wrap"> <el-form :model="sarStandardsSearch" :inline="true" class="label-input-form table-lattice" style="display: flex;flex-wrap: wrap">
File diff suppressed because it is too large Load Diff
@@ -189,6 +189,10 @@ export default {
data() { data() {
return { return {
loading: false, loading: false,
// 总数
total: 0,
// 当前页数
pageNo: 1,
causeList: [], //事业部数据 causeList: [], //事业部数据
nonConformitySearch: { nonConformitySearch: {
standNumOrName: '', // 编号/名称 standNumOrName: '', // 编号/名称
@@ -268,7 +272,7 @@ export default {
margin-right:10px; margin-right:10px;
} }
.footer { .footer {
margin-bottom: 430px; margin-bottom: 390px;
} }
} }
</style> </style>
@@ -189,6 +189,10 @@ export default {
data() { data() {
return { return {
loading: false, loading: false,
// 总数
total: 0,
// 当前页数
pageNo: 1,
causeList: [], //事业部数据 causeList: [], //事业部数据
nonConformitySearch: { nonConformitySearch: {
standNumOrName: '', // 编号/名称 standNumOrName: '', // 编号/名称
@@ -268,7 +272,7 @@ export default {
margin-right:10px; margin-right:10px;
} }
.footer { .footer {
margin-bottom: 430px; margin-bottom: 390px;
} }
} }
</style> </style>
@@ -86,7 +86,7 @@
:data="nonList" :data="nonList"
tooltip-effect="dark" tooltip-effect="dark"
style="width: 100%;" style="width: 100%;"
height="tableHeight" height="100%"
border border
:header-cell-style="{background: '#e8e8e8', color: '#333333', fontSize: '16px', :header-cell-style="{background: '#e8e8e8', color: '#333333', fontSize: '16px',
fontWeight: 'bold', height: '48px'}" fontWeight: 'bold', height: '48px'}"
@@ -195,7 +195,6 @@ export default {
data () { data () {
return { return {
loading: false, loading: false,
tableHeight: null, //table高度
nonList:[], //未符合项表格数据 nonList:[], //未符合项表格数据
// 总数 // 总数
total: 0, total: 0,
@@ -273,13 +272,16 @@ export default {
<style lang="less" scoped> <style lang="less" scoped>
#rectification-dataBase { #rectification-dataBase {
//margin: 10px; height: 100%;
.content-center{ .content-center{
margin:10px; margin:10px;
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
align-items: center; align-items: center;
} }
.container {
height: 100%;
}
.footer { .footer {
margin-bottom: 430px; margin-bottom: 430px;
} }