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

This commit is contained in:
yanyizhou
2021-12-06 14:09:05 +08:00
2 changed files with 57 additions and 7 deletions
@@ -207,7 +207,7 @@
type="primary" type="primary"
class="common-button-primary" class="common-button-primary"
size="small" size="small"
@click="getStandDataBtn"> @click="getStandDataBtns">
查询 查询
</el-button> </el-button>
</el-form-item> </el-form-item>
@@ -225,7 +225,7 @@
tooltip-effect="dark" tooltip-effect="dark"
style="width: 100%" style="width: 100%"
border border
height="100%" class="table-height"
:header-cell-style="{background: '#f5f1f1', color: '#333333', fontSize: '16px', :header-cell-style="{background: '#f5f1f1', color: '#333333', fontSize: '16px',
fontWeight: 'bold', height: '48px'}" fontWeight: 'bold', height: '48px'}"
@selection-change="selectListChange" @selection-change="selectListChange"
@@ -461,6 +461,20 @@ export default {
this.getStandDataBtn() this.getStandDataBtn()
this.ListModel = true; this.ListModel = true;
}, },
getStandDataBtns(){
this.$http.get('lawss/sarBussionessStand/getSarBussionStandPage',{
standCode: this.standardSearch.standCode,
standName: this.standardSearch.standName,
page: 1,
pageSize: this.pageSize,
}, {
_this: this,
}, res => {
this.page = 1
this.standinfoList = res.data.list
this.total = res.data.count
})
},
//企业标准查询this.standardSearch, //企业标准查询this.standardSearch,
getStandDataBtn(){ getStandDataBtn(){
this.$http.get('lawss/sarBussionessStand/getSarBussionStandPage',{ this.$http.get('lawss/sarBussionessStand/getSarBussionStandPage',{
@@ -478,6 +492,7 @@ export default {
}, },
//企业标准清空 //企业标准清空
clearSearch(){ clearSearch(){
this.page = 1
this.standardSearch = { this.standardSearch = {
standCode: '', standCode: '',
standName: '' standName: ''
@@ -792,7 +807,16 @@ export default {
width: 210px; width: 210px;
} }
} }
.table-height{
height: calc(~'100% - 65px');
overflow: auto;
}
.el-table::before {
content: '';
position: absolute;
background-color: #EBEEF5;
z-index: 0;
}
.demo-drawer-content { .demo-drawer-content {
margin-top: 10px; margin-top: 10px;
} }
@@ -30,7 +30,8 @@
<el-input <el-input
v-model="standardSearch.standCode" v-model="standardSearch.standCode"
placeholder="请输入企标编号" placeholder="请输入企标编号"
clearable clearabler
readonly
></el-input> ></el-input>
</el-form-item> </el-form-item>
<el-form-item label="中文名称" prop="standName" class="add-form-item form-item-disabled"> <el-form-item label="中文名称" prop="standName" class="add-form-item form-item-disabled">
@@ -38,6 +39,7 @@
v-model="standardSearch.standName" v-model="standardSearch.standName"
placeholder="请输入中文名称" placeholder="请输入中文名称"
clearable clearable
readonly
></el-input> ></el-input>
</el-form-item> </el-form-item>
<el-form-item v-show="standShow" label="英文名称" prop="enName" class="add-form-item form-item-disabled"> <el-form-item v-show="standShow" label="英文名称" prop="enName" class="add-form-item form-item-disabled">
@@ -225,7 +227,7 @@
type="primary" type="primary"
class="common-button-primary" class="common-button-primary"
size="small" size="small"
@click="getStandDataBtn"> @click="getStandDataBtns">
查询 查询
</el-button> </el-button>
</el-form-item> </el-form-item>
@@ -243,7 +245,7 @@
tooltip-effect="dark" tooltip-effect="dark"
style="width: 100%" style="width: 100%"
border border
height="100%" class="table-height"
:header-cell-style="{background: '#f5f1f1', color: '#333333', fontSize: '16px', :header-cell-style="{background: '#f5f1f1', color: '#333333', fontSize: '16px',
fontWeight: 'bold', height: '48px'}" fontWeight: 'bold', height: '48px'}"
@selection-change="selectListChange" @selection-change="selectListChange"
@@ -498,6 +500,20 @@ export default {
this.getStandDataBtn() this.getStandDataBtn()
this.ListModel = true; this.ListModel = true;
}, },
getStandDataBtns(){
this.$http.get('lawss/sarBussionessStand/getSarBussionStandPage',{
standCode: this.standardSearch.standCode,
standName: this.standardSearch.standName,
page: 1,
pageSize: this.pageSize,
}, {
_this: this,
}, res => {
this.page = 1
this.standinfoList = res.data.list
this.total = res.data.count
})
},
//企业标准查询 //企业标准查询
getStandDataBtn(){ getStandDataBtn(){
this.$http.get('lawss/sarBussionessStand/getSarBussionStandPage',{ this.$http.get('lawss/sarBussionessStand/getSarBussionStandPage',{
@@ -515,6 +531,7 @@ export default {
}, },
//企业标准清空 //企业标准清空
clearSearch(){ clearSearch(){
this.page = 1
this.standardSearch = { this.standardSearch = {
standCode: '', standCode: '',
standName: '' standName: ''
@@ -857,7 +874,16 @@ export default {
width: 210px; width: 210px;
} }
} }
.table-height{
height: calc(~'100% - 65px');
overflow: auto;
}
.el-table::before {
content: '';
position: absolute;
background-color: #EBEEF5;
z-index: 0;
}
.demo-drawer-content { .demo-drawer-content {
margin-top: 10px; margin-top: 10px;
} }