Fixiaobai
2023-12-15 36677084aa359a96e07d694aac554a1daa003bb6
src/views/quality/finishedProductInspection/finishedProduct-print.vue
@@ -287,28 +287,28 @@
            deviceStr: null,
            product:null,
            childrenData: [],
            typedata:null,
            num:null,
        }
    },
    created(){
        this.tableData = this.formData
        console.log("============",this.tableData)
        this.initData()
        // this.initProjectList(this.projectList)
    },
    methods:{
        initData(){
            this.deviceStr = this.tableData.projectName
            this.product = this.tableData.material
            this.typedata = this.tableData.quantity
            this.num = this.tableData.specs
        },
    },
    watch:{
        formData(newVal){
            if(newVal){
                this.projectList = []
                console.log(newVal)
                this.tableData = newVal
                this.initData()
                // this.initProjectList(this.projectList)
            }
        }
    },