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