提交 7eab9967 authored 作者: zhoushaopan's avatar zhoushaopan

[工作流模块]修改了数据类型

上级 aac782cf
...@@ -64,8 +64,6 @@ ...@@ -64,8 +64,6 @@
<version>6.6.0</version> <version>6.6.0</version>
</dependency> </dependency>
<!--fastjson--> <!--fastjson-->
<dependency> <dependency>
<groupId>com.alibaba</groupId> <groupId>com.alibaba</groupId>
...@@ -79,6 +77,7 @@ ...@@ -79,6 +77,7 @@
<artifactId>jpa-spec</artifactId> <artifactId>jpa-spec</artifactId>
<version>3.1.1</version> <version>3.1.1</version>
</dependency> </dependency>
<!--lombok--> <!--lombok-->
<dependency> <dependency>
<groupId>org.projectlombok</groupId> <groupId>org.projectlombok</groupId>
...@@ -111,30 +110,36 @@ ...@@ -111,30 +110,36 @@
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-cache</artifactId> <artifactId>spring-boot-starter-cache</artifactId>
</dependency> </dependency>
<!-- <dependency>-->
<!-- <groupId>org.jetbrains</groupId>-->
<!-- <artifactId>annotations</artifactId>-->
<!-- <version>RELEASE</version>-->
<!-- <scope>compile</scope>-->
<!-- </dependency>-->
</dependencies> </dependencies>
<build> <build>
<!-- <resources>--> <resources>
<!-- <resource>--> <resource>
<!-- <directory>src/main/java</directory>--> <directory>src/main/java</directory>
<!-- <includes>--> <includes>
<!-- <include>**/*</include>--> <include>**/*</include>
<!-- </includes>--> </includes>
<!-- <excludes>--> <excludes>
<!-- <exclude>**/.svn/*</exclude>--> <exclude>**/.svn/*</exclude>
<!-- </excludes>--> </excludes>
<!-- <filtering>false</filtering>--> <filtering>false</filtering>
<!-- </resource>--> </resource>
<!-- <resource>--> <resource>
<!-- <directory>${project.basedir}/src/main/resources</directory>--> <directory>${project.basedir}/src/main/resources</directory>
<!-- <targetPath>META-INF/resources/</targetPath>--> <targetPath>/META-INF/resources/</targetPath>
<!-- </resource>--> </resource>
<!-- </resources>--> </resources>
<plugins> <plugins>
<plugin> <!-- <plugin>-->
<groupId>org.springframework.boot</groupId> <!-- <groupId>org.springframework.boot</groupId>-->
<artifactId>spring-boot-maven-plugin</artifactId> <!-- <artifactId>spring-boot-maven-plugin</artifactId>-->
</plugin> <!-- </plugin>-->
<plugin> <plugin>
<artifactId>maven-surefire-plugin</artifactId> <artifactId>maven-surefire-plugin</artifactId>
......
...@@ -54,14 +54,14 @@ public class DataHistoryController { ...@@ -54,14 +54,14 @@ public class DataHistoryController {
dataHistoryService.saveData(dataHistory); dataHistoryService.saveData(dataHistory);
} }
@GetMapping("/findByTaskId") // @GetMapping("/findByTaskId")
@ApiOperation(value = "通过任务id查询数据") // @ApiOperation(value = "通过任务id查询数据")
public Map<String,Object> findByTaskId(String taskId){ // public Map<String,Object> findByTaskId(String taskId){
//
DataHistory byTaskId = dataHistoryService.findByTaskId(taskId); // DataHistory byTaskId = dataHistoryService.findByTaskId(taskId);
String datas = byTaskId.getDatas(); // String datas = byTaskId.getDatas();
Map map = (Map) JSON.parse(datas); // Map map = (Map) JSON.parse(datas);
return map; // return map;
} // }
} }
...@@ -19,6 +19,6 @@ public interface DataHistoryMapper extends JpaRepository<DataHistory,Integer>, J ...@@ -19,6 +19,6 @@ public interface DataHistoryMapper extends JpaRepository<DataHistory,Integer>, J
* @param taskId 任务id * @param taskId 任务id
* @return * @return
*/ */
DataHistory findByTaskId(String taskId); // DataHistory findByTaskId(String taskId);
} }
...@@ -31,21 +31,22 @@ import javax.persistence.Lob; ...@@ -31,21 +31,22 @@ import javax.persistence.Lob;
@Api("历史数据展示页面") @Api("历史数据展示页面")
public class DataHistory extends BaseEntity { public class DataHistory extends BaseEntity {
@ApiModelProperty("任务id") @ApiModelProperty("流程主键id")
private String taskId; private String flowKey;
@ApiModelProperty("流程实例id")
private String processInstanceId;
@ApiModelProperty("节点id") @ApiModelProperty("页面id")
private String nodeId; private String pageId;
@ApiModelProperty("变量数据") @ApiModelProperty("变量数据")
@Lob @Lob
private String datas; private String datas;
@ApiModelProperty("流程实例id") @ApiModelProperty("用户id")
private String processInstanceId; private Integer userId;
@ApiModelProperty("流程主键id")
private String flowKey;
} }
...@@ -25,7 +25,7 @@ import java.io.Serializable; ...@@ -25,7 +25,7 @@ import java.io.Serializable;
@Api("用户表") @Api("用户表")
public class WorkFlowUser implements Serializable { public class WorkFlowUser implements Serializable {
private Integer id; private String id;
private String userName; private String userName;
......
...@@ -127,15 +127,19 @@ public class ProcessEndListener extends AbstractFlowableEngineEventListener { ...@@ -127,15 +127,19 @@ public class ProcessEndListener extends AbstractFlowableEngineEventListener {
apiController.invoke(invokeRequest); apiController.invoke(invokeRequest);
} }
} }
//开始节点
if (execution.getCurrentFlowElement() instanceof StartEvent){ if (execution.getCurrentFlowElement() instanceof StartEvent){
DataHistory dataHistory = new DataHistory(); DataHistory dataHistory = new DataHistory();
StartEvent startEvent = (StartEvent) execution.getCurrentFlowElement(); StartEvent startEvent = (StartEvent) execution.getCurrentFlowElement();
//实例id //流程id 实例id pageId datas userId
String processInstanceId = execution.getProcessInstanceId();
String processInstanceBusinessKey = execution.getProcessInstanceBusinessKey(); String processInstanceBusinessKey = execution.getProcessInstanceBusinessKey();
dataHistory.setFlowKey(processInstanceBusinessKey);
dataHistory.setProcessInstanceId(execution.getProcessInstanceId());
dataHistory.setPageId(startEvent.getFormKey());
// dataHistory.setUserId();
// dataHistory.setDatas();
System.out.println(processInstanceBusinessKey); System.out.println(processInstanceBusinessKey);
String nodeId = execution.getCurrentActivityId();
String formKey = startEvent.getFormKey(); String formKey = startEvent.getFormKey();
//通过formKey查询出页面 //通过formKey查询出页面
...@@ -149,12 +153,10 @@ public class ProcessEndListener extends AbstractFlowableEngineEventListener { ...@@ -149,12 +153,10 @@ public class ProcessEndListener extends AbstractFlowableEngineEventListener {
//流程实例id //流程实例id
String processInstanceId = task.getProcessInstanceId(); String processInstanceId = task.getProcessInstanceId();
//当前节点id //当前节点id
String nodeId = task.getTaskDefinitionKey(); String processInstanceBusinessKey = execution.getProcessInstanceBusinessKey();
// dataHistory.setTaskId(taskId); // dataHistory.setTaskId(taskId);
dataHistory.setDatas(datas); dataHistory.setDatas(datas);
dataHistory.setNodeId(nodeId);
dataHistory.setProcessInstanceId(processInstanceId); dataHistory.setProcessInstanceId(processInstanceId);
dataHistoryService.saveData(dataHistory); dataHistoryService.saveData(dataHistory);
} }
......
...@@ -30,7 +30,7 @@ public interface DataHistoryService { ...@@ -30,7 +30,7 @@ public interface DataHistoryService {
* @param taskId 任务id * @param taskId 任务id
* @return flowsInfo 对象 * @return flowsInfo 对象
*/ */
DataHistory findByTaskId(String taskId); // DataHistory findByTaskId(String taskId);
} }
...@@ -29,8 +29,8 @@ public class DataHistoryServiceImpl implements DataHistoryService { ...@@ -29,8 +29,8 @@ public class DataHistoryServiceImpl implements DataHistoryService {
return dataHistoryMapper.save(dataHistory); return dataHistoryMapper.save(dataHistory);
} }
@Override // @Override
public DataHistory findByTaskId(String taskId) { // public DataHistory findByTaskId(String taskId) {
return dataHistoryMapper.findByTaskId(taskId); // return dataHistoryMapper.findByTaskId(taskId);
} // }
} }
...@@ -23,7 +23,7 @@ public class DefaultUserServiceImpl implements UserService { ...@@ -23,7 +23,7 @@ public class DefaultUserServiceImpl implements UserService {
@Override @Override
public WorkFlowUser getCurrentUser() { public WorkFlowUser getCurrentUser() {
WorkFlowUser workFlowUser = new WorkFlowUser(); WorkFlowUser workFlowUser = new WorkFlowUser();
workFlowUser.setId(0); workFlowUser.setId("0");
workFlowUser.setUserName("张0"); workFlowUser.setUserName("张0");
return workFlowUser; return workFlowUser;
} }
...@@ -34,7 +34,7 @@ public class DefaultUserServiceImpl implements UserService { ...@@ -34,7 +34,7 @@ public class DefaultUserServiceImpl implements UserService {
for (int i = 0; i < 10; i++) { for (int i = 0; i < 10; i++) {
WorkFlowUser workFlowUser = new WorkFlowUser(); WorkFlowUser workFlowUser = new WorkFlowUser();
workFlowUser.setUserName("张"+i); workFlowUser.setUserName("张"+i);
workFlowUser.setId(i); workFlowUser.setId("i"+i);
workFlowUsers.add(workFlowUser); workFlowUsers.add(workFlowUser);
} }
return workFlowUsers; return workFlowUsers;
......
...@@ -14,11 +14,7 @@ import com.tykj.workflowcore.workflow_editer.service.UserService; ...@@ -14,11 +14,7 @@ import com.tykj.workflowcore.workflow_editer.service.UserService;
import com.tykj.workflowcore.workflow_editer.service.VariableStorageService; import com.tykj.workflowcore.workflow_editer.service.VariableStorageService;
import com.tykj.workflowcore.workflow_editer.service.WorkFlowService; import com.tykj.workflowcore.workflow_editer.service.WorkFlowService;
import com.tykj.workflowcore.workflow_editer.util.UserServiceBeanUtil; import com.tykj.workflowcore.workflow_editer.util.UserServiceBeanUtil;
import io.swagger.annotations.Api;
import liquibase.pro.packaged.E;
import org.apache.commons.lang3.StringUtils; import org.apache.commons.lang3.StringUtils;
import org.dom4j.*;
import org.dom4j.io.SAXReader;
import org.flowable.bpmn.converter.BpmnXMLConverter; import org.flowable.bpmn.converter.BpmnXMLConverter;
import org.flowable.bpmn.model.*; import org.flowable.bpmn.model.*;
import org.flowable.bpmn.model.Process; import org.flowable.bpmn.model.Process;
...@@ -441,7 +437,7 @@ public class WorkFlowServiceImpl implements WorkFlowService { ...@@ -441,7 +437,7 @@ public class WorkFlowServiceImpl implements WorkFlowService {
@Override @Override
public void claimTask(String taskId) { public void claimTask(String taskId) {
//当前登录人的Id //当前登录人的Id
taskService.claim(taskId, Integer.toString(userService.getCurrentUser().getId())); taskService.claim(taskId, userService.getCurrentUser().getId());
} }
@Override @Override
......
...@@ -2,7 +2,7 @@ spring: ...@@ -2,7 +2,7 @@ spring:
datasource: datasource:
username: root username: root
password: Huang123+ password: Huang123+
url: jdbc:mysql://47.106.142.73:3306/www_hxh?useSSL=false&serverTimezone=GMT%2b8&characterEncoding=utf-8&nullCatalogMeansCurrent=true url: jdbc:mysql://47.106.142.73:3306/www3?useSSL=false&serverTimezone=GMT%2b8&characterEncoding=utf-8&nullCatalogMeansCurrent=true
driver-class-name: com.mysql.cj.jdbc.Driver driver-class-name: com.mysql.cj.jdbc.Driver
jpa: jpa:
show-sql: true show-sql: true
......
.processManage[data-v-700d8216] .el-form-item__label{font-size:20px}.topDiv[data-v-700d8216]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;cursor:pointer}.title[data-v-700d8216]{font-size:22px;color:#35435e;font-weight:700;margin-bottom:20px}.addProcess[data-v-700d8216]{font-size:18px;color:#2a3db3;border:1px solid #2a3db3;width:136px;height:36px;border-radius:18px;outline:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;background-color:#fff}.searchBar[data-v-700d8216] .el-form-item{margin-bottom:0}.searchBar[data-v-700d8216] .el-form-item__content{line-height:0}.searchBar[data-v-700d8216] .el-input__inner,.searchBar[data-v-700d8216] .el-select .el-input__inner{background:#f9fafd;border:2px solid #ebedf1;font-size:20px;color:#a1a8ba}.searchBar[data-v-700d8216]{background-color:#fff;width:100%;height:84px;-webkit-box-shadow:0 1px 13px -8px #2a3bd3;box-shadow:0 1px 13px -8px #2a3bd3;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-left:34px;-webkit-box-sizing:border-box;box-sizing:border-box}.searchBtn[data-v-700d8216]{width:120px;height:40px;font-size:20px;color:#fff;background-color:#2a3db3;border:none;cursor:pointer;outline:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.searchBtn[data-v-700d8216]:nth-child(2){background-color:#f9fafd;color:#394b6b;border:2px solid #e8eaf0;cursor:pointer;margin-left:20px}.addBtn[data-v-700d8216]{width:120px;height:40px;font-size:20px;color:#fff;background-color:#2a3db3;border:none;cursor:pointer;outline:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;margin-left:20px}.addBtn[data-v-700d8216]:first-child{background-color:#f9fafd;color:#394b6b;border:2px solid #e8eaf0;cursor:pointer}.main[data-v-700d8216]{margin-top:20px;height:94%;background-color:#fff}.main[data-v-700d8216] .el-table .cell{font-size:20px;color:#35435e;height:36px;line-height:36px;text-align:center}.main[data-v-700d8216] .el-table th{background-color:#f6f7fc}.main[data-v-700d8216] .el-table th>.cell{text-align:center;font-size:18px;background-color:#f6f7fc;color:#65728a}.main[data-v-700d8216] .el-dialog__header{background:#e0e8ff;height:36px;padding:10px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.main[data-v-700d8216] .el-dialog__header>.el-dialog__title{font-size:22px;color:#35435e;font-weight:700;margin-left:30px}.main[data-v-700d8216] .el-dialog__header>.el-dialog__headerbtn>i{border-radius:50%;background:#2a3db3;color:#fff;font-size:22px}.addProcessDialog[data-v-700d8216] .el-input__inner,.addProcessDialog[data-v-700d8216] .el-textarea__inner{font-size:20px;background-color:#f9fafd}.operation span[data-v-700d8216]{font-size:20px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;width:50px;display:inline-block}.operation span[data-v-700d8216]:first-child{color:#2a3db3}.operation span[data-v-700d8216]:nth-child(2){margin:0 50px}.operation span[data-v-700d8216]:nth-child(3){color:#f25742}.disableSpan[data-v-700d8216]{color:#fe7001}
\ No newline at end of file
.dataModelManage[data-v-5d22eef2] .el-form-item__label{font-size:20px}.searchBar[data-v-5d22eef2] .el-form-item{margin-bottom:0}.searchBar[data-v-5d22eef2] .el-form-item__content{line-height:0}.searchBar[data-v-5d22eef2] .el-input__inner,.searchBar[data-v-5d22eef2] .el-select .el-input__inner{background:#f9fafd;border:2px solid #ebedf1;font-size:20px;color:#a1a8ba}.searchBar[data-v-5d22eef2]{background-color:#fff;width:100%;height:84px;-webkit-box-shadow:0 1px 13px -8px #2a3bd3;box-shadow:0 1px 13px -8px #2a3bd3;padding-left:34px;-webkit-box-sizing:border-box;box-sizing:border-box}.border-wrap[data-v-5d22eef2],.searchBar[data-v-5d22eef2]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.border-wrap[data-v-5d22eef2]{margin-top:20px}.main[data-v-5d22eef2]{margin-top:20px;height:100%;background-color:#fff}.main[data-v-5d22eef2] .el-table .cell{font-size:20px;color:#35435e;height:36px;line-height:36px;text-align:center}.main[data-v-5d22eef2] .el-table th{background-color:#f6f7fc}.main[data-v-5d22eef2] .el-table th>.cell{text-align:center;font-size:18px;background-color:#f6f7fc;color:#65728a}.main[data-v-5d22eef2] .el-dialog__header{background:#e0e8ff;height:36px;padding:10px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.main[data-v-5d22eef2] .el-dialog__header>.el-dialog__title{font-size:22px;color:#35435e;font-weight:700;margin-left:30px}.main[data-v-5d22eef2] .el-dialog__header>.el-dialog__headerbtn>i{border-radius:50%;background:#2a3db3;color:#fff;font-size:22px}.addProcessDialog[data-v-5d22eef2] .el-input__inner,.addProcessDialog[data-v-5d22eef2] .el-textarea__inner{font-size:20px;background-color:#f9fafd}.operation span[data-v-5d22eef2]{font-size:20px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;width:50px;display:inline-block}.operation span[data-v-5d22eef2]:first-child{color:#2a3db3}.operation span[data-v-5d22eef2]:nth-child(2){margin:0 20px}.operation span[data-v-5d22eef2]:nth-child(3){color:#f25742}.disableSpan[data-v-5d22eef2]{color:#fe7001}
\ No newline at end of file
#process[data-v-cd5066ac]{height:100%}
\ No newline at end of file
#dataModel[data-v-37e3475c]{height:100%}
\ No newline at end of file
This source diff could not be displayed because it is too large. You can view the blob instead.
.homePage>.el-container[data-v-a28108f6],.homePage[data-v-a28108f6],.homePage[data-v-a28108f6] .el-aside{height:100%}.homePage[data-v-a28108f6] .menu{height:100%;width:100%;background-color:#2a3db3}.homePage .title[data-v-a28108f6]{width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-bottom:34px}.homePage .title span[data-v-a28108f6]{font-size:35px;font-weight:700;color:#fff;text-align:center;margin:44px 0}.homePage .menuItem[data-v-a28108f6]{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.homePage .menuItem[data-v-a28108f6],.ItemDiv[data-v-a28108f6]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.ItemDiv[data-v-a28108f6]{width:228px;height:64px;border-radius:8px;margin:0;margin-bottom:20px;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.itemDivAct[data-v-a28108f6]{background-color:#fff}.itemDivAct .ItemSpanAct[data-v-a28108f6]{color:#35435e}.ItemImg[data-v-a28108f6]{margin:0 30px}.ItemSpan[data-v-a28108f6]{font-size:20px;color:#d7dbe3}.header[data-v-a28108f6]{width:100%;height:100px!important;padding:0!important;background-color:#f3f2f7}.header>div[data-v-a28108f6]{width:100%;height:80px;background-color:#fff;-webkit-box-shadow:0 -11px 18px #2a3bd3;box-shadow:0 -11px 18px #2a3bd3;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.ty_return[data-v-a28108f6]{display:inline-block;margin-right:40px;color:#2a3db3!important;cursor:pointer}.main[data-v-a28108f6]{background-color:#f3f2f7;padding:12px 32px 32px;height:100%;-webkit-box-sizing:border-box;box-sizing:border-box}.time[data-v-a28108f6]{height:80px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.time span[data-v-a28108f6]{font-size:18px;color:#65728a;margin-left:34px}
\ No newline at end of file
This source diff could not be displayed because it is too large. You can view the blob instead.
<!doctype html><html lang="zh"><head><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width,initial-scale=0,maximum-scale=0,user-scalable=yes,shrink-to-fit=no"><link rel="icon" href="favicon.ico"><title>form-generator</title><style>.pre-loader{position:absolute;top:calc(50% - 32px);left:calc(50% - 32px);width:64px;height:64px;border-radius:50%;perspective:800px}.pre-loader .inner{position:absolute;box-sizing:border-box;width:100%;height:100%;border-radius:50%}.pre-loader .inner.one{left:0;top:0;-webkit-animation:rotate-one 1s linear infinite;animation:rotate-one 1s linear infinite;border-bottom:3px solid #bc9048}.pre-loader .inner.two{right:0;top:0;-webkit-animation:rotate-two 1s linear infinite;animation:rotate-two 1s linear infinite;border-right:3px solid #74aeff}.pre-loader .inner.three{right:0;bottom:0;-webkit-animation:rotate-three 1s linear infinite;animation:rotate-three 1s linear infinite;border-top:3px solid #caef74}@keyframes rotate-one{0%{-webkit-transform:rotateX(35deg) rotateY(-45deg) rotateZ(0);transform:rotateX(35deg) rotateY(-45deg) rotateZ(0)}100%{-webkit-transform:rotateX(35deg) rotateY(-45deg) rotateZ(360deg);transform:rotateX(35deg) rotateY(-45deg) rotateZ(360deg)}}@keyframes rotate-two{0%{-webkit-transform:rotateX(50deg) rotateY(10deg) rotateZ(0);transform:rotateX(50deg) rotateY(10deg) rotateZ(0)}100%{-webkit-transform:rotateX(50deg) rotateY(10deg) rotateZ(360deg);transform:rotateX(50deg) rotateY(10deg) rotateZ(360deg)}}@keyframes rotate-three{0%{-webkit-transform:rotateX(35deg) rotateY(55deg) rotateZ(0);transform:rotateX(35deg) rotateY(55deg) rotateZ(0)}100%{-webkit-transform:rotateX(35deg) rotateY(55deg) rotateZ(360deg);transform:rotateX(35deg) rotateY(55deg) rotateZ(360deg)}}</style><link href="https://lib.baomitu.com/element-ui/2.13.2/theme-chalk/index.css" rel="stylesheet"><link href="https://lib.baomitu.com/monaco-editor/0.19.3/min/vs/editor/editor.main.css" rel="stylesheet"><script src="https://lib.baomitu.com/vue/2.6.11/vue.min.js"></script><script src="https://lib.baomitu.com/vue-router/3.1.3/vue-router.min.js"></script><script src="https://lib.baomitu.com/element-ui/2.13.2/index.js"></script><link href="css/chunk-14010792.ef08ffa7.css" rel="prefetch"><link href="css/chunk-301e1a24.8b839003.css" rel="prefetch"><link href="css/chunk-67748d0a.31c71947.css" rel="prefetch"><link href="css/chunk-7c52297c.61b80532.css" rel="prefetch"><link href="css/chunk-b5da06ba.7a6ae39b.css" rel="prefetch"><link href="css/chunk-e387e476.78b7907a.css" rel="prefetch"><link href="css/parser-home.0b8ec9e2.css" rel="prefetch"><link href="css/tinymce-example.0e433876.css" rel="prefetch"><link href="js/chunk-14010792.01c39e0e.js" rel="prefetch"><link href="js/chunk-2d0af7ff.671eef97.js" rel="prefetch"><link href="js/chunk-301e1a24.62fef271.js" rel="prefetch"><link href="js/chunk-67748d0a.dc4403bb.js" rel="prefetch"><link href="js/chunk-7c52297c.c0a80b51.js" rel="prefetch"><link href="js/chunk-b5da06ba.6d3fd328.js" rel="prefetch"><link href="js/chunk-e387e476.befcb86d.js" rel="prefetch"><link href="js/chunk-fec0be80.0583a8a1.js" rel="prefetch"><link href="js/parser-home.189c2793.js" rel="prefetch"><link href="js/tinymce-example.0cafa1e6.js" rel="prefetch"><link href="css/index.19a60eb5.css" rel="preload" as="style"><link href="js/chunk-vendors.b6d9e7af.js" rel="preload" as="script"><link href="js/index.2fa981e9.js" rel="preload" as="script"><link href="css/index.19a60eb5.css" rel="stylesheet"></head><body><noscript><strong>抱歉,javascript被禁用,请开启后重试。</strong></noscript><div id="app"></div><div class="pre-loader" id="pre-loader"><div class="inner one"></div><div class="inner two"></div><div class="inner three"></div></div><script src="js/chunk-vendors.b6d9e7af.js"></script><script src="js/index.2fa981e9.js"></script></body></html>
\ No newline at end of file
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-14010792"],{"2de8":function(e,t,a){},"3af2":function(e,t,a){"use strict";a("2de8")},b3a2:function(e,t,a){"use strict";a.r(t);var s=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("div",{staticClass:"processManage",staticStyle:{height:"calc(100% - 100px)"}},[a("div",{staticClass:"topDiv"},[a("span",{staticClass:"title"},[e._v("流程管理")]),a("button",{staticClass:"addProcess",on:{click:e.openAddProcessDialog}},[e._v("新建流程")])]),a("div",{staticClass:"searchBar"},[a("el-form",{ref:"form",staticStyle:{width:"100%"},attrs:{model:e.searchForm,"label-width":"100px"}},[a("el-row",[a("el-col",{attrs:{span:6}},[a("el-form-item",{attrs:{label:"流程名"}},[a("el-input",{staticStyle:{width:"100%"},attrs:{placeholder:"请输入"},model:{value:e.searchForm.name,callback:function(t){e.$set(e.searchForm,"name",t)},expression:"searchForm.name"}})],1)],1),a("el-col",{attrs:{span:6}},[a("el-form-item",{attrs:{label:"是否启用"}},[a("el-select",{staticStyle:{width:"100%"},attrs:{placeholder:"请选择"},model:{value:e.searchForm.disable,callback:function(t){e.$set(e.searchForm,"disable",t)},expression:"searchForm.disable"}},[a("el-option",{attrs:{label:"是",value:0}}),a("el-option",{attrs:{label:"否",value:1}})],1)],1)],1),a("el-col",{attrs:{span:12}},[a("el-form-item",[a("button",{staticClass:"searchBtn",on:{click:e.searchData}},[e._v("查询")]),a("button",{staticClass:"searchBtn",on:{click:e.reset}},[e._v("重置")])])],1)],1)],1)],1),a("div",{staticClass:"main"},[a("el-table",{staticStyle:{width:"100%"},attrs:{data:e.tableData}},[a("el-table-column",{attrs:{type:"index",label:"序号",width:"100"}}),a("el-table-column",{attrs:{prop:"flowName",label:"流程名"}}),a("el-table-column",{attrs:{prop:"flowDescribe",label:"流程描述"}}),a("el-table-column",{attrs:{prop:"createdTime",label:"创建时间"}}),a("el-table-column",{attrs:{label:"是否启用"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("span",[e._v(e._s(1==t.row.state?"暂停":"启用"))])]}}])}),a("el-table-column",{attrs:{label:"操作",width:"350"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("div",{staticClass:"operation"},[a("span",{on:{click:function(a){return e.editProcess(t.row)}}},[e._v("编辑")]),a("span",{on:{click:function(a){return e.deleteProcess(t.row)}}},[e._v("删除")])])]}}])})],1),a("el-pagination",{staticStyle:{"text-align":"right","margin-right":"20px","margin-top":"30px"},attrs:{background:"",layout:"prev, pager, next",total:e.totalPages},on:{"current-change":e.pageChange}}),a("el-dialog",{staticClass:"addProcessDialog",attrs:{title:"新增流程",visible:e.addProcessDialog,width:"30%","before-close":e.handleClose},on:{"update:visible":function(t){e.addProcessDialog=t}}},[a("el-form",{ref:"addForm",staticStyle:{width:"100%"},attrs:{rules:e.addFormRules,model:e.addForm,"label-width":"120px"}},[a("el-row",[a("el-col",{attrs:{span:24}},[a("el-form-item",{attrs:{label:"流程名",prop:"flowName"}},[a("el-input",{staticStyle:{width:"100%"},attrs:{placeholder:"请输入"},model:{value:e.addForm.flowName,callback:function(t){e.$set(e.addForm,"flowName",t)},expression:"addForm.flowName"}})],1)],1)],1),a("el-row",[a("el-col",{attrs:{span:24}},[a("el-form-item",{attrs:{label:"流程描述",prop:"flowDescribe"}},[a("el-input",{staticStyle:{width:"100%"},attrs:{type:"textarea",autosize:{minRows:4,maxRows:4},placeholder:"请输入"},model:{value:e.addForm.flowDescribe,callback:function(t){e.$set(e.addForm,"flowDescribe",t)},expression:"addForm.flowDescribe"}})],1)],1)],1)],1),a("span",{staticClass:"dialog-footer",attrs:{slot:"footer"},slot:"footer"},[a("button",{staticClass:"addBtn",on:{click:e.handleClose}},[e._v("取消")]),a("button",{staticClass:"addBtn",on:{click:e.submitProcess}},[e._v("提交")])])],1)],1)])},o=[],l=(a("b0c0"),a("d3b7"),a("ac1f"),a("25f0"),a("5319"),{name:"processManage",data:function(){return{searchForm:{},addProcessDialog:!1,totalPages:0,nowPage:0,addForm:{},addFormRules:{flowName:[{required:!0,message:"请输入流程名称",trigger:"blur"}],flowDescribe:[{required:!0,message:"请输入流程描述",trigger:"blur"}]},tableData:[]}},created:function(){this.getAllProcessData()},methods:{getDate:function(e){var t=new Date(e),a=t.getFullYear()+"-",s=(t.getMonth()+1<10?"0"+(t.getMonth()+1):t.getMonth()+1)+"-",o=t.getDate()<10?"0"+t.getDate():t.getDate(),l=(t.getHours()<10?"0"+t.getHours():t.getHours())+":",r=(t.getMinutes()<10?"0"+t.getMinutes():t.getMinutes())+":",c=t.getSeconds()<10?"0"+t.getSeconds():t.getSeconds();return a+s+o+" "+l+r+c},submitProcess:function(){var e=this;this.$refs.addForm.validate((function(t){if(!t)return console.log("error submit!!"),!1;var a=e.guid();e.addForm.flowKey="process_".concat(a),console.log(e.addForm),e.$axios.addProcess(e.addForm).then((function(t){e.$message.success("流程创建成功"),e.$router.push({path:"./processEdit",query:{processId:t.data.data}}),e.addProcessDialog=!1})).catch((function(e){console.log(e)}))}))},getAllProcessData:function(e){var t=this;this.$axios.getAllProcessData({size:9,page:e,flowName:this.searchForm.name,state:this.searchForm.disable}).then((function(e){var a=e.data.content;t.totalPages=10*e.data.totalPages,t.tableData=a})).catch((function(e){console.log(e)}))},handleClose:function(){this.$refs.addForm.resetFields(),this.addProcessDialog=!1},openAddProcessDialog:function(){this.addProcessDialog=!0},searchData:function(){this.getAllProcessData()},reset:function(){this.searchForm={}},pageChange:function(e){this.nowPage=e-1,this.getAllProcessData(e-1)},editProcess:function(e){this.$router.push({path:"./processEdit",query:{processId:e.id}})},deleteProcess:function(e){var t=this;this.$confirm("此操作将永久删除该文件, 是否继续?","提示",{confirmButtonText:"确定",cancelButtonText:"取消",type:"warning"}).then((function(){0==e.state?t.$message({showClose:!0,message:"该流程正在启用,请先暂停后再删除",type:"error"}):t.$axios.deleteProcess({id:e.id}).then((function(e){t.$message.success("删除成功"),t.getAllProcessData(t.nowPage)})).catch((function(e){console.log(e)}))})).catch((function(){t.$message({type:"info",message:"已取消删除"})}))},guid:function(){return"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g,(function(e){var t=16*Math.random()|0,a="x"==e?t:3&t|8;return a.toString(16)}))}}}),r=l,c=(a("3af2"),a("2877")),n=Object(c["a"])(r,s,o,!1,null,"700d8216",null);t["default"]=n.exports}}]);
\ No newline at end of file
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-2d0af7ff"],{"0f1d":function(t,a,e){"use strict";e.r(a);var n=function(){var t=this,a=t.$createElement,e=t._self._c||a;return e("div",[e("div",{staticClass:"main"},[e("el-table",{staticStyle:{width:"100%"},attrs:{data:t.tableData}},[e("el-table-column",{attrs:{type:"index",label:"序号",width:"100"}}),e("el-table-column",{attrs:{prop:"flowName",label:"流程名"}}),e("el-table-column",{attrs:{prop:"flowDescribe",label:"流程描述"}}),e("el-table-column",{attrs:{prop:"createdTime",label:"创建时间"}}),e("el-table-column",{attrs:{label:"是否启用"},scopedSlots:t._u([{key:"default",fn:function(a){return[e("span",[t._v(t._s(1==a.row.state?"暂停":"启用"))])]}}])}),e("el-table-column",{attrs:{label:"操作",width:"350"},scopedSlots:t._u([{key:"default",fn:function(a){return[e("div",{staticClass:"operation"},[e("span",{on:{click:function(e){return t.editProcess(a.row)}}},[t._v("编辑")]),e("span",{class:1!=a.row.state?"disableSpan":"",on:{click:function(e){return t.disableProcess(a.row.id)}}},[t._v(t._s(1==a.row.state?"启用":"暂停"))]),e("span",{on:{click:function(e){return t.deleteProcess(a.row)}}},[t._v("删除")])])]}}])})],1),e("el-pagination",{staticStyle:{"text-align":"right","margin-right":"20px","margin-top":"30px"},attrs:{background:"",layout:"prev, pager, next",total:t.totalPages},on:{"current-change":t.pageChange}})],1)])},o=[],s=(e("b0c0"),{name:"searchFlowInfo",data:function(){return{totalPages:0,tableData:[],searchForm:{},nowPage:0}},created:function(){this.getProcessData()},methods:{getProcessData:function(t){var a=this;this.$axios.getProcessData({size:9,page:t,flowName:this.searchForm.name,state:this.searchForm.disable}).then((function(t){console.log(t);var e=t.data.content;a.totalPages=10*t.data.totalPages,a.tableData=e})).catch((function(t){console.log(t)}))},pageChange:function(t){this.nowPage=t-1,this.getProcessData(t-1)}}}),l=s,r=e("2877"),c=Object(r["a"])(l,n,o,!1,null,null,null);a["default"]=c.exports}}]);
\ No newline at end of file
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-67748d0a"],{1366:function(e,t,a){"use strict";a("162d")},"162d":function(e,t,a){},"45e8":function(e,t,a){"use strict";a.r(t);var l=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("div",{staticClass:"dataModelManage",staticStyle:{height:"calc(100% - 140px)"}},[a("div",{staticClass:"topDiv"},[a("span",{staticClass:"title"},[e._v("数据模型管理")]),a("button",{staticClass:"addProcess",on:{click:function(t){return e.$router.push({path:"addDataModel"})}}},[e._v(" 新建模型 ")])]),a("div",{staticClass:"searchBar"},[a("el-form",{ref:"form",staticStyle:{width:"100%"},attrs:{model:e.searchForm,"label-width":"100px"}},[a("el-row",[a("el-col",{attrs:{span:6}},[a("el-form-item",{attrs:{label:"标签"}},[a("el-input",{staticStyle:{width:"100%"},attrs:{placeholder:"请输入"},model:{value:e.searchForm.modelTitle,callback:function(t){e.$set(e.searchForm,"modelTitle",t)},expression:"searchForm.modelTitle"}})],1)],1),a("el-col",{attrs:{span:6}},[a("el-form-item",{attrs:{label:"名称"}},[a("el-input",{staticStyle:{width:"100%"},attrs:{placeholder:"请输入"},model:{value:e.searchForm.modelName,callback:function(t){e.$set(e.searchForm,"modelName",t)},expression:"searchForm.modelName"}})],1)],1),a("el-col",{attrs:{span:12}},[a("el-form-item",[a("button",{staticClass:"searchBtn button_ty",on:{click:e.searchData}},[e._v(" 查询 ")]),a("button",{staticClass:"button_ty",on:{click:e.reset}},[e._v("重置")])])],1)],1)],1)],1),a("div",{staticClass:"main"},[a("el-table",{staticStyle:{width:"100%"},attrs:{data:e.tableData}},[a("el-table-column",{attrs:{prop:"modelName",label:"名称"}}),a("el-table-column",{attrs:{prop:"modelTitle",label:"标签"}}),a("el-table-column",{attrs:{label:"类型",width:"200"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("div",[0==t.row.modelType?a("span",{staticStyle:{color:"orange"}},[e._v("基础对象")]):e._e(),1==t.row.modelType?a("span",{staticStyle:{color:"#2a3bd3"}},[e._v("业务对象")]):e._e(),2==t.row.modelType?a("span",{staticStyle:{color:"yellowgreen"}},[e._v("基础对象(延伸)")]):e._e()])]}}])}),a("el-table-column",{attrs:{prop:"createdTime",label:"最后修改人"}}),a("el-table-column",{attrs:{prop:"updatedTime",label:"最后修改日期"}}),a("el-table-column",{attrs:{prop:"description",label:"描述"}}),a("el-table-column",{attrs:{label:"操作",width:"200"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("div",{staticClass:"operation"},[a("span",{on:{click:function(a){return e.editTable(t.row)}}},[e._v("编辑")]),a("span",{staticStyle:{color:"red"},on:{click:function(a){return e.deleteTable(t.row)}}},[e._v("删除")])])]}}])})],1),a("el-pagination",{staticStyle:{"text-align":"right","margin-right":"20px","margin-top":"30px"},attrs:{background:"",layout:"prev, pager, next",total:e.total,"page-size":e.pageSize},on:{"current-change":e.pageChange}})],1)])},o=[],s=(a("a4d3"),a("e01a"),a("5530")),n={name:"dataModelManage",data:function(){return{addDialogVisible2:!1,updateDialogVisible:!1,searchForm:{modelTitle:"",modelName:""},addProcessDialog:!1,pageSize:9,total:0,nowPage:0,tableData:[],tableForm:{}}},created:function(){this.getAllModel()},methods:{getAllModel:function(){var e=this,t=Object(s["a"])(Object(s["a"])({page:this.nowPage,size:this.pageSize},this.searchForm),{},{orders:[{coulmn:"updatedTime",direction:"DESC"}]});this.$axios.getAllEntity(t).then((function(t){e.total=t.data.data.totalElements,e.tableData=t.data.data.content})).catch((function(e){console.log(e.response)}))},getDate:function(e){var t=new Date(e),a=t.getFullYear()+"-",l=(t.getMonth()+1<10?"0"+(t.getMonth()+1):t.getMonth()+1)+"-",o=t.getDate()<10?"0"+t.getDate():t.getDate(),s=(t.getHours()<10?"0"+t.getHours():t.getHours())+":",n=(t.getMinutes()<10?"0"+t.getMinutes():t.getMinutes())+":",i=t.getSeconds()<10?"0"+t.getSeconds():t.getSeconds();return a+l+o+" "+s+n+i},searchData:function(){this.getAllModel()},reset:function(){this.searchForm={tableCnName:"",tableName:""},this.getAllModel()},pageChange:function(e){this.nowPage=e-1,this.getAllModel()},editTable:function(e){var t=e.modelName,a=e.modelTitle,l=e.modelType,o=e.parentTable,s=e.description,n=e.id,i={id:n,modelName:t,modelTitle:a,modelType:l,parentTable:o,description:s};sessionStorage.setItem("ty_model",JSON.stringify(i)),this.$router.push({path:"addDataModel",query:{tableId:e.id}})},deleteTable:function(e){var t=this;this.$confirm("此操作将永久删除该模型, 是否继续?","提示",{confirmButtonText:"确定",cancelButtonText:"取消",type:"warning"}).then((function(a){var l={id:e.id,dbName:e.modelName};t.$axios.deleteModel(l).then((function(e){console.log(e),t.getAllModel(),t.$message({message:e.data.message,type:"success"})})).catch((function(e){t.$message.error(e.response.data.data)}))})).catch((function(){t.$message({type:"info",message:"已取消删除"})}))}}},i=n,r=(a("1366"),a("2877")),c=Object(r["a"])(i,l,o,!1,null,"5d22eef2",null);t["default"]=c.exports}}]);
\ No newline at end of file
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-7c52297c"],{"4d46":function(e,t,c){},"64f1":function(e,t,c){"use strict";c.r(t);var n=function(){var e=this,t=e.$createElement,c=e._self._c||t;return c("div",{attrs:{id:"process"}},[c("keep-alive",{attrs:{include:"processEdit"}},[c("router-view")],1)],1)},s=[],r={name:"process"},i=r,a=(c("760a"),c("2877")),u=Object(a["a"])(i,n,s,!1,null,"cd5066ac",null);t["default"]=u.exports},"760a":function(e,t,c){"use strict";c("4d46")}}]);
\ No newline at end of file
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-b5da06ba"],{"38c7":function(e,t,n){"use strict";n("8b63")},"8b63":function(e,t,n){},eee9:function(e,t,n){"use strict";n.r(t);var c=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{attrs:{id:"dataModel"}},[n("router-view")],1)},u=[],a=(n("38c7"),n("2877")),i={},r=Object(a["a"])(i,c,u,!1,null,"37e3475c",null);t["default"]=r.exports}}]);
\ No newline at end of file
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-fec0be80"],{"246a":function(module,__webpack_exports__,__webpack_require__){"use strict";var code={template:'<el-form ref="elForm" :model="formData" :rules="rules" size="small" label-width="100px">\n <el-form-item label="单行文本" prop="field101">\n <el-input v-model="formData.field101" placeholder="请输入单行文本" clearable :style="{width: \'100%\'}"></el-input>\n </el-form-item>\n <el-form-item label="下拉选择" prop="field118">\n <el-select v-model="formData.field118" placeholder="请选择下拉选择" clearable :style="{width: \'100%\'}">\n <el-option v-for="(item, index) in field118Options" :key="index" :label="item.label" :value="item.value"\n :disabled="item.disabled"></el-option>\n </el-select>\n </el-form-item>\n <el-form-item label="单选框组" prop="field119">\n <el-radio-group v-model="formData.field119" size="medium">\n <el-radio v-for="(item, index) in field119Options" :key="index" :label="item.value"\n :disabled="item.disabled">{{item.label}}</el-radio>\n </el-radio-group>\n </el-form-item>\n <el-form-item label="多选框组" prop="field120">\n <el-checkbox-group v-model="formData.field120" size="medium">\n <el-checkbox v-for="(item, index) in field120Options" :key="index" :label="item.value"\n :disabled="item.disabled">{{item.label}}</el-checkbox>\n </el-checkbox-group>\n </el-form-item>\n <el-form-item label="按钮" prop="field121">\n <el-button type="primary" icon="el-icon-search" size="medium"> 主要按钮 </el-button>\n </el-form-item>\n <el-form-item size="large">\n <el-button type="primary" @click="submitForm">提交</el-button>\n <el-button @click="resetForm">重置</el-button>\n </el-form-item>\n</el-form>\n',js:' {\n components: {},\n props: [],\n data() {\n return {\n formData: {\n field101: undefined,\n field118: undefined,\n field119: undefined,\n field120: [],\n field121: undefined,\n },\n rules: {\n field101: [{\n required: true,\n message: \'请输入单行文本\',\n trigger: \'blur\'\n }],\n field118: [{\n required: true,\n message: \'请选择下拉选择\',\n trigger: \'change\'\n }],\n field119: [{\n required: true,\n message: \'单选框组不能为空\',\n trigger: \'change\'\n }],\n field120: [{\n required: true,\n type: \'array\',\n message: \'请至少选择一个多选框组\',\n trigger: \'change\'\n }],\n },\n field118Options: [{\n "label": "选项一",\n "value": 1\n }, {\n "label": "选项二",\n "value": 2\n }],\n field119Options: [{\n "label": "选项一",\n "value": 1\n }, {\n "label": "选项二",\n "value": 2\n }],\n field120Options: [{\n "label": "选项一",\n "value": 1\n }, {\n "label": "选项二",\n "value": 2\n }],\n }\n },\n computed: {},\n watch: {},\n created() {},\n mounted() {},\n methods: {\n submitForm() {\n this.$refs[\'elForm\'].validate(valid => {\n if (!valid) return\n // TODO 提交表单\n })\n },\n resetForm() {\n this.$refs[\'elForm\'].resetFields()\n },\n }\n}\n'},main=eval("(".concat(code.js,")"));main.template="<div>".concat(code.template,"</div>"),__webpack_exports__["a"]={data:function(){return{blogTitle:"123",dialogVisible:!1}},components:{myComp:{props:{list:{type:Array,default:function(){return[]}},myParam:{type:Array}},components:{child:main},data:function(){return{app:{newTime:"",nowTime:""}}},template:"<div><child /></div>",created:function(){this.newTime=Date.now()},mounted:function(){this.nowTime=Date.now(),console.log(this.nowTime),console.log(this.newTime)}}},created:function(){console.log(210,main),this.getFromPage(2);var e=[{tag:"el-input",placeholder:"请输入单行文本1",bindData:"app",name:"name"},{tag:"el-input",bindData:"app",name:"age"}];this.param=e},methods:{getFromPage:function(){var e=this,n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:1;n=parseInt(n);var l={id:n};this.$axios.get_echoPage(l).then((function(n){var l=JSON.parse(n.data.descFile);e.formData=l,e.drawingList=l.fields,e.formData.pageName=n.data.pageName,e.formData.pageDesc=n.data.pageDesc,e.formData.id=n.data.id,console.log(206,e.formData)})).catch((function(e){console.log(e)}))},openDialog:function(){this.dialogVisible=!0},handleClose:function(){this.dialogVisible=!1}}}},"8fa7":function(e,n,l){"use strict";l.r(n);var i=function(){var e=this,n=e.$createElement,l=e._self._c||n;return l("div",[l("el-button",{on:{click:e.openDialog}},[e._v("打开dialog")]),l("el-dialog",{attrs:{title:"提示",visible:e.dialogVisible,width:"30%","before-close":e.handleClose},on:{"update:visible":function(n){e.dialogVisible=n}}},[l("div",{ref:"myDiv"},[l("myComp",{attrs:{myParam:e.param}})],1),l("span",{staticClass:"dialog-footer",attrs:{slot:"footer"},slot:"footer"},[l("el-button",{on:{click:e.handleClose}},[e._v("取 消")]),l("el-button",{attrs:{type:"primary"},on:{click:function(n){e.dialogVisible=!1}}},[e._v("确 定")])],1)])],1)},t=[],a=l("246a"),o=a["a"],r=l("2877"),d=Object(r["a"])(o,i,t,!1,null,null,null);n["default"]=d.exports}}]);
\ No newline at end of file
This source diff could not be displayed because it is too large. You can view the blob instead.
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论