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

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

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

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

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

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

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

Loading…
Cancel
Save