1.修复新建业务单据无法选入产品bug

2.修改全局样式,修复固定操作列导致表格变形问题
prod
x_z 2 years ago
parent f6b5688491
commit 053debea7c

@ -189,3 +189,8 @@ aside {
.multiselect--active {
z-index: 1000 !important;
}
.el-table--mini .el-table__cell {
padding:0px!important;
}

@ -793,6 +793,7 @@ export default {
event.preventDefault();
event.stopPropagation();
};
if (this.viewType !== 1) {
var that = this;
var inputer = document.getElementById("inputer");
window.sc = new A.KeyScaner(inputer);//DOM
@ -814,6 +815,7 @@ export default {
}
};
inputer.focus();
}
},
created() {

@ -87,7 +87,7 @@
</el-button-group>
</div>
<el-divider style="margin: 15px"></el-divider>
<el-table v-loading="loading" :data="list" style="width: 100%" highlight-current-row
<el-table v-loading="loading" :data="list" style="width: 100%;" highlight-current-row class="table-fixed"
border
@current-change="handleSelectionChange">
<el-table-column type="selection" width="55"></el-table-column>
@ -122,7 +122,7 @@
<!-- </el-tag>-->
<!-- </template>-->
<!-- </el-table-column>-->
<el-table-column label="操作" width="150">
<el-table-column label="操作" width="200" fixed="right">
<template slot-scope="scope">
<el-button
type="text"
@ -814,5 +814,6 @@ export default {
};
</script>
<style type="text/scss" lang="scss">
<style lang="scss" scoped>
</style>

@ -122,7 +122,7 @@
</el-tag>
</template>
</el-table-column>
<el-table-column label="操作" width="160">
<el-table-column label="操作" width="160" fixed="right">
<template slot-scope="scope">
<el-button

@ -367,9 +367,11 @@ export default {
if (this.curBustype.corpType == 3) {//
this.invQueryData.invCode = this.idQuery.invCode;
this.selectInvProductVisible = true;
} else if (this.curBustype.corpType == 2)//
{
} else if (this.curBustype.corpType == 2) { //
this.selectProductVisible = true;
} else if (this.curBustype.corpType === 1) {//
this.invQueryData.invCode = this.idQuery.invCode;
this.selectInvProductVisible = true;
}
},

Loading…
Cancel
Save