Yang 3 years ago
commit c497f5b9d8

@ -100,20 +100,26 @@
export default { export default {
setup() { setup() {
let dataColumn = [{ let dataColumn = [
{
title: "PLM内码", title: "PLM内码",
key: "FPlmCode" key: "FPlmCode",
}, { width: "200px"
},
{
title: "版本号", title: "版本号",
key: "FVersionCode", key: "FVersionCode",
width: "60px"
}, },
{ {
title: "试验号", title: "试验号",
key: "FTestCode" key: "FTestCode",
width: "160px"
}, },
{ {
title: "配方描述", title: "配方描述",
key: "FName" key: "FName",
width: "220px"
}, },
{ {
title: "配方类型", title: "配方类型",
@ -122,13 +128,29 @@
}, },
{ {
title: "生产号", title: "生产号",
key: "FProductCode" key: "FProductCode",
width: "110px"
}, },
{ {
title: "工厂代码", title: "工厂代码",
key: "FFactoryCode", key: "FFactoryCode",
width: "110px" width: "110px"
}, },
{
title: "转规格人员",
key: "",
width: "110px"
},
{
title: "开发日期",
key: "",
width: "110px"
},
{
title: "BOM版本号",
key: "",
width: "110px"
},
{ {
title: "创建时间", title: "创建时间",
key: "FAddDate", key: "FAddDate",

@ -299,6 +299,12 @@
//- //-
_clickReset() { _clickReset() {
this.searchObj = {}; this.searchObj = {};
this.pageInfo = ref({
total: 0,
limit: 10,
current: 1,
showRefresh: true
});
this._clickSearch(); this._clickSearch();
} }
} }

@ -90,7 +90,7 @@
{ {
title: "ID", title: "ID",
key: "FID", key: "FID",
width: "80px", width: "60px",
align: 'center', align: 'center',
hide: false hide: false
}, },
@ -104,7 +104,7 @@
{ {
title: "物料号", title: "物料号",
key: "FMaterialCode", key: "FMaterialCode",
width: "160px", width: "120px",
align: 'center', align: 'center',
hide: false hide: false
}, },
@ -118,6 +118,12 @@
{ {
title: "产品分类", title: "产品分类",
key: "FMaterialTypeName", key: "FMaterialTypeName",
width: "140px",
align: 'center'
},
{
title: "模式",
key: "FCreateFactoryName",
width: "200px", width: "200px",
align: 'center' align: 'center'
}, },
@ -130,7 +136,7 @@
{ {
title: "发起人", title: "发起人",
key: "FAddUserName", key: "FAddUserName",
width: "160px", width: "120px",
align: 'center' align: 'center'
}, },
{ {

@ -358,7 +358,7 @@ export default {
}) })
} }
if (this.freezingColumnSetting && this.freezingColumnSetting.length > 0) { if (this.freezingColumnSetting && this.freezingColumnSetting.length > 0 && this.dataInfoObj.FCanEdit != 2) {
this.dataColumn = ref([]); this.dataColumn = ref([]);
this.setFreezingColumns(); this.setFreezingColumns();
} }

Loading…
Cancel
Save