禅道bug

This commit is contained in:
宋伟佳
2022-03-24 11:32:14 +08:00
parent 466d02e5c8
commit 594ccd8e3f
3 changed files with 22 additions and 8 deletions
@@ -277,9 +277,6 @@ export default {
nextStatus: "" nextStatus: ""
}, },
formRules: { formRules: {
nextStatus: [
{ required: true, message: "", trigger: "change" }
]
}, },
associationOptions: [{ associationOptions: [{
value: "修订", value: "修订",
@@ -206,7 +206,7 @@
type="primary" type="primary"
size="mini" size="mini"
class="common-button-primary" class="common-button-primary"
@click="QYBZget">查询 @click="QYBZgetBtn">查询
</el-button> </el-button>
<el-button <el-button
class="common-button-default" class="common-button-default"
@@ -223,7 +223,7 @@
:data="QYBZList" :data="QYBZList"
tooltip-effect="dark" tooltip-effect="dark"
style="width: 100%;padding:0 0 20px 0;" style="width: 100%;padding:0 0 20px 0;"
height="100%" class="table-height"
border border
@selection-change="handleSelectionQYBZ" @selection-change="handleSelectionQYBZ"
:header-cell-style="{background: '#f8f8f9', color: '#515a6e'}"> :header-cell-style="{background: '#f8f8f9', color: '#515a6e'}">
@@ -753,6 +753,10 @@ export default {
this.QYBZform.pageSize = pageSize this.QYBZform.pageSize = pageSize
this.QYBZget() this.QYBZget()
}, },
QYBZgetBtn(){
this.QYBZform.page = 1
this.QYBZget()
},
QYBZget () { QYBZget () {
this.$http.get('lawss/sarBussionessStand/getSarBussionStandPage', this.QYBZform, { this.$http.get('lawss/sarBussionessStand/getSarBussionStandPage', this.QYBZform, {
_this: this, loading: 'QYBZShow' _this: this, loading: 'QYBZShow'
@@ -958,5 +962,9 @@ export default {
} }
} }
} }
.table-height{
height: calc(~'100% - 65px');
overflow: auto;
}
} }
</style> </style>
@@ -372,7 +372,7 @@
type="primary" type="primary"
size="mini" size="mini"
class="common-button-primary" class="common-button-primary"
@click="QYBZget">查询 @click="QYBZgetBtn">查询
</el-button> </el-button>
<el-button <el-button
class="common-button-default" class="common-button-default"
@@ -389,7 +389,7 @@
:data="QYBZList" :data="QYBZList"
tooltip-effect="dark" tooltip-effect="dark"
style="width: 100%;padding:0 0 20px 0;" style="width: 100%;padding:0 0 20px 0;"
height="100%" class="table-height"
border border
@selection-change="handleSelectionQYBZ" @selection-change="handleSelectionQYBZ"
:header-cell-style="{background: '#f8f8f9', color: '#515a6e'}"> :header-cell-style="{background: '#f8f8f9', color: '#515a6e'}">
@@ -858,7 +858,7 @@ export default {
}, },
QYBZenterDrawer () { QYBZenterDrawer () {
if (this.QYBZformSelect.length > 1) { if (this.QYBZformSelect.length > 1) {
this.$message.warning('请选择一条标准') this.$message.warning('您只能选择一条标准进行带入')
} else if (this.QYBZformSelect.length < 1){ } else if (this.QYBZformSelect.length < 1){
this.$message.warning('请选择要带入的标准') this.$message.warning('请选择要带入的标准')
} else { } else {
@@ -879,6 +879,11 @@ export default {
this.QYBZform.pageSize = pageSize this.QYBZform.pageSize = pageSize
this.QYBZget() this.QYBZget()
}, },
//企业标准查询
QYBZgetBtn(){
this.QYBZform.page = 1
this.QYBZget()
},
QYBZget () { QYBZget () {
this.$http.get('lawss/sarBussionessStand/getSarBussionStandPage', this.QYBZform, { this.$http.get('lawss/sarBussionessStand/getSarBussionStandPage', this.QYBZform, {
_this: this, loading: 'QYBZShow' _this: this, loading: 'QYBZShow'
@@ -1170,5 +1175,9 @@ export default {
} }
} }
} }
.table-height{
height: calc(~'100% - 65px');
overflow: auto;
}
} }
</style> </style>