解决因领料申请或新购到货的css样式导致其他页面树形高度缩短的全局问题
This commit is contained in:
parent
1c5eda8555
commit
d1aa54a9c8
|
|
@ -798,11 +798,18 @@ export default {
|
|||
|
||||
},
|
||||
|
||||
/** 提交 */
|
||||
handleSubmit(){
|
||||
/** 批量退回 */
|
||||
handleSubmit() {
|
||||
if (this.ids.length == 0) {
|
||||
this.$message({
|
||||
type: 'warning',
|
||||
message: '请选择数据',
|
||||
})
|
||||
return;
|
||||
}
|
||||
this.$modal
|
||||
.confirm('是否确认提交?')
|
||||
.then(() => {
|
||||
.confirm('是否确认退回?')
|
||||
.then(() => {
|
||||
// let params = {
|
||||
// 'agreementId': this.rowData.agreementId, 'agreementCode': this.rowData.agreementCode,'totalCostAll': this.costAll,
|
||||
// 'leaseList': this.leaseList, 'repairList': this.repairList, 'scrapList': this.scrapList,'loseList': this.loseList,
|
||||
|
|
|
|||
|
|
@ -787,7 +787,14 @@ export default {
|
|||
},
|
||||
|
||||
/** 提交 */
|
||||
handleSubmit(){
|
||||
handleSubmit() {
|
||||
if (this.ids.length == 0) {
|
||||
this.$message({
|
||||
type: 'warning',
|
||||
message: '请选择数据',
|
||||
})
|
||||
return;
|
||||
}
|
||||
this.$modal
|
||||
.confirm('是否确认提交?')
|
||||
.then(() => {
|
||||
|
|
|
|||
|
|
@ -972,10 +972,10 @@ export default {
|
|||
transform: rotateZ(180deg);
|
||||
}
|
||||
|
||||
.el-tree {
|
||||
max-height: 300px;
|
||||
overflow-y: auto;
|
||||
}
|
||||
// .el-tree {
|
||||
// max-height: 300px;
|
||||
// overflow-y: auto;
|
||||
// }
|
||||
|
||||
.highlight-text {
|
||||
background-color: #ffd04b;
|
||||
|
|
|
|||
|
|
@ -1121,10 +1121,10 @@ export default {
|
|||
transform: rotateZ(180deg);
|
||||
}
|
||||
|
||||
.el-tree {
|
||||
max-height: 300px;
|
||||
overflow-y: auto;
|
||||
}
|
||||
// .el-tree {
|
||||
// max-height: 300px;
|
||||
// overflow-y: auto;
|
||||
// }
|
||||
|
||||
.highlight-text {
|
||||
background-color: #ffd04b;
|
||||
|
|
|
|||
Loading…
Reference in New Issue