解决因领料申请或新购到货的css样式导致其他页面树形高度缩短的全局问题

This commit is contained in:
hongchao 2025-01-22 16:53:47 +08:00
parent 1c5eda8555
commit d1aa54a9c8
4 changed files with 27 additions and 13 deletions

View File

@ -798,10 +798,17 @@ export default {
},
/** 提交 */
handleSubmit(){
/** 批量退回 */
handleSubmit() {
if (this.ids.length == 0) {
this.$message({
type: 'warning',
message: '请选择数据',
})
return;
}
this.$modal
.confirm('是否确认提交?')
.confirm('是否确认退回')
.then(() => {
// let params = {
// 'agreementId': this.rowData.agreementId, 'agreementCode': this.rowData.agreementCode,'totalCostAll': this.costAll,

View File

@ -787,7 +787,14 @@ export default {
},
/** 提交 */
handleSubmit(){
handleSubmit() {
if (this.ids.length == 0) {
this.$message({
type: 'warning',
message: '请选择数据',
})
return;
}
this.$modal
.confirm('是否确认提交?')
.then(() => {

View File

@ -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;

View File

@ -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;