|
@@ -77,13 +77,10 @@ export default {
|
|
|
},
|
|
|
// 判断属性是否禁用
|
|
|
async handleIsForbidden(status) {
|
|
|
- console.log(status);
|
|
|
let { updateColumns, updateTabColumns } = await forbidden(status != '2');
|
|
|
this.columns = updateColumns;
|
|
|
this.tabColumns = updateTabColumns;
|
|
|
this.count++;
|
|
|
- console.log(this.columns,'this.columns');
|
|
|
- console.log(this.tabColumns,'this.tabColumns');
|
|
|
},
|
|
|
// 查询详细
|
|
|
async fetchItem(prop) {
|
|
@@ -215,10 +212,6 @@ export default {
|
|
|
},
|
|
|
// 子表参照改变之后
|
|
|
handleReferChange(val, source, type) {
|
|
|
- console.log(val, 'val');
|
|
|
- console.log(source, 'source');
|
|
|
- console.log(type, 'type');
|
|
|
-
|
|
|
// 触发物料参照
|
|
|
if (type == 'MATERIAL_PARAM' && source.qty && source.qty != '') {
|
|
|
|
|
@@ -244,7 +237,6 @@ export default {
|
|
|
|
|
|
// 子表下拉框改变
|
|
|
handleTabSelectChange(type,row){
|
|
|
- console.log(type,'type');
|
|
|
|
|
|
if(type == 'priceType' && row.material && row.qty && row.qty != ""){
|
|
|
this.handleGetPrice();
|
|
@@ -252,7 +244,6 @@ export default {
|
|
|
},
|
|
|
// 子表inputNumber
|
|
|
handleInputChange(row, type) {
|
|
|
- console.log(type, 'type');
|
|
|
// 物料数量变化----询价
|
|
|
if (type == 'qty' && row.material) {
|
|
|
this.handleGetPrice();
|
|
@@ -290,12 +281,7 @@ export default {
|
|
|
},
|
|
|
|
|
|
},
|
|
|
- created() {
|
|
|
- console.log("EDIT CREATED");
|
|
|
- console.log(this.params, 'this.params');
|
|
|
-
|
|
|
-
|
|
|
- },
|
|
|
+ created() {},
|
|
|
mounted() { },
|
|
|
destroyed() { },
|
|
|
};
|