mirror of
				https://gitee.com/hhyykk/ipms-sjy.git
				synced 2025-10-31 02:08:43 +08:00 
			
		
		
		
	v3.6.0 FileUpload组件支持多文件上传
This commit is contained in:
		| @@ -12,7 +12,7 @@ | ||||
|       </el-table-column> | ||||
|       <el-table-column label="定义分类" align="center" prop="category" width="100"> | ||||
|         <template slot-scope="scope"> | ||||
|           <span>{{ getDictDataLabel(DICT_TYPE.BPM_MODEL_CATEGORY, scope.row.category) }}</span> | ||||
|           <dict-tag :type="DICT_TYPE.BPM_MODEL_CATEGORY" :value="scope.row.category" /> | ||||
|         </template> | ||||
|       </el-table-column> | ||||
|       <el-table-column label="表单信息" align="center" prop="formType" width="200"> | ||||
|   | ||||
| @@ -47,7 +47,7 @@ | ||||
|       </el-table-column> | ||||
|       <el-table-column label="流程分类" align="center" prop="category" width="100"> | ||||
|         <template slot-scope="scope"> | ||||
|           <span>{{ getDictDataLabel(DICT_TYPE.BPM_MODEL_CATEGORY, scope.row.category) }}</span> | ||||
|           <dict-tag :type="DICT_TYPE.BPM_MODEL_CATEGORY" :value="scope.row.category" /> | ||||
|         </template> | ||||
|       </el-table-column> | ||||
|       <el-table-column label="表单信息" align="center" prop="formType" width="200"> | ||||
| @@ -291,7 +291,7 @@ export default { | ||||
|         // 设置上传的请求头部 | ||||
|         headers: getBaseHeader(), | ||||
|         // 上传的地址 | ||||
|         url: process.env.VUE_APP_BASE_API + '/api/' + "/bpm/model/import", | ||||
|         url: process.env.VUE_APP_BASE_API + '/admin-api/' + "/bpm/model/import", | ||||
|         // 表单 | ||||
|         form: {}, | ||||
|         // 校验规则 | ||||
|   | ||||
| @@ -84,7 +84,7 @@ | ||||
|  | ||||
| <script> | ||||
| import { getLeavePage } from "@/api/bpm/leave" | ||||
| import { getDictDataLabel, getDictDatas, DICT_TYPE } from '@/utils/dict' | ||||
| import { getDictDatas, DICT_TYPE } from '@/utils/dict' | ||||
| import {cancelProcessInstance} from "@/api/bpm/processInstance"; | ||||
|  | ||||
| export default { | ||||
| @@ -171,13 +171,7 @@ export default { | ||||
|         this.getList(); | ||||
|         this.msgSuccess("取消成功"); | ||||
|       }) | ||||
|     }, | ||||
|     resultFormat(row, column) { | ||||
|       return getDictDataLabel(DICT_TYPE.BPM_PROCESS_INSTANCE_RESULT, row.result) | ||||
|     }, | ||||
|     typeFormat(row, column) { | ||||
|       return getDictDataLabel(DICT_TYPE.BPM_OA_LEAVE_TYPE, row.type) | ||||
|     }, | ||||
|     } | ||||
|   } | ||||
| }; | ||||
| </script> | ||||
|   | ||||
| @@ -12,7 +12,7 @@ | ||||
|         </el-table-column> | ||||
|         <el-table-column label="流程分类" align="center" prop="category" width="100"> | ||||
|           <template slot-scope="scope"> | ||||
|             <span>{{ getDictDataLabel(DICT_TYPE.BPM_MODEL_CATEGORY, scope.row.category) }}</span> | ||||
|             <dict-tag :type="DICT_TYPE.BPM_MODEL_CATEGORY" :value="scope.row.category" /> | ||||
|           </template> | ||||
|         </el-table-column> | ||||
|         <el-table-column label="流程版本" align="center" prop="processDefinition.version" width="80"> | ||||
|   | ||||
| @@ -52,7 +52,7 @@ | ||||
|       <el-table-column label="流程名" align="center" prop="name" /> | ||||
|       <el-table-column label="流程分类" align="center" prop="category"> | ||||
|         <template slot-scope="scope"> | ||||
|           <span>{{ getDictDataLabel(DICT_TYPE.BPM_MODEL_CATEGORY, scope.row.category) }}</span> | ||||
|           <dict-tag :type="DICT_TYPE.BPM_MODEL_CATEGORY" :value="scope.row.category" /> | ||||
|         </template> | ||||
|       </el-table-column> | ||||
|       <el-table-column label="当前审批任务" align="center" prop="tasks"> | ||||
| @@ -64,14 +64,7 @@ | ||||
|       </el-table-column> | ||||
|       <el-table-column label="状态" align="center" prop="status"> | ||||
|         <template slot-scope="scope"> | ||||
|           <span> | ||||
|             <el-tag type="primary" v-if="scope.row.status === 1"> <!-- 进行中 --> | ||||
|               {{ getDictDataLabel(DICT_TYPE.BPM_PROCESS_INSTANCE_STATUS, scope.row.status) }} | ||||
|             </el-tag> | ||||
|              <el-tag type="success" v-if="scope.row.status === 2"> <!-- 已结束 --> | ||||
|               {{ getDictDataLabel(DICT_TYPE.BPM_PROCESS_INSTANCE_STATUS, scope.row.status) }} | ||||
|             </el-tag> | ||||
|           </span> | ||||
|           <dict-tag :type="DICT_TYPE.BPM_PROCESS_INSTANCE_STATUS" :value="scope.row.status" /> | ||||
|         </template> | ||||
|       </el-table-column> | ||||
|       <el-table-column label="结果" align="center" prop="result"> | ||||
| @@ -106,16 +99,7 @@ | ||||
| </template> | ||||
|  | ||||
| <script> | ||||
| import { | ||||
|   getMyProcessInstancePage, | ||||
|   createProcessInstanceExt, | ||||
|   updateProcessInstanceExt, | ||||
|   deleteProcessInstanceExt, | ||||
|   getProcessInstanceExt, | ||||
|   getProcessInstanceExtPage, | ||||
|   exportProcessInstanceExtExcel, cancelProcessInstance | ||||
| } from "@/api/bpm/processInstance"; | ||||
| import {deleteErrorCode} from "@/api/system/errorCode"; | ||||
| import { getMyProcessInstancePage, cancelProcessInstance } from "@/api/bpm/processInstance"; | ||||
|  | ||||
| export default { | ||||
|   name: "ProcessInstance", | ||||
|   | ||||
| @@ -7,7 +7,7 @@ | ||||
|         <el-table-column label="任务标识" align="center" prop="taskDefinitionKey" width="120" show-tooltip-when-overflow /> | ||||
|         <el-table-column label="规则类型" align="center" prop="type" width="120"> | ||||
|           <template slot-scope="scope"> | ||||
|             <span>{{ getDictDataLabel(DICT_TYPE.BPM_TASK_ASSIGN_RULE_TYPE, scope.row.type) }}</span> | ||||
|             <dict-tag :type="DICT_TYPE.BPM_TASK_ASSIGN_RULE_TYPE" :value="scope.row.type" /> | ||||
|           </template> | ||||
|         </el-table-column> | ||||
|         <el-table-column label="规则范围" align="center" prop="options" width="440px"> | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 YunaiV
					YunaiV