无人机管理后台前端(已迁走)
rain
2025-04-23 b08c968b5e63826803385b15f074d184d7792816
点击通过并派发时校验必填项是否填写
1 files modified
23 ■■■■■ changed files
src/views/tickets/ticket.vue 23 ●●●●● patch | view | raw | blame | history
src/views/tickets/ticket.vue
@@ -1664,8 +1664,23 @@
    },
    async approveAndDispatch() {
      if (this.dispatchLoading) return;
      // this.dispatchLoading = true;
      this.dispatchDialogVisible = true; // 打开派发对话框
      // 添加必填项检查
      if (!this.currentDetail.orderName || !this.currentDetail.orderName.trim()) {
        this.$message.warning('请填写工单名称');
        return;
      }
      if (!this.currentDetail.type) {
        this.$message.warning('请选择工单类型');
        return;
      }
      if (!this.currentDetail.content || !this.currentDetail.content.trim()) {
        this.$message.warning('请填写工单内容');
        return;
      }
      // 通过验证后,打开派发对话框
      this.dispatchDialogVisible = true;
    },
    hasProcessingBtnPermission() {
      // undefined 或 false 都返回 false,只有 true 返回 true
@@ -2503,6 +2518,10 @@
  margin-bottom: 8px;
}
.no-media {
  border: 1px dashed #d9d9d9;
}
.info-table {
  margin-bottom: 20px;
}