无人机管理后台前端(已迁走)
张含笑
2025-11-20 771cd475a2aad9938f4e2085ca018ba31bdc1d7f
src/views/tickets/ticketComponent/CreateTicketDialog.vue
@@ -397,16 +397,13 @@
      this.dialogVisible = false;
      this.resetForm();
    },
    handleTypeChange(typeValue) {
      this.form.algorithm = [];
      if (!typeValue) {
        this.availableAlgorithms = [];
        return;
      }
      const matchedCategory = this.allAlgorithms.find(category => category.dict_key === typeValue);
      if (!matchedCategory || !matchedCategory.algorithms || matchedCategory.algorithms.length === 0) {
        this.availableAlgorithms = [];
        this.$message.info('该工单类型暂无关联算法');
@@ -421,7 +418,7 @@
      }));
    },
    handleDepartmentChange(deptId) {
    handleDepartmentChange() {
      this.form.handler = '';
    },