保存进度!
This commit is contained in:
		@@ -2,7 +2,10 @@
 | 
				
			|||||||
  "devDependencies": {
 | 
					  "devDependencies": {
 | 
				
			||||||
    "@typescript-eslint/eslint-plugin": "^5.51.0",
 | 
					    "@typescript-eslint/eslint-plugin": "^5.51.0",
 | 
				
			||||||
    "@typescript-eslint/parser": "^5.51.0",
 | 
					    "@typescript-eslint/parser": "^5.51.0",
 | 
				
			||||||
        "eslint": "^8.33.0"
 | 
					    "eslint": "^8.33.0",
 | 
				
			||||||
 | 
					    "ts-loader": "^9.4.2",
 | 
				
			||||||
 | 
					    "webpack": "^5.75.0",
 | 
				
			||||||
 | 
					    "webpack-cli": "^5.0.1"
 | 
				
			||||||
  },
 | 
					  },
 | 
				
			||||||
  "dependencies": {
 | 
					  "dependencies": {
 | 
				
			||||||
    "axios": "^1.3.2",
 | 
					    "axios": "^1.3.2",
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										11
									
								
								code/ts/后端辅助工具/webpack.config.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										11
									
								
								code/ts/后端辅助工具/webpack.config.js
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,11 @@
 | 
				
			|||||||
 | 
					/*
 | 
				
			||||||
 | 
					 * @Author: Kane
 | 
				
			||||||
 | 
					 * @Date: 2023-02-23 16:15:45
 | 
				
			||||||
 | 
					 * @LastEditors: Kane
 | 
				
			||||||
 | 
					 * @LastEditTime: 2023-02-23 16:16:04
 | 
				
			||||||
 | 
					 * @FilePath: /后端辅助工具/webpack.config.js
 | 
				
			||||||
 | 
					 * @Description: 
 | 
				
			||||||
 | 
					 * 
 | 
				
			||||||
 | 
					 * Copyright (c) ${2022} by Kane, All Rights Reserved. 
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
 | 
					const path = require("path");
 | 
				
			||||||
@@ -2,8 +2,8 @@
 | 
				
			|||||||
 * @Author: Kane
 | 
					 * @Author: Kane
 | 
				
			||||||
 * @Date: 2023-02-06 14:12:11
 | 
					 * @Date: 2023-02-06 14:12:11
 | 
				
			||||||
 * @LastEditors: Kane
 | 
					 * @LastEditors: Kane
 | 
				
			||||||
 * @LastEditTime: 2023-02-08 10:46:41
 | 
					 * @LastEditTime: 2023-02-23 16:00:54
 | 
				
			||||||
 * @FilePath: /IT工具综合平台/src/utils/api/LocalStorage.js
 | 
					 * @FilePath: /it-console/src/utils/api/LocalStorage.js
 | 
				
			||||||
 * @Description: 初始化localStorage中保存的值。
 | 
					 * @Description: 初始化localStorage中保存的值。
 | 
				
			||||||
 * 
 | 
					 * 
 | 
				
			||||||
 * Copyright (c) ${2022} by Kane, All Rights Reserved. 
 | 
					 * Copyright (c) ${2022} by Kane, All Rights Reserved. 
 | 
				
			||||||
@@ -12,11 +12,12 @@
 | 
				
			|||||||
//常量
 | 
					//常量
 | 
				
			||||||
const REQUIREMRNT_UI = `requirement_ui`;
 | 
					const REQUIREMRNT_UI = `requirement_ui`;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//需求管理模块
 | 
					/**
 | 
				
			||||||
 | 
					 * 
 | 
				
			||||||
 | 
					 * @returns 读取并装配好的ui对象
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
function loadRequirementUI()
 | 
					function loadRequirementUI()
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    // debugger;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    let requirementUI = null;
 | 
					    let requirementUI = null;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    try
 | 
					    try
 | 
				
			||||||
@@ -30,30 +31,12 @@ function loadRequirementUI()
 | 
				
			|||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    //如果之前不存在,json转换结果也会是null
 | 
					    //如果之前不存在,json转换结果也会是null
 | 
				
			||||||
    if (requirementUI === null)
 | 
					    requirementUI = requirementUI || {};
 | 
				
			||||||
    {
 | 
					    requirementUI.selected_status = requirementUI.selected_status || [];
 | 
				
			||||||
        requirementUI = {};
 | 
					    requirementUI.title = requirementUI.title || "";
 | 
				
			||||||
    }
 | 
					    requirementUI.serial_no = requirementUI.serial_no || "";
 | 
				
			||||||
 | 
					    requirementUI.request_people = requirementUI.request_people || "";
 | 
				
			||||||
    if (requirementUI.selected_status === undefined)
 | 
					    requirementUI.commit_end_date = requirementUI.commit_end_date || new Date();
 | 
				
			||||||
    {
 | 
					 | 
				
			||||||
        requirementUI.selected_status = [];
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    if (requirementUI.title === undefined)
 | 
					 | 
				
			||||||
    {
 | 
					 | 
				
			||||||
        requirementUI.title = "";
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    if (requirementUI.serial_no === undefined)
 | 
					 | 
				
			||||||
    {
 | 
					 | 
				
			||||||
        requirementUI.serial_no = "";
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    if (requirementUI.request_people === undefined)
 | 
					 | 
				
			||||||
    {
 | 
					 | 
				
			||||||
        requirementUI.request_people = "";
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if (requirementUI.commit_start_date === undefined)
 | 
					    if (requirementUI.commit_start_date === undefined)
 | 
				
			||||||
    {
 | 
					    {
 | 
				
			||||||
@@ -62,11 +45,6 @@ function loadRequirementUI()
 | 
				
			|||||||
        requirementUI.commit_start_date.setDate(1);
 | 
					        requirementUI.commit_start_date.setDate(1);
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if (requirementUI.commit_end_date === undefined)
 | 
					 | 
				
			||||||
    {
 | 
					 | 
				
			||||||
        requirementUI.commit_end_date = new Date();
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    return requirementUI;
 | 
					    return requirementUI;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -11,7 +11,7 @@
 | 
				
			|||||||
 * @Author: Kane
 | 
					 * @Author: Kane
 | 
				
			||||||
 * @Date: 2023-02-21 11:03:15
 | 
					 * @Date: 2023-02-21 11:03:15
 | 
				
			||||||
 * @LastEditors: Kane
 | 
					 * @LastEditors: Kane
 | 
				
			||||||
 * @LastEditTime: 2023-02-23 09:59:16
 | 
					 * @LastEditTime: 2023-02-23 10:18:25
 | 
				
			||||||
 * @FilePath: /it-console/src/views/info/StaffInfo.vue
 | 
					 * @FilePath: /it-console/src/views/info/StaffInfo.vue
 | 
				
			||||||
 * @Description:<
 | 
					 * @Description:<
 | 
				
			||||||
 * 
 | 
					 * 
 | 
				
			||||||
@@ -25,19 +25,19 @@
 | 
				
			|||||||
                    <span>姓名</span>
 | 
					                    <span>姓名</span>
 | 
				
			||||||
                </el-col>
 | 
					                </el-col>
 | 
				
			||||||
                <el-col :span="4">
 | 
					                <el-col :span="4">
 | 
				
			||||||
                    <el-input v-model="query_param.stuffName"></el-input>
 | 
					                    <el-input v-model.trim.lazy="query_param.stuffName"></el-input>
 | 
				
			||||||
                </el-col>
 | 
					                </el-col>
 | 
				
			||||||
                <el-col :span="2">
 | 
					                <el-col :span="2">
 | 
				
			||||||
                    <span>工号</span>
 | 
					                    <span>工号</span>
 | 
				
			||||||
                </el-col>
 | 
					                </el-col>
 | 
				
			||||||
                <el-col :span="4">
 | 
					                <el-col :span="4">
 | 
				
			||||||
                    <el-input v-model="query_param.stuffName"></el-input>
 | 
					                    <el-input v-model.trim.lazy="query_param.stuffCode"></el-input>
 | 
				
			||||||
                </el-col>
 | 
					                </el-col>
 | 
				
			||||||
                <el-col :span="2">
 | 
					                <el-col :span="2">
 | 
				
			||||||
                    <span>P13账号</span>
 | 
					                    <span>P13账号</span>
 | 
				
			||||||
                </el-col>
 | 
					                </el-col>
 | 
				
			||||||
                <el-col :span="4">
 | 
					                <el-col :span="4">
 | 
				
			||||||
                    <el-input v-model="query_param.stuffName"></el-input>
 | 
					                    <el-input v-model.trim.lazy="query_param.p13UID"></el-input>
 | 
				
			||||||
                </el-col>
 | 
					                </el-col>
 | 
				
			||||||
            </el-row>
 | 
					            </el-row>
 | 
				
			||||||
            <el-row :gutter="10">
 | 
					            <el-row :gutter="10">
 | 
				
			||||||
@@ -45,13 +45,13 @@
 | 
				
			|||||||
                    <span>部门</span>
 | 
					                    <span>部门</span>
 | 
				
			||||||
                </el-col>
 | 
					                </el-col>
 | 
				
			||||||
                <el-col :span="4">
 | 
					                <el-col :span="4">
 | 
				
			||||||
                    <el-input v-model="query_param.stuffName"></el-input>
 | 
					                    <el-input v-model.trim.lazy="query_param.departmentName"></el-input>
 | 
				
			||||||
                </el-col>
 | 
					                </el-col>
 | 
				
			||||||
                <el-col :span="2">
 | 
					                <el-col :span="2">
 | 
				
			||||||
                    <span>部门代码</span>
 | 
					                    <span>部门代码</span>
 | 
				
			||||||
                </el-col>
 | 
					                </el-col>
 | 
				
			||||||
                <el-col :span="4">
 | 
					                <el-col :span="4">
 | 
				
			||||||
                    <el-input v-model="query_param.stuffName"></el-input>
 | 
					                    <el-input v-model.trim.lazy="query_param.departmentCode"></el-input>
 | 
				
			||||||
                </el-col>
 | 
					                </el-col>
 | 
				
			||||||
                <el-col :span="6">
 | 
					                <el-col :span="6">
 | 
				
			||||||
                    <div class="toolbutton-wrapper">
 | 
					                    <div class="toolbutton-wrapper">
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -2,8 +2,8 @@
 | 
				
			|||||||
 * @Author: Kane
 | 
					 * @Author: Kane
 | 
				
			||||||
 * @Date: 2023-02-02 22:19:12
 | 
					 * @Date: 2023-02-02 22:19:12
 | 
				
			||||||
 * @LastEditors: Kane
 | 
					 * @LastEditors: Kane
 | 
				
			||||||
 * @LastEditTime: 2023-02-22 23:02:30
 | 
					 * @LastEditTime: 2023-02-23 15:51:11
 | 
				
			||||||
 * @FilePath: /IT工具综合平台/src/views/requirement/RequirementManager.vue
 | 
					 * @FilePath: /it-console/src/views/requirement/RequirementManager.vue
 | 
				
			||||||
 * @Description: 
 | 
					 * @Description: 
 | 
				
			||||||
 * 
 | 
					 * 
 | 
				
			||||||
 * Copyright (c) ${2022} by Kane, All Rights Reserved. 
 | 
					 * Copyright (c) ${2022} by Kane, All Rights Reserved. 
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user