Ver Fonte

申请任务内置标题传参错误异常修复

DESKTOP-6LTVLN7\Liumouren há 2 anos atrás
pai
commit
d6815d9b22
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      src/components/common/BottomForm/CreateTaskForm.vue

+ 1 - 1
src/components/common/BottomForm/CreateTaskForm.vue

@@ -278,7 +278,7 @@ export default {
           this.createTaskForm.c_task_id = this.$CryptoJS.buildGuid();
           this.createTaskForm.c_user_id = localStorage.getItem("USER_ID");
           this.createTaskForm.c_create_time = parseInt(new Date().getTime()/1000)*1000;
-          this.createTaskForm.ttile = this.createTaskForm.c_task_name;
+          this.createTaskForm.title = this.createTaskForm.c_task_name;
           this.$confirm("您已成功提交任务,请等待管理员审核。", "系统提示", {
             confirmButtonText: "确定",
             cancelButtonText: "撤回",