cheng
2024-01-05 719f6d2bd46a62707ca4d733bd2618a7f1916cdf
Merge branch 'master' of http://192.168.0.189:8442/r/Jcdm-Mes
已修改2个文件
14 ■■■■■ 文件已修改
jcdm-ui/src/views/main/em/equipmentArchives/index.vue 7 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
jcdm-ui/src/views/main/om/productionOrde/index.vue 7 ●●●●● 补丁 | 查看 | 原始文档 | 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;