jcdm-ui/src/views/main/em/equipmentArchives/index.vue | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 | |
jcdm-ui/src/views/main/om/productionOrde/index.vue | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 |
jcdm-ui/src/views/main/em/equipmentArchives/index.vue
@@ -266,19 +266,20 @@ methods: { /** 查询设备档案列表 */ initWorkshop(){ listWorkshop(this.queryParams).then(response => { listWorkshop().then(response => { this.options = response.rows; }); }, // 在这里编写处理选中事件的逻辑 handleSelectChange(selectedOption) { this.form.lineCode = null; this.queryParams.workshopCode = selectedOption; listLineInfo(this.queryParams).then(response => { listLineInfo(selectedOption).then(response => { this.lineOptions = response.rows; }); }, getList() { this.$modal.msgSuccess("修改成功"); console.log(this.queryParams) this.loading = true; listEquipmentArchives(this.queryParams).then(response => { this.equipmentArchivesList = response.rows; jcdm-ui/src/views/main/om/productionOrde/index.vue
@@ -469,8 +469,10 @@ // 在这里编写处理选中事件的逻辑 handleSelectChange(selectedOption) { this.form.lineCode = null; this.queryParams.workshopCode = selectedOption; listLineInfo(this.queryParams).then(response => { let params = { workshopCode: selectedOption }; listLineInfo(params).then(response => { this.lineOptions = response.rows; }); }, @@ -509,7 +511,6 @@ getList() { this.loading = true; listProductionOrde(this.queryParams).then(response => { console.log(response) this.productionOrdeList = response.rows; this.total = response.total; this.loading = false;