禅道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: ""
},
formRules: {
nextStatus: [
{ required: true, message: "", trigger: "change" }
]
},
associationOptions: [{
value: "修订",
@@ -206,7 +206,7 @@
type="primary"
size="mini"
class="common-button-primary"
@click="QYBZget">查询
@click="QYBZgetBtn">查询
</el-button>
<el-button
class="common-button-default"
@@ -223,7 +223,7 @@
:data="QYBZList"
tooltip-effect="dark"
style="width: 100%;padding:0 0 20px 0;"
height="100%"
class="table-height"
border
@selection-change="handleSelectionQYBZ"
:header-cell-style="{background: '#f8f8f9', color: '#515a6e'}">
@@ -753,6 +753,10 @@ export default {
this.QYBZform.pageSize = pageSize
this.QYBZget()
},
QYBZgetBtn(){
this.QYBZform.page = 1
this.QYBZget()
},
QYBZget () {
this.$http.get('lawss/sarBussionessStand/getSarBussionStandPage', this.QYBZform, {
_this: this, loading: 'QYBZShow'
@@ -958,5 +962,9 @@ export default {
}
}
}
.table-height{
height: calc(~'100% - 65px');
overflow: auto;
}
}
</style>
@@ -372,7 +372,7 @@
type="primary"
size="mini"
class="common-button-primary"
@click="QYBZget">查询
@click="QYBZgetBtn">查询
</el-button>
<el-button
class="common-button-default"
@@ -389,7 +389,7 @@
:data="QYBZList"
tooltip-effect="dark"
style="width: 100%;padding:0 0 20px 0;"
height="100%"
class="table-height"
border
@selection-change="handleSelectionQYBZ"
:header-cell-style="{background: '#f8f8f9', color: '#515a6e'}">
@@ -858,7 +858,7 @@ export default {
},
QYBZenterDrawer () {
if (this.QYBZformSelect.length > 1) {
this.$message.warning('选择一条标准')
this.$message.warning('您只能选择一条标准进行带入')
} else if (this.QYBZformSelect.length < 1){
this.$message.warning('请选择要带入的标准')
} else {
@@ -879,6 +879,11 @@ export default {
this.QYBZform.pageSize = pageSize
this.QYBZget()
},
//企业标准查询
QYBZgetBtn(){
this.QYBZform.page = 1
this.QYBZget()
},
QYBZget () {
this.$http.get('lawss/sarBussionessStand/getSarBussionStandPage', this.QYBZform, {
_this: this, loading: 'QYBZShow'
@@ -1170,5 +1175,9 @@ export default {
}
}
}
.table-height{
height: calc(~'100% - 65px');
overflow: auto;
}
}
</style>