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,27 +793,29 @@ export default {
event.preventDefault();
event.stopPropagation();
};
var that = this;
var inputer = document.getElementById("inputer");
window.sc = new A.KeyScaner(inputer);//DOM
sc.onInput = function (text) {
if (text.includes("delete")) {
that.codeFormData.code = "";
that.sictomText = "";
that.originCode = "";
return;
}
if (that.sitcomScan) {
let tempTxt = text;
let str = tempTxt.replace(/[\r]/g, "");
that.sictomText = that.sictomText + str;
that.codeFormData.code = that.sictomText;
} else {
that.codeFormData.code = text;
}
};
inputer.focus();
if (this.viewType !== 1) {
var that = this;
var inputer = document.getElementById("inputer");
window.sc = new A.KeyScaner(inputer);//DOM
sc.onInput = function (text) {
if (text.includes("delete")) {
that.codeFormData.code = "";
that.sictomText = "";
that.originCode = "";
return;
}
if (that.sitcomScan) {
let tempTxt = text;
let str = tempTxt.replace(/[\r]/g, "");
that.sictomText = that.sictomText + str;
that.codeFormData.code = that.sictomText;
} else {
that.codeFormData.code = text;
}
};
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"
@ -340,7 +340,7 @@ import {selectSysParamByKey} from "@/api/param/systemParamConfig";
import {getResultDetailList} from "@/api/inout/orderDetailResult";
import {getCodeDetailList} from "@/api/inout/orderDetailCode";
import {getCodeList} from "@/api/inout/code";
import {inspectionOrderPDFFromTemplateFile,orderPDFFromTemplateFile} from "@/api/itextpdf/orderPrint"
import {inspectionOrderPDFFromTemplateFile, orderPDFFromTemplateFile} from "@/api/itextpdf/orderPrint"
const formJson = {
@ -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,17 +367,19 @@ 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;
}
},
saveChange(row) {
if(row.batchNo ==''){
row.batchNo =null;
if (row.batchNo == '') {
row.batchNo = null;
}
updateBizProduct(row)
.then((response) => {

Loading…
Cancel
Save