diff --git a/src/main/java/com/ydool/boot/api/controller/ApiReviewWorkController.java b/src/main/java/com/ydool/boot/api/controller/ApiReviewWorkController.java index c6c357e..dcc961c 100644 --- a/src/main/java/com/ydool/boot/api/controller/ApiReviewWorkController.java +++ b/src/main/java/com/ydool/boot/api/controller/ApiReviewWorkController.java @@ -160,23 +160,23 @@ public class ApiReviewWorkController extends ApiBaseController { render(ret); } +// @ApiOperation("上传自查/调查报告环节") +// @PostMapping("state/check") +// @ResponseBody +// @DynamicResponseParameters(properties = { +// @DynamicParameter(name = "data", value = "评议", dataTypeClass = ReviewWorkDto.class) +// }) +// public void stateCheckSave(@Validated ReviewWorkCheckStateRequest reviewWorkCheckStateRequest) { +// ReviewWork review = reviewWorkService.stateCheckSave(reviewWorkCheckStateRequest, getApiUser()); +// render(Ret.ok().data(ReviewWorkWrapper.build().entityVO(review))); +// } + @ApiOperation("上传自查/调查报告环节") @PostMapping("state/check") @ResponseBody @DynamicResponseParameters(properties = { @DynamicParameter(name = "data", value = "评议", dataTypeClass = ReviewWorkDto.class) }) - public void stateCheckSave(@Validated ReviewWorkCheckStateRequest reviewWorkCheckStateRequest) { - ReviewWork review = reviewWorkService.stateCheckSave(reviewWorkCheckStateRequest, getApiUser()); - render(Ret.ok().data(ReviewWorkWrapper.build().entityVO(review))); - } - - @ApiOperation("上传自查/调查报告环节2") - @PostMapping("state/check2") - @ResponseBody - @DynamicResponseParameters(properties = { - @DynamicParameter(name = "data", value = "评议", dataTypeClass = ReviewWorkDto.class) - }) public void stateCheckSave2(@RequestBody @Validated WorkCheckRequest workCheckRequest) { ReviewWork review = reviewWorkService.stateCheckSave(workCheckRequest, getApiUser()); render(Ret.ok().data(ReviewWorkWrapper.build().entityVO(review))); diff --git a/src/main/java/com/ydool/boot/modules/rddb/entity/ReviewWorkAttachment.java b/src/main/java/com/ydool/boot/modules/rddb/entity/ReviewWorkAttachment.java index 20ccec7..8d14fd7 100644 --- a/src/main/java/com/ydool/boot/modules/rddb/entity/ReviewWorkAttachment.java +++ b/src/main/java/com/ydool/boot/modules/rddb/entity/ReviewWorkAttachment.java @@ -75,4 +75,8 @@ public class ReviewWorkAttachment extends BaseEntity { @ApiModelProperty(value = "工作评议自查报告组id") private String workCheckId; + @ApiModelProperty(value = "附件分类") + private String classify; + + } diff --git a/src/main/java/com/ydool/boot/modules/rddb/entity/dto/ReviewWorkDto.java b/src/main/java/com/ydool/boot/modules/rddb/entity/dto/ReviewWorkDto.java index eac5c4b..c163583 100644 --- a/src/main/java/com/ydool/boot/modules/rddb/entity/dto/ReviewWorkDto.java +++ b/src/main/java/com/ydool/boot/modules/rddb/entity/dto/ReviewWorkDto.java @@ -12,8 +12,12 @@ public class ReviewWorkDto extends ReviewWork { @ApiModelProperty(value = "评议附件") List inReportAttachmentList; - @ApiModelProperty(value = "自查/调查报告") - List checkAttachmentList; +// @ApiModelProperty(value = "自查/调查报告") +// List checkAttachmentList; + @ApiModelProperty(value = "自查报告") + List checkAttachment1List; + @ApiModelProperty(value = "会议方案") + List checkAttachment2List; @ApiModelProperty(value = "评议意见附件") List opinionAttachmentList; @ApiModelProperty(value = "整改结果附件") diff --git a/src/main/java/com/ydool/boot/modules/rddb/entity/request/review_work/state/WorkCheckRequest.java b/src/main/java/com/ydool/boot/modules/rddb/entity/request/review_work/state/WorkCheckRequest.java index 2a62a11..adf48f4 100644 --- a/src/main/java/com/ydool/boot/modules/rddb/entity/request/review_work/state/WorkCheckRequest.java +++ b/src/main/java/com/ydool/boot/modules/rddb/entity/request/review_work/state/WorkCheckRequest.java @@ -36,8 +36,14 @@ public class WorkCheckRequest { @ApiModelProperty(value = "打分人员") private List checkUserIds; - @ApiModelProperty(value = "附件组") - List reviewWorkChecks; +// @ApiModelProperty(value = "附件组") +// List reviewWorkChecks; + + @ApiModelProperty(value = "自查报告") + private List attachment1; + + @ApiModelProperty(value = "会议方案") + private List attachment2; /** * 测评对象 diff --git a/src/main/java/com/ydool/boot/modules/rddb/service/ReviewWorkService.java b/src/main/java/com/ydool/boot/modules/rddb/service/ReviewWorkService.java index 4f14e99..6d8a437 100644 --- a/src/main/java/com/ydool/boot/modules/rddb/service/ReviewWorkService.java +++ b/src/main/java/com/ydool/boot/modules/rddb/service/ReviewWorkService.java @@ -262,60 +262,88 @@ public class ReviewWorkService extends BaseService @Transactional private void saveReviewWorkCheck(ReviewWork reviewWork, WorkCheckRequest workCheckRequest, User loginUser) { //删除之前记录 - reviewWorkCheckService.remove(new QueryWrapper().eq("review_id", - workCheckRequest.getReviewId())); - reviewWorkCheckUserService.remove(new QueryWrapper().eq("review_id", - workCheckRequest.getReviewId())); +// reviewWorkCheckService.remove(new QueryWrapper().eq("review_id", +// workCheckRequest.getReviewId())); +// reviewWorkCheckUserService.remove(new QueryWrapper().eq("review_id", +// workCheckRequest.getReviewId())); reviewWorkAttachmentService.remove(new LambdaQueryWrapper() .eq(ReviewWorkAttachment::getReviewId, workCheckRequest.getReviewId()) .eq(ReviewWorkAttachment::getType, ReviewWork.STATE_CHECK)); - - List reviewWorkChecks = workCheckRequest.getReviewWorkChecks(); - if (CollectionUtil.isNotEmpty(reviewWorkChecks)) { - reviewWorkChecks.stream().forEach(workCheck -> { - //新增附件组 - ReviewWorkCheck reviewWorkCheck = - new ReviewWorkCheck().setReviewId(workCheckRequest.getReviewId()).setName(workCheck.getName()); - reviewWorkCheckService.saveOrUpdate(reviewWorkCheck); - - //新增附件 - List checkAttachments = workCheck.getCheckAttachments(); - if (CollectionUtil.isNotEmpty(checkAttachments)) { - List reviewWorkAttachments = new ArrayList(); - checkAttachments.stream().forEach(checkAttachment -> { - ReviewWorkAttachment reviewAttachment = new ReviewWorkAttachment(); - reviewAttachment.setType(reviewWork.getState()).setConferenceId(checkAttachment.getCheckAttachmentConferenceId()).setWorkCheckId(reviewWorkCheck.getId()) - .setConferenceName(checkAttachment.getCheckAttachmentConferenceName()) - .setReviewId(workCheckRequest.getReviewId()) - .setTitle(checkAttachment.getCheckAttachmentName()) - .setAttachment(checkAttachment.getCheckAttachmentPath()) - .setCreatedId(loginUser.getId()) - .setCreatedAt(LocalDateTime.now()); - reviewWorkAttachments.add(reviewAttachment); - - - conferenceAttachmentService.associationMeeting(checkAttachment.getCheckAttachmentConferenceId(), checkAttachment.getCheckAttachmentPath(), - checkAttachment.getCheckAttachmentName(), "工作评议附件", loginUser.getId()); - - }); - reviewWorkAttachmentService.saveBatch(reviewWorkAttachments); - } - - //新增用户 - List checkUsers = workCheck.getCheckUsers(); - if (CollectionUtil.isNotEmpty(checkUsers)) { - List reviewWorkCheckUsers = new ArrayList(); - checkUsers.stream().forEach(checkUser -> { - ReviewWorkCheckUser reviewWorkCheckUser = - new ReviewWorkCheckUser().setReviewId(workCheckRequest.getReviewId()).setWorkCheckId(reviewWorkCheck.getId()).setDept(checkUser.getDept()).setUser(checkUser.getUser()); - reviewWorkCheckUsers.add(reviewWorkCheckUser); - }); - reviewWorkCheckUserService.saveBatch(reviewWorkCheckUsers); - } - }); + List attachment1 = workCheckRequest.getAttachment1(); + List attachment2 = workCheckRequest.getAttachment2(); + if (CollectionUtil.isNotEmpty(attachment1)){ + saveReviewWorkAttachment(reviewWork.getId(), + attachment1.stream().map(CheckAttachment::getCheckAttachmentName).collect(Collectors.toList()).toString(), + attachment1.stream().map(CheckAttachment::getCheckAttachmentPath).collect(Collectors.toList()).toString(), loginUser, ReviewWork.STATE_CHECK, + attachment1.stream().map(CheckAttachment::getCheckAttachmentConferenceId).collect(Collectors.toList()).toString(), + attachment1.stream().map(CheckAttachment::getCheckAttachmentConferenceName).collect(Collectors.toList()).toString(),"1"); } + if (CollectionUtil.isNotEmpty(attachment2)){ + saveReviewWorkAttachment(reviewWork.getId(), + attachment2.stream().map(CheckAttachment::getCheckAttachmentName).collect(Collectors.toList()).toString(), + attachment2.stream().map(CheckAttachment::getCheckAttachmentPath).collect(Collectors.toList()).toString(), loginUser, ReviewWork.STATE_CHECK, + attachment2.stream().map(CheckAttachment::getCheckAttachmentConferenceId).collect(Collectors.toList()).toString(), + attachment2.stream().map(CheckAttachment::getCheckAttachmentConferenceName).collect(Collectors.toList()).toString(),"2"); + } + + + + + + + + + + + + +// List reviewWorkChecks = workCheckRequest.getReviewWorkChecks(); +// if (CollectionUtil.isNotEmpty(reviewWorkChecks)) { +// reviewWorkChecks.stream().forEach(workCheck -> { +// //新增附件组 +// ReviewWorkCheck reviewWorkCheck = +// new ReviewWorkCheck().setReviewId(workCheckRequest.getReviewId()).setName(workCheck.getName()); +// reviewWorkCheckService.saveOrUpdate(reviewWorkCheck); +// +// //新增附件 +// List checkAttachments = workCheck.getCheckAttachments(); +// if (CollectionUtil.isNotEmpty(checkAttachments)) { +// List reviewWorkAttachments = new ArrayList(); +// checkAttachments.stream().forEach(checkAttachment -> { +// ReviewWorkAttachment reviewAttachment = new ReviewWorkAttachment(); +// reviewAttachment.setType(reviewWork.getState()).setConferenceId(checkAttachment.getCheckAttachmentConferenceId()).setWorkCheckId(reviewWorkCheck.getId()) +// .setConferenceName(checkAttachment.getCheckAttachmentConferenceName()) +// .setReviewId(workCheckRequest.getReviewId()) +// .setTitle(checkAttachment.getCheckAttachmentName()) +// .setAttachment(checkAttachment.getCheckAttachmentPath()) +// .setCreatedId(loginUser.getId()) +// .setCreatedAt(LocalDateTime.now()); +// reviewWorkAttachments.add(reviewAttachment); +// +// +// conferenceAttachmentService.associationMeeting(checkAttachment.getCheckAttachmentConferenceId(), checkAttachment.getCheckAttachmentPath(), +// checkAttachment.getCheckAttachmentName(), "工作评议附件", loginUser.getId()); +// +// }); +// reviewWorkAttachmentService.saveBatch(reviewWorkAttachments); +// } +// +// //新增用户 +// List checkUsers = workCheck.getCheckUsers(); +// if (CollectionUtil.isNotEmpty(checkUsers)) { +// List reviewWorkCheckUsers = new ArrayList(); +// checkUsers.stream().forEach(checkUser -> { +// ReviewWorkCheckUser reviewWorkCheckUser = +// new ReviewWorkCheckUser().setReviewId(workCheckRequest.getReviewId()).setWorkCheckId(reviewWorkCheck.getId()).setDept(checkUser.getDept()).setUser(checkUser.getUser()); +// reviewWorkCheckUsers.add(reviewWorkCheckUser); +// }); +// reviewWorkCheckUserService.saveBatch(reviewWorkCheckUsers); +// } +// }); +// } + } @@ -350,7 +378,7 @@ public class ReviewWorkService extends BaseService if (ReviewWork.STATE_CHECK != reviewWork.getState()) throw new ResultException(Ret.fail("当前环节不能提交该信息")); if (!loginUser.getId().equals(reviewWork.getCreatedId())) return Ret.fail("您不是创建人,不能操作"); - reviewWork.setState(ReviewWork.STATE_OPINION); + reviewWork.setState(ReviewWork.STATE_ASK); boolean flag = saveOrUpdate(reviewWork); return !flag ? Ret.fail("操作失败") : Ret.ok().data(ReviewWorkWrapper.build().entityVO(reviewWork)); } @@ -576,4 +604,56 @@ public class ReviewWorkService extends BaseService } } + + /** + * @param reviewId + * @param attachmentName + * @param attachmentPath + * @param loginUser + * @param state + */ + private void saveReviewWorkAttachment(String reviewId, String attachmentName, String attachmentPath, + User loginUser, Integer state, String conferenceId + , String conferenceName,String classify) { + reviewWorkAttachmentService.remove(new LambdaQueryWrapper() + .eq(ReviewWorkAttachment::getReviewId, reviewId) + .eq(ReviewWorkAttachment::getType, state)); + if (StrUtil.isNotBlank(attachmentName)) { + String[] nameArr = attachmentName.split(","); + String[] pathArr = attachmentPath.split(","); + if (StrUtil.isNotBlank(conferenceId)) { + String[] conferenceIdArr = conferenceId.split(","); + String[] conferenceNameArr = conferenceName.split(","); + for (int i = 0; i < nameArr.length; i++) { + ReviewWorkAttachment reviewAttachment = new ReviewWorkAttachment(); + reviewAttachment.setType(state).setConferenceId(conferenceIdArr[i]) + .setClassify(classify) + .setConferenceName(conferenceNameArr[i]) + .setReviewId(reviewId) + .setTitle(nameArr[i]) + .setAttachment(pathArr[i]) + .setCreatedId(loginUser.getId()) + .setCreatedAt(LocalDateTime.now()); + reviewWorkAttachmentService.save(reviewAttachment); + if (StrUtil.isNotBlank(conferenceIdArr[i])) { + conferenceAttachmentService.associationMeeting(conferenceIdArr[i], conferenceNameArr[i], + nameArr[i], "工作评议附件", loginUser.getId()); + } + } + } else { + for (int i = 0; i < nameArr.length; i++) { + ReviewWorkAttachment reviewAttachment = new ReviewWorkAttachment(); + reviewAttachment.setType(state) + .setClassify(classify) + .setReviewId(reviewId) + .setTitle(nameArr[i]) + .setAttachment(pathArr[i]) + .setCreatedId(loginUser.getId()) + .setCreatedAt(LocalDateTime.now()); + reviewWorkAttachmentService.save(reviewAttachment); + } + } + + } + } } diff --git a/src/main/java/com/ydool/boot/modules/rddb/wrapper/ReviewWorkWrapper.java b/src/main/java/com/ydool/boot/modules/rddb/wrapper/ReviewWorkWrapper.java index f7eea59..eba9e4e 100644 --- a/src/main/java/com/ydool/boot/modules/rddb/wrapper/ReviewWorkWrapper.java +++ b/src/main/java/com/ydool/boot/modules/rddb/wrapper/ReviewWorkWrapper.java @@ -62,72 +62,96 @@ public class ReviewWorkWrapper extends BaseWrapper { }); } //查询自查/调查报告组 - List reviewWorkChecks = - reviewWorkCheckService.list(new LambdaQueryWrapper().eq(ReviewWorkCheck::getReviewId, - reviewWork.getId())); - List reviewWorkCheckDtos = new ArrayList(); - - if (CollectionUtil.isNotEmpty(reviewWorkChecks)) { +// List reviewWorkChecks = +// reviewWorkCheckService.list(new LambdaQueryWrapper().eq(ReviewWorkCheck::getReviewId, +// reviewWork.getId())); +// List reviewWorkCheckDtos = new ArrayList(); +// +// if (CollectionUtil.isNotEmpty(reviewWorkChecks)) { +// +// +// reviewWorkChecks.stream().forEach(reviewWorkCheck -> { +// //组ID +// String workCheckId = reviewWorkCheck.getId(); +// +// //获取关联附件 +// List checkAttachmentList = +// reviewWorkAttachmentService.list(new LambdaQueryWrapper() +// .eq(ReviewWorkAttachment::getReviewId, reviewWork.getId()) +// .eq(ReviewWorkAttachment::getType, ReviewWork.STATE_CHECK) +// .eq(ReviewWorkAttachment::getWorkCheckId, workCheckId) +// .orderByDesc(ReviewWorkAttachment::getCreatedAt)); +// //获取附件关联会议名称 +// if (CollectionUtil.isNotEmpty(checkAttachmentList)) { +// checkAttachmentList.stream().forEach(i -> { +// if (StrUtil.isNotBlank(i.getConferenceId())) { +// Conference conference = conferenceMapper.selectById(i.getConferenceId()); +// String conferenceName = ""; +// if (conference != null) { +// conferenceName = conference.getTitle(); +// } +// i.setConferenceName(conferenceName); +// } +// }); +// } +// //获取评议组织人员 +// List reviewWorkCheckUsers = +// reviewWorkCheckUserService.list(new LambdaQueryWrapper() +// .eq(ReviewWorkCheckUser::getWorkCheckId, workCheckId) +// .eq(ReviewWorkCheckUser::getReviewId, reviewWork.getId()) +// ); +// ReviewWorkCheckDto reviewWorkCheckDto = BeanUtil.copyProperties(reviewWorkCheck, ReviewWorkCheckDto.class); +// reviewWorkCheckDto.setReviewWorkAttachments(checkAttachmentList); +// reviewWorkCheckDto.setReviewWorkUsers(reviewWorkCheckUsers); +// reviewWorkCheckDtos.add(reviewWorkCheckDto); +// +// }); +// +// } - reviewWorkChecks.stream().forEach(reviewWorkCheck -> { - //组ID - String workCheckId = reviewWorkCheck.getId(); - - //获取关联附件 - List checkAttachmentList = - reviewWorkAttachmentService.list(new LambdaQueryWrapper() - .eq(ReviewWorkAttachment::getReviewId, reviewWork.getId()) - .eq(ReviewWorkAttachment::getType, ReviewWork.STATE_CHECK) - .eq(ReviewWorkAttachment::getWorkCheckId, workCheckId) - .orderByDesc(ReviewWorkAttachment::getCreatedAt)); - //获取附件关联会议名称 - if (CollectionUtil.isNotEmpty(checkAttachmentList)) { - checkAttachmentList.stream().forEach(i -> { - if (StrUtil.isNotBlank(i.getConferenceId())) { - Conference conference = conferenceMapper.selectById(i.getConferenceId()); - String conferenceName = ""; - if (conference != null) { - conferenceName = conference.getTitle(); - } - i.setConferenceName(conferenceName); - } - }); + List checkAttachment1List = reviewWorkAttachmentService.list(new + LambdaQueryWrapper() + .eq(ReviewWorkAttachment::getReviewId, reviewWork.getId()) + .eq(ReviewWorkAttachment::getType, ReviewWork.STATE_CHECK) + .eq(ReviewWorkAttachment::getClassify,"1") + .orderByDesc(ReviewWorkAttachment::getCreatedAt)); + //获取关联会议名称 + if (CollectionUtil.isNotEmpty(checkAttachment1List)) { + checkAttachment1List.stream().forEach(i -> { + if (StrUtil.isNotBlank(i.getConferenceId())) { + Conference conference = conferenceMapper.selectById(i.getConferenceId()); + String conferenceName = ""; + if (conference != null) { + conferenceName = conference.getTitle(); + } + i.setConferenceName(conferenceName); + } + }); + } + + + List checkAttachment2List = reviewWorkAttachmentService.list(new + LambdaQueryWrapper() + .eq(ReviewWorkAttachment::getReviewId, reviewWork.getId()) + .eq(ReviewWorkAttachment::getType, ReviewWork.STATE_CHECK) + .eq(ReviewWorkAttachment::getClassify,"1") + .orderByDesc(ReviewWorkAttachment::getCreatedAt)); + //获取关联会议名称 + if (CollectionUtil.isNotEmpty(checkAttachment2List)) { + checkAttachment2List.stream().forEach(i -> { + if (StrUtil.isNotBlank(i.getConferenceId())) { + Conference conference = conferenceMapper.selectById(i.getConferenceId()); + String conferenceName = ""; + if (conference != null) { + conferenceName = conference.getTitle(); + } + i.setConferenceName(conferenceName); } - //获取评议组织人员 - List reviewWorkCheckUsers = - reviewWorkCheckUserService.list(new LambdaQueryWrapper() - .eq(ReviewWorkCheckUser::getWorkCheckId, workCheckId) - .eq(ReviewWorkCheckUser::getReviewId, reviewWork.getId()) - ); - ReviewWorkCheckDto reviewWorkCheckDto = BeanUtil.copyProperties(reviewWorkCheck, ReviewWorkCheckDto.class); - reviewWorkCheckDto.setReviewWorkAttachments(checkAttachmentList); - reviewWorkCheckDto.setReviewWorkUsers(reviewWorkCheckUsers); - reviewWorkCheckDtos.add(reviewWorkCheckDto); - }); - } -// List checkAttachmentList = reviewWorkAttachmentService.list(new -// LambdaQueryWrapper() -// .eq(ReviewWorkAttachment::getReviewId, reviewWork.getId()) -// .eq(ReviewWorkAttachment::getType, ReviewWork.STATE_CHECK) -// .orderByDesc(ReviewWorkAttachment::getCreatedAt)); -// //获取关联会议名称 -// if (CollectionUtil.isNotEmpty(checkAttachmentList)) { -// checkAttachmentList.stream().forEach(i -> { -// if (StrUtil.isNotBlank(i.getConferenceId())) { -// Conference conference = conferenceMapper.selectById(i.getConferenceId()); -// String conferenceName = ""; -// if (conference != null) { -// conferenceName = conference.getTitle(); -// } -// i.setConferenceName(conferenceName); -// } -// }); -// } List reportAttachmentList = reviewWorkAttachmentService.list(new LambdaQueryWrapper() .eq(ReviewWorkAttachment::getReviewId, reviewWork.getId()) @@ -197,8 +221,9 @@ public class ReviewWorkWrapper extends BaseWrapper { .orderByAsc(ReviewWorkUser::getSortNo)); ReviewWorkDto.setInReportAttachmentList(inReportAttachmentList); -// ReviewWorkDto.setCheckAttachmentList(checkAttachmentList); - ReviewWorkDto.setCheckAttachmentList(reviewWorkCheckDtos); + ReviewWorkDto.setCheckAttachment1List(checkAttachment1List); + ReviewWorkDto.setCheckAttachment2List(checkAttachment2List); +// ReviewWorkDto.setCheckAttachmentList(reviewWorkCheckDtos); ReviewWorkDto.setOpinionAttachmentList(opinionAttachmentList); ReviewWorkDto.setResultAttachmentList(resultAttachmentList); ReviewWorkDto.setReportAttachmentList(reportAttachmentList); diff --git a/src/main/resources/views/dist/css/chunk-44c5918e.3290d9c1.css b/src/main/resources/views/dist/css/chunk-44c5918e.3290d9c1.css deleted file mode 100644 index e99c5d9..0000000 --- a/src/main/resources/views/dist/css/chunk-44c5918e.3290d9c1.css +++ /dev/null @@ -1 +0,0 @@ -.fileList1List[data-v-86a55f54]{background-color:#f7f8fa;width:2.13333rem;height:2.13333rem}.fileList1List img[data-v-86a55f54]{width:.53333rem;height:.53333rem;margin-left:.8rem;margin-top:.50667rem}.fileList1List h4[data-v-86a55f54]{height:.37333rem;margin-top:.21333rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;margin-left:.13333rem}.report .report-title[data-v-86a55f54]{padding:.32rem 0;font-size:.42667rem;background:#f8f8f8;margin:0 -.42667rem;padding:.42667rem;color:#333}.report .report-contain[data-v-86a55f54]{padding:.42667rem 0}.report .report-contain .word[data-v-86a55f54]{font-size:.42667rem;line-height:.53333rem}.report .report-contain .date[data-v-86a55f54]{color:#333;font-size:.32rem;margin-top:.42667rem}.vote .vote-title[data-v-86a55f54]{padding:.32rem 0;font-size:.42667rem;background:#f8f8f8;margin:0 -.42667rem;padding:.42667rem}.vote .vote-title .voteImg[data-v-86a55f54]{width:.48rem;height:.42667rem;margin-right:.26667rem;vertical-align:bottom}.vote .vote-contain[data-v-86a55f54]{padding:.21333rem 0}.vote .vote-contain .scoreTitle[data-v-86a55f54]{text-align:center;padding:.32rem 0}.vote .vote-contain .vote-item[data-v-86a55f54]{padding:.21333rem 0}.vote .vote-contain .vote-item .vote-row[data-v-86a55f54]{display:flex;justify-content:space-between;align-items:center}.vote .vote-contain .vote-item .vote-row[data-v-86a55f54]:last-of-type{margin-top:.21333rem}.vote .vote-contain .vote-item .vote-row .ticket[data-v-86a55f54]{width:.53333rem;height:.53333rem}.vote .vote-contain .vote-item .vote-row .progress[data-v-86a55f54]{flex:1}.vote .vote-contain .vote-item .vote-row .vote-right[data-v-86a55f54]{width:1.6rem;text-align:center}.evaluate[data-v-86a55f54]{margin-top:.8rem;padding:.42667rem .64rem;background:#f8f8f8;border-radius:.21333rem}.evaluate .evaluate-contain[data-v-86a55f54]{line-height:.53333rem}.evaluate .evaluate-contain .title[data-v-86a55f54]{color:#0071ff}.evaluate .evaluate-bottom[data-v-86a55f54]{display:flex;align-items:center;justify-content:space-between;margin-top:.74667rem}.evaluate .evaluate-bottom .date[data-v-86a55f54]{color:#8e8f9e}.evaluate .evaluate-bottom .more[data-v-86a55f54]{color:#0071ff}.enclosurePopup[data-v-86a55f54]{padding:1.06667rem}.enclosurePopup .btn[data-v-86a55f54]{background:#d03a29;border-radius:.53333rem;height:1.06667rem;line-height:1.06667rem;text-align:center;color:#fff}.enclosureBtn[data-v-86a55f54]{display:inline-block;padding:.21333rem .42667rem;background:#d03a29;border-radius:.10667rem;color:#fff}.enclosureBtn .enclosureImg[data-v-86a55f54]{margin-right:.10667rem;width:.34667rem;height:.32rem;vertical-align:middle}.users[data-v-86a55f54]{margin-top:-.32rem;padding:.10667rem 0 .21333rem;background-color:#fff;display:flex;flex-wrap:wrap;border-bottom:.02667rem solid #f3f3f3}.users .item[data-v-86a55f54]{background-color:#fff2f1;padding:0 .26667rem;font-size:.32rem;color:#333;line-height:.61333rem;border-radius:.29333rem;margin-right:.26667rem;margin-top:.26667rem;position:relative}.users .item .van-icon[data-v-86a55f54]{position:absolute;top:0;right:0;transform:translate(50%,-50%);color:#d03a29}.publish[data-v-86a55f54]{position:fixed;bottom:0;left:0;width:100%;display:flex;align-items:center;box-sizing:border-box;padding:.42667rem;border-top:.02667rem solid #f8f8f8;background:#fff;z-index:2}.publish input[data-v-86a55f54]{height:1.06667rem;background-color:#f8f8f8;border-radius:.16rem;flex:1;margin-right:.32rem;border:none;outline:none;padding:0 .16rem 0 1.06667rem;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAaCAYAAACtv5zzAAAACXBIWXMAAAsTAAALEwEAmpwYAAACfElEQVRIiaWVTUgUYQCG33d2RleErIMHiYjwUniIyNumfLOKnYqgqEMnD0FS0SHBBCEzI6Kw6AeiQ3SxQ5eIQCnNmV0S9pBFGEFRREREP+ilXG139u1QidXurLPObb7vfZ/n+4EZIsIzMjJSXVtbOyhpv6Q1AB5L6k8mkw9LdRhFMDExcYNk5z/DeZI7jTGjxTp2FEE8Hu+en5//SvIwgJoljEEAlQv6+/stY0zfwsLCFpJ3bdveGARBn6ROALakTaW6yxK4rttbKBRO/n7dlcvlXsRisd5YLHY+n88PklxXqlv2DiYnJxtzudy0pJoi06PGmB1TU1PVzc3NcxUJfN+/L6kjJNLiuu6jUpOhR+R53r4wOMms4zivwhglBZlMZlU2m70QVgZwJpFIfK5IkM1mTwNoCOm+rK+vP1tmAcUFnuc1A+gK6YlkV1NT04/IAkmW7/vXAMRCesPGGK8cvKgglUodArA1pDNbVVV1bDnw/wTpdLohCIJTZTq95S62pKBQKFwEUBeSzxhjri8X/pcgnU5vD4Jgb0g2L+kgSUUWeJ4XD4LgaliQ5CXXdZ9FgS8KAHQDaAzJvZd0Iip8UUCyQyq9c5JHjTHfKhKMjY3VSboFYBuKfPxI3jPG3KkEDgC24zhPAVyWlAQwAKBlyfx3x3GOVAoHfv2NLABDJN+S7JN0TlIPgNUAjicSiXcrEpCckbRe0gZJwySfAOhxXXd8JeBFAYDZpQOSNpM8MD4+Pt3e3v5JElOp1B5Ja6OAJRVIPrAlzQAAyTkAN4MgGGpra3vzJ+j7/m4At6OunCQAfLQBvCY5YFnWldbW1i9Fss8BfAAQeQeWZY39BA3V/UPBTjehAAAAAElFTkSuQmCC);background-repeat:no-repeat;background-size:.37333rem;background-position:.26667rem}.publish p[data-v-86a55f54]{display:inline-block;height:1.06667rem;line-height:1.06667rem;width:1.6rem;text-align:center;background:#d03a29;border-radius:.16rem;color:#fff}.step .my-swipe .van-swipe-item[data-v-86a55f54]{height:4rem;box-sizing:border-box;padding:.8rem .8rem .8rem 1.6rem}.step .my-swipe .van-swipe-item[data-v-86a55f54]:nth-of-type(2){padding:.8rem 1.6rem .8rem .8rem}.step .my-swipe .van-swipe-item .step-item[data-v-86a55f54]{width:40%;display:inline-block;position:relative;box-sizing:border-box}.step .my-swipe .van-swipe-item .step-item.step-three[data-v-86a55f54]{width:20%}.step .my-swipe .van-swipe-item .step-item.negativeDirection[data-v-86a55f54]{text-align:right}.step .my-swipe .van-swipe-item .step-item.negativeDirection .line[data-v-86a55f54]{left:.10667rem;top:.32rem}.step .my-swipe .van-swipe-item .step-item.negativeDirection .step-title[data-v-86a55f54]{font-size:.32rem;line-height:.48rem;margin-top:.37333rem;text-align:center;margin-right:-60%;margin-left:20%}.step .my-swipe .van-swipe-item .step-item .stepImg[data-v-86a55f54]{position:relative;width:.72rem;height:.72rem}.step .my-swipe .van-swipe-item .step-item .line[data-v-86a55f54]{width:calc(100% - .90667rem);height:.02667rem;border-bottom:.02667rem dashed #dcdcdc;position:absolute;left:.8rem;top:.32rem}.step .my-swipe .van-swipe-item .step-item .line.completedLine[data-v-86a55f54]{border-bottom-color:#8ccf8c!important}.step .my-swipe .van-swipe-item .step-item .step-title[data-v-86a55f54]{font-size:.32rem;line-height:.48rem;margin-top:.37333rem;text-align:center;margin-right:5%;margin-left:-80%}.step .my-swipe[data-v-86a55f54] .van-swipe__indicators .van-swipe__indicator{width:.26667rem;height:.10667rem;background:#88bc88;border-radius:.05333rem;opacity:.5}.step .my-swipe[data-v-86a55f54] .van-swipe__indicators .van-swipe__indicator.van-swipe__indicator--active{width:.50667rem;height:.10667rem;background:#55b955;border-radius:.05333rem;opacity:.7}.swiperSecond[data-v-86a55f54]{padding:.8rem .8rem .8rem .53333rem!important;display:flex}.swiperSecond .step-second[data-v-86a55f54]{width:30%!important}.swiperSecond .step-second.step-narrow[data-v-86a55f54]{width:25%!important}.swiperSecond .negativeDirection .step-title[data-v-86a55f54]{margin-right:-44%!important;margin-left:20%}.box[data-v-86a55f54]{display:flex;flex-direction:column;height:100%;font-size:.37333rem}.box[data-v-86a55f54] .van-tab.van-tab--active{font-size:.42667rem;font-weight:800}.box .inpu_conserf[data-v-86a55f54]{display:flex;flex-wrap:wrap;align-items:center}.box .inpu_conserf div[data-v-86a55f54]{margin-bottom:.21333rem}.box .inpu_conserf div input[data-v-86a55f54]{width:2.93333rem;border:none;outline:none;background:#f8f8f8;padding:.21333rem .21333rem .21333rem .53333rem;border-radius:.45333rem}.box .inpu_conserf .van-icon[data-v-86a55f54]{margin-left:.10667rem;width:.64rem;height:.64rem;background-color:#e72e3a;color:#fff;border-radius:50%;display:flex;justify-content:center;align-items:center}.box .van-tabs[data-v-86a55f54]{flex:1;display:flex;flex-direction:column}.box .van-tabs[data-v-86a55f54] .van-tabs__content,.box .van-tabs[data-v-86a55f54] .van-tabs__content .van-tab__pane{height:100%}.box .van-tabs[data-v-86a55f54] .van-tabs__content .van-tab__pane .tab-contain{display:flex;flex-direction:column;height:100%}.box .van-tabs[data-v-86a55f54] .van-tabs__content .van-tab__pane .tab-contain .step-contain{flex:1;background:#fff;border-top-right-radius:.8rem;border-top-left-radius:.8rem;padding:.42667rem;padding-bottom:2.13333rem}.box .van-tabs[data-v-86a55f54] .van-tabs__content .van-tab__pane .tab-contain .step-contain.bulletinBoard{padding-bottom:2.13333rem}.box .van-tabs[data-v-86a55f54] .van-tabs__content .van-tab__pane .tab-contain .step-contain .form-ele{display:flex;align-items:center;padding:.32rem 0;border-bottom:.02667rem solid #f3f3f3;position:relative}.box .van-tabs[data-v-86a55f54] .van-tabs__content .van-tab__pane .tab-contain .step-contain .form-ele .title{width:2.4rem;font-size:.42667rem;flex-shrink:0}.box .van-tabs[data-v-86a55f54] .van-tabs__content .van-tab__pane .tab-contain .step-contain .form-ele .notice-contain{font-size:.42667rem}.box .van-tabs[data-v-86a55f54] .van-tabs__content .van-tab__pane .tab-contain .step-contain .form-ele .notice-contain p{margin-top:.26667rem}.box .van-tabs[data-v-86a55f54] .van-tabs__content .van-tab__pane .tab-contain .step-contain .form-ele .notice-contain p:first-of-type{margin-top:0}.box .van-tabs[data-v-86a55f54] .van-tabs__content .van-tab__pane .tab-contain .step-contain .form-ele .input-ele{flex:1;border:none;outline:none;background:#f8f8f8;padding:.21333rem 1.06667rem .21333rem .53333rem;border-radius:.45333rem}.box .van-tabs[data-v-86a55f54] .van-tabs__content .van-tab__pane .tab-contain .step-contain .form-ele .downIcon{position:absolute;right:.42667rem;top:.58667rem;z-index:10}.box .van-tabs[data-v-86a55f54] .van-tabs__content .van-tab__pane .tab-contain .step-contain .form-ele .enclosure{flex:1}.box .van-tabs[data-v-86a55f54] .van-tabs__content .van-tab__pane .tab-contain .step-contain .btn{margin:0 .42667rem;margin-top:3.2rem;background:#d03a29;border-radius:.53333rem;height:1.06667rem;line-height:1.06667rem;text-align:center;color:#fff}.box .van-tabs[data-v-86a55f54] .van-tabs__content .van-tab__pane .tab-contain .step-contain .btn .enclosureEnd{width:.48rem;height:.42667rem;margin-right:.16rem;vertical-align:middle}.tab-contain[data-v-86a55f54]{display:flex;flex-direction:column;height:100%}.tab-contain .step-contain[data-v-86a55f54]{flex:1;background:#fff;border-top-right-radius:.8rem;border-top-left-radius:.8rem;padding:.42667rem;padding-bottom:2.13333rem}.tab-contain .step-contain.bulletinBoard[data-v-86a55f54]{padding-bottom:2.13333rem}.tab-contain .step-contain .form-ele[data-v-86a55f54]{display:flex;align-items:center;padding:.32rem 0;border-bottom:.02667rem solid #f3f3f3;position:relative}.tab-contain .step-contain .form-ele .title[data-v-86a55f54]{width:2.4rem;font-size:.42667rem;flex-shrink:0}.tab-contain .step-contain .form-ele .notice-contain[data-v-86a55f54]{font-size:.42667rem}.tab-contain .step-contain .form-ele .notice-contain p[data-v-86a55f54]{margin-top:.26667rem}.tab-contain .step-contain .form-ele .notice-contain p[data-v-86a55f54]:first-of-type{margin-top:0}.tab-contain .step-contain .form-ele .input-ele[data-v-86a55f54]{flex:1;border:none;outline:none;background:#f8f8f8;padding:.21333rem 1.06667rem .21333rem .53333rem;border-radius:.45333rem}.tab-contain .step-contain .form-ele .downIcon[data-v-86a55f54]{position:absolute;right:.42667rem;top:.58667rem;z-index:10}.tab-contain .step-contain .form-ele .enclosure[data-v-86a55f54]{flex:1}.tab-contain .step-contain .btn[data-v-86a55f54]{margin:0 .42667rem;margin-top:3.2rem;background:#d03a29;border-radius:.53333rem;height:1.06667rem;line-height:1.06667rem;text-align:center;color:#fff}.tab-contain .step-contain .btn .enclosureEnd[data-v-86a55f54]{width:.48rem;height:.42667rem;margin-right:.16rem;vertical-align:middle} \ No newline at end of file diff --git a/src/main/resources/views/dist/css/chunk-4d39f26d.e3edf059.css b/src/main/resources/views/dist/css/chunk-4d39f26d.e3edf059.css new file mode 100644 index 0000000..795e6de --- /dev/null +++ b/src/main/resources/views/dist/css/chunk-4d39f26d.e3edf059.css @@ -0,0 +1 @@ +.flex-align-center[data-v-42b1a30a]{display:flex;align-items:center}[data-v-42b1a30a] .from_el .title{width:2.4rem;font-size:.42667rem;flex-shrink:0}[data-v-42b1a30a] .from_el .enclosure{margin-top:.53333rem}[data-v-42b1a30a] .from_el .enclosureBtn{display:inline-block;padding:.21333rem .42667rem;background:#d03a29;border-radius:.10667rem;color:#fff}[data-v-42b1a30a] .from_el .enclosureBtn .enclosureImg{margin-right:.10667rem;width:.34667rem;height:.32rem;vertical-align:middle}.fileList1List[data-v-7d8d9af2]{background-color:#f7f8fa;width:2.13333rem;height:2.13333rem}.fileList1List img[data-v-7d8d9af2]{width:.53333rem;height:.53333rem;margin-left:.8rem;margin-top:.50667rem}.fileList1List h4[data-v-7d8d9af2]{height:.37333rem;margin-top:.21333rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;margin-left:.13333rem}.report .report-title[data-v-7d8d9af2]{padding:.32rem 0;font-size:.42667rem;background:#f8f8f8;margin:0 -.42667rem;padding:.42667rem;color:#333}.report .report-contain[data-v-7d8d9af2]{padding:.42667rem 0}.report .report-contain .word[data-v-7d8d9af2]{font-size:.42667rem;line-height:.53333rem}.report .report-contain .date[data-v-7d8d9af2]{color:#333;font-size:.32rem;margin-top:.42667rem}.vote .vote-title[data-v-7d8d9af2]{padding:.32rem 0;font-size:.42667rem;background:#f8f8f8;margin:0 -.42667rem;padding:.42667rem}.vote .vote-title .voteImg[data-v-7d8d9af2]{width:.48rem;height:.42667rem;margin-right:.26667rem;vertical-align:bottom}.vote .vote-contain[data-v-7d8d9af2]{padding:.21333rem 0}.vote .vote-contain .scoreTitle[data-v-7d8d9af2]{text-align:center;padding:.32rem 0}.vote .vote-contain .vote-item[data-v-7d8d9af2]{padding:.21333rem 0}.vote .vote-contain .vote-item .vote-row[data-v-7d8d9af2]{display:flex;justify-content:space-between;align-items:center}.vote .vote-contain .vote-item .vote-row[data-v-7d8d9af2]:last-of-type{margin-top:.21333rem}.vote .vote-contain .vote-item .vote-row .ticket[data-v-7d8d9af2]{width:.53333rem;height:.53333rem}.vote .vote-contain .vote-item .vote-row .progress[data-v-7d8d9af2]{flex:1}.vote .vote-contain .vote-item .vote-row .vote-right[data-v-7d8d9af2]{width:1.6rem;text-align:center}.evaluate[data-v-7d8d9af2]{margin-top:.8rem;padding:.42667rem .64rem;background:#f8f8f8;border-radius:.21333rem}.evaluate .evaluate-contain[data-v-7d8d9af2]{line-height:.53333rem}.evaluate .evaluate-contain .title[data-v-7d8d9af2]{color:#0071ff}.evaluate .evaluate-bottom[data-v-7d8d9af2]{display:flex;align-items:center;justify-content:space-between;margin-top:.74667rem}.evaluate .evaluate-bottom .date[data-v-7d8d9af2]{color:#8e8f9e}.evaluate .evaluate-bottom .more[data-v-7d8d9af2]{color:#0071ff}.enclosurePopup[data-v-7d8d9af2]{padding:1.06667rem}.enclosurePopup .btn[data-v-7d8d9af2]{background:#d03a29;border-radius:.53333rem;height:1.06667rem;line-height:1.06667rem;text-align:center;color:#fff}.enclosureBtn[data-v-7d8d9af2]{display:inline-block;padding:.21333rem .42667rem;background:#d03a29;border-radius:.10667rem;color:#fff}.enclosureBtn .enclosureImg[data-v-7d8d9af2]{margin-right:.10667rem;width:.34667rem;height:.32rem;vertical-align:middle}.users[data-v-7d8d9af2]{margin-top:-.32rem;padding:.10667rem 0 .21333rem;background-color:#fff;display:flex;flex-wrap:wrap;border-bottom:.02667rem solid #f3f3f3}.users .item[data-v-7d8d9af2]{background-color:#fff2f1;padding:0 .26667rem;font-size:.32rem;color:#333;line-height:.61333rem;border-radius:.29333rem;margin-right:.26667rem;margin-top:.26667rem;position:relative}.users .item .van-icon[data-v-7d8d9af2]{position:absolute;top:0;right:0;transform:translate(50%,-50%);color:#d03a29}.publish[data-v-7d8d9af2]{position:fixed;bottom:0;left:0;width:100%;display:flex;align-items:center;box-sizing:border-box;padding:.42667rem;border-top:.02667rem solid #f8f8f8;background:#fff;z-index:2}.publish input[data-v-7d8d9af2]{height:1.06667rem;background-color:#f8f8f8;border-radius:.16rem;flex:1;margin-right:.32rem;border:none;outline:none;padding:0 .16rem 0 1.06667rem;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAaCAYAAACtv5zzAAAACXBIWXMAAAsTAAALEwEAmpwYAAACfElEQVRIiaWVTUgUYQCG33d2RleErIMHiYjwUniIyNumfLOKnYqgqEMnD0FS0SHBBCEzI6Kw6AeiQ3SxQ5eIQCnNmV0S9pBFGEFRREREP+ilXG139u1QidXurLPObb7vfZ/n+4EZIsIzMjJSXVtbOyhpv6Q1AB5L6k8mkw9LdRhFMDExcYNk5z/DeZI7jTGjxTp2FEE8Hu+en5//SvIwgJoljEEAlQv6+/stY0zfwsLCFpJ3bdveGARBn6ROALakTaW6yxK4rttbKBRO/n7dlcvlXsRisd5YLHY+n88PklxXqlv2DiYnJxtzudy0pJoi06PGmB1TU1PVzc3NcxUJfN+/L6kjJNLiuu6jUpOhR+R53r4wOMms4zivwhglBZlMZlU2m70QVgZwJpFIfK5IkM1mTwNoCOm+rK+vP1tmAcUFnuc1A+gK6YlkV1NT04/IAkmW7/vXAMRCesPGGK8cvKgglUodArA1pDNbVVV1bDnw/wTpdLohCIJTZTq95S62pKBQKFwEUBeSzxhjri8X/pcgnU5vD4Jgb0g2L+kgSUUWeJ4XD4LgaliQ5CXXdZ9FgS8KAHQDaAzJvZd0Iip8UUCyQyq9c5JHjTHfKhKMjY3VSboFYBuKfPxI3jPG3KkEDgC24zhPAVyWlAQwAKBlyfx3x3GOVAoHfv2NLABDJN+S7JN0TlIPgNUAjicSiXcrEpCckbRe0gZJwySfAOhxXXd8JeBFAYDZpQOSNpM8MD4+Pt3e3v5JElOp1B5Ja6OAJRVIPrAlzQAAyTkAN4MgGGpra3vzJ+j7/m4At6OunCQAfLQBvCY5YFnWldbW1i9Fss8BfAAQeQeWZY39BA3V/UPBTjehAAAAAElFTkSuQmCC);background-repeat:no-repeat;background-size:.37333rem;background-position:.26667rem}.publish p[data-v-7d8d9af2]{display:inline-block;height:1.06667rem;line-height:1.06667rem;width:1.6rem;text-align:center;background:#d03a29;border-radius:.16rem;color:#fff}.step .my-swipe .van-swipe-item[data-v-7d8d9af2]{height:4rem;box-sizing:border-box;padding:.8rem .8rem .8rem 1.6rem}.step .my-swipe .van-swipe-item[data-v-7d8d9af2]:nth-of-type(2){padding:.8rem 1.6rem .8rem .8rem}.step .my-swipe .van-swipe-item .step-item[data-v-7d8d9af2]{width:40%;display:inline-block;position:relative;box-sizing:border-box}.step .my-swipe .van-swipe-item .step-item.step-three[data-v-7d8d9af2]{width:20%}.step .my-swipe .van-swipe-item .step-item.negativeDirection[data-v-7d8d9af2]{text-align:right}.step .my-swipe .van-swipe-item .step-item.negativeDirection .line[data-v-7d8d9af2]{left:.10667rem;top:.32rem}.step .my-swipe .van-swipe-item .step-item.negativeDirection .step-title[data-v-7d8d9af2]{font-size:.32rem;line-height:.48rem;margin-top:.37333rem;text-align:center;margin-right:-60%;margin-left:20%}.step .my-swipe .van-swipe-item .step-item .stepImg[data-v-7d8d9af2]{position:relative;width:.72rem;height:.72rem}.step .my-swipe .van-swipe-item .step-item .line[data-v-7d8d9af2]{width:calc(100% - .90667rem);height:.02667rem;border-bottom:.02667rem dashed #dcdcdc;position:absolute;left:.8rem;top:.32rem}.step .my-swipe .van-swipe-item .step-item .line.completedLine[data-v-7d8d9af2]{border-bottom-color:#8ccf8c!important}.step .my-swipe .van-swipe-item .step-item .step-title[data-v-7d8d9af2]{font-size:.32rem;line-height:.48rem;margin-top:.37333rem;text-align:center;margin-right:5%;margin-left:-80%}.step .my-swipe[data-v-7d8d9af2] .van-swipe__indicators .van-swipe__indicator{width:.26667rem;height:.10667rem;background:#88bc88;border-radius:.05333rem;opacity:.5}.step .my-swipe[data-v-7d8d9af2] .van-swipe__indicators .van-swipe__indicator.van-swipe__indicator--active{width:.50667rem;height:.10667rem;background:#55b955;border-radius:.05333rem;opacity:.7}.swiperSecond[data-v-7d8d9af2]{padding:.8rem .8rem .8rem .53333rem!important;display:flex}.swiperSecond .step-second[data-v-7d8d9af2]{width:30%!important}.swiperSecond .step-second.step-narrow[data-v-7d8d9af2]{width:25%!important}.swiperSecond .negativeDirection .step-title[data-v-7d8d9af2]{margin-right:-44%!important;margin-left:20%}.box[data-v-7d8d9af2]{display:flex;flex-direction:column;height:100%;font-size:.37333rem}.box[data-v-7d8d9af2] .van-tab.van-tab--active{font-size:.42667rem;font-weight:800}.box .inpu_conserf[data-v-7d8d9af2]{display:flex;flex-wrap:wrap;align-items:center}.box .inpu_conserf div[data-v-7d8d9af2]{margin-bottom:.21333rem}.box .inpu_conserf div input[data-v-7d8d9af2]{width:2.93333rem;border:none;outline:none;background:#f8f8f8;padding:.21333rem .21333rem .21333rem .53333rem;border-radius:.45333rem}.box .inpu_conserf .van-icon[data-v-7d8d9af2]{margin-left:.10667rem;width:.64rem;height:.64rem;background-color:#e72e3a;color:#fff;border-radius:50%;display:flex;justify-content:center;align-items:center}.box .van-tabs[data-v-7d8d9af2]{flex:1;display:flex;flex-direction:column}.box .van-tabs[data-v-7d8d9af2] .van-tabs__content,.box .van-tabs[data-v-7d8d9af2] .van-tabs__content .van-tab__pane{height:100%}.box .van-tabs[data-v-7d8d9af2] .van-tabs__content .van-tab__pane .tab-contain{display:flex;flex-direction:column;height:100%}.box .van-tabs[data-v-7d8d9af2] .van-tabs__content .van-tab__pane .tab-contain .step-contain{flex:1;background:#fff;border-top-right-radius:.8rem;border-top-left-radius:.8rem;padding:.42667rem;padding-bottom:2.13333rem}.box .van-tabs[data-v-7d8d9af2] .van-tabs__content .van-tab__pane .tab-contain .step-contain.bulletinBoard{padding-bottom:2.13333rem}.box .van-tabs[data-v-7d8d9af2] .van-tabs__content .van-tab__pane .tab-contain .step-contain .form-ele{display:flex;align-items:center;padding:.32rem 0;border-bottom:.02667rem solid #f3f3f3;position:relative}.box .van-tabs[data-v-7d8d9af2] .van-tabs__content .van-tab__pane .tab-contain .step-contain .form-ele .title{width:2.4rem;font-size:.42667rem;flex-shrink:0}.box .van-tabs[data-v-7d8d9af2] .van-tabs__content .van-tab__pane .tab-contain .step-contain .form-ele .notice-contain{font-size:.42667rem}.box .van-tabs[data-v-7d8d9af2] .van-tabs__content .van-tab__pane .tab-contain .step-contain .form-ele .notice-contain p{margin-top:.26667rem}.box .van-tabs[data-v-7d8d9af2] .van-tabs__content .van-tab__pane .tab-contain .step-contain .form-ele .notice-contain p:first-of-type{margin-top:0}.box .van-tabs[data-v-7d8d9af2] .van-tabs__content .van-tab__pane .tab-contain .step-contain .form-ele .input-ele{flex:1;border:none;outline:none;background:#f8f8f8;padding:.21333rem 1.06667rem .21333rem .53333rem;border-radius:.45333rem}.box .van-tabs[data-v-7d8d9af2] .van-tabs__content .van-tab__pane .tab-contain .step-contain .form-ele .downIcon{position:absolute;right:.42667rem;top:.58667rem;z-index:10}.box .van-tabs[data-v-7d8d9af2] .van-tabs__content .van-tab__pane .tab-contain .step-contain .form-ele .enclosure{flex:1}.box .van-tabs[data-v-7d8d9af2] .van-tabs__content .van-tab__pane .tab-contain .step-contain .btn{margin:0 .42667rem;margin-top:3.2rem;background:#d03a29;border-radius:.53333rem;height:1.06667rem;line-height:1.06667rem;text-align:center;color:#fff}.box .van-tabs[data-v-7d8d9af2] .van-tabs__content .van-tab__pane .tab-contain .step-contain .btn .enclosureEnd{width:.48rem;height:.42667rem;margin-right:.16rem;vertical-align:middle}.tab-contain[data-v-7d8d9af2]{display:flex;flex-direction:column;height:100%}.tab-contain .step-contain[data-v-7d8d9af2]{flex:1;background:#fff;border-top-right-radius:.8rem;border-top-left-radius:.8rem;padding:.42667rem;padding-bottom:2.13333rem}.tab-contain .step-contain.bulletinBoard[data-v-7d8d9af2]{padding-bottom:2.13333rem}.tab-contain .step-contain .form-ele[data-v-7d8d9af2]{display:flex;align-items:center;padding:.32rem 0;border-bottom:.02667rem solid #f3f3f3;position:relative}.tab-contain .step-contain .form-ele .title[data-v-7d8d9af2]{width:2.4rem;font-size:.42667rem;flex-shrink:0}.tab-contain .step-contain .form-ele .notice-contain[data-v-7d8d9af2]{font-size:.42667rem}.tab-contain .step-contain .form-ele .notice-contain p[data-v-7d8d9af2]{margin-top:.26667rem}.tab-contain .step-contain .form-ele .notice-contain p[data-v-7d8d9af2]:first-of-type{margin-top:0}.tab-contain .step-contain .form-ele .input-ele[data-v-7d8d9af2]{flex:1;border:none;outline:none;background:#f8f8f8;padding:.21333rem 1.06667rem .21333rem .53333rem;border-radius:.45333rem}.tab-contain .step-contain .form-ele .downIcon[data-v-7d8d9af2]{position:absolute;right:.42667rem;top:.58667rem;z-index:10}.tab-contain .step-contain .form-ele .enclosure[data-v-7d8d9af2]{flex:1}.tab-contain .step-contain .btn[data-v-7d8d9af2]{margin:0 .42667rem;margin-top:3.2rem;background:#d03a29;border-radius:.53333rem;height:1.06667rem;line-height:1.06667rem;text-align:center;color:#fff}.tab-contain .step-contain .btn .enclosureEnd[data-v-7d8d9af2]{width:.48rem;height:.42667rem;margin-right:.16rem;vertical-align:middle} \ No newline at end of file diff --git a/src/main/resources/views/dist/index.html b/src/main/resources/views/dist/index.html index c10bb64..42c6c4b 100755 --- a/src/main/resources/views/dist/index.html +++ b/src/main/resources/views/dist/index.html @@ -10,4 +10,4 @@ // console.log(wpk,'稳定性监控开启'); } catch (err) { console.error('WpkReporter init fail', err); - }
\ No newline at end of file + }
\ No newline at end of file diff --git a/src/main/resources/views/dist/js/app.8a5e34fe.js b/src/main/resources/views/dist/js/app.66372066.js similarity index 99% rename from src/main/resources/views/dist/js/app.8a5e34fe.js rename to src/main/resources/views/dist/js/app.66372066.js index 2fa7f1a..f23f4da 100644 --- a/src/main/resources/views/dist/js/app.8a5e34fe.js +++ b/src/main/resources/views/dist/js/app.66372066.js @@ -1 +1 @@ -(function(e){function n(n){for(var a,t,i=n[0],o=n[1],p=n[2],d=0,l=[];d-1,t=!!c.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/);aplus_queue.push({action:"aplus.setMetaInfo",arguments:["appId",a?"28302650":t?"28328447":"47130293"]}),aplus_queue.push({action:"aplus.setMetaInfo",arguments:["aplus-waiting","MAN"]})},"3e39":function(e,n){e.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAADF0lEQVRYR+2YP2gTURzHf793KZTSoUOhKVjoWLCCIA6CDoJFChUdHFwEBek7elApKgoi3iAoWMji9fW1g93q0EFQ0KGgokPBDgUFM9hNSKgdOkht4eV+8gt3If1jcne5SIS8KeF+fz75vn+5L0KLD2xxPqgA5nK5nq6uLgcALgPAEAB01oInok0AeC+EeDY+Pv6hWT+0DDg3N3eUiN4CwJEkjYho2rbtO0ly6+Wg1rqXiL4gYpaDicgg4hoi/vpbMhFlAGAYAHrCGIYUQryu13D/c2NMcWNjY911XXNYLs7Ozj5FxNvBw7wx5oLjON/rNXJdtzObzd5ExCf1YiM83yKihVKp9MBxnD3CsILfgjXH6p20bXs1QsFKiNb6IwCcjpNTI5YFOus4TjGMYUAKv0gpY+9qpdQ1IcTzcAYA4EUcWCIaRsSxcFMS0Ypt26dSA/Q8rzuTyfwMGmwWCoUB13V34kAqpYaFEO8AoJfzSqXSyMTExDJ/blhBLqK1XgSAK8EmWyoWi1fjQmqt7wPAo6BG5VRIC3CIiD4jYneg3CYRfY2jIgBkEZHPX94LC7ZtX09NQS6klBpDxMUqyJh8e8I/GWNGeUenomBYWik1aFnWXd/3L4XnagOUy1LKkVQBq2F48wghyos+yjDGdHZ0dFzkdYiIfBHwVN9oGmAUqMNitNa3AGA6AFxpRUBWnY8tVjDdNZhUtf151ZdHyykYnKuV260NmGTa21OcRLXqnLaCbQUbVaDR/PYa/GcKep6XtSzrYfjWF7HxDiK+lFLqiPEHwiJPsdb6MQDcS9Jod3d3YHJy8keS3MiAMzMz5yzLelXPpzkEYrVQKJyJ++IU1okMyAnsIPT19ZVtkSjD9/2d6hfvKDn/1d8tFqS/v/93CN2w9ZFEoVo5SqnzQgh22njkD5hHADAmpVxPu3GUevPz8yd8318CgEGOZ8fsgP0WFFojoq0oRdOKQUS28o6H9YioiIjHymZR4I28SWpgpgVZVYePpxEpZT6xBdwEKDac8gCwtL297U1NTZVnMLbd1gSwmiVbHvAPDdSz6wpWo8IAAAAASUVORK5CYII="},"3f33":function(e,n,c){},4930:function(e,n){e.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAAD9ElEQVRYR+2YT2gdVRTGz3ffg3TRhQslLyhYoaBiRUUXigUrVFBUaFAxmy7Edu4M48KAguLCERQVXZTgZO5MnlCpC6FCCwYUGrELwQiCiBWzKFhQeG8hmEWym7lH7mMm3LzOy8z7k5BF7nLuzD2/Ofec7557QBMY7Xb7zjRNPyWip4noEBGtAAiklD+PuzzGXaDdbj+eZdllIrrVXouZUwBnpJRfjGNjLECl1MsAzudeG8RhPPneqJAjA8Zx/A4RvW8ZXtNav0REG0KIC0R0vJhj5vPdbvdsEATpsKBDAwZB0JyZmYmI6ExhDMDVzc3N2fn5+XXzLH/HQM5ZQCtpms76vr8xDORQgGEYHm42m5eI6KRl5MtOp/NKmXfiOP6QiN6yPHkty7KnfN/v1oWsDRhF0e1CiBUiusdavDK+lFKvEpEC0DTfMXNXCHHScZw/6kDWAlxaWno4y7JlAK3cSMrMZz3PMwlSOZRSRn4uAjicf2+2+ZTrut9XfVwJGMfxs8z8VbE4Ea1rrWc9z7tatbg9H0XRMQBX7J+sI0M7AsZx7DPzuWJ7iOgGET0jpVwbBq54NwzDVqPRMJDH6oZJKaDJwlar9QmA160AX82yzGRh7QAv+4k80S7mp07vlZ1k6CbAfAEjEacsA5fTND09rEQMVO4SqTLHY5kMbQPMt+ASgEetxc91Op03RxHZqjDoF3tmvkmGtgAXFxfvFkJ8B+BIkalmi6WUYZWhceajKJoDcGGQDPUAkyR5QmttZGRLBgCcllKaImDXRxzHx5n52zIZQpIkL2itjYz0hNQMc3Q5jvPkrpNZBpIk+YGZT1hJmQoh5hDH8X9EdIsNsx8Ac551A3jFnK3M/AuAR/aDB5l51SQqM3+NIAgOTU9PH83LpL/2A6DW+i7D4Xneja0sjqLoiBBi3wAauJ6zitg7AKyQBDuLzRZPzINKqQcAvMbMJo63BoDrzPyZ67q/1ZGrXQHsL0b7QczNjohc13U/r4KcOGAYhkcbjcaftsCXQRjILMvu9X3/+k6QEwdUSply7I3c6IrW+gMbQAhhbn3F3eUjKeXbew34DYDnjFGt9f2e512zAcIwfLDZbP5qnjHzsuu6z+8p4KAtGVW2Jr7FB4DjniQHHjzw4JDVUWUWLyws3DE1NfV3rlurrus+NopujSozSqmfittkmqYzxf1727WzKP/rHE+TTJK+Y/NfKeVtxY/2Ay5Zfb81AC8O6kJNCjBJkvtMaV90zQAox3G8UkBTtAL43WoUVRUhk543jamHilpwW0Vtxc4JAOac7d2R92ow8wYA05j6cVtdWQaQe/Jd0+Ap2mW7CPoPgOUsyz62PVfY+x9s6mCk29MSWAAAAABJRU5ErkJggg=="},5321:function(e,n){e.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAADgklEQVRYR+2ZMWgUQRSG35u9IxYRLCwSsNBOQdFCQVBBC7EKClpEVLSRt8ueaLBQC/FEQQVFiR67c1hEVBRsLATtFIwgaCFoYSMKCntFBMGQFNmdJ3PshM16l1v39iJKptu5N+9997+duXnvEFKjWq2WBgcHDwDAQWbegIjL0zZFPjPzBCK+A4B7QRDcr1arYdI/Jh9qtdpAqVR6BABbi4TI6ouZX0RRtN913YZZMwuolRsYGHiJiJuzOuyFHTO/bjQa24ySs4BSShcAbiWCXgaAa0Q00QsQ41NKqV+hkwBwOhGnQkQ1/ZwEfAMAG2OjG0Q00kuwtG8p5XUAOBHPvyWiTXMAfd//iYj9elIptc5xnA8LCeh53lohxHsdk5knbdtemlaQDZBSapXjOF8WGHClEOKziUlEzewmU/xvAtZqtX7Lsi4AwIaCFX0XRdFZ13UntV/P8/IpKKW8lNphRXJeJqIz3QKeA4BqkVQJX1UiOt8VYPzTd4qZNwshmru826GUmkTE10EQXDEHcu4UdwuTdf0iYFal2tktKvjXFIylv9uDO+K4UuqQ+UnNnWIp5U0AqHSrUJv1t4joWFfnoJTyMACM9QjwCBHd6QowXrxdCLEFAEoFgYZKqVeO47ww/nKnuCCgjm4WATtK1MHg/1ZQX1qFEOsty5p3kzDzNyL6lEfN3Ap6nrdFCPEEAJZlDJyrIswNWK/XPWa2M8I1zUzBk14TZ2K3ZVmrlVIrUp/3I+I+M5e5aPI8T5+BTwFgSUbI20R0NG3r+/5xRNQ3846ZYObQtu2y9pGpqtPVv1JqbQbAiVb1tO/71xHRFOUd3TDzB9u212UG7OhxHgPP83YJIZ4ZEx0cEceUUt/NnBBiNwDsSdhctG377IIA+r7/HBG3x8GfBUEwlGyx1ev1vUqph4jYPCGYuTE9Pb1mZGTkx0IBziSCb7Jt+61RKn4vbyQSMBGG4U7XdXW/sDkyvYN5Uzw6Orqir6/vq1kfBEHZqJeG08oh4g4i+piMNwvYi+ZRu7Mt3QxoB5dWsPD2WyvAFjv6YxiGO5Jd1ZYKtmpgzszMXK1UKrO77U9TnQYEgIcAMJzwMy/cHAX/Qgt4fGpqasjs1nZf/rcmerlcfsDM5lj4U9Gy2j8Ow/CQ6WzNt2gOoDaMlRxGRF2L6JZbIX9D6I0ghBiPouiO4zj68pFp/AJUQ6BHLPesBwAAAABJRU5ErkJggg=="},5367:function(e,n){e.exports="data:image/png;base64,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"},"56d7":function(e,n,c){"use strict";c.r(n);var a=c("2b0e"),t=function(){var e=this,n=e.$createElement,c=e._self._c||n;return c("div",{attrs:{id:"app"}},[c("keep-alive",[e.$route.meta.iscache?c("router-view"):e._e()],1),e.$route.meta.iscache?e._e():c("router-view")],1)},h=[],u={},i=u,o=(c("7faf"),c("2877")),p=Object(o["a"])(i,t,h,!1,null,null,null),d=p.exports,l=c("a18c"),k=c("2f62");a["a"].use(k["a"]);var f=new k["a"].Store({state:{},mutations:{},actions:{},modules:{}}),r=function(){var e=this,n=e.$createElement,c=e._self._c||n;return c("div",{staticClass:"navVar-box"},[c("van-nav-bar",{attrs:{"left-arrow":e.leftArrow,title:e.title},on:{"click-left":e.onClickLeft},scopedSlots:e._u([{key:"right",fn:function(){return[e._t("right")]},proxy:!0}],null,!0)})],1)},A=[],s={props:{title:String,leftArrow:{default:!1,type:Boolean}},methods:{onClickLeft(){this.$router.go(-1)}}},m=s,b=(c("8d12"),Object(o["a"])(m,r,A,!1,null,"fe379062",null)),g=b.exports,v=function(){var e=this,n=e.$createElement,c=e._self._c||n;return c("van-tabbar",{staticClass:"tabbar",attrs:{placeholder:"",route:"","active-color":"#333","inactive-color":"#333"},model:{value:e.active,callback:function(n){e.active=n},expression:"active"}},[c("van-tabbar-item",{attrs:{replace:"",to:"/"},scopedSlots:e._u([{key:"icon",fn:function(n){return[c("img",{attrs:{src:n.active?e.icon1.active:e.icon1.inactive}})]}}])},[c("span",[e._v("首页")])]),"admin"==e.usertype?c("van-tabbar-item",{attrs:{to:"/comprehensiveMessage"},scopedSlots:e._u([{key:"icon",fn:function(n){return[c("img",{attrs:{src:n.active?e.icon1.active:e.icon1.inactive}})]}}],null,!1,3474439714)},[c("span",[e._v("政务信息")])]):e._e(),"admin"==e.usertype?c("van-tabbar-item",{attrs:{replace:"",to:"/bankdataindex"},scopedSlots:e._u([{key:"icon",fn:function(n){return[c("img",{attrs:{src:n.active?e.icon2.active:e.icon2.inactive}})]}}],null,!1,1956975234)},[c("span",[e._v("资料信息")])]):"township"==e.usertype?c("van-tabbar-item",{attrs:{replace:"",to:"/liaisonStation"},scopedSlots:e._u([{key:"icon",fn:function(n){return[c("img",{attrs:{src:n.active?e.icon7.active:e.icon7.inactive}})]}}])},[c("span",[e._v("联络站活动")])]):"rddb"==e.usertype?c("van-tabbar-item",{attrs:{replace:"",to:"/deputyActivity"},scopedSlots:e._u([{key:"icon",fn:function(n){return[c("img",{attrs:{src:n.active?e.icon8.active:e.icon8.inactive}})]}}])},[c("span",[e._v("代表履职")])]):e._e(),"rddb"==e.usertype||"admin"!=e.usertype?c("van-tabbar-item",{attrs:{replace:"",to:"/conferencepapersNew"},scopedSlots:e._u([{key:"icon",fn:function(n){return[c("img",{attrs:{src:n.active?e.icon3.active:e.icon3.inactive}})]}}],null,!1,3846340322)},[c("span",[e._v("会议文件")])]):e._e(),"township"==e.usertype?c("van-tabbar-item",{attrs:{replace:"",to:"/suggestions"},scopedSlots:e._u([{key:"icon",fn:function(n){return[c("img",{attrs:{src:n.active?e.icon3.active:e.icon3.inactive}})]}}],null,!1,3846340322)},[c("span",[e._v("选民建议")])]):e._e(),c("van-tabbar-item",{attrs:{replace:"",to:"/mine"},scopedSlots:e._u([{key:"icon",fn:function(n){return[c("img",{attrs:{src:n.active?e.icon4.active:e.icon4.inactive}})]}}])},[c("span",[e._v("我的信息")])])],1)},y=[],E={data(){return{usertype:localStorage.getItem("usertype"),active:0,icon1:{active:c("96c9"),inactive:c("4930")},icon2:{active:c("0fa0"),inactive:c("5321")},icon3:{active:c("eb26"),inactive:c("3e39")},icon4:{active:c("9b6c"),inactive:c("81f5")},icon5:{active:c("ffd5"),inactive:c("a335")},icon6:{active:c("ee15"),inactive:c("bea3")},icon7:{active:c("8244"),inactive:c("5367")},icon8:{active:c("7f90"),inactive:c("aaa7")}}}},C=E,w=(c("edeb"),Object(o["a"])(C,v,y,!1,null,"3ee714f8",null)),P=w.exports,Q=c("b970");c("157a"),c("3f33"),c("5cfb");a["a"].use(Q["a"]),a["a"].component("navBar",g),a["a"].component("tabbar",P),a["a"].config.productionTip=!1,ZWJSBridge.onReady(()=>{ZWJSBridge.getUiStyle({}).then(e=>{switch(e.uiStyle){case"normal":localStorage.setItem("UiStyle","normal"),document.documentElement.style.fontSize="50px";break;case"elder":localStorage.setItem("UiStyle","elder"),document.documentElement.style.fontSize="60px";break;default:localStorage.setItem("UiStyle","normal"),document.documentElement.style.fontSize="50px";break}}).catch(e=>{localStorage.setItem("UiStyle","normal"),document.documentElement.style.fontSize="50px"})}),new a["a"]({router:l["a"],store:f,render:e=>e(d)}).$mount("#app")},"7f90":function(e,n){e.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAADnklEQVRYR+2YT0gUURzHv7+ZVRQilAo8dBAynSXB3TJ1lqC8GdVBLFpJqA6dKqhzBUXeC6pThB6MigoPFXrTQ7jrn9y1P7hpwR46CBWGCC67O/OLtzq7s+uu7q6z6wbNcea99/2837zve7/fI5T4QyXOh3WAM61KF0vUA3AziPYWZQLMPwCaIp0HmsYDr82accCJw7U15WUVgwC1FQUqowh7w5FQZ8tkcEE0iQHG4GwVHhDVbi/cmjpzMBwNqQIyBuhXlSEQdSTguF9jfiExBYoBrBMrMtFZgC7E9ZiHHZ7AcfqoKkd1olHjg65p3QfH554XAyxVY7q13i3J8jPjvcR8jPwupc8gZ8a3P0u/nO1ffi5vB+DIgT07qnbu9hGhblWf+8mn2ucTL2Jv/eHIynFjkRYLdNWklUMAHIamCBj5XPYIAbYkEMaCTdM6GifmZooB+Lmlvikqy8Mg1Jj1GIiS32XnDBDLjKjbOTb/rpCQPtf+EwSbWPM70ukkAbLOFyHRYyOiYgZgXHN6Zh8VAtKn2i+DcD9JT+dLJFGfoZcE6BibJV+bcowkGgRQZbL8w0VP4Hq7ALbgGQFs1apyD0RXTMP9YZ07nd7AqPmvrgMUHabUekWG/CbJPMxvF5d+d2/V4cKp1Tt3PQPRSbMZNGinmj1zsX13U0DRaM1VLwEcMc1ySw5P51QA78ORlTPmXSMrQAE1UltbUV1T0QeJ3InfnZ/D0zpV5+eLC6GL7cFgyLxysgY0Ovnb7Hch4aZpkJwcntapOnod3tlb6ZZ0zoBiEF+bciEfh2dyqtMb6M/kt7wA1yCzdvhmTt1oM8gbMFuHZ+PUggFmdDhzEICRBblTcst1Ti0oYEaHp1PN4NSCAxoCPlfDDUC6nZpwiGNS0rm3yRu4k+vhs6U1mE7sg7qvTuby8yBuXvvu1xB5csjz/VuucFmfJPkMbFUfyyNoFVj8YDClgGmTBasFcx3vfwRzjVhq+38rguaiSWTUW529Ff0TEeRQUtkZZc1uZLVWCOUzxqRrX2MZyj+JvrGy01y4g/mhwxO4ms/AVvXxq8qDRK0iCvfVImkkRiyOJ7C7aSz5Cswq8c3GmXEpXQx6ZbRjndvXXR7FimXwALE+UEZyXkfVZiCp3yOs1TFJPQzqiZ/pxuVRPH0q5eu3OGRZpaiHt/kCE95wZCX5AtMc8unWhtOSJJ3bjitgXdefHhz/Gl+Dgqsk9r2N1mzJA/4FWUkbIGAvjQcAAAAASUVORK5CYII="},"7faf":function(e,n,c){"use strict";var a=c("b8ff"),t=c.n(a);t.a},"81f5":function(e,n){e.exports="data:image/png;base64,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"},8244:function(e,n){e.exports="data:image/png;base64,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"},"8d12":function(e,n,c){"use strict";var a=c("25ca"),t=c.n(a);t.a},"96c9":function(e,n){e.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAAENElEQVRYR+2YT2gcdRTH33d2NuwhlPQfVBRcabo7aSO7S5NmZ1uwgQopWmhQaS49iC0oeuhBQenBCopKPfSgWBAhEg+FFhpoQCGR5FAy0yZ1NjXtTteIAT0UrCaUQOP+mSezm5nMNrPd2d2xzSF73N9v3vv83u/3vu/9fiAffrdTHc/+y/wFgD4mCoF5DFw8E1N/vdaseTRrQEtG95OAYRC2OW0xUUEw+ERM1b9rxkdTgOlk5BgJwiARQtUgYPCZmKp/1Chkw4BaMnoagvCx7ZhZz+fxmijyEgQMEdGBVSgeXJjUT/YSFeoFrRtwnEhsS0W/BgknHHAT/GC5P5GeXzT/M+dsTkpDJGDAmsPMY4v3/+7vvfXXUj2QdQGO79ne2rZp62UAhxxOvl+YzLzuFp20LH1KwPuOhczmCssv7puav+sV0jNgWo48TSSMESBZxr2crxk5+oYB4TyIxNJ3THepkD8Un5q75QXSE+DNHmmvIWCEQDvKPqhABp9MqPqgFyc35GhfAMJFImpdmb8ELh6NKdmfan1fE1BL7XoJJF5wGF9kg/sTqj5Ry7hzfKprZ2cw2DLqXKQXGXokoCZ3vE2gc6vbw/MFMg53KVm9Hjhr7vXu8I4WMTRKQKfXY+IKaGbhFjl6liGcckiFmssv99dzwN0WYSba5k1bLxLQ50WG1gCWDWwZIghHV7OPhhfu3zter0RUi7KbVFWToQrA0hYEQ5eJkLS3gI1z/yh33mtEZGsdAxexXyNDNuDM/miUDfxIQNjOVKZTCSXzVS1HzYz/3BMZQCAwVE2GSoA3ZekFAxhxygBz8XhCyQ4349zrt9M9kQNiIPCDmwxhJiW9YhAu2CsohY8n4ore69WBH/PSsjROwEHLVqkbIh5AOtWxQERtFU7WAeAKzyI0WRo1aysTT4PQVS5HTzqCrJqJysyXMB4Oh1q3BdpFMWi2Sb+vB0A2+DmTI6Hq83YWa0kpvJ4ATTgTcgPQa4Y7s9jcYt8iOLsvEsuLeAeMdicMg+eCBf6y83p2xgvk/wK4phl9iKSkZWy8GVPufFsL0nfAG/LOdgEtmQqBd6EwIQ3OdexVfpt7FKTvgJosnQXwblk2eYyYPqkAAJ227y7Mn8UV/YPHCpiWpSsEvGw6zefo+e7pzKwTQOveFUdQ1FZ0dSSu6EceN6BdO51ZZ0HUq6u+b3E1gxuAXmvxRgSbrcUbEXw4gmpP+zOhQPCPchayGp/U5UZ0q+EsTkmKdZvM5R88Zd2/K66dVvvvpTz5ucXOssnE9xKT+nZroRWAWir6jf3ux6xTQXg1PnXb9RXKL8B09+49JBqX7FczpvNxJfOWO2C5q/7Fcf2r1YT4PW4+TCWsXrCio3acnYMQcOUJQC4VisXDXdeyV52rdn08KtdR+pAYfdZzmd+hsu0x/0mEEWb+3Bk5a/w/mc842ZkSd6kAAAAASUVORK5CYII="},"9b6c":function(e,n){e.exports="data:image/png;base64,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"},a0b2:function(e,n,c){},a18c:function(e,n,c){"use strict";var a=c("2b0e"),t=c("8c4f");c("2606");a["a"].use(t["a"]);const h=[{path:"/rdOffice",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-6dc0c71d"),c.e("chunk-51402ee9"),c.e("chunk-472618c0")]).then(function(){var n=[c("0bd7")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:89,page_name:"机关办公端"}},{path:"/rdBehalf",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-6dc0c71d"),c.e("chunk-8e679858")]).then(function(){var n=[c("5bcc")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:90,page_name:"代表端"}},{path:"/rdVoters",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-6dc0c71d"),c.e("chunk-5ba1f0d4")]).then(function(){var n=[c("755d")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:91,page_name:"选民端"}},{path:"/rdStreet",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-6dc0c71d"),c.e("chunk-51402ee9"),c.e("chunk-b6b7700a")]).then(function(){var n=[c("a927")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:92,page_name:"乡镇端"}},{path:"/",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-6dc0c71d"),c.e("chunk-51402ee9"),c.e("chunk-472618c0")]).then(function(){var n=[c("0bd7")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:1,page_name:"机关办公"}},{path:"/home",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-6dc0c71d"),c.e("chunk-51402ee9"),c.e("chunk-4a8d49a6")]).then(function(){var n=[c("37f9")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:2,page_name:"机关办公"}},{path:"/voter",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-21595cf0")]).then(function(){var n=[c("edae")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:3,page_name:"选民登录"}},{path:"/login",name:"login",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-3384c9d4")]).then(function(){var n=[c("9ed6")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:4,page_name:"首页"}},{path:"/dingtalkPage",name:"dingtalkPage",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-68dbbd28")]).then(function(){var n=[c("2ac3")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:5,page_name:"浙政钉绑定账号"}},{path:"/dingcomeback",name:"dingcomeback",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-2cb20236")]).then(function(){var n=[c("54f1")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:6,page_name:"去浙政钉登录"}},{path:"/opinionList",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-8372deb0")]).then(function(){var n=[c("6315")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:7,page_name:"选民意见"}},{path:"/opinionDetails",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-675c53ce")]).then(function(){var n=[c("ec0b")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:8,page_name:"问题详情"}},{path:"/authorize",component:e=>c.e("chunk-2d0e454c").then(function(){var n=[c("9087")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:9,page_name:"去登陆"}},{path:"/modifyPassword",name:"modifyPassword",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-4c3cb1ea")]).then(function(){var n=[c("45a2")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:10,page_name:"修改密码"}},{path:"/bankdataindex",name:"bankdataindex",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-2336794b")]).then(function(){var n=[c("1133")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:11,page_name:"资料库"}},{path:"/register",name:"register",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-73b71e08")]).then(function(){var n=[c("b953")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:12,page_name:"用户注册"}},{path:"/bankdata",name:"bankdata",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-1e353ebe")]).then(function(){var n=[c("e088")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:13,page_name:"资料库"}},{path:"/liaisonStation",name:"liaisonStation",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-dcb4b0f6")]).then(function(){var n=[c("fa7c")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:14,page_name:"联络站活动"}},{path:"/liaisonStation/add",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-f7450a18")]).then(function(){var n=[c("b71f")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:15,page_name:"发布联络站活动"}},{path:"/liastationDetail",name:"liastationDetail",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-ac308062")]).then(function(){var n=[c("54cb")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:16,page_name:"联络站详情"}},{path:"/meeting",name:"meeting",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-e3384866")]).then(function(){var n=[c("a0ee")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:17,page_name:"会议"}},{path:"/suggestions",name:"suggestions",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3e12ce13")]).then(function(){var n=[c("3f62")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:18,page_name:"选民建议"}},{path:"/suggestionsdeatil",name:"suggestionsdeatil",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-4f963893")]).then(function(){var n=[c("d825")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:19,page_name:"建议详情"}},{path:"/sugdetailfront",name:"sugdetailfront",component:e=>c.e("chunk-db9510f8").then(function(){var n=[c("2e70")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:20,page_name:"建议详情"}},{path:"/distribution",name:"distribution",component:e=>c.e("chunk-73aa39a0").then(function(){var n=[c("22bc")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:21,page_name:"分配"}},{path:"/meeting/detail",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-c76e2e8c")]).then(function(){var n=[c("0def")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:22,page_name:"会议详情"}},{path:"/addmeeting",name:"addmeeting",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-9556c9b6")]).then(function(){var n=[c("f91b")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:23,page_name:"发布会议"}},{path:"/peoplecongress",name:"peoplecongress",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-56a5731e")]).then(function(){var n=[c("7ff5")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:24,page_name:"人大代表目录"}},{path:"/peoplecongress/type",component:e=>c.e("chunk-6ebeb74e").then(function(){var n=[c("84e6")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:25,page_name:"象山县人大代表目录"}},{path:"/peoplecongress/typeRddb",component:e=>c.e("chunk-1b1ecef0").then(function(){var n=[c("2cf9")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:25,page_name:"象山县人大代表目录"}},{path:"/peoplecongress/list",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-2a6e90ba")]).then(function(){var n=[c("eb0e")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:26,page_name:"象山县人大代表目录"}},{path:"/peoplecongress/street",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-3ae37a59")]).then(function(){var n=[c("149e")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:27,page_name:"选择乡镇街道"}},{path:"/peoplecongress/contact",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-75a733ea")]).then(function(){var n=[c("6fdc")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:28,page_name:"联系人大"}},{path:"/peoplecongress/proposal",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-10d1c2b0")]).then(function(){var n=[c("1ad1")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:29,page_name:"添加建议"}},{path:"/peoplecongress/detail",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-53fa7b08")]).then(function(){var n=[c("5cce")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:30,page_name:"代表信息"}},{path:"/conferencepapers",name:"conferencepapers",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-6c29962c")]).then(function(){var n=[c("c786")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:31,page_name:"会议文件",iscache:!0}},{path:"/conferencepapersNew",name:"conferencepapersNew",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-68d8a33c")]).then(function(){var n=[c("a08e")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:100,page_name:"会议文件-新",iscache:!0}},{path:"/Superintendence",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-6f8d6247")]).then(function(){var n=[c("a362")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:32,page_name:"代表督事"}},{path:"/Superintendence/streetIdList",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-346c1354")]).then(function(){var n=[c("ad0f")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:33,page_name:"督事列表"}},{path:"/Superintendence/add",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-5f5ca96f")]).then(function(){var n=[c("faf7")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:34,page_name:"新增代表督事"}},{path:"/Superintendence/detail",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-42126703")]).then(function(){var n=[c("e4f2")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:35,page_name:"督事详情"}},{path:"/Superintendence/upload",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-a213797a")]).then(function(){var n=[c("8af6")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:36,page_name:"上传督事资料"}},{path:"/Superintendence/signUser",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-7faf4e56")]).then(function(){var n=[c("1ed9")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:37,page_name:"签到详情"}},{path:"/Superintendence/statistics",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-023fbab4")]).then(function(){var n=[c("4708")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:38,page_name:"督事统计"}},{path:"/fileread",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-4f3c08d6")]).then(function(){var n=[c("126d")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:39,page_name:"文件轮阅"}},{path:"/fileread/detail",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-460dd9ba")]).then(function(){var n=[c("2c04")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:40,page_name:"文件名称"}},{path:"/notice",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-88263f50")]).then(function(){var n=[c("ab43")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:41,page_name:"通知公告"}},{path:"/notice/add",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-6e83591c"),c.e("chunk-4b33a759"),c.e("chunk-45636def")]).then(function(){var n=[c("15e4")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:42,page_name:"发布公告"}},{path:"/notice/detail",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-4b33a759"),c.e("chunk-6297f966")]).then(function(){var n=[c("e373")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:43,page_name:"通知公告"}},{path:"/mine",name:"mine",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-71d4cf1b")]).then(function(){var n=[c("b5b1")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:44,page_name:"我的"}},{path:"/mineper",name:"mineper",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-4775058f")]).then(function(){var n=[c("8338")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:45,page_name:"个人信息"}},{path:"/minemessage",name:"minemessage",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-44f9558e")]).then(function(){var n=[c("ff37")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:46,page_name:"我的建议"}},{path:"/mine/replymessage",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-47ad0812")]).then(function(){var n=[c("7c84")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:47,page_name:"我的消息"}},{path:"/mine/message",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-f995adc0")]).then(function(){var n=[c("3bae")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:48,page_name:"我的建议"}},{path:"/mine/message/detail",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-4dddf1d8")]).then(function(){var n=[c("bc02")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:49,page_name:"建议详情"}},{path:"/documentapproval",name:"documentapproval",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-af9ddd88")]).then(function(){var n=[c("2403")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:50,page_name:"文件审批"}},{path:"/documentdetail",name:"documentdetail",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3e9b3762")]).then(function(){var n=[c("7000")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:51,page_name:"审批"}},{path:"/addApproval",name:"addApproval",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-bd2c5fe4")]).then(function(){var n=[c("d034")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:52,page_name:"上传审批"}},{path:"/choosePeople",name:"choosePeople",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-565eca12")]).then(function(){var n=[c("6491")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:53,page_name:"请选择"}},{path:"/deputyActivity",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-78b8dc44")]).then(function(){var n=[c("781d")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:54,page_name:"我的履职"}},{path:"/deputyActivity/add",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-5d930644")]).then(function(){var n=[c("a460")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:55,page_name:"发布履职"}},{path:"/deputyActivity/detail",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-58551049")]).then(function(){var n=[c("6365")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:56,page_name:"履职详情"}},{path:"/activity",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-17a1e9ef")]).then(function(){var n=[c("7a17")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:57,page_name:"人大活动"}},{path:"/activity/detail",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-1709e771")]).then(function(){var n=[c("c2c2")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:58,page_name:"活动详情"}},{path:"/performanceDuties",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-18649d42")]).then(function(){var n=[c("6615")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:59,page_name:"人大活动"}},{path:"/performanceDuties/add",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-485e447e")]).then(function(){var n=[c("48c0")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:60,page_name:"发布活动"}},{path:"/performanceDuties/detail",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-23c58442")]).then(function(){var n=[c("8071")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:61,page_name:"活动详情"}},{path:"/dbmessage",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-584fb733")]).then(function(){var n=[c("7058")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:62,page_name:"我的消息"}},{path:"/dbmessage/detail",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-47c41384")]).then(function(){var n=[c("6996")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:63,page_name:"消息详情"}},{path:"/peoplecongresshd",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-56a5731e")]).then(function(){var n=[c("7ff5")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:64,page_name:"人大代表目录"}},{path:"/approval",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-5eeeedb8")]).then(function(){var n=[c("488f")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:65,page_name:"我的审批"}},{path:"/pdf",component:e=>Promise.all([c.e("chunk-6e83591c"),c.e("chunk-3c4ad8ad"),c.e("chunk-5b921c40")]).then(function(){var n=[c("eb47")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:66,page_name:"附件"}},{path:"/file-over-view",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-6e83591c"),c.e("chunk-3c4ad8ad"),c.e("chunk-77016452")]).then(function(){var n=[c("3e22")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:66,page_name:"附件"}},{path:"/researchArticles",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-11f68c99")]).then(function(){var n=[c("7db6")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:67,page_name:"审议意见"}},{path:"/grassrootsNews",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-9f235354")]).then(function(){var n=[c("1606")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:68,page_name:"基层动态"}},{path:"/grassrootsNews/detail",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-4fba4b01")]).then(function(){var n=[c("8c7d")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:69,page_name:"动态详情"}},{path:"/grassrootsNews/add",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-9938cf6a")]).then(function(){var n=[c("193e")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:70,page_name:"添加基层动态"}},{path:"/resolution",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-12691593")]).then(function(){var n=[c("cc1b")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:71,page_name:"决议决定"}},{path:"/proposal",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-7bb9f076")]).then(function(){var n=[c("de2b")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:72,page_name:"议案建议"}},{path:"/uploadMsg",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-ce10cc2c")]).then(function(){var n=[c("e641")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:73,page_name:"上报信息"}},{path:"/singleDetail/:id",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-dc6c3924")]).then(function(){var n=[c("0e80")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:74,page_name:"上报信息详情"}},{path:"/addEnclosure",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-ba249396")]).then(function(){var n=[c("9f3a")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:75,page_name:"上报信息"}},{path:"/removal",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-252cee14")]).then(function(){var n=[c("37c9")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:76,page_name:"任免督职首页"}},{path:"/removalUpload",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-57906892"),c.e("chunk-1dbeebdb"),c.e("chunk-14898a94")]).then(function(){var n=[c("231a")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:77,page_name:"任免督职-上传"}},{path:"/workReview",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-449c0102")]).then(function(){var n=[c("9888")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:78,page_name:"工作评议"}},{path:"/workReviewUpload",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-57906892"),c.e("chunk-1dbeebdb"),c.e("chunk-44c5918e")]).then(function(){var n=[c("ca2b")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:79,page_name:"工作评议-上传"}},{path:"/subjectReview",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-05749247")]).then(function(){var n=[c("131a")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:78,page_name:"专题评议"}},{path:"/subjectReviewUpload",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-57906892"),c.e("chunk-1dbeebdb"),c.e("chunk-e68ff292")]).then(function(){var n=[c("ef26")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:79,page_name:"专题评议-上传"}},{path:"/officerReview",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-18db5e64")]).then(function(){var n=[c("eeb4")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:78,page_name:"两官评议"}},{path:"/officerReviewUpload",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-57906892"),c.e("chunk-1dbeebdb"),c.e("chunk-638a697a")]).then(function(){var n=[c("1e1a")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:79,page_name:"两官评议-上传"}},{path:"/considerationColumn",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3513db68")]).then(function(){var n=[c("3bb3")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:80,page_name:"审议督政"}},{path:"/contactRepresent",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-1e14dbc2")]).then(function(){var n=[c("d074")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:81,page_name:"常委会联系代表"}},{path:"/contactRepresentprogressing",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-57906892"),c.e("chunk-23a88cb2")]).then(function(){var n=[c("8503")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:82,page_name:"常委会联系代表-进行中"}},{path:"/progressFished",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-57906892"),c.e("chunk-a15cd202")]).then(function(){var n=[c("3625")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:82,page_name:"常委会联系代表-已完成"}},{path:"/comprehensiveMessage",component:e=>c.e("chunk-b05b0a46").then(function(){var n=[c("9ef7")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:83,page_name:"综合信息"}},{path:"/considerationDetails",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-57906892"),c.e("chunk-67bc564c")]).then(function(){var n=[c("53f6")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:84,page_name:"审议督政-详情"}},{path:"/rdNotice",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-37ca28b9")]).then(function(){var n=[c("4465")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:85,page_name:"人大通知公告"}},{path:"/rdNotice/add",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-175201a2")]).then(function(){var n=[c("9de0")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:86,page_name:"人大发布公告"}},{path:"/rdNotice/detail",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-77fb2bc4")]).then(function(){var n=[c("6088")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:87,page_name:"人大通知公告"}},{path:"/terfaceLocation",component:e=>c.e("chunk-37701811").then(function(){var n=[c("41a0")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:87,page_name:"代表联络站"}},{path:"/takeAdvice",component:e=>c.e("chunk-26aa06bd").then(function(){var n=[c("1e05")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:88,page_name:"征求意见"}},{path:"/generalOverview",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-177cc0fa")]).then(function(){var n=[c("2b09")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:89,page_name:"总体概况"}}],u=new t["a"]({routes:h,scrollBehavior(e,n,c){return{x:0,y:0}}});u.beforeEach((e,n,c)=>{aplus_queue.push({action:"aplus.setMetaInfo",arguments:["aplus-waiting","MAN"]}),aplus_queue.push({action:"aplus.setMetaInfo",arguments:["_hold","BLOCK"]});let a=localStorage.getItem("dingAccountId");a&&aplus_queue.push({action:"aplus.setMetaInfo",arguments:["_user_id",a]}),aplus_queue.push({action:"aplus.sendPV",arguments:[{is_auto:!1},{sapp_id:"17886",sapp_name:"xsxrd",page_url:e.path,page_id:e.meta.page_id,page_name:e.meta.page_name}]}),aplus_queue.push({action:"aplus.setMetaInfo",arguments:["_hold","START"]}),c()}),n["a"]=u},a335:function(e,n){e.exports="data:image/png;base64,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"},aaa7:function(e,n){e.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAADZElEQVRYR+2YP2gUQRTG35vbgEUKyxxYWKSIIKhgoSAYuwS1CFG8YMCk8GaXVdBahRXTK5hld1YkKSKJqKRQSTpTCFoIKjaCKVIIZ2mRIuDcPJnj9phc9sze3r8EXLjmdma+3z7eNzPvIezxB/c4H+wADIJgnDE2CQAnAeBQlz7gJwB8UkotOI7zytSsAfq+P5DL5ZYR8VSXoBJliOhjuVwec133lx5QAdRwlmV9AIDDvYQztDeklKc1ZAUwDMMVRByJByDivFLqORF97wYwIg4xxq4Q0VSsR0Srtm2PYhRFZ4loLX6hlJpwHGepG2D1GkEQFBhji0aghjEMwzlEjMnXpZQnXNfd7AWg7/v9lmV9BoBBrU9E8yiE+BH/UYX6IqUcjZO0W6BVH6wAwHFDc11H8A8iWiYIEWkHjdi2/bUbgGEYHgOAVUQcqOOQOoKUBEFEm4hY4Jy/7SSkEOI8ES0hYn+SzjZApdQ0Ij6JI0pEEhFvcc79TkAKIVwiemTqEdF1xthczShmBDnnGATBMGNsGQAOGlCzpVLptud5sh2gnudZ+Xz+IQDcMNb7rZQacxxnzWTaFkENqCcIIYYA4LVpHiJ6Uy6XJ1p1uHZqLpdbRMQLphkA4CLnvLLv7gponC4vAOCMsVBLDm/g1PdSysvmrpEKUEN5nncgn8/rfCgYO3wmhzdw6lKpVJr2PG/LTJ3UgPGkKIoeENFdA7Iphyc5FRFnisXivaScbhpQLxIEwVQWhzdyquM4840MlwmwCpna4bs59V+7QWbAtA5P49SOATZyOBFtIGLlFkREBUQ075Y7nNpRwEYObyCa6NSOA8YCQog7ROQlXDj0MTnDOb/f7OnTUg4mifm+P9jX13eNiHShpR+9oT91XXe9WbjUJ0mWhds1p+0RbBeYkTa1K2DiZaHdgs2u9z+CzUasfvz+iqBZNMUX1lYj0Op8I4Jb9WXnkfhW26pI1vlBEBxljH2rzq+UnWbhPss5v5l18XbME0I8jmuVSuFeLZLeVQ95yRgrFIvFbS2wdginWSOKonEiehmPVUqdi4skXdFXmke61ASABf2zLCvTUZUGxhwjpdStDt2TnDTO9FXO+ej+aL/pr9nTDUwz3GEYXkLEq71oARPRM9u2azmoufZfE73ZBO/0+L/t2zbAIrrJWwAAAABJRU5ErkJggg=="},b8ff:function(e,n,c){},bea3:function(e,n){e.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAADD0lEQVRYR+2ZMWsUQRTH35vbhRQp/AgRItgZsU0wgkUsAgo2wRO0ycxyhRban4hYaBExy84khYJnrUUKu0RMYSEYwUJQMIWlpUXgdufJO3bOueXu9LJ3F8Xband23syPN2/e7PsvQpdrc3PzjLVWEdE8Is4AwFS3fkNoOyCifQDYAQCtlPpQHBP9hjiOpyuVSoKI1SFMPvAQRNTIsiyq1Wo/nHEbkOGCIHgDAHMDjzxcg700TRccZBvQGPMCAC66uYhox1r7iIi+5+CtV2wshPjm+gkhvrp7a+0KALztxYuIDxDxcv5+LR9/TghxAxEXPbuXUspL/NwC3NjYOMtAHtxDpdRtfk6SZKYAcTyKIo6b1mWMIQ/wXBRF7XGKoFrrJ4h4LW+vSynvuD5aa4a/1V5axMXV1dXXLUBjzDMAcHG3K6VccB3HBZhzcIjN8z0RPVVKXXeAvEy8W/nFVaVU4ygAtdZVRGRn8fVFSnmiBai1biJikMfY6VqttncUgHEczwVB8D53VKqUCp0H/TjqiLFxLnFxLikl/t+A9Xp9ql6vH3g7tecu7pYxRubBJEmuCCHWAeAYEW1lWbbCibdfmhkbICKeQsQ1PwcS0bssy5Yrlcr9XnlwLIBE9AoRl4oJOn/+BAB8Ap3vlqjHAljw2kchxC4RqR7AHSfJyAD9HOqB7KZpeiGPOz5nO5Z8rB7UWm8XDvo2nAM2xkgiWneHAbdba5ejKNryvTuSPBjH8WwQBI8B4CQAMFzH95yXYpYQ8S4ATANAQ0p5r7j0IwHsEV+Hap4AHsptntHEgxMP5vlpoO/Bsl4beR6cALIHCqXjZIl7hcUkD5bdMP+uB8sU7mW95tv3K9w/A8BsnqirURQ9d4a/K9yHCZhXg052+SV9lBGPhglojOkuHiVJsiiE2HaTEdEfy2/DAizKb9balpTXV8AEgDUWMLk6cyDW2vkwDNsCZlnANE1Z0b3ZV8DkSf56CdiDTDwxs6yDBrVvFIuuDpXfjcbbPQxDLhVZNx7pbwgA2EfEnWazaXxd0rH8BKij5FYICbDHAAAAAElFTkSuQmCC"},eb26:function(e,n){e.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAADPElEQVRYR+2YX0hTURzHv79tuhlGigYSCYPArjljOi036mGQRGDUQw+9BAW99dBDRUFEL0JBPtZDT/lmDz4EBfkgWBTO3GqX/uBVFPYgJii2IurmtvuLe7c7baa79+4aC3aeNs7vz2ffc37n7PwIZT6ozPmQB4z7vXXY4b5EcJwBWADIsxU8g5cBvHAy7h+MSC+364dqgGL3gTa4lBEQ7bWSiJkHOiLSNSu+xXwoFmhpdFU7P4DQpBozkAZYJMb3TZ2JXAB8AOp0GxXSCTwrlrBwnlO8uBKbngtreTcOigeFe0R0VZtiljJInQxE5maLJRrzej31e2ouA7hbzNbAfJJYGVz5tnIr/GnpD2FIDApTIBLUIEpa6e6cnI4ZCJg3EUOtrwAcMeOzqS2ztJqWw4eiiUXdhsRQK+tf/ONTpqs63iOcJwc90leACI/NwCoMHxH61oqSJ/zjUtA2wLG23bX1uxqW1ARqZScX5OZwIiGbgYx27fO5qqvGCNSoraSS6e2cmBlVP5esoHYKhIQhgM5mtzEPJz/L58xCxkP7bxIc/bkY+VPBFsBYoEVwuZ1RALXZk4CXifHRjIoAmvRaAHjQPy5dsE1BNdDboNDnJBrSIU3CFZq//vJ1+YRa0bYoqEeP9wheIroO4LR+rloFZebRjojUayvgehi1eOp2Nmib3sjIpBSPy+08xUA/AepFAGLl4rYBGoH6m40YEq4ANJCd44myA9SuXrdzKQdv7x60qlqh3/rLo+wUzJ6ra7dbBdDKslcUtKLaep+KghUFS1WgVP/KHvxnCk52e5uqXTW3s50Gw0N9jzzxR6SHhj0KDA0vsRgU7oDohpVEcibV3PNmdt6Kr2HAdz0txxwOx9NifZpCCAbHkgvyUbMPJz2OYUDVQe0g1DV5tLaIkZHKyPL6h7cRn//q71aupfJThy659WFFoa18xKBwHEQjmg2ztKF55KR0X/v47JzdiY3Ee39YCCgODIPIm+XjgQ3tt1wgEcxJI0FtsyFSW3n+fDzGYno10641i6KhVl8V83OrDUzbIPVAzPNpKL1dkRnJcgvYdiiwDJDEUIbx49eDDjGhraDpdpv9YFtHLHvA3yHwojn4hTf2AAAAAElFTkSuQmCC"},edeb:function(e,n,c){"use strict";var a=c("a0b2"),t=c.n(a);t.a},ee15:function(e,n){e.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAADUElEQVRYR+2ZT0wTQRTG35u2ygGMGrzXCOk2GtkNMbANxJJ4wAOJJl6ImOgJPOFB7xpjPOgBIgl60sR61gMHb8XQtPUP2UI0XcSEHrhZbQQPJO3OM7tll+2mLdkWFo3todmdfTPz6zczb3a+IlT5LPcJvZqPJpBwABCCANhWLa75MtoCghwAzvs17emZD1+XnG2ivSB++kT7sY7js8DYWPOdN9AC57HC5s+bQ1++/zZrW4AG3JHOBUAQG2h676oQZAob+UET0gLMyOHXgHDJ6olonoBPaxzyfp9vwSwvadqgD9m69QsZrpnXXNNGEVm6Ji3CI0S8oj9HgilONA3IRQQ2CYjRnb7hjZjKXjbi9K9lWTjPEefNACJ6LKXUO/q90i8E0QZBnE5KaTVnxmYiYbLqcRqS0qrVjhM0ExGeA+D1csd0tyep3jNjFFnQ4W+b94woejalvjMAM5HwSwAw511CTGYHrYoeAW5z6CM1UO6bXohJ9UYZUBbWADGoX2sav9b7fiV2EICLfaExn4/pYgERfJNS2W4DUImEiwjgNx4US5L0cTVzEIDKuW4RA37F4AAoSclswBxi+zyqmGNezcFq811MZvH/BowHg21DudzWzoqvvYo9VVDpD11FxmYA4CgQzRU2fozqibdemvEMkCH1ELIpew4koE/F4tbIoUDbw1p50BNAIHoLiMPOBF1Oa6QS4DoiXKiWqL0BrJCNPgNgAhAmqgE7d5J9A7TnUBtIovArf1Gfd0tyaNI55N4qKAvxio0ewIKzVq8sjBPijLkZGDsW0UhvSp2zq+vMuXuSBxflU10+CDwBAAEIE4XNfMX7nAmwKIeGGeJ9JGgnpJiUXHngHPp9Aay6IBosbAE2KJxVraVgS0FjR3KcOXZ7H2xWtX3Pgy1AXQHH0dHVK39LwZaCLubAv7uTNHNwdyHQrqE1D+6KHF5FhK5youZjUnrlldmat4naOA0atkuF9dGMebSrLC4CMpFwdfNI6ReiyDButuXGfnPRf91Qp/1G21ZeXQOTIU3pBiYylrDgOR84zHYMzGYBS8BFTnirroGpd/LXW8AWZEfnLDDLzGxWIHf1OcSch64Kl99aubpP5/ePA1DUq78hqFR6ZvclTZY/yEjrVntar+AAAAAASUVORK5CYII="},ffd5:function(e,n){e.exports="data:image/png;base64,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"}}); \ No newline at end of file +(function(e){function n(n){for(var a,t,i=n[0],o=n[1],p=n[2],d=0,l=[];d-1,t=!!c.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/);aplus_queue.push({action:"aplus.setMetaInfo",arguments:["appId",a?"28302650":t?"28328447":"47130293"]}),aplus_queue.push({action:"aplus.setMetaInfo",arguments:["aplus-waiting","MAN"]})},"3e39":function(e,n){e.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAADF0lEQVRYR+2YP2gTURzHf793KZTSoUOhKVjoWLCCIA6CDoJFChUdHFwEBek7elApKgoi3iAoWMji9fW1g93q0EFQ0KGgokPBDgUFM9hNSKgdOkht4eV+8gt3If1jcne5SIS8KeF+fz75vn+5L0KLD2xxPqgA5nK5nq6uLgcALgPAEAB01oInok0AeC+EeDY+Pv6hWT+0DDg3N3eUiN4CwJEkjYho2rbtO0ly6+Wg1rqXiL4gYpaDicgg4hoi/vpbMhFlAGAYAHrCGIYUQryu13D/c2NMcWNjY911XXNYLs7Ozj5FxNvBw7wx5oLjON/rNXJdtzObzd5ExCf1YiM83yKihVKp9MBxnD3CsILfgjXH6p20bXs1QsFKiNb6IwCcjpNTI5YFOus4TjGMYUAKv0gpY+9qpdQ1IcTzcAYA4EUcWCIaRsSxcFMS0Ypt26dSA/Q8rzuTyfwMGmwWCoUB13V34kAqpYaFEO8AoJfzSqXSyMTExDJ/blhBLqK1XgSAK8EmWyoWi1fjQmqt7wPAo6BG5VRIC3CIiD4jYneg3CYRfY2jIgBkEZHPX94LC7ZtX09NQS6klBpDxMUqyJh8e8I/GWNGeUenomBYWik1aFnWXd/3L4XnagOUy1LKkVQBq2F48wghyos+yjDGdHZ0dFzkdYiIfBHwVN9oGmAUqMNitNa3AGA6AFxpRUBWnY8tVjDdNZhUtf151ZdHyykYnKuV260NmGTa21OcRLXqnLaCbQUbVaDR/PYa/GcKep6XtSzrYfjWF7HxDiK+lFLqiPEHwiJPsdb6MQDcS9Jod3d3YHJy8keS3MiAMzMz5yzLelXPpzkEYrVQKJyJ++IU1okMyAnsIPT19ZVtkSjD9/2d6hfvKDn/1d8tFqS/v/93CN2w9ZFEoVo5SqnzQgh22njkD5hHADAmpVxPu3GUevPz8yd8318CgEGOZ8fsgP0WFFojoq0oRdOKQUS28o6H9YioiIjHymZR4I28SWpgpgVZVYePpxEpZT6xBdwEKDac8gCwtL297U1NTZVnMLbd1gSwmiVbHvAPDdSz6wpWo8IAAAAASUVORK5CYII="},"3f33":function(e,n,c){},4930:function(e,n){e.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAAD9ElEQVRYR+2YT2gdVRTGz3ffg3TRhQslLyhYoaBiRUUXigUrVFBUaFAxmy7Edu4M48KAguLCERQVXZTgZO5MnlCpC6FCCwYUGrELwQiCiBWzKFhQeG8hmEWym7lH7mMm3LzOy8z7k5BF7nLuzD2/Ofec7557QBMY7Xb7zjRNPyWip4noEBGtAAiklD+PuzzGXaDdbj+eZdllIrrVXouZUwBnpJRfjGNjLECl1MsAzudeG8RhPPneqJAjA8Zx/A4RvW8ZXtNav0REG0KIC0R0vJhj5vPdbvdsEATpsKBDAwZB0JyZmYmI6ExhDMDVzc3N2fn5+XXzLH/HQM5ZQCtpms76vr8xDORQgGEYHm42m5eI6KRl5MtOp/NKmXfiOP6QiN6yPHkty7KnfN/v1oWsDRhF0e1CiBUiusdavDK+lFKvEpEC0DTfMXNXCHHScZw/6kDWAlxaWno4y7JlAK3cSMrMZz3PMwlSOZRSRn4uAjicf2+2+ZTrut9XfVwJGMfxs8z8VbE4Ea1rrWc9z7tatbg9H0XRMQBX7J+sI0M7AsZx7DPzuWJ7iOgGET0jpVwbBq54NwzDVqPRMJDH6oZJKaDJwlar9QmA160AX82yzGRh7QAv+4k80S7mp07vlZ1k6CbAfAEjEacsA5fTND09rEQMVO4SqTLHY5kMbQPMt+ASgEetxc91Op03RxHZqjDoF3tmvkmGtgAXFxfvFkJ8B+BIkalmi6WUYZWhceajKJoDcGGQDPUAkyR5QmttZGRLBgCcllKaImDXRxzHx5n52zIZQpIkL2itjYz0hNQMc3Q5jvPkrpNZBpIk+YGZT1hJmQoh5hDH8X9EdIsNsx8Ac551A3jFnK3M/AuAR/aDB5l51SQqM3+NIAgOTU9PH83LpL/2A6DW+i7D4Xneja0sjqLoiBBi3wAauJ6zitg7AKyQBDuLzRZPzINKqQcAvMbMJo63BoDrzPyZ67q/1ZGrXQHsL0b7QczNjohc13U/r4KcOGAYhkcbjcaftsCXQRjILMvu9X3/+k6QEwdUSply7I3c6IrW+gMbQAhhbn3F3eUjKeXbew34DYDnjFGt9f2e512zAcIwfLDZbP5qnjHzsuu6z+8p4KAtGVW2Jr7FB4DjniQHHjzw4JDVUWUWLyws3DE1NfV3rlurrus+NopujSozSqmfittkmqYzxf1727WzKP/rHE+TTJK+Y/NfKeVtxY/2Ay5Zfb81AC8O6kJNCjBJkvtMaV90zQAox3G8UkBTtAL43WoUVRUhk543jamHilpwW0Vtxc4JAOac7d2R92ow8wYA05j6cVtdWQaQe/Jd0+Ap2mW7CPoPgOUsyz62PVfY+x9s6mCk29MSWAAAAABJRU5ErkJggg=="},5321:function(e,n){e.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAADgklEQVRYR+2ZMWgUQRSG35u9IxYRLCwSsNBOQdFCQVBBC7EKClpEVLSRt8ueaLBQC/FEQQVFiR67c1hEVBRsLATtFIwgaCFoYSMKCntFBMGQFNmdJ3PshM16l1v39iJKptu5N+9997+duXnvEFKjWq2WBgcHDwDAQWbegIjL0zZFPjPzBCK+A4B7QRDcr1arYdI/Jh9qtdpAqVR6BABbi4TI6ouZX0RRtN913YZZMwuolRsYGHiJiJuzOuyFHTO/bjQa24ySs4BSShcAbiWCXgaAa0Q00QsQ41NKqV+hkwBwOhGnQkQ1/ZwEfAMAG2OjG0Q00kuwtG8p5XUAOBHPvyWiTXMAfd//iYj9elIptc5xnA8LCeh53lohxHsdk5knbdtemlaQDZBSapXjOF8WGHClEOKziUlEzewmU/xvAtZqtX7Lsi4AwIaCFX0XRdFZ13UntV/P8/IpKKW8lNphRXJeJqIz3QKeA4BqkVQJX1UiOt8VYPzTd4qZNwshmru826GUmkTE10EQXDEHcu4UdwuTdf0iYFal2tktKvjXFIylv9uDO+K4UuqQ+UnNnWIp5U0AqHSrUJv1t4joWFfnoJTyMACM9QjwCBHd6QowXrxdCLEFAEoFgYZKqVeO47ww/nKnuCCgjm4WATtK1MHg/1ZQX1qFEOsty5p3kzDzNyL6lEfN3Ap6nrdFCPEEAJZlDJyrIswNWK/XPWa2M8I1zUzBk14TZ2K3ZVmrlVIrUp/3I+I+M5e5aPI8T5+BTwFgSUbI20R0NG3r+/5xRNQ3846ZYObQtu2y9pGpqtPVv1JqbQbAiVb1tO/71xHRFOUd3TDzB9u212UG7OhxHgPP83YJIZ4ZEx0cEceUUt/NnBBiNwDsSdhctG377IIA+r7/HBG3x8GfBUEwlGyx1ev1vUqph4jYPCGYuTE9Pb1mZGTkx0IBziSCb7Jt+61RKn4vbyQSMBGG4U7XdXW/sDkyvYN5Uzw6Orqir6/vq1kfBEHZqJeG08oh4g4i+piMNwvYi+ZRu7Mt3QxoB5dWsPD2WyvAFjv6YxiGO5Jd1ZYKtmpgzszMXK1UKrO77U9TnQYEgIcAMJzwMy/cHAX/Qgt4fGpqasjs1nZf/rcmerlcfsDM5lj4U9Gy2j8Ow/CQ6WzNt2gOoDaMlRxGRF2L6JZbIX9D6I0ghBiPouiO4zj68pFp/AJUQ6BHLPesBwAAAABJRU5ErkJggg=="},5367:function(e,n){e.exports="data:image/png;base64,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"},"56d7":function(e,n,c){"use strict";c.r(n);var a=c("2b0e"),t=function(){var e=this,n=e.$createElement,c=e._self._c||n;return c("div",{attrs:{id:"app"}},[c("keep-alive",[e.$route.meta.iscache?c("router-view"):e._e()],1),e.$route.meta.iscache?e._e():c("router-view")],1)},h=[],u={},i=u,o=(c("7faf"),c("2877")),p=Object(o["a"])(i,t,h,!1,null,null,null),d=p.exports,l=c("a18c"),k=c("2f62");a["a"].use(k["a"]);var f=new k["a"].Store({state:{},mutations:{},actions:{},modules:{}}),r=function(){var e=this,n=e.$createElement,c=e._self._c||n;return c("div",{staticClass:"navVar-box"},[c("van-nav-bar",{attrs:{"left-arrow":e.leftArrow,title:e.title},on:{"click-left":e.onClickLeft},scopedSlots:e._u([{key:"right",fn:function(){return[e._t("right")]},proxy:!0}],null,!0)})],1)},A=[],s={props:{title:String,leftArrow:{default:!1,type:Boolean}},methods:{onClickLeft(){this.$router.go(-1)}}},m=s,b=(c("8d12"),Object(o["a"])(m,r,A,!1,null,"fe379062",null)),g=b.exports,v=function(){var e=this,n=e.$createElement,c=e._self._c||n;return c("van-tabbar",{staticClass:"tabbar",attrs:{placeholder:"",route:"","active-color":"#333","inactive-color":"#333"},model:{value:e.active,callback:function(n){e.active=n},expression:"active"}},[c("van-tabbar-item",{attrs:{replace:"",to:"/"},scopedSlots:e._u([{key:"icon",fn:function(n){return[c("img",{attrs:{src:n.active?e.icon1.active:e.icon1.inactive}})]}}])},[c("span",[e._v("首页")])]),"admin"==e.usertype?c("van-tabbar-item",{attrs:{to:"/comprehensiveMessage"},scopedSlots:e._u([{key:"icon",fn:function(n){return[c("img",{attrs:{src:n.active?e.icon1.active:e.icon1.inactive}})]}}],null,!1,3474439714)},[c("span",[e._v("政务信息")])]):e._e(),"admin"==e.usertype?c("van-tabbar-item",{attrs:{replace:"",to:"/bankdataindex"},scopedSlots:e._u([{key:"icon",fn:function(n){return[c("img",{attrs:{src:n.active?e.icon2.active:e.icon2.inactive}})]}}],null,!1,1956975234)},[c("span",[e._v("资料信息")])]):"township"==e.usertype?c("van-tabbar-item",{attrs:{replace:"",to:"/liaisonStation"},scopedSlots:e._u([{key:"icon",fn:function(n){return[c("img",{attrs:{src:n.active?e.icon7.active:e.icon7.inactive}})]}}])},[c("span",[e._v("联络站活动")])]):"rddb"==e.usertype?c("van-tabbar-item",{attrs:{replace:"",to:"/deputyActivity"},scopedSlots:e._u([{key:"icon",fn:function(n){return[c("img",{attrs:{src:n.active?e.icon8.active:e.icon8.inactive}})]}}])},[c("span",[e._v("代表履职")])]):e._e(),"rddb"==e.usertype||"admin"!=e.usertype?c("van-tabbar-item",{attrs:{replace:"",to:"/conferencepapersNew"},scopedSlots:e._u([{key:"icon",fn:function(n){return[c("img",{attrs:{src:n.active?e.icon3.active:e.icon3.inactive}})]}}],null,!1,3846340322)},[c("span",[e._v("会议文件")])]):e._e(),"township"==e.usertype?c("van-tabbar-item",{attrs:{replace:"",to:"/suggestions"},scopedSlots:e._u([{key:"icon",fn:function(n){return[c("img",{attrs:{src:n.active?e.icon3.active:e.icon3.inactive}})]}}],null,!1,3846340322)},[c("span",[e._v("选民建议")])]):e._e(),c("van-tabbar-item",{attrs:{replace:"",to:"/mine"},scopedSlots:e._u([{key:"icon",fn:function(n){return[c("img",{attrs:{src:n.active?e.icon4.active:e.icon4.inactive}})]}}])},[c("span",[e._v("我的信息")])])],1)},y=[],E={data(){return{usertype:localStorage.getItem("usertype"),active:0,icon1:{active:c("96c9"),inactive:c("4930")},icon2:{active:c("0fa0"),inactive:c("5321")},icon3:{active:c("eb26"),inactive:c("3e39")},icon4:{active:c("9b6c"),inactive:c("81f5")},icon5:{active:c("ffd5"),inactive:c("a335")},icon6:{active:c("ee15"),inactive:c("bea3")},icon7:{active:c("8244"),inactive:c("5367")},icon8:{active:c("7f90"),inactive:c("aaa7")}}}},C=E,w=(c("edeb"),Object(o["a"])(C,v,y,!1,null,"3ee714f8",null)),P=w.exports,Q=c("b970");c("157a"),c("3f33"),c("5cfb");a["a"].use(Q["a"]),a["a"].component("navBar",g),a["a"].component("tabbar",P),a["a"].config.productionTip=!1,ZWJSBridge.onReady(()=>{ZWJSBridge.getUiStyle({}).then(e=>{switch(e.uiStyle){case"normal":localStorage.setItem("UiStyle","normal"),document.documentElement.style.fontSize="50px";break;case"elder":localStorage.setItem("UiStyle","elder"),document.documentElement.style.fontSize="60px";break;default:localStorage.setItem("UiStyle","normal"),document.documentElement.style.fontSize="50px";break}}).catch(e=>{localStorage.setItem("UiStyle","normal"),document.documentElement.style.fontSize="50px"})}),new a["a"]({router:l["a"],store:f,render:e=>e(d)}).$mount("#app")},"7f90":function(e,n){e.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAADnklEQVRYR+2YT0gUURzHv7+ZVRQilAo8dBAynSXB3TJ1lqC8GdVBLFpJqA6dKqhzBUXeC6pThB6MigoPFXrTQ7jrn9y1P7hpwR46CBWGCC67O/OLtzq7s+uu7q6z6wbNcea99/2837zve7/fI5T4QyXOh3WAM61KF0vUA3AziPYWZQLMPwCaIp0HmsYDr82accCJw7U15WUVgwC1FQUqowh7w5FQZ8tkcEE0iQHG4GwVHhDVbi/cmjpzMBwNqQIyBuhXlSEQdSTguF9jfiExBYoBrBMrMtFZgC7E9ZiHHZ7AcfqoKkd1olHjg65p3QfH554XAyxVY7q13i3J8jPjvcR8jPwupc8gZ8a3P0u/nO1ffi5vB+DIgT07qnbu9hGhblWf+8mn2ucTL2Jv/eHIynFjkRYLdNWklUMAHIamCBj5XPYIAbYkEMaCTdM6GifmZooB+Lmlvikqy8Mg1Jj1GIiS32XnDBDLjKjbOTb/rpCQPtf+EwSbWPM70ukkAbLOFyHRYyOiYgZgXHN6Zh8VAtKn2i+DcD9JT+dLJFGfoZcE6BibJV+bcowkGgRQZbL8w0VP4Hq7ALbgGQFs1apyD0RXTMP9YZ07nd7AqPmvrgMUHabUekWG/CbJPMxvF5d+d2/V4cKp1Tt3PQPRSbMZNGinmj1zsX13U0DRaM1VLwEcMc1ySw5P51QA78ORlTPmXSMrQAE1UltbUV1T0QeJ3InfnZ/D0zpV5+eLC6GL7cFgyLxysgY0Ovnb7Hch4aZpkJwcntapOnod3tlb6ZZ0zoBiEF+bciEfh2dyqtMb6M/kt7wA1yCzdvhmTt1oM8gbMFuHZ+PUggFmdDhzEICRBblTcst1Ti0oYEaHp1PN4NSCAxoCPlfDDUC6nZpwiGNS0rm3yRu4k+vhs6U1mE7sg7qvTuby8yBuXvvu1xB5csjz/VuucFmfJPkMbFUfyyNoFVj8YDClgGmTBasFcx3vfwRzjVhq+38rguaiSWTUW529Ff0TEeRQUtkZZc1uZLVWCOUzxqRrX2MZyj+JvrGy01y4g/mhwxO4ms/AVvXxq8qDRK0iCvfVImkkRiyOJ7C7aSz5Cswq8c3GmXEpXQx6ZbRjndvXXR7FimXwALE+UEZyXkfVZiCp3yOs1TFJPQzqiZ/pxuVRPH0q5eu3OGRZpaiHt/kCE95wZCX5AtMc8unWhtOSJJ3bjitgXdefHhz/Gl+Dgqsk9r2N1mzJA/4FWUkbIGAvjQcAAAAASUVORK5CYII="},"7faf":function(e,n,c){"use strict";var a=c("b8ff"),t=c.n(a);t.a},"81f5":function(e,n){e.exports="data:image/png;base64,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"},8244:function(e,n){e.exports="data:image/png;base64,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"},"8d12":function(e,n,c){"use strict";var a=c("25ca"),t=c.n(a);t.a},"96c9":function(e,n){e.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAAENElEQVRYR+2YT2gcdRTH33d2NuwhlPQfVBRcabo7aSO7S5NmZ1uwgQopWmhQaS49iC0oeuhBQenBCopKPfSgWBAhEg+FFhpoQCGR5FAy0yZ1NjXtTteIAT0UrCaUQOP+mSezm5nMNrPd2d2xzSF73N9v3vv83u/3vu/9fiAffrdTHc/+y/wFgD4mCoF5DFw8E1N/vdaseTRrQEtG95OAYRC2OW0xUUEw+ERM1b9rxkdTgOlk5BgJwiARQtUgYPCZmKp/1Chkw4BaMnoagvCx7ZhZz+fxmijyEgQMEdGBVSgeXJjUT/YSFeoFrRtwnEhsS0W/BgknHHAT/GC5P5GeXzT/M+dsTkpDJGDAmsPMY4v3/+7vvfXXUj2QdQGO79ne2rZp62UAhxxOvl+YzLzuFp20LH1KwPuOhczmCssv7puav+sV0jNgWo48TSSMESBZxr2crxk5+oYB4TyIxNJ3THepkD8Un5q75QXSE+DNHmmvIWCEQDvKPqhABp9MqPqgFyc35GhfAMJFImpdmb8ELh6NKdmfan1fE1BL7XoJJF5wGF9kg/sTqj5Ry7hzfKprZ2cw2DLqXKQXGXokoCZ3vE2gc6vbw/MFMg53KVm9Hjhr7vXu8I4WMTRKQKfXY+IKaGbhFjl6liGcckiFmssv99dzwN0WYSba5k1bLxLQ50WG1gCWDWwZIghHV7OPhhfu3zter0RUi7KbVFWToQrA0hYEQ5eJkLS3gI1z/yh33mtEZGsdAxexXyNDNuDM/miUDfxIQNjOVKZTCSXzVS1HzYz/3BMZQCAwVE2GSoA3ZekFAxhxygBz8XhCyQ4349zrt9M9kQNiIPCDmwxhJiW9YhAu2CsohY8n4ore69WBH/PSsjROwEHLVqkbIh5AOtWxQERtFU7WAeAKzyI0WRo1aysTT4PQVS5HTzqCrJqJysyXMB4Oh1q3BdpFMWi2Sb+vB0A2+DmTI6Hq83YWa0kpvJ4ATTgTcgPQa4Y7s9jcYt8iOLsvEsuLeAeMdicMg+eCBf6y83p2xgvk/wK4phl9iKSkZWy8GVPufFsL0nfAG/LOdgEtmQqBd6EwIQ3OdexVfpt7FKTvgJosnQXwblk2eYyYPqkAAJ227y7Mn8UV/YPHCpiWpSsEvGw6zefo+e7pzKwTQOveFUdQ1FZ0dSSu6EceN6BdO51ZZ0HUq6u+b3E1gxuAXmvxRgSbrcUbEXw4gmpP+zOhQPCPchayGp/U5UZ0q+EsTkmKdZvM5R88Zd2/K66dVvvvpTz5ucXOssnE9xKT+nZroRWAWir6jf3ux6xTQXg1PnXb9RXKL8B09+49JBqX7FczpvNxJfOWO2C5q/7Fcf2r1YT4PW4+TCWsXrCio3acnYMQcOUJQC4VisXDXdeyV52rdn08KtdR+pAYfdZzmd+hsu0x/0mEEWb+3Bk5a/w/mc842ZkSd6kAAAAASUVORK5CYII="},"9b6c":function(e,n){e.exports="data:image/png;base64,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"},a0b2:function(e,n,c){},a18c:function(e,n,c){"use strict";var a=c("2b0e"),t=c("8c4f");c("2606");a["a"].use(t["a"]);const h=[{path:"/rdOffice",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-6dc0c71d"),c.e("chunk-51402ee9"),c.e("chunk-472618c0")]).then(function(){var n=[c("0bd7")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:89,page_name:"机关办公端"}},{path:"/rdBehalf",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-6dc0c71d"),c.e("chunk-8e679858")]).then(function(){var n=[c("5bcc")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:90,page_name:"代表端"}},{path:"/rdVoters",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-6dc0c71d"),c.e("chunk-5ba1f0d4")]).then(function(){var n=[c("755d")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:91,page_name:"选民端"}},{path:"/rdStreet",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-6dc0c71d"),c.e("chunk-51402ee9"),c.e("chunk-b6b7700a")]).then(function(){var n=[c("a927")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:92,page_name:"乡镇端"}},{path:"/",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-6dc0c71d"),c.e("chunk-51402ee9"),c.e("chunk-472618c0")]).then(function(){var n=[c("0bd7")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:1,page_name:"机关办公"}},{path:"/home",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-6dc0c71d"),c.e("chunk-51402ee9"),c.e("chunk-4a8d49a6")]).then(function(){var n=[c("37f9")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:2,page_name:"机关办公"}},{path:"/voter",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-21595cf0")]).then(function(){var n=[c("edae")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:3,page_name:"选民登录"}},{path:"/login",name:"login",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-3384c9d4")]).then(function(){var n=[c("9ed6")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:4,page_name:"首页"}},{path:"/dingtalkPage",name:"dingtalkPage",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-68dbbd28")]).then(function(){var n=[c("2ac3")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:5,page_name:"浙政钉绑定账号"}},{path:"/dingcomeback",name:"dingcomeback",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-2cb20236")]).then(function(){var n=[c("54f1")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:6,page_name:"去浙政钉登录"}},{path:"/opinionList",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-8372deb0")]).then(function(){var n=[c("6315")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:7,page_name:"选民意见"}},{path:"/opinionDetails",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-675c53ce")]).then(function(){var n=[c("ec0b")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:8,page_name:"问题详情"}},{path:"/authorize",component:e=>c.e("chunk-2d0e454c").then(function(){var n=[c("9087")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:9,page_name:"去登陆"}},{path:"/modifyPassword",name:"modifyPassword",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-4c3cb1ea")]).then(function(){var n=[c("45a2")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:10,page_name:"修改密码"}},{path:"/bankdataindex",name:"bankdataindex",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-2336794b")]).then(function(){var n=[c("1133")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:11,page_name:"资料库"}},{path:"/register",name:"register",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-73b71e08")]).then(function(){var n=[c("b953")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:12,page_name:"用户注册"}},{path:"/bankdata",name:"bankdata",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-1e353ebe")]).then(function(){var n=[c("e088")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:13,page_name:"资料库"}},{path:"/liaisonStation",name:"liaisonStation",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-dcb4b0f6")]).then(function(){var n=[c("fa7c")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:14,page_name:"联络站活动"}},{path:"/liaisonStation/add",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-f7450a18")]).then(function(){var n=[c("b71f")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:15,page_name:"发布联络站活动"}},{path:"/liastationDetail",name:"liastationDetail",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-ac308062")]).then(function(){var n=[c("54cb")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:16,page_name:"联络站详情"}},{path:"/meeting",name:"meeting",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-e3384866")]).then(function(){var n=[c("a0ee")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:17,page_name:"会议"}},{path:"/suggestions",name:"suggestions",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3e12ce13")]).then(function(){var n=[c("3f62")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:18,page_name:"选民建议"}},{path:"/suggestionsdeatil",name:"suggestionsdeatil",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-4f963893")]).then(function(){var n=[c("d825")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:19,page_name:"建议详情"}},{path:"/sugdetailfront",name:"sugdetailfront",component:e=>c.e("chunk-db9510f8").then(function(){var n=[c("2e70")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:20,page_name:"建议详情"}},{path:"/distribution",name:"distribution",component:e=>c.e("chunk-73aa39a0").then(function(){var n=[c("22bc")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:21,page_name:"分配"}},{path:"/meeting/detail",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-c76e2e8c")]).then(function(){var n=[c("0def")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:22,page_name:"会议详情"}},{path:"/addmeeting",name:"addmeeting",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-9556c9b6")]).then(function(){var n=[c("f91b")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:23,page_name:"发布会议"}},{path:"/peoplecongress",name:"peoplecongress",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-56a5731e")]).then(function(){var n=[c("7ff5")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:24,page_name:"人大代表目录"}},{path:"/peoplecongress/type",component:e=>c.e("chunk-6ebeb74e").then(function(){var n=[c("84e6")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:25,page_name:"象山县人大代表目录"}},{path:"/peoplecongress/typeRddb",component:e=>c.e("chunk-1b1ecef0").then(function(){var n=[c("2cf9")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:25,page_name:"象山县人大代表目录"}},{path:"/peoplecongress/list",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-2a6e90ba")]).then(function(){var n=[c("eb0e")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:26,page_name:"象山县人大代表目录"}},{path:"/peoplecongress/street",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-3ae37a59")]).then(function(){var n=[c("149e")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:27,page_name:"选择乡镇街道"}},{path:"/peoplecongress/contact",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-75a733ea")]).then(function(){var n=[c("6fdc")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:28,page_name:"联系人大"}},{path:"/peoplecongress/proposal",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-10d1c2b0")]).then(function(){var n=[c("1ad1")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:29,page_name:"添加建议"}},{path:"/peoplecongress/detail",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-53fa7b08")]).then(function(){var n=[c("5cce")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:30,page_name:"代表信息"}},{path:"/conferencepapers",name:"conferencepapers",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-6c29962c")]).then(function(){var n=[c("c786")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:31,page_name:"会议文件",iscache:!0}},{path:"/conferencepapersNew",name:"conferencepapersNew",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-68d8a33c")]).then(function(){var n=[c("a08e")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:100,page_name:"会议文件-新",iscache:!0}},{path:"/Superintendence",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-6f8d6247")]).then(function(){var n=[c("a362")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:32,page_name:"代表督事"}},{path:"/Superintendence/streetIdList",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-346c1354")]).then(function(){var n=[c("ad0f")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:33,page_name:"督事列表"}},{path:"/Superintendence/add",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-5f5ca96f")]).then(function(){var n=[c("faf7")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:34,page_name:"新增代表督事"}},{path:"/Superintendence/detail",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-42126703")]).then(function(){var n=[c("e4f2")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:35,page_name:"督事详情"}},{path:"/Superintendence/upload",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-a213797a")]).then(function(){var n=[c("8af6")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:36,page_name:"上传督事资料"}},{path:"/Superintendence/signUser",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-7faf4e56")]).then(function(){var n=[c("1ed9")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:37,page_name:"签到详情"}},{path:"/Superintendence/statistics",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-023fbab4")]).then(function(){var n=[c("4708")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:38,page_name:"督事统计"}},{path:"/fileread",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-4f3c08d6")]).then(function(){var n=[c("126d")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:39,page_name:"文件轮阅"}},{path:"/fileread/detail",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-460dd9ba")]).then(function(){var n=[c("2c04")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:40,page_name:"文件名称"}},{path:"/notice",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-88263f50")]).then(function(){var n=[c("ab43")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:41,page_name:"通知公告"}},{path:"/notice/add",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-6e83591c"),c.e("chunk-4b33a759"),c.e("chunk-45636def")]).then(function(){var n=[c("15e4")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:42,page_name:"发布公告"}},{path:"/notice/detail",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-4b33a759"),c.e("chunk-6297f966")]).then(function(){var n=[c("e373")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:43,page_name:"通知公告"}},{path:"/mine",name:"mine",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-71d4cf1b")]).then(function(){var n=[c("b5b1")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:44,page_name:"我的"}},{path:"/mineper",name:"mineper",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-4775058f")]).then(function(){var n=[c("8338")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:45,page_name:"个人信息"}},{path:"/minemessage",name:"minemessage",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-44f9558e")]).then(function(){var n=[c("ff37")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:46,page_name:"我的建议"}},{path:"/mine/replymessage",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-47ad0812")]).then(function(){var n=[c("7c84")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:47,page_name:"我的消息"}},{path:"/mine/message",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-f995adc0")]).then(function(){var n=[c("3bae")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:48,page_name:"我的建议"}},{path:"/mine/message/detail",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-4dddf1d8")]).then(function(){var n=[c("bc02")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:49,page_name:"建议详情"}},{path:"/documentapproval",name:"documentapproval",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-af9ddd88")]).then(function(){var n=[c("2403")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:50,page_name:"文件审批"}},{path:"/documentdetail",name:"documentdetail",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3e9b3762")]).then(function(){var n=[c("7000")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:51,page_name:"审批"}},{path:"/addApproval",name:"addApproval",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-bd2c5fe4")]).then(function(){var n=[c("d034")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:52,page_name:"上传审批"}},{path:"/choosePeople",name:"choosePeople",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-565eca12")]).then(function(){var n=[c("6491")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:53,page_name:"请选择"}},{path:"/deputyActivity",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-78b8dc44")]).then(function(){var n=[c("781d")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:54,page_name:"我的履职"}},{path:"/deputyActivity/add",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-5d930644")]).then(function(){var n=[c("a460")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:55,page_name:"发布履职"}},{path:"/deputyActivity/detail",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-58551049")]).then(function(){var n=[c("6365")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:56,page_name:"履职详情"}},{path:"/activity",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-17a1e9ef")]).then(function(){var n=[c("7a17")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:57,page_name:"人大活动"}},{path:"/activity/detail",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-1709e771")]).then(function(){var n=[c("c2c2")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:58,page_name:"活动详情"}},{path:"/performanceDuties",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-18649d42")]).then(function(){var n=[c("6615")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:59,page_name:"人大活动"}},{path:"/performanceDuties/add",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-485e447e")]).then(function(){var n=[c("48c0")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:60,page_name:"发布活动"}},{path:"/performanceDuties/detail",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-23c58442")]).then(function(){var n=[c("8071")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:61,page_name:"活动详情"}},{path:"/dbmessage",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-584fb733")]).then(function(){var n=[c("7058")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:62,page_name:"我的消息"}},{path:"/dbmessage/detail",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-47c41384")]).then(function(){var n=[c("6996")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:63,page_name:"消息详情"}},{path:"/peoplecongresshd",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-56a5731e")]).then(function(){var n=[c("7ff5")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:64,page_name:"人大代表目录"}},{path:"/approval",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-5eeeedb8")]).then(function(){var n=[c("488f")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:65,page_name:"我的审批"}},{path:"/pdf",component:e=>Promise.all([c.e("chunk-6e83591c"),c.e("chunk-3c4ad8ad"),c.e("chunk-5b921c40")]).then(function(){var n=[c("eb47")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:66,page_name:"附件"}},{path:"/file-over-view",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-6e83591c"),c.e("chunk-3c4ad8ad"),c.e("chunk-77016452")]).then(function(){var n=[c("3e22")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:66,page_name:"附件"}},{path:"/researchArticles",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-11f68c99")]).then(function(){var n=[c("7db6")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:67,page_name:"审议意见"}},{path:"/grassrootsNews",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-9f235354")]).then(function(){var n=[c("1606")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:68,page_name:"基层动态"}},{path:"/grassrootsNews/detail",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-4fba4b01")]).then(function(){var n=[c("8c7d")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:69,page_name:"动态详情"}},{path:"/grassrootsNews/add",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-9938cf6a")]).then(function(){var n=[c("193e")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:70,page_name:"添加基层动态"}},{path:"/resolution",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-12691593")]).then(function(){var n=[c("cc1b")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:71,page_name:"决议决定"}},{path:"/proposal",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-7bb9f076")]).then(function(){var n=[c("de2b")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:72,page_name:"议案建议"}},{path:"/uploadMsg",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-ce10cc2c")]).then(function(){var n=[c("e641")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:73,page_name:"上报信息"}},{path:"/singleDetail/:id",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-dc6c3924")]).then(function(){var n=[c("0e80")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:74,page_name:"上报信息详情"}},{path:"/addEnclosure",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-ba249396")]).then(function(){var n=[c("9f3a")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:75,page_name:"上报信息"}},{path:"/removal",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-252cee14")]).then(function(){var n=[c("37c9")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:76,page_name:"任免督职首页"}},{path:"/removalUpload",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-57906892"),c.e("chunk-1dbeebdb"),c.e("chunk-14898a94")]).then(function(){var n=[c("231a")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:77,page_name:"任免督职-上传"}},{path:"/workReview",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-449c0102")]).then(function(){var n=[c("9888")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:78,page_name:"工作评议"}},{path:"/workReviewUpload",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-57906892"),c.e("chunk-1dbeebdb"),c.e("chunk-4d39f26d")]).then(function(){var n=[c("ca2b")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:79,page_name:"工作评议-上传"}},{path:"/subjectReview",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-05749247")]).then(function(){var n=[c("131a")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:78,page_name:"专题评议"}},{path:"/subjectReviewUpload",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-57906892"),c.e("chunk-1dbeebdb"),c.e("chunk-e68ff292")]).then(function(){var n=[c("ef26")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:79,page_name:"专题评议-上传"}},{path:"/officerReview",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-18db5e64")]).then(function(){var n=[c("eeb4")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:78,page_name:"两官评议"}},{path:"/officerReviewUpload",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-57906892"),c.e("chunk-1dbeebdb"),c.e("chunk-638a697a")]).then(function(){var n=[c("1e1a")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:79,page_name:"两官评议-上传"}},{path:"/considerationColumn",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3513db68")]).then(function(){var n=[c("3bb3")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:80,page_name:"审议督政"}},{path:"/contactRepresent",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-1e14dbc2")]).then(function(){var n=[c("d074")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:81,page_name:"常委会联系代表"}},{path:"/contactRepresentprogressing",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-57906892"),c.e("chunk-23a88cb2")]).then(function(){var n=[c("8503")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:82,page_name:"常委会联系代表-进行中"}},{path:"/progressFished",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-57906892"),c.e("chunk-a15cd202")]).then(function(){var n=[c("3625")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:82,page_name:"常委会联系代表-已完成"}},{path:"/comprehensiveMessage",component:e=>c.e("chunk-b05b0a46").then(function(){var n=[c("9ef7")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:83,page_name:"综合信息"}},{path:"/considerationDetails",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-57906892"),c.e("chunk-67bc564c")]).then(function(){var n=[c("53f6")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:84,page_name:"审议督政-详情"}},{path:"/rdNotice",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-37ca28b9")]).then(function(){var n=[c("4465")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:85,page_name:"人大通知公告"}},{path:"/rdNotice/add",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-175201a2")]).then(function(){var n=[c("9de0")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:86,page_name:"人大发布公告"}},{path:"/rdNotice/detail",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-77fb2bc4")]).then(function(){var n=[c("6088")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:87,page_name:"人大通知公告"}},{path:"/terfaceLocation",component:e=>c.e("chunk-37701811").then(function(){var n=[c("41a0")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:87,page_name:"代表联络站"}},{path:"/takeAdvice",component:e=>c.e("chunk-26aa06bd").then(function(){var n=[c("1e05")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:88,page_name:"征求意见"}},{path:"/generalOverview",component:e=>Promise.all([c.e("chunk-741f5406"),c.e("chunk-3c276cda"),c.e("chunk-177cc0fa")]).then(function(){var n=[c("2b09")];e.apply(null,n)}.bind(this)).catch(c.oe),meta:{page_id:89,page_name:"总体概况"}}],u=new t["a"]({routes:h,scrollBehavior(e,n,c){return{x:0,y:0}}});u.beforeEach((e,n,c)=>{aplus_queue.push({action:"aplus.setMetaInfo",arguments:["aplus-waiting","MAN"]}),aplus_queue.push({action:"aplus.setMetaInfo",arguments:["_hold","BLOCK"]});let a=localStorage.getItem("dingAccountId");a&&aplus_queue.push({action:"aplus.setMetaInfo",arguments:["_user_id",a]}),aplus_queue.push({action:"aplus.sendPV",arguments:[{is_auto:!1},{sapp_id:"17886",sapp_name:"xsxrd",page_url:e.path,page_id:e.meta.page_id,page_name:e.meta.page_name}]}),aplus_queue.push({action:"aplus.setMetaInfo",arguments:["_hold","START"]}),c()}),n["a"]=u},a335:function(e,n){e.exports="data:image/png;base64,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"},aaa7:function(e,n){e.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAADZElEQVRYR+2YP2gUQRTG35vbgEUKyxxYWKSIIKhgoSAYuwS1CFG8YMCk8GaXVdBahRXTK5hld1YkKSKJqKRQSTpTCFoIKjaCKVIIZ2mRIuDcPJnj9phc9sze3r8EXLjmdma+3z7eNzPvIezxB/c4H+wADIJgnDE2CQAnAeBQlz7gJwB8UkotOI7zytSsAfq+P5DL5ZYR8VSXoBJliOhjuVwec133lx5QAdRwlmV9AIDDvYQztDeklKc1ZAUwDMMVRByJByDivFLqORF97wYwIg4xxq4Q0VSsR0Srtm2PYhRFZ4loLX6hlJpwHGepG2D1GkEQFBhji0aghjEMwzlEjMnXpZQnXNfd7AWg7/v9lmV9BoBBrU9E8yiE+BH/UYX6IqUcjZO0W6BVH6wAwHFDc11H8A8iWiYIEWkHjdi2/bUbgGEYHgOAVUQcqOOQOoKUBEFEm4hY4Jy/7SSkEOI8ES0hYn+SzjZApdQ0Ij6JI0pEEhFvcc79TkAKIVwiemTqEdF1xthczShmBDnnGATBMGNsGQAOGlCzpVLptud5sh2gnudZ+Xz+IQDcMNb7rZQacxxnzWTaFkENqCcIIYYA4LVpHiJ6Uy6XJ1p1uHZqLpdbRMQLphkA4CLnvLLv7gponC4vAOCMsVBLDm/g1PdSysvmrpEKUEN5nncgn8/rfCgYO3wmhzdw6lKpVJr2PG/LTJ3UgPGkKIoeENFdA7Iphyc5FRFnisXivaScbhpQLxIEwVQWhzdyquM4840MlwmwCpna4bs59V+7QWbAtA5P49SOATZyOBFtIGLlFkREBUQ075Y7nNpRwEYObyCa6NSOA8YCQog7ROQlXDj0MTnDOb/f7OnTUg4mifm+P9jX13eNiHShpR+9oT91XXe9WbjUJ0mWhds1p+0RbBeYkTa1K2DiZaHdgs2u9z+CzUasfvz+iqBZNMUX1lYj0Op8I4Jb9WXnkfhW26pI1vlBEBxljH2rzq+UnWbhPss5v5l18XbME0I8jmuVSuFeLZLeVQ95yRgrFIvFbS2wdginWSOKonEiehmPVUqdi4skXdFXmke61ASABf2zLCvTUZUGxhwjpdStDt2TnDTO9FXO+ej+aL/pr9nTDUwz3GEYXkLEq71oARPRM9u2azmoufZfE73ZBO/0+L/t2zbAIrrJWwAAAABJRU5ErkJggg=="},b8ff:function(e,n,c){},bea3:function(e,n){e.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAADD0lEQVRYR+2ZMWsUQRTH35vbhRQp/AgRItgZsU0wgkUsAgo2wRO0ycxyhRban4hYaBExy84khYJnrUUKu0RMYSEYwUJQMIWlpUXgdufJO3bOueXu9LJ3F8Xband23syPN2/e7PsvQpdrc3PzjLVWEdE8Is4AwFS3fkNoOyCifQDYAQCtlPpQHBP9hjiOpyuVSoKI1SFMPvAQRNTIsiyq1Wo/nHEbkOGCIHgDAHMDjzxcg700TRccZBvQGPMCAC66uYhox1r7iIi+5+CtV2wshPjm+gkhvrp7a+0KALztxYuIDxDxcv5+LR9/TghxAxEXPbuXUspL/NwC3NjYOMtAHtxDpdRtfk6SZKYAcTyKIo6b1mWMIQ/wXBRF7XGKoFrrJ4h4LW+vSynvuD5aa4a/1V5axMXV1dXXLUBjzDMAcHG3K6VccB3HBZhzcIjN8z0RPVVKXXeAvEy8W/nFVaVU4ygAtdZVRGRn8fVFSnmiBai1biJikMfY6VqttncUgHEczwVB8D53VKqUCp0H/TjqiLFxLnFxLikl/t+A9Xp9ql6vH3g7tecu7pYxRubBJEmuCCHWAeAYEW1lWbbCibdfmhkbICKeQsQ1PwcS0bssy5Yrlcr9XnlwLIBE9AoRl4oJOn/+BAB8Ap3vlqjHAljw2kchxC4RqR7AHSfJyAD9HOqB7KZpeiGPOz5nO5Z8rB7UWm8XDvo2nAM2xkgiWneHAbdba5ejKNryvTuSPBjH8WwQBI8B4CQAMFzH95yXYpYQ8S4ATANAQ0p5r7j0IwHsEV+Hap4AHsptntHEgxMP5vlpoO/Bsl4beR6cALIHCqXjZIl7hcUkD5bdMP+uB8sU7mW95tv3K9w/A8BsnqirURQ9d4a/K9yHCZhXg052+SV9lBGPhglojOkuHiVJsiiE2HaTEdEfy2/DAizKb9balpTXV8AEgDUWMLk6cyDW2vkwDNsCZlnANE1Z0b3ZV8DkSf56CdiDTDwxs6yDBrVvFIuuDpXfjcbbPQxDLhVZNx7pbwgA2EfEnWazaXxd0rH8BKij5FYICbDHAAAAAElFTkSuQmCC"},eb26:function(e,n){e.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAADPElEQVRYR+2YX0hTURzHv79tuhlGigYSCYPArjljOi036mGQRGDUQw+9BAW99dBDRUFEL0JBPtZDT/lmDz4EBfkgWBTO3GqX/uBVFPYgJii2IurmtvuLe7c7baa79+4aC3aeNs7vz2ffc37n7PwIZT6ozPmQB4z7vXXY4b5EcJwBWADIsxU8g5cBvHAy7h+MSC+364dqgGL3gTa4lBEQ7bWSiJkHOiLSNSu+xXwoFmhpdFU7P4DQpBozkAZYJMb3TZ2JXAB8AOp0GxXSCTwrlrBwnlO8uBKbngtreTcOigeFe0R0VZtiljJInQxE5maLJRrzej31e2ouA7hbzNbAfJJYGVz5tnIr/GnpD2FIDApTIBLUIEpa6e6cnI4ZCJg3EUOtrwAcMeOzqS2ztJqWw4eiiUXdhsRQK+tf/ONTpqs63iOcJwc90leACI/NwCoMHxH61oqSJ/zjUtA2wLG23bX1uxqW1ARqZScX5OZwIiGbgYx27fO5qqvGCNSoraSS6e2cmBlVP5esoHYKhIQhgM5mtzEPJz/L58xCxkP7bxIc/bkY+VPBFsBYoEVwuZ1RALXZk4CXifHRjIoAmvRaAHjQPy5dsE1BNdDboNDnJBrSIU3CFZq//vJ1+YRa0bYoqEeP9wheIroO4LR+rloFZebRjojUayvgehi1eOp2Nmib3sjIpBSPy+08xUA/AepFAGLl4rYBGoH6m40YEq4ANJCd44myA9SuXrdzKQdv7x60qlqh3/rLo+wUzJ6ra7dbBdDKslcUtKLaep+KghUFS1WgVP/KHvxnCk52e5uqXTW3s50Gw0N9jzzxR6SHhj0KDA0vsRgU7oDohpVEcibV3PNmdt6Kr2HAdz0txxwOx9NifZpCCAbHkgvyUbMPJz2OYUDVQe0g1DV5tLaIkZHKyPL6h7cRn//q71aupfJThy659WFFoa18xKBwHEQjmg2ztKF55KR0X/v47JzdiY3Ee39YCCgODIPIm+XjgQ3tt1wgEcxJI0FtsyFSW3n+fDzGYno10641i6KhVl8V83OrDUzbIPVAzPNpKL1dkRnJcgvYdiiwDJDEUIbx49eDDjGhraDpdpv9YFtHLHvA3yHwojn4hTf2AAAAAElFTkSuQmCC"},edeb:function(e,n,c){"use strict";var a=c("a0b2"),t=c.n(a);t.a},ee15:function(e,n){e.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAADUElEQVRYR+2ZT0wTQRTG35u2ygGMGrzXCOk2GtkNMbANxJJ4wAOJJl6ImOgJPOFB7xpjPOgBIgl60sR61gMHb8XQtPUP2UI0XcSEHrhZbQQPJO3OM7tll+2mLdkWFo3todmdfTPz6zczb3a+IlT5LPcJvZqPJpBwABCCANhWLa75MtoCghwAzvs17emZD1+XnG2ivSB++kT7sY7js8DYWPOdN9AC57HC5s+bQ1++/zZrW4AG3JHOBUAQG2h676oQZAob+UET0gLMyOHXgHDJ6olonoBPaxzyfp9vwSwvadqgD9m69QsZrpnXXNNGEVm6Ji3CI0S8oj9HgilONA3IRQQ2CYjRnb7hjZjKXjbi9K9lWTjPEefNACJ6LKXUO/q90i8E0QZBnE5KaTVnxmYiYbLqcRqS0qrVjhM0ExGeA+D1csd0tyep3jNjFFnQ4W+b94woejalvjMAM5HwSwAw511CTGYHrYoeAW5z6CM1UO6bXohJ9UYZUBbWADGoX2sav9b7fiV2EICLfaExn4/pYgERfJNS2W4DUImEiwjgNx4US5L0cTVzEIDKuW4RA37F4AAoSclswBxi+zyqmGNezcFq811MZvH/BowHg21DudzWzoqvvYo9VVDpD11FxmYA4CgQzRU2fozqibdemvEMkCH1ELIpew4koE/F4tbIoUDbw1p50BNAIHoLiMPOBF1Oa6QS4DoiXKiWqL0BrJCNPgNgAhAmqgE7d5J9A7TnUBtIovArf1Gfd0tyaNI55N4qKAvxio0ewIKzVq8sjBPijLkZGDsW0UhvSp2zq+vMuXuSBxflU10+CDwBAAEIE4XNfMX7nAmwKIeGGeJ9JGgnpJiUXHngHPp9Aay6IBosbAE2KJxVraVgS0FjR3KcOXZ7H2xWtX3Pgy1AXQHH0dHVK39LwZaCLubAv7uTNHNwdyHQrqE1D+6KHF5FhK5youZjUnrlldmat4naOA0atkuF9dGMebSrLC4CMpFwdfNI6ReiyDButuXGfnPRf91Qp/1G21ZeXQOTIU3pBiYylrDgOR84zHYMzGYBS8BFTnirroGpd/LXW8AWZEfnLDDLzGxWIHf1OcSch64Kl99aubpP5/ePA1DUq78hqFR6ZvclTZY/yEjrVntar+AAAAAASUVORK5CYII="},ffd5:function(e,n){e.exports="data:image/png;base64,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"}}); \ No newline at end of file diff --git a/src/main/resources/views/dist/js/chunk-44c5918e.a7c493d0.js b/src/main/resources/views/dist/js/chunk-44c5918e.a7c493d0.js deleted file mode 100644 index 26d00a2..0000000 --- a/src/main/resources/views/dist/js/chunk-44c5918e.a7c493d0.js +++ /dev/null @@ -1 +0,0 @@ -(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-44c5918e"],{"167c":function(t,e,s){"use strict";var a=s("be82"),i=s.n(a);i.a},be82:function(t,e,s){},ca2b:function(t,e,s){"use strict";s.r(e);var a=function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",{staticClass:"box"},[a("nav-bar",{attrs:{"left-arrow":"",title:"工作评议"}}),a("div",{staticClass:"tab-contain"},[a("div",{staticClass:"step"},[a("van-swipe",{staticClass:"my-swipe",attrs:{"initial-swipe":t.initialSwipe,autoplay:0,"indicator-color":"#55B955",loop:!1}},[a("van-swipe-item",[a("div",{staticClass:"step-one step-item"},["1"==t.raskStep?a("img",{staticClass:"stepImg",attrs:{src:s("8b8c"),alt:""},on:{click:function(e){return t.noticeStep(1)}}}):t._e(),"1"!=t.raskStep&&0==t.iconCheck1?a("img",{staticClass:"stepImg",attrs:{src:s("8b8c"),alt:""},on:{click:function(e){return t.noticeStep(1)}}}):t._e(),"1"!=t.raskStep&&1==t.iconCheck1?a("img",{staticClass:"stepImg",attrs:{src:s("f47f"),alt:""}}):t._e(),a("div",{staticClass:"line",class:t.raskStep>1?"completedLine":""}),a("div",{staticClass:"step-title"},[t._v("上报"),a("br"),t._v("拟评部门")])]),a("div",{staticClass:"step-one step-item"},["2"==t.raskStep?a("img",{staticClass:"stepImg",attrs:{src:s("4dd9"),alt:""},on:{click:function(e){return t.noticeStep(2)}}}):t.raskStep<"2"?a("img",{staticClass:"stepImg",attrs:{src:s("6646"),alt:""}}):t._e(),t.raskStep>"2"&&0==t.iconCheck2?a("img",{staticClass:"stepImg",attrs:{src:s("4dd9"),alt:""},on:{click:function(e){return t.noticeStep(2)}}}):t._e(),t.raskStep>"2"&&1==t.iconCheck2?a("img",{staticClass:"stepImg",attrs:{src:s("c5bc"),alt:""}}):t._e(),a("div",{staticClass:"line",class:t.raskStep>2?"completedLine":""}),a("div",{staticClass:"step-title",staticStyle:{"padding-left":"0.2rem"}},[t._v(" 确定"),a("br"),t._v("评议方案 ")])]),a("div",{staticClass:"step-three step-item"},["3"==t.raskStep?a("img",{staticClass:"stepImg",attrs:{src:s("93f5"),alt:""},on:{click:function(e){return t.noticeStep(3)}}}):t.raskStep<"3"?a("img",{staticClass:"stepImg",attrs:{src:s("b84b"),alt:""}}):t._e(),t.raskStep>"3"&&0==t.iconCheck3?a("img",{staticClass:"stepImg",attrs:{src:s("93f5"),alt:""},on:{click:function(e){return t.noticeStep(3)}}}):t._e(),t.raskStep>"3"&&1==t.iconCheck3?a("img",{staticClass:"stepImg",attrs:{src:s("bd6e"),alt:""}}):t._e(),a("div",{staticClass:"line",class:t.raskStep>3?"completedLine":""}),a("div",{staticClass:"step-title",staticStyle:{"padding-left":"0.4rem"}},[t._v(" 召 开"),a("br"),t._v("评议 动员 ")])])]),a("van-swipe-item",{staticClass:"swiperSecond"},[a("div",{staticClass:"step-second step-item negativeDirection"},["4"==t.raskStep?a("img",{staticClass:"stepImg",attrs:{src:s("430a"),alt:""},on:{click:function(e){return t.noticeStep(4)}}}):t.raskStep<"4"?a("img",{staticClass:"stepImg",attrs:{src:s("5064"),alt:""}}):t._e(),t.raskStep>"4"&&0==t.iconCheck4?a("img",{staticClass:"stepImg",attrs:{src:s("430a"),alt:""}}):t._e(),t.raskStep>"4"&&1==t.iconCheck4?a("img",{staticClass:"stepImg",attrs:{src:s("7fcb"),alt:""}}):t._e(),a("div",{staticClass:"line",class:t.raskStep>="4"?"completedLine":""}),a("div",{staticClass:"step-title"},[t._v("征求"),a("br"),t._v("意见")])]),a("div",{staticClass:"step-second step-item negativeDirection"},["5"==t.raskStep?a("img",{staticClass:"stepImg",attrs:{src:s("5743"),alt:""},on:{click:function(e){return t.noticeStep(5)}}}):t.raskStep<"5"?a("img",{staticClass:"stepImg",attrs:{src:s("9c86"),alt:""}}):t._e(),t.raskStep>"5"&&0==t.iconCheck5?a("img",{staticClass:"stepImg",attrs:{src:s("5743"),alt:""},on:{click:function(e){return t.noticeStep(5)}}}):t._e(),t.raskStep>"5"&&1==t.iconCheck5?a("img",{staticClass:"stepImg",attrs:{src:s("97dd"),alt:""}}):t._e(),a("div",{staticClass:"line",class:t.raskStep>="5"?"completedLine":""}),a("div",{staticClass:"step-title"},[t._v("评议"),a("br"),t._v("主题会议")])]),a("div",{staticClass:"step-second step-item negativeDirection"},["6"==t.raskStep?a("img",{staticClass:"stepImg",attrs:{src:s("84d0"),alt:""},on:{click:function(e){return t.noticeStep(6)}}}):t.raskStep<"6"?a("img",{staticClass:"stepImg",attrs:{src:s("1d13"),alt:""}}):t._e(),t.raskStep>"6"&&0==t.iconCheck6?a("img",{staticClass:"stepImg",attrs:{src:s("84d0"),alt:""},on:{click:function(e){return t.noticeStep(6)}}}):t._e(),t.raskStep>"6"&&1==t.iconCheck6?a("img",{staticClass:"stepImg",attrs:{src:s("10c9"),alt:""}}):t._e(),a("div",{staticClass:"line",class:t.raskStep>="6"?"completedLine":""}),a("div",{staticClass:"step-title"},[t._v("评议"),a("br"),t._v("整改情况")])]),a("div",{staticClass:"step-second step-narrow step-item negativeDirection"},["7"==t.raskStep&&0==t.iconCheck7?a("img",{staticClass:"stepImg",attrs:{src:s("1dd9")},on:{click:function(e){return t.noticeStep(7)}}}):t.raskStep<"7"?a("img",{staticClass:"stepImg",attrs:{src:s("85a8"),alt:""}}):t._e(),"7"==t.raskStep&&1==t.iconCheck7?a("img",{staticClass:"stepImg",attrs:{src:s("295e"),alt:""}}):t._e(),a("div",{staticClass:"line",class:t.raskStep>="7"?"completedLine":""}),a("div",{staticClass:"step-title"},[t._v("公告 "),a("br"),t._v("评议搞事")])])])],1)],1),"1"==t.step?a("div",{staticClass:"step-contain"},[a("div",{staticClass:"form-ele",staticStyle:{"align-items":"baseline"}},[a("div",{staticClass:"title"},[t._v("拟评部门")]),t.stepFirstFlag?a("div",{staticClass:"inpu_conserf"},[t._l(t.Proposed,(function(e,s){return a("div",[a("input",{directives:[{name:"model",rawName:"v-model",value:e.name,expression:"ite.name"}],attrs:{type:"text",disabled:!t.stepFirstFlag,placeholder:"请输入部门"},domProps:{value:e.name},on:{input:function(s){s.target.composing||t.$set(e,"name",s.target.value)}}})])})),a("van-icon",{attrs:{name:"plus"},on:{click:t.propoList}})],2):a("div",{staticClass:"inpu_conserf"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.formData.stepOne.reviewSubject,expression:"formData.stepOne.reviewSubject"}],staticClass:"input-ele",attrs:{type:"text",disabled:!t.stepFirstFlag,placeholder:"请输入内容"},domProps:{value:t.formData.stepOne.reviewSubject},on:{input:function(e){e.target.composing||t.$set(t.formData.stepOne,"reviewSubject",e.target.value)}}})])]),a("div",[t.stepFirstFlag?a("div",{staticClass:"form-ele",on:{click:function(e){t.show3=!0}}},[a("div",{staticClass:"title"},[t._v("上报截止:")]),a("input",{directives:[{name:"model",rawName:"v-model",value:t.formData.stepOne.reviewEndAt,expression:"formData.stepOne.reviewEndAt"}],staticClass:"input-ele",attrs:{type:"text",placeholder:"请选择上报截止",disabled:""},domProps:{value:t.formData.stepOne.reviewEndAt},on:{input:function(e){e.target.composing||t.$set(t.formData.stepOne,"reviewEndAt",e.target.value)}}}),a("van-icon",{staticClass:"downIcon",attrs:{name:"arrow-down",color:"#D6D6D6"}})],1):a("div",{staticClass:"form-ele"},[a("div",{staticClass:"title"},[t._v("上报截止:")]),a("input",{directives:[{name:"model",rawName:"v-model",value:t.formData.stepOne.reviewEndAt,expression:"formData.stepOne.reviewEndAt"}],staticClass:"input-ele",attrs:{type:"text",placeholder:"请选择上报截止",disabled:""},domProps:{value:t.formData.stepOne.reviewEndAt},on:{input:function(e){e.target.composing||t.$set(t.formData.stepOne,"reviewEndAt",e.target.value)}}}),a("van-icon",{staticClass:"downIcon",attrs:{name:"arrow-down",color:"#D6D6D6"}})],1)]),a("div",[a("div",{staticClass:"form-ele",staticStyle:{"border-bottom":"none"}},[a("div",{staticClass:"title"},[t._v("附件上传:")]),a("div",{staticClass:"enclosure"},[t.stepFirstFlag&&1==t.attachment1?[0==t.formData.stepOne.fileList.length?a("van-uploader",{attrs:{"after-read":t.afterRead,accept:"*",multiple:"","max-count":"1"}},[a("div",{staticClass:"enclosureBtn"},[a("img",{staticClass:"enclosureImg",attrs:{src:s("b160"),alt:""}}),t._v(" 附件上传 ")])]):t._e()]:t._e()],2)]),a("div",{staticStyle:{"border-bottom":"1px solid #f3f3f3"}},[a("van-uploader",{attrs:{"before-delete":t.beforedelete,"show-upload":!1,deletable:t.stepFirstFlag},model:{value:t.formData.stepOne.fileList,callback:function(e){t.$set(t.formData.stepOne,"fileList",e)},expression:"formData.stepOne.fileList"}})],1),a("van-action-sheet",{on:{select:t.onSelect},model:{value:t.isshow,callback:function(e){t.isshow=e},expression:"isshow"}},[a("van-checkbox-group",{model:{value:t.results1,callback:function(e){t.results1=e},expression:"results1"}},[a("van-cell-group",t._l(t.actions,(function(e,s){return a("van-cell",{key:s,attrs:{clickable:"",title:e.title},on:{click:function(a){return t.toggle1(e,s)}}})})),1)],1),a("van-pagination",{attrs:{"total-items":t.count1,"items-per-page":20,"force-ellipses":""},on:{change:t.change1},model:{value:t.currentPage1,callback:function(e){t.currentPage1=e},expression:"currentPage1"}})],1),t._l(t.showMeeting,(function(t,e){return a("van-cell-group",{key:e},[a("van-cell",{staticStyle:{"font-size":"16px","padding-left":"0"},attrs:{title:"关联的会议:",value:t}})],1)}))],2),a("div",{staticClass:"form-ele"},[a("div",{staticClass:"title"},[t._v("确定评议:")]),a("input",{directives:[{name:"model",rawName:"v-model",value:t.formData.stepOne.reviewWork,expression:"formData.stepOne.reviewWork"}],staticClass:"input-ele",attrs:{type:"text",disabled:!t.stepFirstFlag,placeholder:"请输入确定评议"},domProps:{value:t.formData.stepOne.reviewWork},on:{input:function(e){e.target.composing||t.$set(t.formData.stepOne,"reviewWork",e.target.value)}}})]),a("div",{staticClass:"form-ele"},[a("div",{staticClass:"title"},[t._v("评议描述:")]),a("input",{directives:[{name:"model",rawName:"v-model",value:t.formData.stepOne.reviewDesc,expression:"formData.stepOne.reviewDesc"}],staticClass:"input-ele",attrs:{type:"text",disabled:!t.stepFirstFlag,placeholder:"请输入评议描述"},domProps:{value:t.formData.stepOne.reviewDesc},on:{input:function(e){e.target.composing||t.$set(t.formData.stepOne,"reviewDesc",e.target.value)}}})]),a("div",[t.stepFirstFlag?a("div",{staticClass:"form-ele",on:{click:function(e){t.Reviewshow=!0}}},[a("div",{staticClass:"title"},[t._v("评议时间:")]),a("input",{staticClass:"input-ele",attrs:{type:"text",placeholder:"请选择评议时间",disabled:""},domProps:{value:t.formData.stepOne.reviewUploadAt}}),a("van-icon",{staticClass:"downIcon",attrs:{name:"arrow-down",color:"#D6D6D6"}})],1):a("div",{staticClass:"form-ele"},[a("div",{staticClass:"title"},[t._v("评议时间:")]),a("input",{staticClass:"input-ele",attrs:{type:"text",placeholder:"请选择评议时间",disabled:""},domProps:{value:t.formData.stepOne.reviewUploadAt}}),a("van-icon",{staticClass:"downIcon",attrs:{name:"arrow-down",color:"#D6D6D6"}})],1)]),t.isCanAudit1||t.isCanAudit2?a("div",[a("div",{staticStyle:{background:"#f8f8f8",height:"8px",margin:"0 -16px"}}),a("div",{staticClass:"form-ele",staticStyle:{"justify-content":"space-between"}},[a("div",{staticClass:"title"},[t._v("审批:")]),a("van-radio-group",{attrs:{direction:"horizontal"},model:{value:t.radioStatus,callback:function(e){t.radioStatus=e},expression:"radioStatus"}},[a("van-radio",{attrs:{name:"1"}},[t._v("通过")]),a("van-radio",{attrs:{name:"2"}},[t._v("拒绝")])],1)],1),"2"==t.radioStatus?a("div",{staticClass:"form-ele",staticStyle:{"justify-content":"space-between"}},[a("div",{staticClass:"title"},[t._v("拒绝原因:")]),a("input",{directives:[{name:"model",rawName:"v-model",value:t.reason,expression:"reason"}],staticClass:"input-ele",attrs:{type:"text",placeholder:"请输入拒绝原因"},domProps:{value:t.reason},on:{input:function(e){e.target.composing||(t.reason=e.target.value)}}})]):t._e(),a("div",{staticClass:"btn",on:{click:t.submitResult}},[t._v("提交审批结果")])]):t._e(),t._l(t.commontMsg,(function(e,s){return a("div",{key:e.id,staticClass:"evaluate"},[a("p",{staticClass:"evaluate-contain"},[a("span",{staticClass:"title"},[t._v(t._s(e.userName)+":")]),t._v(t._s(e.content)+" ")]),a("div",{staticClass:"evaluate-bottom"},[a("span",{staticClass:"date"},[t._v(t._s(e.createdAt))]),t.lastIndex==s&&"-1"!=t.lastIndex?a("span",{staticClass:"more",on:{click:t.lookmore}},[t._v("查看更多评价")]):t._e()])])})),t.stepFirstFlag&&t.isCreator?a("div",{staticClass:"btn",on:{click:t.submitupload}},[t._v(" 提交 ")]):t._e()],2):t._e(),"2"==t.step?a("div",{staticClass:"step-contain"},[a("div",{staticClass:"form-ele"},[a("div",{staticClass:"title"},[t._v("评议部门:")]),a("input",{directives:[{name:"model",rawName:"v-model",value:t.formData.stepOne.reviewWork,expression:"formData.stepOne.reviewWork"}],staticClass:"input-ele",attrs:{type:"text",disabled:!0,placeholder:"请输入评议部门"},domProps:{value:t.formData.stepOne.reviewWork},on:{input:function(e){e.target.composing||t.$set(t.formData.stepOne,"reviewWork",e.target.value)}}})]),a("div",[t.stepFourFlag?a("div",{staticClass:"form-ele",on:{click:function(e){t.show3=!0}}},[a("div",{staticClass:"title"},[t._v("上传时间:")]),a("input",{directives:[{name:"model",rawName:"v-model",value:t.formData.stepTwo.reviewWorkReportUploadAt,expression:"formData.stepTwo.reviewWorkReportUploadAt"}],staticClass:"input-ele",attrs:{type:"text",placeholder:"请选择上传时间",disabled:""},domProps:{value:t.formData.stepTwo.reviewWorkReportUploadAt},on:{input:function(e){e.target.composing||t.$set(t.formData.stepTwo,"reviewWorkReportUploadAt",e.target.value)}}}),a("van-icon",{staticClass:"downIcon",attrs:{name:"arrow-down",color:"#D6D6D6"}})],1):a("div",{staticClass:"form-ele"},[a("div",{staticClass:"title"},[t._v("上传时间:")]),a("input",{directives:[{name:"model",rawName:"v-model",value:t.formData.stepTwo.reviewWorkReportUploadAt,expression:"formData.stepTwo.reviewWorkReportUploadAt"}],staticClass:"input-ele",attrs:{type:"text",placeholder:"请选择上传时间",disabled:""},domProps:{value:t.formData.stepTwo.reviewWorkReportUploadAt},on:{input:function(e){e.target.composing||t.$set(t.formData.stepTwo,"reviewWorkReportUploadAt",e.target.value)}}}),a("van-icon",{staticClass:"downIcon",attrs:{name:"arrow-down",color:"#D6D6D6"}})],1)]),a("div",{staticClass:"form-ele",staticStyle:{"border-bottom":"none"}},[a("div",{staticClass:"title",staticStyle:{width:"auto"}},[t._v("评议方案:")]),a("div",{staticClass:"enclosure"},[t.stepFiveFlag&&1==t.attachment3?[0==t.formData.stepTwo.reportAttachmentList?a("van-uploader",{attrs:{"after-read":t.afterRead2,multiple:"",accept:"*","max-count":"1"}},[a("div",{staticClass:"enclosureBtn"},[a("img",{staticClass:"enclosureImg",attrs:{src:s("b160"),alt:""}}),t._v(" 附件上传 ")])]):t._e()]:a("div",{staticClass:"enclosureBtn",staticStyle:{opacity:"0.6"}},[a("img",{staticClass:"enclosureImg",attrs:{src:s("b160"),alt:""}}),t._v(" 附件上传 ")])],2)]),a("div",{staticStyle:{"border-bottom":"1px solid #f3f3f3"}},[a("van-uploader",{attrs:{"before-delete":t.beforedelete,"show-upload":!1,deletable:!!t.stepFiveFlag},model:{value:t.formData.stepTwo.reportAttachmentList,callback:function(e){t.$set(t.formData.stepTwo,"reportAttachmentList",e)},expression:"formData.stepTwo.reportAttachmentList"}})],1),"2"==t.raskStep&&t.isCreator?a("div",{staticClass:"btn",on:{click:t.submitupload}},[t._v(" 提交 ")]):t._e()]):t._e(),"3"==t.step?a("div",{staticClass:"step-contain"},[a("div",{staticClass:"form-ele"},[a("div",{staticClass:"title",staticStyle:{width:"auto"}},[t._v("自查报告:")]),a("input",{directives:[{name:"model",rawName:"v-model",value:t.ChecklistValue,expression:"ChecklistValue"}],staticStyle:{border:"none",width:"35%",outline:"none",background:"#f8f8f8",padding:"0.21333rem 0.06667rem 0.21333rem 0.33333rem","border-radius":"0.45333rem"},attrs:{type:"text",disabled:!t.stepFourFlag,placeholder:"请输入组名称"},domProps:{value:t.ChecklistValue},on:{input:function(e){e.target.composing||(t.ChecklistValue=e.target.value)}}}),t.stepFourFlag?a("div",{staticStyle:{color:"#fff",background:"#d03a29",padding:"0.21333rem 0.06667rem 0.21333rem 0.33333rem","border-radius":"0.45333rem",width:"15%","margin-left":"20px"},on:{click:t.addChecklist}},[t._v(" 新增 ")]):t._e()]),t._l(t.reviewWorkChecks,(function(e,i){return a("van-collapse",{key:i,attrs:{accordion:""},model:{value:t.activeNames,callback:function(e){t.activeNames=e},expression:"activeNames"}},[a("van-collapse-item",{attrs:{title:e.name,name:i}},[a("div",{staticClass:"form-ele"},[a("div",{staticClass:"title"},[t._v("部门和人员:")]),a("input",{directives:[{name:"model",rawName:"v-model",value:e.dept,expression:"item.dept"}],staticStyle:{border:"none",width:"35%",outline:"none",background:"#f8f8f8",padding:"0.21333rem 0.06667rem 0.21333rem 0.33333rem","border-radius":"0.45333rem"},attrs:{type:"text",disabled:!t.stepFourFlag,placeholder:"请输入部门"},domProps:{value:e.dept},on:{input:function(s){s.target.composing||t.$set(e,"dept",s.target.value)}}}),a("input",{directives:[{name:"model",rawName:"v-model",value:e.user,expression:"item.user"}],staticStyle:{border:"none",width:"45%","margin-left":"10px",outline:"none",background:"#f8f8f8",padding:"0.21333rem 0.06667rem 0.21333rem 0.33333rem","border-radius":"0.45333rem"},attrs:{type:"text",disabled:!t.stepFourFlag,placeholder:"请输入人员名称"},domProps:{value:e.user},on:{input:function(s){s.target.composing||t.$set(e,"user",s.target.value)}}})]),a("div",{staticClass:"form-ele",staticStyle:{"border-bottom":"none"}},[a("div",{staticClass:"title",staticStyle:{width:"auto"}},[t._v(" 上传自查报告: ")]),a("div",{staticClass:"enclosure"},[t.stepFourFlag&&1==t.attachment2?a("van-uploader",{attrs:{multiple:"","after-read":t.afterRead1(i),accept:"*"}},[a("div",{staticClass:"enclosureBtn"},[a("img",{staticClass:"enclosureImg",attrs:{src:s("b160"),alt:""}}),t._v(" 附件上传 ")])]):a("div",{staticClass:"enclosureBtn",staticStyle:{opacity:"0.6"}},[a("img",{staticClass:"enclosureImg",attrs:{src:s("b160"),alt:""}}),t._v(" 附件上传 ")])],1)]),a("div",{staticStyle:{"border-bottom":"1px solid #f3f3f3"}},[a("van-uploader",{attrs:{"before-delete":t.beforedelete(i),"show-upload":!1,deletable:!!t.stepFourFlag},model:{value:e.fileList,callback:function(s){t.$set(e,"fileList",s)},expression:"item.fileList"}})],1)])],1)})),a("div",{staticClass:"form-ele"},[a("div",{staticClass:"title"},[t._v("备 注:")]),a("input",{directives:[{name:"model",rawName:"v-model",value:t.formData.stepFour.checkRemark,expression:"formData.stepFour.checkRemark"}],staticClass:"input-ele",attrs:{type:"text",disabled:!t.stepFourFlag,placeholder:"请输入备注内容"},domProps:{value:t.formData.stepFour.checkRemark},on:{input:function(e){e.target.composing||t.$set(t.formData.stepFour,"checkRemark",e.target.value)}}})]),a("div",[t.stepFourFlag?a("div",{staticClass:"form-ele",on:{click:function(e){t.show=!0}}},[a("div",{staticClass:"title"},[t._v("上传时间:")]),a("input",{directives:[{name:"model",rawName:"v-model",value:t.formData.stepFour.checkUploadAt.split(" ")[0],expression:"formData.stepFour.checkUploadAt.split(' ')[0]"}],staticClass:"input-ele",attrs:{type:"text",placeholder:"请选择上传时间",disabled:""},domProps:{value:t.formData.stepFour.checkUploadAt.split(" ")[0]},on:{input:function(e){e.target.composing||t.$set(t.formData.stepFour.checkUploadAt.split(" "),0,e.target.value)}}}),a("van-icon",{staticClass:"downIcon",attrs:{name:"arrow-down",color:"#D6D6D6"}})],1):a("div",{staticClass:"form-ele"},[a("div",{staticClass:"title"},[t._v("上传时间:")]),a("input",{directives:[{name:"model",rawName:"v-model",value:t.formData.stepFour.checkUploadAt.split(" ")[0],expression:"formData.stepFour.checkUploadAt.split(' ')[0]"}],staticClass:"input-ele",attrs:{type:"text",placeholder:"请选择上传时间",disabled:""},domProps:{value:t.formData.stepFour.checkUploadAt.split(" ")[0]},on:{input:function(e){e.target.composing||t.$set(t.formData.stepFour.checkUploadAt.split(" "),0,e.target.value)}}}),a("van-icon",{staticClass:"downIcon",attrs:{name:"arrow-down",color:"#D6D6D6"}})],1)]),a("div",[t.stepFourFlag?a("div",{staticClass:"form-ele",staticStyle:{"border-bottom":"none"},on:{click:function(e){t.showPicker5=!0}}},[a("div",{staticClass:"title"},[t._v("打分人员:")]),a("input",{staticClass:"input-ele",attrs:{type:"text",placeholder:"请选择打分人员",disabled:""}}),a("van-icon",{staticClass:"downIcon",attrs:{name:"arrow-down",color:"#D6D6D6"}})],1):a("div",{staticClass:"form-ele",staticStyle:{"border-bottom":"none"}},[a("div",{staticClass:"title"},[t._v("打分人员:")]),a("input",{staticClass:"input-ele",attrs:{type:"text",placeholder:"请选择打分人员",disabled:""}}),a("van-icon",{staticClass:"downIcon",attrs:{name:"arrow-down",color:"#D6D6D6"}})],1)]),a("div",{staticClass:"users"},t._l(t.formData.stepFour.stepUsers1,(function(e,s){return a("div",{key:e.id,staticClass:"item"},[t._v(" "+t._s(e.userName)),t.stepFourFlag?a("van-icon",{attrs:{name:"close"},on:{click:function(a){return t.close(s,1,e)}}}):t._e()],1)})),0),t.isCanCheck?a("div",{staticClass:"form-ele"},[a("div",{staticClass:"title"},[t._v("分数:")]),a("input",{directives:[{name:"model",rawName:"v-model",value:t.formData.voteSorce,expression:"formData.voteSorce"}],staticClass:"input-ele",attrs:{type:"number",disabled:"3"!=t.raskStep,placeholder:"请输入分数(1-100分)"},domProps:{value:t.formData.voteSorce},on:{input:function(e){e.target.composing||t.$set(t.formData,"voteSorce",e.target.value)}}})]):t._e(),t.isCanCheck&&"3"==t.raskStep?a("div",{staticClass:"btn",on:{click:t.hitScore}},[t._v(" 打分 ")]):t._e(),t._l(t.commontMsg,(function(e,s){return a("div",{key:e.id,staticClass:"evaluate"},[a("p",{staticClass:"evaluate-contain"},[a("span",{staticClass:"title"},[t._v(t._s(e.userName)+":")]),t._v(t._s(e.content)+" ")]),a("div",{staticClass:"evaluate-bottom"},[a("span",{staticClass:"date"},[t._v(t._s(e.createdAt))]),t.lastIndex==s&&"-1"!=t.lastIndex?a("span",{staticClass:"more",on:{click:t.lookmore}},[t._v("查看更多评价")]):t._e()])])})),t.stepFourFlag&&t.isCreator?a("div",{staticClass:"btn",on:{click:t.submitupload}},[t._v(" 提交 ")]):t._e(),0==t.stepFourFlag&&"3"==t.raskStep&&t.isCreator?a("div",{staticClass:"btn",staticStyle:{"margin-top":"30px"},on:{click:function(e){return t.endVote(1)}}},[a("img",{staticClass:"enclosureEnd",attrs:{src:s("d31e"),alt:""}}),t._v("结束打分 ")]):t._e(),t.raskStep>"3"?a("div",{staticClass:"btn",staticStyle:{"margin-top":"16px",background:"#d03a29",opacity:"0.6"}},[a("img",{staticClass:"enclosureEnd",attrs:{src:s("d31e"),alt:""}}),t._v("打分已结束 ")]):t._e()],2):t._e(),"4"==t.step?a("div",{staticClass:"step-contain"},t._l(t.commontMsg,(function(e,s){return a("div",{key:e.id,staticClass:"evaluate"},[a("p",{staticClass:"evaluate-contain"},[a("span",{staticClass:"title"},[t._v(t._s(e.userName)+":")]),t._v(t._s(e.content)+" ")]),a("div",{staticClass:"evaluate-bottom"},[a("span",{staticClass:"date"},[t._v(t._s(e.createdAt))]),t.lastIndex==s&&"-1"!=t.lastIndex?a("span",{staticClass:"more",on:{click:t.lookmore}},[t._v("查看更多评价")]):t._e()])])})),0):t._e(),"5"==t.step?a("div",{staticClass:"step-contain"},[a("div",{staticClass:"form-ele",staticStyle:{"border-bottom":"none"}},[a("div",{staticClass:"title",staticStyle:{width:"auto"}},[t._v(" 评议报告: ")]),a("div",{staticClass:"enclosure"},[t.stepFiveFlag&&1==t.attachment3?[0==t.formData.stepFive.fileList.length?a("van-uploader",{attrs:{"after-read":t.afterRead2,multiple:"",accept:"*","max-count":"1"}},[a("div",{staticClass:"enclosureBtn"},[a("img",{staticClass:"enclosureImg",attrs:{src:s("b160"),alt:""}}),t._v(" 附件上传 ")])]):t._e()]:t._e()],2)]),a("div",{staticStyle:{"border-bottom":"1px solid #f3f3f3"}},[a("van-uploader",{attrs:{"before-delete":t.beforedelete,"show-upload":!1,deletable:!!t.stepFiveFlag},model:{value:t.formData.stepFive.fileList,callback:function(e){t.$set(t.formData.stepFive,"fileList",e)},expression:"formData.stepFive.fileList"}})],1),a("van-action-sheet",{on:{select:t.onSelect2},model:{value:t.isshow2,callback:function(e){t.isshow2=e},expression:"isshow2"}},[a("van-checkbox-group",{model:{value:t.results3,callback:function(e){t.results3=e},expression:"results3"}},[a("van-cell-group",t._l(t.actions2,(function(e,s){return a("van-cell",{key:s,attrs:{clickable:"",title:e.title},on:{click:function(a){return t.toggle4(e,s)}}})})),1)],1),a("van-pagination",{attrs:{"total-items":t.count3,"items-per-page":20,"force-ellipses":""},on:{change:t.change3},model:{value:t.currentPage3,callback:function(e){t.currentPage3=e},expression:"currentPage3"}})],1),t._l(t.showMeeting2,(function(t,e){return a("van-cell-group",{key:e},[a("van-cell",{staticStyle:{"font-size":"16px","padding-left":"0"},attrs:{title:"关联的会议:",value:t}})],1)})),a("div",{staticClass:"form-ele"},[a("div",{staticClass:"title"},[t._v("备 注:")]),a("input",{directives:[{name:"model",rawName:"v-model",value:t.formData.stepFive.opinionRemark,expression:"formData.stepFive.opinionRemark"}],staticClass:"input-ele",attrs:{type:"text",disabled:!t.stepFiveFlag,placeholder:"请输入备注内容"},domProps:{value:t.formData.stepFive.opinionRemark},on:{input:function(e){e.target.composing||t.$set(t.formData.stepFive,"opinionRemark",e.target.value)}}})]),a("div",[t.stepFiveFlag?a("div",{staticClass:"form-ele",on:{click:function(e){t.show=!0}}},[a("div",{staticClass:"title"},[t._v("上传时间:")]),a("input",{directives:[{name:"model",rawName:"v-model",value:t.formData.stepFive.opinionUploadAt,expression:"formData.stepFive.opinionUploadAt"}],staticClass:"input-ele",attrs:{type:"text",placeholder:"请选择上传时间",disabled:""},domProps:{value:t.formData.stepFive.opinionUploadAt},on:{input:function(e){e.target.composing||t.$set(t.formData.stepFive,"opinionUploadAt",e.target.value)}}}),a("van-icon",{staticClass:"downIcon",attrs:{name:"arrow-down",color:"#D6D6D6"}})],1):a("div",{staticClass:"form-ele"},[a("div",{staticClass:"title"},[t._v("上传时间:")]),a("input",{directives:[{name:"model",rawName:"v-model",value:t.formData.stepFive.opinionUploadAt,expression:"formData.stepFive.opinionUploadAt"}],staticClass:"input-ele",attrs:{type:"text",placeholder:"请选择上传时间",disabled:""},domProps:{value:t.formData.stepFive.opinionUploadAt},on:{input:function(e){e.target.composing||t.$set(t.formData.stepFive,"opinionUploadAt",e.target.value)}}}),a("van-icon",{staticClass:"downIcon",attrs:{name:"arrow-down",color:"#D6D6D6"}})],1)]),t._l(t.commontMsg,(function(e,s){return a("div",{key:e.id,staticClass:"evaluate"},[a("p",{staticClass:"evaluate-contain"},[a("span",{staticClass:"title"},[t._v(t._s(e.userName)+":")]),t._v(t._s(e.content)+" ")]),a("div",{staticClass:"evaluate-bottom"},[a("span",{staticClass:"date"},[t._v(t._s(e.createdAt))]),t.lastIndex==s&&"-1"!=t.lastIndex?a("span",{staticClass:"more",on:{click:t.lookmore}},[t._v("查看更多评价")]):t._e()])])})),"5"==t.raskStep&&t.isCreator?a("div",{staticClass:"btn",on:{click:t.submitupload}},[t._v(" 提交 ")]):t._e()],2):t._e(),"6"==t.step?a("div",{staticClass:"step-contain"},[a("div",[t.stepSixFlag?a("div",{staticClass:"form-ele",on:{click:function(e){return t.stepSixData(1)}}},[a("div",{staticClass:"title"},[t._v("起始时间:")]),a("input",{directives:[{name:"model",rawName:"v-model",value:t.formData.stepSix.alterUploadAt,expression:"formData.stepSix.alterUploadAt"}],staticClass:"input-ele",attrs:{type:"text",placeholder:"请选择起始时间",disabled:""},domProps:{value:t.formData.stepSix.alterUploadAt},on:{input:function(e){e.target.composing||t.$set(t.formData.stepSix,"alterUploadAt",e.target.value)}}}),a("van-icon",{staticClass:"downIcon",attrs:{name:"arrow-down",color:"#D6D6D6"}})],1):a("div",{staticClass:"form-ele"},[a("div",{staticClass:"title"},[t._v("起始时间:")]),a("input",{directives:[{name:"model",rawName:"v-model",value:t.formData.stepSix.alterUploadAt,expression:"formData.stepSix.alterUploadAt"}],staticClass:"input-ele",attrs:{type:"text",placeholder:"请选择起始时间",disabled:""},domProps:{value:t.formData.stepSix.alterUploadAt},on:{input:function(e){e.target.composing||t.$set(t.formData.stepSix,"alterUploadAt",e.target.value)}}}),a("van-icon",{staticClass:"downIcon",attrs:{name:"arrow-down",color:"#D6D6D6"}})],1)]),a("div",[t.stepSixFlag?a("div",{staticClass:"form-ele",on:{click:function(e){return t.stepSixData(2)}}},[a("div",{staticClass:"title"},[t._v("结束时间:")]),a("input",{directives:[{name:"model",rawName:"v-model",value:t.formData.stepSix.alterEndAt,expression:"formData.stepSix.alterEndAt"}],staticClass:"input-ele",attrs:{type:"text",placeholder:"请选择结束时间",disabled:""},domProps:{value:t.formData.stepSix.alterEndAt},on:{input:function(e){e.target.composing||t.$set(t.formData.stepSix,"alterEndAt",e.target.value)}}}),a("van-icon",{staticClass:"downIcon",attrs:{name:"arrow-down",color:"#D6D6D6"}})],1):a("div",{staticClass:"form-ele"},[a("div",{staticClass:"title"},[t._v("结束时间:")]),a("input",{directives:[{name:"model",rawName:"v-model",value:t.formData.stepSix.alterEndAt,expression:"formData.stepSix.alterEndAt"}],staticClass:"input-ele",attrs:{type:"text",placeholder:"请选择结束时间",disabled:""},domProps:{value:t.formData.stepSix.alterEndAt},on:{input:function(e){e.target.composing||t.$set(t.formData.stepSix,"alterEndAt",e.target.value)}}}),a("van-icon",{staticClass:"downIcon",attrs:{name:"arrow-down",color:"#D6D6D6"}})],1)]),a("div",{staticClass:"form-ele"},[a("div",{staticClass:"title"},[t._v("整改报告:")]),a("input",{directives:[{name:"model",rawName:"v-model",value:t.formData.stepSix.alterRemark,expression:"formData.stepSix.alterRemark"}],staticClass:"input-ele",attrs:{type:"text",disabled:!t.stepSixFlag,placeholder:"请输入整改报告内容"},domProps:{value:t.formData.stepSix.alterRemark},on:{input:function(e){e.target.composing||t.$set(t.formData.stepSix,"alterRemark",e.target.value)}}})]),a("div",{staticClass:"form-ele"},[a("div",{staticClass:"title"},[t._v("整改得分:")]),a("input",{directives:[{name:"model",rawName:"v-model",value:t.formData.stepSix.score,expression:"formData.stepSix.score"}],staticClass:"input-ele",attrs:{type:"text",disabled:!t.stepSixFlag,placeholder:"请输入整改得分内容"},domProps:{value:t.formData.stepSix.score},on:{input:function(e){e.target.composing||t.$set(t.formData.stepSix,"score",e.target.value)}}})]),"6"==t.raskStep&&t.isCreator?a("div",{staticClass:"btn",on:{click:t.submitupload}},[t._v(" 提交 ")]):t._e()]):t._e(),"7"==t.step?a("div",{staticClass:"step-contain"},[a("div",{staticClass:"form-ele"},[a("div",{staticClass:"title",staticStyle:{width:"100px","margin-right":"80px"}},[t._v(" 评议部门: ")]),a("div",{staticClass:"notice-contain"},[t._v(t._s(t.formData.stepOne.reviewSubject))])]),a("div",{staticClass:"form-ele"},[a("div",{staticClass:"title",staticStyle:{width:"100px","margin-right":"80px"}},[t._v(" 评议描述: ")]),a("div",{staticClass:"notice-contain"},[t._v(t._s(t.formData.stepOne.reviewDesc))])]),a("div",{staticClass:"form-ele"},[a("div",{staticClass:"title",staticStyle:{width:"100px","margin-right":"80px"}},[t._v(" 测评平均分: ")]),a("div",{staticClass:"notice-contain"},[t._v(t._s(this.pivotText))])]),a("div",{staticClass:"form-ele"},[a("div",{staticClass:"title",staticStyle:{width:"120px","margin-right":"60px"}},[t._v(" 整改情况报告: ")]),a("div",{staticClass:"notice-contain"},[t._v(t._s(t.formData.stepSix.alterRemark))])]),a("div",{staticClass:"form-ele"},[a("div",{staticClass:"title",staticStyle:{width:"100px","margin-right":"80px"}},[t._v(" 评议得分: ")]),a("div",{staticClass:"notice-contain"},[t._v(t._s(t.formData.stepSix.score))])]),a("div",[t._m(0),a("div",{staticStyle:{"border-bottom":"1px solid #f3f3f3",display:"flex"}},t._l(this.formData.stepFour.fileList,(function(e){return a("div",{key:e.name,staticClass:"fileList1List"},[a("img",{attrs:{src:s("db8f"),alt:""}}),a("h4",[t._v(t._s(e.name))])])})),0)]),a("div",[t._m(1),a("div",{staticStyle:{"border-bottom":"1px solid #f3f3f3",display:"flex"}},t._l(this.formData.stepFive.fileList,(function(e){return a("div",{key:e.name,staticClass:"fileList1List"},[a("img",{attrs:{src:s("db8f"),alt:""}}),a("h4",[t._v(t._s(e.name))])])})),0)]),a("div",[t._m(2),a("div",{staticStyle:{"border-bottom":"1px solid #f3f3f3",display:"flex"}},t._l(this.formData.stepOne.fileList,(function(e){return a("div",{key:e.name,staticClass:"fileList1List"},[a("img",{attrs:{src:s("db8f"),alt:""}}),a("h4",[t._v(t._s(e.name))])])})),0)]),a("div",[t._m(3),a("div",{staticStyle:{"border-bottom":"1px solid #f3f3f3",display:"flex"}},t._l(this.formData.stepFour.fileList,(function(e){return a("div",{key:e.name,staticClass:"fileList1List"},[a("img",{attrs:{src:s("db8f"),alt:""}}),a("h4",[t._v(t._s(e.name))])])})),0)]),a("div",[t._m(4),a("div",{staticStyle:{"border-bottom":"1px solid #f3f3f3",display:"flex"}},t._l(this.formData.stepSix.fileList,(function(e){return a("div",{key:e.name,staticClass:"fileList1List"},[a("img",{attrs:{src:s("db8f"),alt:""}}),a("h4",[t._v(t._s(e.name))])])})),0)]),t._l(t.commontMsg,(function(e,s){return a("div",{key:e.id,staticClass:"evaluate"},[a("p",{staticClass:"evaluate-contain"},[a("span",{staticClass:"title"},[t._v(t._s(e.userName)+":")]),t._v(t._s(e.content)+" ")]),a("div",{staticClass:"evaluate-bottom"},[a("span",{staticClass:"date"},[t._v(t._s(e.createdAt))]),t.lastIndex==s&&"-1"!=t.lastIndex?a("span",{staticClass:"more",on:{click:t.lookmore}},[t._v("查看更多评价")]):t._e()])])}))],2):t._e()]),a("van-calendar",{attrs:{type:"range","allow-same-day":!0},on:{confirm:t.onConfirmReview},model:{value:t.Reviewshow,callback:function(e){t.Reviewshow=e},expression:"Reviewshow"}}),a("van-action-sheet",{attrs:{title:"请添加审批人员"},model:{value:t.showPicker3,callback:function(e){t.showPicker3=e},expression:"showPicker3"}},[a("van-checkbox-group",{on:{change:t.changeCheckbox},model:{value:t.result2,callback:function(e){t.result2=e},expression:"result2"}},[a("van-cell-group",[a("van-list",{attrs:{finished:t.finished,"finished-text":"没有更多了",error:t.error,"error-text":"请求失败,点击重新加载"},on:{"update:error":function(e){t.error=e},load:t.onLoad},model:{value:t.listLoading,callback:function(e){t.listLoading=e},expression:"listLoading"}},t._l(t.users,(function(e,s){return a("van-cell",{key:s,attrs:{clickable:"",title:e.userName},on:{click:function(e){return t.toggle("checkboxes2",s)}},scopedSlots:t._u([{key:"right-icon",fn:function(){return[a("van-checkbox",{ref:"checkboxes2",refInFor:!0,attrs:{name:e}})]},proxy:!0}],null,!0)})})),1)],1)],1)],1),a("van-action-sheet",{attrs:{title:"请添加审批人员"},model:{value:t.showPicker4,callback:function(e){t.showPicker4=e},expression:"showPicker4"}},[a("van-checkbox-group",{on:{change:t.changeCheckbox2},model:{value:t.result3,callback:function(e){t.result3=e},expression:"result3"}},[a("van-cell-group",[a("van-list",{attrs:{finished:t.finished2,"finished-text":"没有更多了",error:t.error2,"error-text":"请求失败,点击重新加载"},on:{"update:error":function(e){t.error2=e},load:t.onLoad2},model:{value:t.listLoading2,callback:function(e){t.listLoading2=e},expression:"listLoading2"}},t._l(t.users2,(function(e,s){return a("van-cell",{key:s,attrs:{clickable:"",title:e.userName},on:{click:function(e){return t.toggle("checkboxes3",s)}},scopedSlots:t._u([{key:"right-icon",fn:function(){return[a("van-checkbox",{ref:"checkboxes3",refInFor:!0,attrs:{name:e}})]},proxy:!0}],null,!0)})})),1)],1)],1)],1),a("van-action-sheet",{attrs:{title:"请添加审批人员"},model:{value:t.showPicker5,callback:function(e){t.showPicker5=e},expression:"showPicker5"}},[a("van-checkbox-group",{model:{value:t.result4,callback:function(e){t.result4=e},expression:"result4"}},[a("van-cell-group",[a("van-list",{attrs:{finished:t.finished3,"finished-text":"没有更多了",error:t.error3,"error-text":"请求失败,点击重新加载"},on:{"update:error":function(e){t.error3=e},load:t.onLoad3},model:{value:t.listLoading3,callback:function(e){t.listLoading3=e},expression:"listLoading3"}},t._l(t.users3,(function(e,s){return a("van-cell",{key:s,attrs:{clickable:"",title:e.userName},on:{click:function(a){return t.toggle2("checkboxes4",s,e)}},scopedSlots:t._u([{key:"right-icon",fn:function(){return[a("van-checkbox",{ref:"checkboxes4",refInFor:!0,attrs:{name:e.id}})]},proxy:!0}],null,!0)})})),1)],1)],1)],1),a("van-popup",{style:{height:"50%"},attrs:{position:"bottom",round:""},model:{value:t.show,callback:function(e){t.show=e},expression:"show"}},[a("van-datetime-picker",{attrs:{type:t.pickerType,title:"请选择时间","columns-order":["year","month","day","hour","minute"],"min-date":t.minDate,formatter:t.formatter},on:{confirm:t.confirmTime,cancel:function(e){t.show=!1}},model:{value:t.currentDate,callback:function(e){t.currentDate=e},expression:"currentDate"}})],1),a("van-popup",{style:{height:"50%"},attrs:{position:"bottom",round:""},model:{value:t.show1,callback:function(e){t.show1=e},expression:"show1"}},[a("van-datetime-picker",{attrs:{type:"datetime",title:"请选择时间","columns-order":["year","month","day","hour","minute"],"min-date":t.minDate1,formatter:t.formatter},on:{confirm:t.confirmTime1,cancel:function(e){t.show1=!1}},model:{value:t.currentDate1,callback:function(e){t.currentDate1=e},expression:"currentDate1"}})],1),a("van-popup",{style:{height:"50%"},attrs:{position:"bottom",round:""},model:{value:t.show3,callback:function(e){t.show3=e},expression:"show3"}},[a("van-datetime-picker",{attrs:{type:"datetime",title:"请选择时间","columns-order":["year","month","day","hour","minute"],"min-date":t.minDate3,formatter:t.formatter},on:{confirm:t.confirmTime3,cancel:function(e){t.show3=!1}},model:{value:t.currentDate3,callback:function(e){t.currentDate3=e},expression:"currentDate3"}})],1),""!=t.id&&t.step{1==t.data.state&&(this.users=t.data.data,this.users2=t.data.data,this.users3=t.data.data)}).catch(t=>{})},watch:{Proposed:{handler(t){let e=this.formData.stepOne.reviewSubject;if(1==t.length)t[0].name,e=t[0].name;else{let s=[];t.forEach(t=>{s.push(t.name)}),e=s.toString()}this.formData.stepOne.reviewSubject=e},deep:!0},"formData.stepOne.fileList":{handler(t,e){0==t.length&&(this.showMeeting=[],this.ConferenceIds=[],this.ConferenceNames=[])},deep:!0}},methods:{formatDate(t){return`${t.getFullYear()}/${t.getMonth()+1}/${t.getDate()}`},onConfirmReview(t){const[e,s]=t;this.Reviewshow=!1,this.formData.stepOne.reviewUploadAt=`${this.formatDate(e)} - ${this.formatDate(s)}`},propoList(){let t=this.Proposed,e=!0;t.forEach(t=>{""==t.name.trim("")&&(Object(o["a"])("部门不能为空"),e=!1)}),e&&this.Proposed.push({name:""})},addChecklist(){""!=this.ChecklistValue&&this.reviewWorkChecks.push({fileList:[],dept:"",user:"",name:this.ChecklistValue})},onSelect(t){this.show=!1,Object(o["a"])(t.name)},onSelect1(t){this.show1=!1,Object(o["a"])(t.name)},onSelect2(t){this.show2=!1,Object(o["a"])(t.name)},onSelect3(t){this.show3=!1,Object(o["a"])(t.name)},stepSixData(t){this.show=!0,this.stepSixShow=t},toggle1(t,e,s){if(this.isshow=!1,this.attachment1=!0,this.fileLength>0)for(var a=0;a0)for(var a=0;a0)for(var a=0;a0)for(var a=0;a{1==t.data.state&&(this.actions=t.data.data,this.count1=t.data.count)})},change2(){Object(l["P"])({type:"all",page:this.currentPage2}).then(t=>{1==t.data.state&&(this.actions1=t.data.data,this.count2=t.data.count)})},change3(){Object(l["P"])({type:"all",page:this.currentPage3}).then(t=>{1==t.data.state&&(this.actions2=t.data.data,this.count3=t.data.count)})},change4(){Object(l["P"])({type:"all",page:this.currentPage4}).then(t=>{1==t.data.state&&(this.actions3=t.data.data,this.count4=t.data.count)})},hitScore(){this.formData.voteSorce?(this.$toast.loading({message:"打分中...",forbidClick:!0,duration:0}),Object(n["f"])({reviewId:this.id,score:this.formData.voteSorce}).then(t=>{1==t.data.state?(this.$toast.success("打分成功"),setTimeout(()=>{this.getappointDeatail(this.id)},500)):this.$toast.clear()})):this.$toast("请输入分数")},submitResult(){if(this.radioStatus)if("2"!=this.radioStatus||this.reason){var t=1;this.isCanAudit2&&(t=2),this.$toast.loading({message:"正在提交...",forbidClick:!0,duration:0}),Object(n["qc"])({level:t,reviewId:this.id,status:this.radioStatus,reason:this.reason}).then(t=>{1==t.data.state?(this.$toast.success("提交成功"),setTimeout(()=>{this.getappointDeatail(this.id)},500)):this.$toast.clear()})}else this.$toast("请输入拒绝原因");else this.$toast("请选择审批")},clivote(t,e){this.voteArr.forEach(t=>{t.selected=!1}),this.voteArr[e].selected=!0,this.$toast.loading({message:"投票中...",forbidClick:!0,duration:0}),Object(n["uc"])({id:this.id,vote:t}).then(t=>{1==t.data.state?(this.$toast.success("投票成功"),setTimeout(()=>{this.getappointDeatail(this.id)},500)):this.$toast.clear()})},changeTabs(){if("0"!=this.active)return"1"==this.active?(this.commentPage="1",this.commontMsg=[],void this.getcommentlistWork()):void 0},lookmore(){this.commentPage++,this.getcommentlistWork()},getcommentlistWork(){this.$toast.loading({message:"加载中...",forbidClick:!0,duration:0}),Object(n["S"])({reviewId:this.id,page:this.commentPage,size:3,type:this.step}).then(t=>{1==t.data.state&&(this.commontAllNum=t.data.count,this.commontMsg=[...this.commontMsg,...t.data.data],t.data.data.length<3?this.lastIndex=-1:this.lastIndex=this.commontMsg.length-1,this.$toast.clear())})},publishComment(){this.comment?(this.$toast.loading({message:"发表中...",forbidClick:!0,duration:0}),Object(n["q"])({reviewId:this.id,content:this.comment,type:this.step}).then(t=>{1==t.data.state&&(this.$toast.success("发表成功"),this.comment="")})):this.$toast("请输入评论")},confirmTime(t){var e=`${t.getFullYear()}-${t.getMonth()+1>=10?t.getMonth()+1:"0"+(t.getMonth()+1)}-${t.getDate()>=10?t.getDate():"0"+t.getDate()}`,s=String(t).split(" ")[4],a=e+" "+s;this.show=!1,"1"!=this.raskStep?"3"!=this.raskStep?"5"!=this.raskStep?"6"!=this.raskStep||(1==this.stepSixShow?this.formData.stepSix.alterUploadAt=a:this.formData.stepSix.alterEndAt=a):this.formData.stepFive.opinionUploadAt=a:this.formData.stepFour.checkUploadAt=a:this.formData.stepOne.reviewUploadAt=a},confirmTime1(t){var e=`${t.getFullYear()}-${t.getMonth()+1>=10?t.getMonth()+1:"0"+(t.getMonth()+1)}-${t.getDate()>=10?t.getDate():"0"+t.getDate()}`,s=String(t).split(" ")[4],a=e+" "+s;this.show1=!1,"1"!=this.raskStep?"3"!=this.raskStep?"5"!=this.raskStep?"6"!=this.raskStep||(1==this.stepSixShow?this.formData.stepSix.alterUploadAt=a:this.formData.stepSix.alterEndAt=a):this.formData.stepFive.opinionUploadAt=a:this.formData.stepFour.checkUploadAt=a:this.formData.stepOne.reviewStartAt=a},confirmTime3(t){var e=`${t.getFullYear()}-${t.getMonth()+1>=10?t.getMonth()+1:"0"+(t.getMonth()+1)}-${t.getDate()>=10?t.getDate():"0"+t.getDate()}`,s=String(t).split(" ")[4],a=e+" "+s;if(this.show3=!1,"1"!=this.raskStep)if("2"==this.raskStep)this.formData.stepTwo.reviewWorkReportUploadAt=a;else{if("3"==this.raskStep)return void(this.formData.stepFour.checkUploadAt=a);if("5"==this.raskStep)return void(this.formData.stepFive.opinionUploadAt=a);if("6"==this.raskStep)return void(1==this.stepSixShow?this.formData.stepSix.alterUploadAt=a:this.formData.stepSix.alterEndAt=a)}else this.formData.stepOne.reviewEndAt=a},confirmTime2(t){var e=`${t.getFullYear()}-${t.getMonth()+1>=10?t.getMonth()+1:"0"+(t.getMonth()+1)}-${t.getDate()>=10?t.getDate():"0"+t.getDate()}`,s=String(t).split(" ")[4],a=e+" "+s;this.show2=!1,"2"!=this.raskStep?"4"!=this.raskStep?"3"!=this.raskStep||(this.formData.stepFour.voteAt=a):this.formData.stepThree.examAt=a:this.formData.stepTwo.conferenceAt=a},formatter(t,e){return"year"===t?e+"年":"month"===t?e+"月":"day"===t?e+"日":"hour"===t?e+"时":"minute"===t?e+"分":e},noticeStep(t,e){1==t&&(this.iconCheck1=!0,this.iconCheck2=!1,this.iconCheck3=!1,this.iconCheck4=!1,this.iconCheck5=!1,this.iconCheck6=!1,this.iconCheck7=!1,this.icon1Check=!0,this.icon2Check=!1,this.icon3Check=!1,this.icon4Check=!1,this.icon5Check=!1,this.icon6Check=!1,this.icon7Check=!1),2==t&&(this.iconCheck1=!1,this.iconCheck2=!0,this.iconCheck3=!1,this.iconCheck4=!1,this.iconCheck5=!1,this.iconCheck6=!1,this.iconCheck7=!1,this.icon1Check=!1,this.icon2Check=!0,this.icon3Check=!1,this.icon4Check=!1,this.icon5Check=!1,this.icon6Check=!1,this.icon7Check=!1),3==t&&(this.iconCheck1=!1,this.iconCheck2=!1,this.iconCheck3=!0,this.iconCheck4=!1,this.iconCheck5=!1,this.iconCheck6=!1,this.iconCheck7=!1,this.icon1Check=!1,this.icon2Check=!1,this.icon3Check=!0,this.icon4Check=!1,this.icon5Check=!1,this.icon6Check=!1,this.icon7Check=!1),4==t&&(this.iconCheck1=!1,this.iconCheck2=!1,this.iconCheck3=!1,this.iconCheck4=!0,this.iconCheck5=!1,this.iconCheck6=!1,this.iconCheck7=!1,this.icon1Check=!1,this.icon2Check=!1,this.icon3Check=!1,this.icon4Check=!0,this.icon5Check=!1,this.icon6Check=!1,this.icon7Check=!1),5==t&&(this.iconCheck1=!1,this.iconCheck2=!1,this.iconCheck3=!1,this.iconCheck4=!1,this.iconCheck5=!0,this.iconCheck6=!1,this.iconCheck7=!1,this.icon1Check=!1,this.icon2Check=!1,this.icon3Check=!1,this.icon4Check=!1,this.icon5Check=!0,this.icon6Check=!1,this.icon7Check=!1),6==t&&(this.iconCheck1=!1,this.iconCheck2=!1,this.iconCheck3=!1,this.iconCheck4=!1,this.iconCheck5=!1,this.iconCheck6=!0,this.iconCheck7=!1,this.icon1Check=!1,this.icon2Check=!1,this.icon3Check=!1,this.icon4Check=!1,this.icon5Check=!1,this.icon6Check=!0,this.icon7Check=!1),7==t&&(this.iconCheck1=!1,this.iconCheck2=!1,this.iconCheck3=!1,this.iconCheck4=!1,this.iconCheck5=!1,this.iconCheck6=!1,this.iconCheck7=!0,this.icon1Check=!1,this.icon2Check=!1,this.icon3Check=!1,this.icon4Check=!1,this.icon5Check=!1,this.icon6Check=!1,this.icon7Check=!0),this.step!=t&&(this.commentPage=1,this.step=t,this.commontMsg=[],this.getcommentlistWork())},getappointDeatail(t){this.$toast.loading({message:"加载中...",forbidClick:!0,duration:0}),Object(n["mc"])(t).then(t=>{if(1==t.data.state){var e=t.data.data;this.tabDisabled=!1,this.isCanAudit1=e.isCanAudit1,this.isCanAudit2=e.isCanAudit2,this.isCanCheck=e.isCanCheck,this.isCreator=e.isCreator,e.averageScore&&(this.formData.averageScore=e.averageScore,this.pivotText=e.averageScore+"分",this.progresspercentage=100*parseInt(e.averageScore/100)),e.state<3?this.initialSwipe=0:this.initialSwipe=1,e.reviewUploadAt?this.stepFirstFlag=!1:this.stepFirstFlag=!0,e.checkUploadAt?this.stepFourFlag=!1:this.stepFourFlag=!0,e.opinionUploadAt?this.stepFiveFlag=!1:this.stepFiveFlag=!0,e.alterUploadAt?this.stepSixFlag=!1:this.stepSixFlag=!0,e.state<8?this.step=e.state:this.step=7,this.raskStep=e.state,this.formData.stepOne.reviewEndAt=e.reviewEndAt,this.formData.stepOne.reviewSubject=e.reviewSubject,this.formData.stepOne.reviewDesc=e.reviewDesc,this.formData.stepOne.reviewWork=e.reviewWork,this.formData.stepOne.reviewUploadAt=e.reviewUploadAt,e.inReportAttachmentList.forEach(t=>{t.url=t.attachment,t.name=t.title}),this.formData.stepOne.fileList=e.inReportAttachmentList,this.formData.stepOne.stepUsers1=e.inReportAudit1List,this.formData.stepOne.stepUsers2=e.inReportAudit2List,this.formData.stepTwo.reviewWorkReportUploadAt=e.reviewWorkReportUploadAt,this.formData.stepTwo.reportAttachmentList,e.reportAttachmentList.forEach(t=>{}),this.formData.stepFour.checkUploadAt=e.checkUploadAt,this.formData.stepFour.checkRemark=e.checkRemark,this.fonList=e.checkAttachmentList;let a=e.checkAttachmentList;if(this.formData.stepFour.fileList=a,e.checkUserList.length>0)this.formData.stepFour.stepUsers1=e.checkUserList;else{var s=[...e.inReportAudit1List,...e.inReportAudit2List];for(let t=0;t{t.id=t.userId,this.result4.push(t.userId)}),this.formData.stepFour.stepUsers1=s}this.formData.stepFive.opinionRemark=e.opinionRemark,this.formData.stepFive.opinionUploadAt=e.opinionUploadAt,e.opinionAttachmentList.forEach(t=>{t.url=t.attachment,t.name=t.title}),this.formData.stepFive.fileList=e.opinionAttachmentList,this.formData.stepSix.alterRemark=e.alterRemark,this.formData.stepSix.alterUploadAt=e.alterUploadAt,this.formData.stepSix.alterEndAt=e.alterEndAt,this.formData.stepSix.score=e.score,e.resultAttachmentList.forEach(t=>{t.url=t.attachment,t.name=t.title}),this.formData.stepSix.fileList=e.resultAttachmentList,this.$toast.clear()}})},afterRead(t){var e=this;if(this.$toast.loading({message:"上传中...",forbidClick:!0,duration:0}),t.length)t.forEach(s=>{let a=new FormData;a.append("files",s.file),Object(l["Jb"])(a).then(a=>{if(1==a.data.state){if("1"==this.raskStep)return this.formData.stepOne.fileList.push({url:a.data.data[0],name:s.file.name}),this.$toast.clear(),this.fileLength=t.length,void r["a"].confirm({title:"附件是否关联会议"}).then(()=>{t.length>1&&Object(l["P"])({type:"all",page:e.currentPage1}).then(t=>{1==t.data.state&&(e.actions=t.data.data,e.count1=t.data.count,e.isshow=!0)}).catch(t=>{})}).catch(()=>{if(t.length>1)for(var s=0;s{if(1==s.data.state){if("1"==this.raskStep)return this.formData.stepOne.fileList.push({url:s.data.data[0],name:t.file.name}),this.$toast.clear(),this.fileLength=t.length,void r["a"].confirm({title:"附件是否关联会议"}).then(()=>{Object(l["P"])({type:"all",page:e.currentPage1}).then(t=>{1==t.data.state&&(e.actions=t.data.data,e.count1=t.data.count,e.isshow=!0)}).catch(t=>{})}).catch(()=>{var t="";e.ConferenceIds.push(t);var s="";e.ConferenceNames.push(s);var a="暂未关联会议";e.showMeeting.push(a)});if("3"==this.raskStep)return this.formData.stepFour.fileList.push({url:s.data.data[0],name:t.file.name}),void this.$toast.clear();if("5"==this.raskStep)return this.formData.stepFive.fileList.push({url:s.data.data[0],name:t.file.name}),void this.$toast.clear();if("6"==this.raskStep)return this.formData.stepSix.fileList.push({url:s.data.data[0],name:t.file.name}),void this.$toast.clear()}else this.$toast.fail("上传失败")})}},afterRead1(t){return e=>{if(this.$toast.loading({message:"上传中...",forbidClick:!0,duration:0}),e.length)e.forEach(s=>{let a=new FormData;a.append("files",s.file),Object(l["Jb"])(a).then(a=>{if(1==a.data.state)if("1"==this.raskStep);else{if("3"==this.raskStep)return this.reviewWorkChecks.forEach(e=>{this.reviewWorkChecks[t]==e&&e.fileList.push({url:a.data.data[0],name:s.file.name})}),this.$toast.clear(),void(this.fileLength=e.length);if("5"==this.raskStep)return this.formData.stepFive.fileList.push({url:a.data.data[0],name:s.file.name}),void this.$toast.clear();if("6"==this.raskStep)return this.formData.stepSix.fileList.push({url:a.data.data[0],name:s.file.name}),void this.$toast.clear()}else this.$toast.fail("上传失败")})});else{let s=new FormData;s.append("files",e.file),Object(l["Jb"])(s).then(s=>{if(1==s.data.state)if("1"==this.raskStep);else{if("3"==this.raskStep)return void this.reviewWorkChecks.forEach(a=>{this.reviewWorkChecks[t]==a&&(a.fileList.push({url:s.data.data[0],name:e.file.name}),this.$toast.clear(),this.fileLength=e.length)});if("5"==this.raskStep)return this.formData.stepFive.fileList.push({url:s.data.data[0],name:e.file.name}),void this.$toast.clear();if("6"==this.raskStep)return this.formData.stepSix.fileList.push({url:s.data.data[0],name:e.file.name}),void this.$toast.clear()}else this.$toast.fail("上传失败")})}}},afterRead2(t){var e=this;if(this.$toast.loading({message:"上传中...",forbidClick:!0,duration:0}),t.length)t.forEach(s=>{let a=new FormData;a.append("files",s.file),Object(l["Jb"])(a).then(a=>{if(1==a.data.state){if("1"==this.raskStep)return this.formData.stepOne.fileList.push({url:a.data.data[0],name:s.file.name}),void this.$toast.clear();if("3"==this.raskStep)return this.formData.stepFour.fileList.push({url:a.data.data[0],name:s.file.name}),void this.$toast.clear();if("5"==this.raskStep)return this.formData.stepFive.fileList.push({url:a.data.data[0],name:s.file.name}),this.$toast.clear(),this.fileLength=t.length,void r["a"].confirm({title:"附件是否关联会议"}).then(()=>{t.length>1&&Object(l["P"])({type:"all",page:e.currentPage3}).then(t=>{1==t.data.state&&(e.actions2=t.data.data,e.count3=t.data.count,e.isshow2=!0)}).catch(t=>{})}).catch(()=>{if(t.length>1)for(var s=0;s{if(1==s.data.state){if("1"==this.raskStep)return this.formData.stepOne.fileList.push({url:s.data.data[0],name:t.file.name}),void this.$toast.clear();if("2"==this.raskStep)return this.formData.stepTwo.reportAttachmentList.push({url:s.data.data[0],name:t.file.name}),void this.$toast.clear();if("3"==this.raskStep)return this.formData.stepFour.fileList.push({url:s.data.data[0],name:t.file.name}),void this.$toast.clear();if("5"==this.raskStep)return this.formData.stepFive.fileList.push({url:s.data.data[0],name:t.file.name}),this.$toast.clear(),this.fileLength=t.length,void r["a"].confirm({title:"附件是否关联会议"}).then(()=>{Object(l["P"])({type:"all",page:e.currentPage3}).then(t=>{1==t.data.state&&(e.actions2=t.data.data,e.count3=t.data.count,e.isshow2=!0)}).catch(t=>{})}).catch(()=>{var t="";e.ConferenceIds2.push(t);var s="";e.ConferenceNames2.push(s);var a="暂未关联会议";e.showMeeting2.push(a)});if("6"==this.raskStep)return this.formData.stepSix.fileList.push({url:s.data.data[0],name:t.file.name}),void this.$toast.clear()}else this.$toast.fail("上传失败")})}},afterRead3(t){var e=this;if(this.$toast.loading({message:"上传中...",forbidClick:!0,duration:0}),t.length)t.forEach(s=>{let a=new FormData;a.append("files",s.file),Object(l["Jb"])(a).then(a=>{if(1==a.data.state){if("1"==this.raskStep)return this.formData.stepOne.fileList.push({url:a.data.data[0],name:s.file.name}),void this.$toast.clear();if("3"==this.raskStep)return this.formData.stepFour.fileList.push({url:a.data.data[0],name:s.file.name}),void this.$toast.clear();if("5"==this.raskStep)return this.formData.stepFive.fileList.push({url:a.data.data[0],name:s.file.name}),void this.$toast.clear();if("6"==this.raskStep)return this.formData.stepSix.fileList.push({url:a.data.data[0],name:s.file.name}),this.$toast.clear(),this.fileLength=t.length,void r["a"].confirm({title:"附件是否关联会议"}).then(()=>{t.length>1&&Object(l["P"])({type:"all",page:e.currentPage4}).then(t=>{1==t.data.state&&(e.actions3=t.data.data,e.count4=t.data.count,e.isshow3=!0)}).catch(t=>{})}).catch(()=>{if(t.length>1)for(var s=0;s{if(1==s.data.state){if("1"==this.raskStep)return this.formData.stepOne.fileList.push({url:s.data.data[0],name:t.file.name}),void this.$toast.clear();if("2"==this.raskStep)return this.formData.stepTwo.reportAttachmentList.push({url:s.data.data[0],name:t.file.name}),void this.$toast.clear();if("3"==this.raskStep)return this.formData.stepFour.fileList.push({url:s.data.data[0],name:t.file.name}),void this.$toast.clear();if("5"==this.raskStep)return this.formData.stepFive.fileList.push({url:s.data.data[0],name:t.file.name}),void this.$toast.clear();if("6"==this.raskStep)return this.formData.stepSix.fileList.push({url:s.data.data[0],name:t.file.name}),this.$toast.clear(),this.fileLength=t.length,void r["a"].confirm({title:"附件是否关联会议"}).then(()=>{Object(l["P"])({type:"all",page:e.currentPage4}).then(t=>{1==t.data.state&&(e.actions3=t.data.data,e.count4=t.data.count,e.isshow3=!0)}).catch(t=>{})}).catch(()=>{var t="";e.ConferenceIds3.push(t);var s="";e.ConferenceNames3.push(s);var a="暂未关联会议";e.showMeeting3.push(a)})}else this.$toast.fail("上传失败")})}},afterRead4(t){var e=this;if(this.$toast.loading({message:"上传中...",forbidClick:!0,duration:0}),t.length)t.forEach(s=>{let a=new FormData;a.append("files",s.file),Object(l["Jb"])(a).then(a=>{if(1==a.data.state){if("1"==this.raskStep)return this.formData.stepOne.fileList.push({url:a.data.data[0],name:s.file.name}),void this.$toast.clear();if("3"==this.raskStep)return this.formData.stepFour.fileList.push({url:a.data.data[0],name:s.file.name}),void this.$toast.clear();if("5"==this.raskStep)return this.formData.stepFive.fileList.push({url:a.data.data[0],name:s.file.name}),void this.$toast.clear();if("6"==this.raskStep)return this.formData.stepSix.fileList.push({url:a.data.data[0],name:s.file.name}),this.$toast.clear(),this.fileLength=t.length,void r["a"].confirm({title:"附件是否关联会议"}).then(()=>{t.length>1&&Object(l["P"])({type:"all",page:e.currentPage4}).then(t=>{1==t.data.state&&(e.actions3=t.data.data,e.count4=t.data.count,e.isshow3=!0)}).catch(t=>{})}).catch(()=>{if(t.length>1)for(var s=0;s{if(1==s.data.state){if("2"==this.raskStep)return this.formData.stepTwo.reportAttachmentList.push({url:s.data.data[0],name:t.file.name}),this.$toast.clear(),this.fileLength=t.length,this.$toast.clear(),void r["a"].confirm({title:"附件是否关联会议"}).then(()=>{Object(l["P"])({type:"all",page:e.currentPage4}).then(t=>{1==t.data.state&&(e.actions3=t.data.data,e.count4=t.data.count,e.isshow3=!0)}).catch(t=>{})}).catch(()=>{var t="";e.ConferenceIds3.push(t);var s="";e.ConferenceNames3.push(s);var a="暂未关联会议";e.showMeeting3.push(a)});if("6"==this.raskStep)return}else this.$toast.fail("上传失败")})}},beforedelete(t){return e=>{"1"!=this.raskStep?"3"!=this.raskStep?"5"!=this.raskStep?"6"!=this.raskStep||this.formData.stepSix.fileList.forEach((t,s)=>{t.url==e.url&&(this.attachment4=!0,this.formData.stepSix.fileList.splice(s,1),this.showMeeting3.splice(s,1),this.ConferenceIds3.splice(s,1),this.ConferenceNames3.splice(s,1))}):this.formData.stepFive.fileList.forEach((t,s)=>{t.url==e.url&&(this.attachment3=!0,this.formData.stepFive.fileList.splice(s,1),this.showMeeting2.splice(s,1),this.ConferenceIds2.splice(s,1),this.ConferenceNames2.splice(s,1))}):this.reviewWorkChecks.forEach((e,s)=>{this.reviewWorkChecks[t]==e&&(this.attachment2=!0,e.fileList.splice(s,1),this.showMeeting1.splice(s,1),this.ConferenceIds1.splice(s,1),this.ConferenceNames1.splice(s,1))}):this.formData.stepOne.fileList.forEach((t,s)=>{t.url==e.url&&(this.attachment1=!0,this.formData.stepOne.fileList.splice(s,1),this.showMeeting.splice(s,1),this.ConferenceIds.splice(s,1),this.ConferenceNames.splice(s,1))})}},endVote(t){this.$toast.loading({message:"提交中...",forbidClick:!0,duration:0}),"1"==t&&Object(n["i"])({id:this.id}).then(t=>{if("1"==t.data.state)return this.$toast.success("操作成功"),void setTimeout(()=>{this.getappointDeatail(this.id)},500)})},submitupload(){var t=[],e=[],s="",a="";if("1"==this.raskStep){if(!this.formData.stepOne.reviewSubject)return void this.$toast("请输入评议部门");if(!this.formData.stepOne.reviewEndAt)return void this.$toast("请选择上报截止时间");if(!this.formData.stepOne.reviewWork)return void this.$toast("请输入确定评议");if(!this.formData.stepOne.reviewDesc)return void this.$toast("请输入评议描述");if(!this.formData.stepOne.reviewUploadAt)return void this.$toast("请选择上传时间");this.formData.stepOne.fileList.length>0&&(this.formData.stepOne.fileList.forEach(s=>{t.push(s.name),e.push(s.url)}),this.formData.stepOne.inReportAttachmentName=t.join(","),this.formData.stepOne.inReportAttachmentPath=e.join(","),this.formData.stepOne.inReportAttachmentConferenceId=this.ConferenceIds.toString(),this.formData.stepOne.inReportAttachmentConferenceName=this.ConferenceNames.toString()),this.formData.stepOne.type=this.reviewType,s=this.formData.stepOne.stepUsers1.map(t=>t.id),a=this.formData.stepOne.stepUsers2.map(t=>t.id),this.formData.stepOne.inReportAudit1Ids=s.join(","),this.formData.stepOne.inReportAudit2Ids=a.join(","),this.$toast.loading({message:"提交中...",forbidClick:!0,duration:0}),Object(n["vb"])(this.formData.stepOne).then(t=>{if("1"==t.data.state)return this.$toast.success("提交成功"),localStorage.setItem("peopleRemovalId",t.data.data.id),this.id=t.data.data.id,void this.getappointDeatail(this.id)})}else if("2"==this.raskStep){let t=this.formData.stepTwo;if(""==t.reviewWorkReportUploadAt.trim(" "))return void this.$toast("请选择上传时间");if(t.reportAttachmentList.length<1)return void this.$toast("请上传附件");let e=[];t.reportAttachmentList.forEach(t=>{e.push({checkAttachmentConferenceId:"",checkAttachmentConferenceName:"",checkAttachmentName:t.name,checkAttachmentPath:t.url})}),t.id=this.id,t.reportAttachmentList=e,Object(n["gc"])(t).then(t=>{if("1"==t.data.state)return this.$toast.success("提交成功"),void setTimeout(()=>{this.getappointDeatail(this.id)},500)})}else if("3"==this.raskStep){if(!this.formData.stepFour.checkUploadAt)return void this.$toast("请选择上传时间");if(this.formData.stepFour.stepUsers1.length<1)return void this.$toast("请选择打分人员");s=this.formData.stepFour.stepUsers1.map(t=>t.id),this.formData.stepFour.reviewId=this.id,this.formData.stepFour.checkUserIds=s;let t=[];this.reviewWorkChecks.map(e=>{let s=[],a=[];e.fileList.forEach(t=>{s.push({checkAttachmentName:t.name,checkAttachmentPath:t.url,checkAttachmentConferenceId:"",checkAttachmentConferenceName:""})}),a.push({dept:e.dept,user:e.user}),t.push({checkUsers:a,name:e.name,checkAttachments:s})}),this.formData.stepFour.reviewWorkChecks=t;let e=this.formData.stepFour;e.obj="",this.$toast.loading({message:"提交中...",forbidClick:!0,duration:0}),Object(n["l"])(e).then(t=>{if("1"==t.data.state)return this.$toast.success("提交成功"),void setTimeout(()=>{this.getappointDeatail(this.id)},500)})}else if("5"==this.raskStep){if(this.formData.stepFive.fileList.length<1)return void this.$toast("请上传附件");if(!this.formData.stepFive.opinionUploadAt)return void this.$toast("请选择上传时间");this.formData.stepFive.fileList.forEach(s=>{t.push(s.name),e.push(s.url)}),this.formData.stepFive.opinionAttachmentName=t.join(","),this.formData.stepFive.opinionAttachmentPath=e.join(","),this.formData.stepOne.opinionAttachmentConferenceId=this.ConferenceIds2.toString(),this.formData.stepOne.opinionAttachmentConferenceName=this.ConferenceNames2.toString(),this.formData.stepFive.reviewId=this.id,this.$toast.loading({message:"提交中...",forbidClick:!0,duration:0}),Object(n["Ab"])(this.formData.stepFive).then(t=>{if("1"==t.data.state)return this.$toast.success("提交成功"),void setTimeout(()=>{this.getappointDeatail(this.id)},500)})}else if("6"==this.raskStep){if(!this.formData.stepSix.alterUploadAt)return void this.$toast("请选择起始时间");if(!this.formData.stepSix.alterEndAt)return void this.$toast("请选择结束时间");if(!this.formData.stepSix.alterRemark)return void this.$toast("请输入整改报告内容");if(!this.formData.stepSix.score)return void this.$toast("请输入整改得分内容");this.formData.stepSix.fileList.forEach(s=>{t.push(s.name),e.push(s.url)}),this.formData.stepSix.resultAttachmentName=t.join(","),this.formData.stepSix.resultAttachmentPath=e.join(","),this.formData.stepOne.resultAttachmentConferenceId=this.ConferenceIds3.toString(),this.formData.stepOne.resultAttachmentConferenceName=this.ConferenceNames3.toString(),this.formData.stepSix.reviewId=this.id,this.$toast.loading({message:"提交中...",forbidClick:!0,duration:0}),Object(n["jc"])(this.formData.stepSix).then(t=>{if("1"==t.data.state)return this.$toast.success("提交成功"),void setTimeout(()=>{this.getappointDeatail(this.id)},500)})}},onLoad3(){this.listPage3++,Object(n["nb"])({type:"admin",page:this.listPage3,size:30}).then(t=>{1==t.data.state?(t.data.data.length>0?this.users3=[...this.users3,...t.data.data]:this.finished3=!0,this.listLoading3=!1):(this.listLoading3=!1,this.error3=!0)}).catch(t=>{this.listLoading3=!1,this.error3=!0})},onLoad(){this.listPage++,Object(n["nb"])({type:"admin",page:this.listPage,size:30}).then(t=>{1==t.data.state?(t.data.data.length>0?this.users=[...this.users,...t.data.data]:this.finished=!0,this.listLoading=!1):(this.listLoading=!1,this.error=!0)}).catch(t=>{this.listLoading=!1,this.error=!0})},onLoad2(){this.listPage2++,Object(n["nb"])({type:"admin",page:this.listPage2,size:30}).then(t=>{1==t.data.state?(t.data.data.length>0?this.users2=[...this.users2,...t.data.data]:this.finished2=!0,this.listLoading2=!1):(this.listLoading2=!1,this.error2=!0)}).catch(t=>{this.listLoading2=!1,this.error2=!0})},changeCheckbox(){"1"!=this.raskStep?"3"!=this.raskStep?"6"!=this.raskStep||(this.formData.stepSix.stepUsers=this.result2):this.formData.stepFour.stepUsers1=this.result2:this.formData.stepOne.stepUsers1=this.result2},changeCheckbox2(){"1"!=this.raskStep?"3"!=this.raskStep?"6"!=this.raskStep||(this.formData.stepSix.stepUsers=this.result3):this.formData.stepFour.stepUsers=this.result3:this.formData.stepOne.stepUsers2=this.result3},toggle(t,e){this.$refs[t][e].toggle()},toggle2(t,e,s){s.userId=s.id;var a=!1,i=-1;this.$refs[t][e].toggle(),this.formData.stepFour.stepUsers1.forEach((t,e)=>{t.userId==s.userId&&(a=!0,i=e)}),a?this.formData.stepFour.stepUsers1.splice(i,1):this.formData.stepFour.stepUsers1.push(s)},upload(){this.$router.push("/removalUpload")},close(t,e,s){if("1"!=this.raskStep||"1"!=e)return"3"==this.raskStep&&"1"==e?(this.formData.stepFour.stepUsers1.splice(t,1),void this.result4.forEach((t,e)=>{t==s.userId&&this.result4.splice(e,1)})):void("1"!=this.raskStep||"2"!=e||this.formData.stepOne.stepUsers2.splice(t,1));this.formData.stepOne.stepUsers1.splice(t,1)}}},h=c,p=(s("167c"),s("2877")),d=Object(p["a"])(h,a,i,!1,null,"86a55f54",null);e["default"]=d.exports},d31e:function(t,e){t.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAmCAYAAACsyDmTAAAACXBIWXMAAAsTAAALEwEAmpwYAAACf0lEQVRYhe2XQUhUURSGv580EgxKAqMwKmjToo1BtAl3ERFJQRBkUNaiFkVBUUGkEGHLFu2CIBBaRAsjCCJXEdQmhKFoYSSR0caQCEGd+VvMHbwzjL5548yTwB8ezNxzzpyP895/7xtYVblsn7DdZ1srzYLtQdsFF9UH0BIFu4CuJvT9LelzFZjzwG1AgIH5OHjA9qybo4LtSxUwR2zPRTnDpVtWmlAP0NqE6ZS0N4LZBzyNer8BzkhyDBQ/UF+A7w2EmQIGA8wu4AXQFmJjwDFJs2UVtu9E4ysbb6Nku9P2eLiFBdvfbG+pzGupVtwEmHbgJbAzLE0BhyRNZg5kuwV4BnSHpRngaDXnZQIEPAIOhs954JSkt4slNxXI9l3gdOkrcFnS86VqlgQK4+4FNiT0zgOjkiai2gvALRY2vvuSHoZYG3AdmAYelCwfN67qMttDKTbAX7bXhrpe2/NR7Imjs8r21chth2ueENCREI+1Hmi13QEMA2vC+mugv2IKnSzsfZvTAN0AJoGNCXl5YETSX9s7WNj4PgLHJc0l1NcGJGkKGKj1x0JNznY/sJvic/MnTX1TXCbpcb21SS5rB86R7LKyMuC9pFcNBwKGgIuUH761AGF7j6Rco4HmU8IQ8vPhSq0koJtAjmSXxTLwYbGzallAkmYonkWZKZPXjzRKclkncI10LqtUjmrnVT1AwD3g7DJgoPhMfQVGGgH0Y5kwUAT6WWtyEtAA8I50LqvUJ0ljDQGSVADq2nHr1f/lspXQKlCSqgFdsX2yyX23LRYoARWite3hykplbwUCsL0fGAXWZQgCxb9B3ZLGy4AC1CZga4YwBiYkTWfYM73+Af6PrBzob9y8AAAAAElFTkSuQmCC"}}]); \ No newline at end of file diff --git a/src/main/resources/views/dist/js/chunk-4d39f26d.cccdcb7b.js b/src/main/resources/views/dist/js/chunk-4d39f26d.cccdcb7b.js new file mode 100644 index 0000000..8a678aa --- /dev/null +++ b/src/main/resources/views/dist/js/chunk-4d39f26d.cccdcb7b.js @@ -0,0 +1 @@ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-4d39f26d"],{"00ff":function(t,e,s){},"2c5f":function(t,e,s){},"336a":function(t,e,s){"use strict";var a=s("00ff"),i=s.n(a);i.a},5793:function(t,e,s){"use strict";var a=s("2c5f"),i=s.n(a);i.a},ca2b:function(t,e,s){"use strict";s.r(e);var a=function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",{staticClass:"box"},[a("nav-bar",{attrs:{"left-arrow":"",title:"工作评议"}}),a("div",{staticClass:"tab-contain"},[a("div",{staticClass:"step"},[a("van-swipe",{staticClass:"my-swipe",attrs:{"initial-swipe":t.initialSwipe,autoplay:0,"indicator-color":"#55B955",loop:!1}},[a("van-swipe-item",[a("div",{staticClass:"step-one step-item"},["1"==t.raskStep?a("img",{staticClass:"stepImg",attrs:{src:s("8b8c"),alt:""},on:{click:function(e){return t.noticeStep(1)}}}):t._e(),"1"!=t.raskStep&&0==t.iconCheck1?a("img",{staticClass:"stepImg",attrs:{src:s("8b8c"),alt:""},on:{click:function(e){return t.noticeStep(1)}}}):t._e(),"1"!=t.raskStep&&1==t.iconCheck1?a("img",{staticClass:"stepImg",attrs:{src:s("f47f"),alt:""}}):t._e(),a("div",{staticClass:"line",class:t.raskStep>1?"completedLine":""}),a("div",{staticClass:"step-title"},[t._v("上报"),a("br"),t._v("拟评部门")])]),a("div",{staticClass:"step-one step-item"},["2"==t.raskStep?a("img",{staticClass:"stepImg",attrs:{src:s("4dd9"),alt:""},on:{click:function(e){return t.noticeStep(2)}}}):t.raskStep<"2"?a("img",{staticClass:"stepImg",attrs:{src:s("6646"),alt:""}}):t._e(),t.raskStep>"2"&&0==t.iconCheck2?a("img",{staticClass:"stepImg",attrs:{src:s("4dd9"),alt:""},on:{click:function(e){return t.noticeStep(2)}}}):t._e(),t.raskStep>"2"&&1==t.iconCheck2?a("img",{staticClass:"stepImg",attrs:{src:s("c5bc"),alt:""}}):t._e(),a("div",{staticClass:"line",class:t.raskStep>2?"completedLine":""}),a("div",{staticClass:"step-title",staticStyle:{"padding-left":"0.2rem"}},[t._v(" 确定"),a("br"),t._v("评议方案 ")])]),a("div",{staticClass:"step-three step-item"},["3"==t.raskStep?a("img",{staticClass:"stepImg",attrs:{src:s("93f5"),alt:""},on:{click:function(e){return t.noticeStep(3)}}}):t.raskStep<"3"?a("img",{staticClass:"stepImg",attrs:{src:s("b84b"),alt:""}}):t._e(),t.raskStep>"3"&&0==t.iconCheck3?a("img",{staticClass:"stepImg",attrs:{src:s("93f5"),alt:""},on:{click:function(e){return t.noticeStep(3)}}}):t._e(),t.raskStep>"3"&&1==t.iconCheck3?a("img",{staticClass:"stepImg",attrs:{src:s("bd6e"),alt:""}}):t._e(),a("div",{staticClass:"line",class:t.raskStep>3?"completedLine":""}),a("div",{staticClass:"step-title",staticStyle:{"padding-left":"0.4rem"}},[t._v(" 召 开"),a("br"),t._v("评议 动员 ")])])]),a("van-swipe-item",{staticClass:"swiperSecond"},[a("div",{staticClass:"step-second step-item negativeDirection"},["4"==t.raskStep?a("img",{staticClass:"stepImg",attrs:{src:s("430a"),alt:""},on:{click:function(e){return t.noticeStep(4)}}}):t.raskStep<"4"?a("img",{staticClass:"stepImg",attrs:{src:s("5064"),alt:""}}):t._e(),t.raskStep>"4"&&0==t.iconCheck4?a("img",{staticClass:"stepImg",attrs:{src:s("430a"),alt:""},on:{click:function(e){return t.noticeStep(4)}}}):t._e(),t.raskStep>"4"&&1==t.iconCheck4?a("img",{staticClass:"stepImg",attrs:{src:s("7fcb"),alt:""}}):t._e(),a("div",{staticClass:"line",class:t.raskStep>="4"?"completedLine":""}),a("div",{staticClass:"step-title"},[t._v("征求"),a("br"),t._v("意见")])]),a("div",{staticClass:"step-second step-item negativeDirection"},["5"==t.raskStep?a("img",{staticClass:"stepImg",attrs:{src:s("5743"),alt:""},on:{click:function(e){return t.noticeStep(5)}}}):t.raskStep<"5"?a("img",{staticClass:"stepImg",attrs:{src:s("9c86"),alt:""}}):t._e(),t.raskStep>"5"&&0==t.iconCheck5?a("img",{staticClass:"stepImg",attrs:{src:s("5743"),alt:""},on:{click:function(e){return t.noticeStep(5)}}}):t._e(),t.raskStep>"5"&&1==t.iconCheck5?a("img",{staticClass:"stepImg",attrs:{src:s("97dd"),alt:""}}):t._e(),a("div",{staticClass:"line",class:t.raskStep>="5"?"completedLine":""}),a("div",{staticClass:"step-title"},[t._v("评议"),a("br"),t._v("主题会议")])]),a("div",{staticClass:"step-second step-item negativeDirection"},["6"==t.raskStep?a("img",{staticClass:"stepImg",attrs:{src:s("84d0"),alt:""},on:{click:function(e){return t.noticeStep(6)}}}):t.raskStep<"6"?a("img",{staticClass:"stepImg",attrs:{src:s("1d13"),alt:""}}):t._e(),t.raskStep>"6"&&0==t.iconCheck6?a("img",{staticClass:"stepImg",attrs:{src:s("84d0"),alt:""},on:{click:function(e){return t.noticeStep(6)}}}):t._e(),t.raskStep>"6"&&1==t.iconCheck6?a("img",{staticClass:"stepImg",attrs:{src:s("10c9"),alt:""}}):t._e(),a("div",{staticClass:"line",class:t.raskStep>="6"?"completedLine":""}),a("div",{staticClass:"step-title"},[t._v("评议"),a("br"),t._v("整改情况")])]),a("div",{staticClass:"step-second step-narrow step-item negativeDirection"},["7"==t.raskStep&&0==t.iconCheck7?a("img",{staticClass:"stepImg",attrs:{src:s("1dd9")},on:{click:function(e){return t.noticeStep(7)}}}):t.raskStep<"7"?a("img",{staticClass:"stepImg",attrs:{src:s("85a8"),alt:""}}):t._e(),"7"==t.raskStep&&1==t.iconCheck7?a("img",{staticClass:"stepImg",attrs:{src:s("295e"),alt:""}}):t._e(),a("div",{staticClass:"line",class:t.raskStep>="7"?"completedLine":""}),a("div",{staticClass:"step-title"},[t._v("公告 "),a("br"),t._v("评议搞事")])])])],1)],1),"1"==t.step?a("div",{staticClass:"step-contain"},[a("div",{staticClass:"form-ele",staticStyle:{"align-items":"baseline"}},[a("div",{staticClass:"title"},[t._v("拟评部门")]),t.stepFirstFlag?a("div",{staticClass:"inpu_conserf"},[t._l(t.Proposed,(function(e,s){return a("div",[a("input",{directives:[{name:"model",rawName:"v-model",value:e.name,expression:"ite.name"}],attrs:{type:"text",disabled:!t.stepFirstFlag,placeholder:"请输入部门"},domProps:{value:e.name},on:{input:function(s){s.target.composing||t.$set(e,"name",s.target.value)}}})])})),a("van-icon",{attrs:{name:"plus"},on:{click:t.propoList}})],2):a("div",{staticClass:"inpu_conserf"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.formData.stepOne.reviewSubject,expression:"formData.stepOne.reviewSubject"}],staticClass:"input-ele",attrs:{type:"text",disabled:!t.stepFirstFlag,placeholder:"请输入内容"},domProps:{value:t.formData.stepOne.reviewSubject},on:{input:function(e){e.target.composing||t.$set(t.formData.stepOne,"reviewSubject",e.target.value)}}})])]),a("div",[t.stepFirstFlag?a("div",{staticClass:"form-ele",on:{click:function(e){t.show3=!0}}},[a("div",{staticClass:"title"},[t._v("上报截止:")]),a("input",{directives:[{name:"model",rawName:"v-model",value:t.formData.stepOne.reviewEndAt,expression:"formData.stepOne.reviewEndAt"}],staticClass:"input-ele",attrs:{type:"text",placeholder:"请选择上报截止",disabled:""},domProps:{value:t.formData.stepOne.reviewEndAt},on:{input:function(e){e.target.composing||t.$set(t.formData.stepOne,"reviewEndAt",e.target.value)}}}),a("van-icon",{staticClass:"downIcon",attrs:{name:"arrow-down",color:"#D6D6D6"}})],1):a("div",{staticClass:"form-ele"},[a("div",{staticClass:"title"},[t._v("上报截止:")]),a("input",{directives:[{name:"model",rawName:"v-model",value:t.formData.stepOne.reviewEndAt,expression:"formData.stepOne.reviewEndAt"}],staticClass:"input-ele",attrs:{type:"text",placeholder:"请选择上报截止",disabled:""},domProps:{value:t.formData.stepOne.reviewEndAt},on:{input:function(e){e.target.composing||t.$set(t.formData.stepOne,"reviewEndAt",e.target.value)}}}),a("van-icon",{staticClass:"downIcon",attrs:{name:"arrow-down",color:"#D6D6D6"}})],1)]),a("div",[a("div",{staticClass:"form-ele",staticStyle:{"border-bottom":"none"}},[a("div",{staticClass:"title"},[t._v("附件上传:")]),a("div",{staticClass:"enclosure"},[t.stepFirstFlag&&1==t.attachment1?[0==t.formData.stepOne.fileList.length?a("van-uploader",{attrs:{"after-read":t.afterRead,accept:"*",multiple:"","max-count":"1"}},[a("div",{staticClass:"enclosureBtn"},[a("img",{staticClass:"enclosureImg",attrs:{src:s("b160"),alt:""}}),t._v(" 附件上传 ")])]):t._e()]:t._e()],2)]),a("div",{staticStyle:{"border-bottom":"1px solid #f3f3f3"}},[a("van-uploader",{attrs:{"before-delete":t.beforedelete,"show-upload":!1,deletable:t.stepFirstFlag},model:{value:t.formData.stepOne.fileList,callback:function(e){t.$set(t.formData.stepOne,"fileList",e)},expression:"formData.stepOne.fileList"}})],1),a("van-action-sheet",{on:{select:t.onSelect},model:{value:t.isshow,callback:function(e){t.isshow=e},expression:"isshow"}},[a("van-checkbox-group",{model:{value:t.results1,callback:function(e){t.results1=e},expression:"results1"}},[a("van-cell-group",t._l(t.actions,(function(e,s){return a("van-cell",{key:s,attrs:{clickable:"",title:e.title},on:{click:function(a){return t.toggle1(e,s)}}})})),1)],1),a("van-pagination",{attrs:{"total-items":t.count1,"items-per-page":20,"force-ellipses":""},on:{change:t.change1},model:{value:t.currentPage1,callback:function(e){t.currentPage1=e},expression:"currentPage1"}})],1),t._l(t.showMeeting,(function(t,e){return a("van-cell-group",{key:e},[a("van-cell",{staticStyle:{"font-size":"16px","padding-left":"0"},attrs:{title:"关联的会议:",value:t}})],1)}))],2),a("div",{staticClass:"form-ele"},[a("div",{staticClass:"title"},[t._v("确定评议:")]),a("input",{directives:[{name:"model",rawName:"v-model",value:t.formData.stepOne.reviewWork,expression:"formData.stepOne.reviewWork"}],staticClass:"input-ele",attrs:{type:"text",disabled:!t.stepFirstFlag,placeholder:"请输入确定评议"},domProps:{value:t.formData.stepOne.reviewWork},on:{input:function(e){e.target.composing||t.$set(t.formData.stepOne,"reviewWork",e.target.value)}}})]),a("div",{staticClass:"form-ele"},[a("div",{staticClass:"title"},[t._v("评议描述:")]),a("input",{directives:[{name:"model",rawName:"v-model",value:t.formData.stepOne.reviewDesc,expression:"formData.stepOne.reviewDesc"}],staticClass:"input-ele",attrs:{type:"text",disabled:!t.stepFirstFlag,placeholder:"请输入评议描述"},domProps:{value:t.formData.stepOne.reviewDesc},on:{input:function(e){e.target.composing||t.$set(t.formData.stepOne,"reviewDesc",e.target.value)}}})]),a("div",[t.stepFirstFlag?a("div",{staticClass:"form-ele",on:{click:function(e){t.Reviewshow=!0}}},[a("div",{staticClass:"title"},[t._v("评议时间:")]),a("input",{staticClass:"input-ele",attrs:{type:"text",placeholder:"请选择评议时间",disabled:""},domProps:{value:t.formData.stepOne.reviewWorkInReportAt}}),a("van-icon",{staticClass:"downIcon",attrs:{name:"arrow-down",color:"#D6D6D6"}})],1):a("div",{staticClass:"form-ele"},[a("div",{staticClass:"title"},[t._v("评议时间:")]),a("input",{staticClass:"input-ele",attrs:{type:"text",placeholder:"请选择评议时间",disabled:""},domProps:{value:t.formData.stepOne.reviewWorkInReportAt}}),a("van-icon",{staticClass:"downIcon",attrs:{name:"arrow-down",color:"#D6D6D6"}})],1)]),t.isCanAudit1||t.isCanAudit2?a("div",[a("div",{staticStyle:{background:"#f8f8f8",height:"8px",margin:"0 -16px"}}),a("div",{staticClass:"form-ele",staticStyle:{"justify-content":"space-between"}},[a("div",{staticClass:"title"},[t._v("审批:")]),a("van-radio-group",{attrs:{direction:"horizontal"},model:{value:t.radioStatus,callback:function(e){t.radioStatus=e},expression:"radioStatus"}},[a("van-radio",{attrs:{name:"1"}},[t._v("通过")]),a("van-radio",{attrs:{name:"2"}},[t._v("拒绝")])],1)],1),"2"==t.radioStatus?a("div",{staticClass:"form-ele",staticStyle:{"justify-content":"space-between"}},[a("div",{staticClass:"title"},[t._v("拒绝原因:")]),a("input",{directives:[{name:"model",rawName:"v-model",value:t.reason,expression:"reason"}],staticClass:"input-ele",attrs:{type:"text",placeholder:"请输入拒绝原因"},domProps:{value:t.reason},on:{input:function(e){e.target.composing||(t.reason=e.target.value)}}})]):t._e(),a("div",{staticClass:"btn",on:{click:t.submitResult}},[t._v("提交审批结果")])]):t._e(),t._l(t.commontMsg,(function(e,s){return a("div",{key:e.id,staticClass:"evaluate"},[a("p",{staticClass:"evaluate-contain"},[a("span",{staticClass:"title"},[t._v(t._s(e.userName)+":")]),t._v(t._s(e.content)+" ")]),a("div",{staticClass:"evaluate-bottom"},[a("span",{staticClass:"date"},[t._v(t._s(e.createdAt))]),t.lastIndex==s&&"-1"!=t.lastIndex?a("span",{staticClass:"more",on:{click:t.lookmore}},[t._v("查看更多评价")]):t._e()])])})),t.stepFirstFlag&&t.isCreator?a("div",{staticClass:"btn",on:{click:t.submitupload}},[t._v(" 提交 ")]):t._e()],2):t._e(),"2"==t.step?a("div",{staticClass:"step-contain"},[a("div",{staticClass:"form-ele"},[a("div",{staticClass:"title"},[t._v("评议部门:")]),a("input",{directives:[{name:"model",rawName:"v-model",value:t.formData.stepOne.reviewWork,expression:"formData.stepOne.reviewWork"}],staticClass:"input-ele",attrs:{type:"text",disabled:!0,placeholder:"请输入评议部门"},domProps:{value:t.formData.stepOne.reviewWork},on:{input:function(e){e.target.composing||t.$set(t.formData.stepOne,"reviewWork",e.target.value)}}})]),a("div",[t.stepFourFlag?a("div",{staticClass:"form-ele",on:{click:function(e){t.show3=!0}}},[a("div",{staticClass:"title"},[t._v("上传时间:")]),a("input",{directives:[{name:"model",rawName:"v-model",value:t.formData.stepTwo.reviewWorkReportUploadAt,expression:"formData.stepTwo.reviewWorkReportUploadAt"}],staticClass:"input-ele",attrs:{type:"text",placeholder:"请选择上传时间",disabled:""},domProps:{value:t.formData.stepTwo.reviewWorkReportUploadAt},on:{input:function(e){e.target.composing||t.$set(t.formData.stepTwo,"reviewWorkReportUploadAt",e.target.value)}}}),a("van-icon",{staticClass:"downIcon",attrs:{name:"arrow-down",color:"#D6D6D6"}})],1):a("div",{staticClass:"form-ele"},[a("div",{staticClass:"title"},[t._v("上传时间:")]),a("input",{directives:[{name:"model",rawName:"v-model",value:t.formData.stepTwo.reviewWorkReportUploadAt,expression:"formData.stepTwo.reviewWorkReportUploadAt"}],staticClass:"input-ele",attrs:{type:"text",placeholder:"请选择上传时间",disabled:""},domProps:{value:t.formData.stepTwo.reviewWorkReportUploadAt},on:{input:function(e){e.target.composing||t.$set(t.formData.stepTwo,"reviewWorkReportUploadAt",e.target.value)}}}),a("van-icon",{staticClass:"downIcon",attrs:{name:"arrow-down",color:"#D6D6D6"}})],1)]),a("div",{staticClass:"form-ele",staticStyle:{"border-bottom":"none"}},[a("div",{staticClass:"title",staticStyle:{width:"auto"}},[t._v("评议方案:")]),a("div",{staticClass:"enclosure"},[t.stepFiveFlag&&1==t.attachment3?[0==t.formData.stepTwo.reportAttachmentList?a("van-uploader",{attrs:{"after-read":t.afterRead2,multiple:"",accept:"*","max-count":"1"}},[a("div",{staticClass:"enclosureBtn"},[a("img",{staticClass:"enclosureImg",attrs:{src:s("b160"),alt:""}}),t._v(" 附件上传 ")])]):t._e()]:a("div",{staticClass:"enclosureBtn",staticStyle:{opacity:"0.6"}},[a("img",{staticClass:"enclosureImg",attrs:{src:s("b160"),alt:""}}),t._v(" 附件上传 ")])],2)]),a("div",{staticStyle:{"border-bottom":"1px solid #f3f3f3"}},[a("van-uploader",{attrs:{"before-delete":t.beforedelete,"show-upload":!1,deletable:!!t.stepFiveFlag},model:{value:t.formData.stepTwo.reportAttachmentList,callback:function(e){t.$set(t.formData.stepTwo,"reportAttachmentList",e)},expression:"formData.stepTwo.reportAttachmentList"}})],1),"2"==t.raskStep&&t.isCreator?a("div",{staticClass:"btn",on:{click:t.submitupload}},[t._v(" 提交 ")]):t._e()]):t._e(),"3"==t.step?a("div",{staticClass:"step-contain"},[a("div",{staticClass:"form-ele"},[a("div",{staticClass:"title",staticStyle:{width:"auto"}},[t._v("自查报告:")]),a("input",{directives:[{name:"model",rawName:"v-model",value:t.ChecklistValue,expression:"ChecklistValue"}],staticStyle:{border:"none",width:"35%",outline:"none",background:"#f8f8f8",padding:"0.21333rem 0.06667rem 0.21333rem 0.33333rem","border-radius":"0.45333rem"},attrs:{type:"text",disabled:!t.stepFourFlag,placeholder:"请输入组名称"},domProps:{value:t.ChecklistValue},on:{input:function(e){e.target.composing||(t.ChecklistValue=e.target.value)}}}),t.stepFourFlag?a("div",{staticStyle:{color:"#fff",background:"#d03a29",padding:"0.21333rem 0.06667rem 0.21333rem 0.33333rem","border-radius":"0.45333rem",width:"15%","margin-left":"20px"},on:{click:t.addChecklist}},[t._v(" 新增 ")]):t._e()]),t._l(t.reviewWorkChecks,(function(e,i){return a("van-collapse",{key:i,attrs:{accordion:""},model:{value:t.activeNames,callback:function(e){t.activeNames=e},expression:"activeNames"}},[a("van-collapse-item",{attrs:{title:e.name,name:i}},[a("div",{staticClass:"form-ele"},[a("div",{staticClass:"title"},[t._v("部门和人员:")]),a("input",{directives:[{name:"model",rawName:"v-model",value:e.dept,expression:"item.dept"}],staticStyle:{border:"none",width:"35%",outline:"none",background:"#f8f8f8",padding:"0.21333rem 0.06667rem 0.21333rem 0.33333rem","border-radius":"0.45333rem"},attrs:{type:"text",disabled:!t.stepFourFlag,placeholder:"请输入部门"},domProps:{value:e.dept},on:{input:function(s){s.target.composing||t.$set(e,"dept",s.target.value)}}}),a("input",{directives:[{name:"model",rawName:"v-model",value:e.user,expression:"item.user"}],staticStyle:{border:"none",width:"45%","margin-left":"10px",outline:"none",background:"#f8f8f8",padding:"0.21333rem 0.06667rem 0.21333rem 0.33333rem","border-radius":"0.45333rem"},attrs:{type:"text",disabled:!t.stepFourFlag,placeholder:"请输入人员名称"},domProps:{value:e.user},on:{input:function(s){s.target.composing||t.$set(e,"user",s.target.value)}}})]),a("div",{staticClass:"form-ele",staticStyle:{"border-bottom":"none"}},[a("div",{staticClass:"title",staticStyle:{width:"auto"}},[t._v(" 上传自查报告: ")]),a("div",{staticClass:"enclosure"},[t.stepFourFlag&&1==t.attachment2?a("van-uploader",{attrs:{multiple:"","after-read":t.afterRead1(i),accept:"*"}},[a("div",{staticClass:"enclosureBtn"},[a("img",{staticClass:"enclosureImg",attrs:{src:s("b160"),alt:""}}),t._v(" 附件上传 ")])]):a("div",{staticClass:"enclosureBtn",staticStyle:{opacity:"0.6"}},[a("img",{staticClass:"enclosureImg",attrs:{src:s("b160"),alt:""}}),t._v(" 附件上传 ")])],1)]),a("div",{staticStyle:{"border-bottom":"1px solid #f3f3f3"}},[a("van-uploader",{attrs:{"before-delete":t.beforedelete(i),"show-upload":!1,deletable:!!t.stepFourFlag},model:{value:e.fileList,callback:function(s){t.$set(e,"fileList",s)},expression:"item.fileList"}})],1)])],1)})),a("div",{staticClass:"form-ele"},[a("div",{staticClass:"title"},[t._v("备 注:")]),a("input",{directives:[{name:"model",rawName:"v-model",value:t.formData.stepFour.checkRemark,expression:"formData.stepFour.checkRemark"}],staticClass:"input-ele",attrs:{type:"text",disabled:!t.stepFourFlag,placeholder:"请输入备注内容"},domProps:{value:t.formData.stepFour.checkRemark},on:{input:function(e){e.target.composing||t.$set(t.formData.stepFour,"checkRemark",e.target.value)}}})]),a("div",[t.stepFourFlag?a("div",{staticClass:"form-ele",on:{click:function(e){t.show=!0}}},[a("div",{staticClass:"title"},[t._v("上传时间:")]),a("input",{directives:[{name:"model",rawName:"v-model",value:t.formData.stepFour.checkUploadAt,expression:"formData.stepFour.checkUploadAt"}],staticClass:"input-ele",attrs:{type:"text",placeholder:"请选择上传时间",disabled:""},domProps:{value:t.formData.stepFour.checkUploadAt},on:{input:function(e){e.target.composing||t.$set(t.formData.stepFour,"checkUploadAt",e.target.value)}}}),a("van-icon",{staticClass:"downIcon",attrs:{name:"arrow-down",color:"#D6D6D6"}})],1):a("div",{staticClass:"form-ele"},[a("div",{staticClass:"title"},[t._v("上传时间:")]),a("input",{directives:[{name:"model",rawName:"v-model",value:t.formData.stepFour.checkUploadAt,expression:"formData.stepFour.checkUploadAt"}],staticClass:"input-ele",attrs:{type:"text",placeholder:"请选择上传时间",disabled:""},domProps:{value:t.formData.stepFour.checkUploadAt},on:{input:function(e){e.target.composing||t.$set(t.formData.stepFour,"checkUploadAt",e.target.value)}}}),a("van-icon",{staticClass:"downIcon",attrs:{name:"arrow-down",color:"#D6D6D6"}})],1)]),a("div",[t.stepFourFlag?a("div",{staticClass:"form-ele",staticStyle:{"border-bottom":"none"},on:{click:function(e){t.showPicker5=!0}}},[a("div",{staticClass:"title"},[t._v("打分人员:")]),a("input",{staticClass:"input-ele",attrs:{type:"text",placeholder:"请选择打分人员",disabled:""}}),a("van-icon",{staticClass:"downIcon",attrs:{name:"arrow-down",color:"#D6D6D6"}})],1):a("div",{staticClass:"form-ele",staticStyle:{"border-bottom":"none"}},[a("div",{staticClass:"title"},[t._v("打分人员:")]),a("input",{staticClass:"input-ele",attrs:{type:"text",placeholder:"请选择打分人员",disabled:""}}),a("van-icon",{staticClass:"downIcon",attrs:{name:"arrow-down",color:"#D6D6D6"}})],1)]),a("div",{staticClass:"users"},t._l(t.formData.stepFour.stepUsers1,(function(e,s){return a("div",{key:e.id,staticClass:"item"},[t._v(" "+t._s(e.userName)+" "),t.stepFourFlag?a("van-icon",{attrs:{name:"close"},on:{click:function(a){return t.close(s,1,e)}}}):t._e()],1)})),0),t.isCanCheck?a("div",{staticClass:"form-ele"},[a("div",{staticClass:"title"},[t._v("分数:")]),a("input",{directives:[{name:"model",rawName:"v-model",value:t.formData.voteSorce,expression:"formData.voteSorce"}],staticClass:"input-ele",attrs:{type:"number",disabled:"3"!=t.raskStep,placeholder:"请输入分数(1-100分)"},domProps:{value:t.formData.voteSorce},on:{input:function(e){e.target.composing||t.$set(t.formData,"voteSorce",e.target.value)}}})]):t._e(),t.isCanCheck&&"3"==t.raskStep?a("div",{staticClass:"btn",on:{click:t.hitScore}},[t._v(" 打分 ")]):t._e(),t._l(t.commontMsg,(function(e,s){return a("div",{key:e.id,staticClass:"evaluate"},[a("p",{staticClass:"evaluate-contain"},[a("span",{staticClass:"title"},[t._v(t._s(e.userName)+":")]),t._v(t._s(e.content)+" ")]),a("div",{staticClass:"evaluate-bottom"},[a("span",{staticClass:"date"},[t._v(t._s(e.createdAt))]),t.lastIndex==s&&"-1"!=t.lastIndex?a("span",{staticClass:"more",on:{click:t.lookmore}},[t._v("查看更多评价")]):t._e()])])})),t.stepFourFlag&&t.isCreator?a("div",{staticClass:"btn",on:{click:t.submitupload}},[t._v(" 提交 ")]):t._e(),0==t.stepFourFlag&&"3"==t.raskStep&&t.isCreator?a("div",{staticClass:"btn",staticStyle:{"margin-top":"30px"},on:{click:function(e){return t.endVote(1)}}},[a("img",{staticClass:"enclosureEnd",attrs:{src:s("d31e"),alt:""}}),t._v("结束打分 ")]):t._e(),t.raskStep>"3"?a("div",{staticClass:"btn",staticStyle:{"margin-top":"16px",background:"#d03a29",opacity:"0.6"}},[a("img",{staticClass:"enclosureEnd",attrs:{src:s("d31e"),alt:""}}),t._v("打分已结束 ")]):t._e()],2):t._e(),"4"==t.step?a("div",{staticClass:"step-contain"},[a("div",[a("div",{staticClass:"form-ele",staticStyle:{"border-bottom":"none"}},[a("div",{staticClass:"title",staticStyle:{width:"140px"}},[t._v("内容显示调查问卷:")]),a("div",{staticClass:"enclosure"},[t.stepFirstFlag&&1==t.attachment1?[0==t.formData.stepOne.fileList.length?a("van-uploader",{attrs:{"after-read":t.afterRead,accept:"*",multiple:"","max-count":"1"}},[a("div",{staticClass:"enclosureBtn"},[a("img",{staticClass:"enclosureImg",attrs:{src:s("b160"),alt:""}}),t._v(" 上传附件 ")])]):t._e()]:t._e()],2)]),a("div",{staticStyle:{"border-bottom":"1px solid #f3f3f3"}},[a("van-uploader",{attrs:{"before-delete":t.beforedelete,"show-upload":!1,deletable:t.stepFirstFlag},model:{value:t.formData.stepOne.fileList,callback:function(e){t.$set(t.formData.stepOne,"fileList",e)},expression:"formData.stepOne.fileList"}})],1),a("van-action-sheet",{on:{select:t.onSelect},model:{value:t.isshow,callback:function(e){t.isshow=e},expression:"isshow"}},[a("van-checkbox-group",{model:{value:t.results1,callback:function(e){t.results1=e},expression:"results1"}},[a("van-cell-group",t._l(t.actions,(function(e,s){return a("van-cell",{key:s,attrs:{clickable:"",title:e.title},on:{click:function(a){return t.toggle1(e,s)}}})})),1)],1),a("van-pagination",{attrs:{"total-items":t.count1,"items-per-page":20,"force-ellipses":""},on:{change:t.change1},model:{value:t.currentPage1,callback:function(e){t.currentPage1=e},expression:"currentPage1"}})],1),t._l(t.showMeeting,(function(t,e){return a("van-cell-group",{key:e},[a("van-cell",{staticStyle:{"font-size":"16px","padding-left":"0"},attrs:{title:"关联的会议:",value:t}})],1)}))],2),a("div",{staticClass:"form-ele"},[a("div",{staticClass:"title"},[t._v("意见汇总:")]),a("input",{directives:[{name:"model",rawName:"v-model",value:t.formData.stepFive.opinionRemark,expression:"formData.stepFive.opinionRemark"}],staticClass:"input-ele",attrs:{type:"text",disabled:!t.stepFiveFlag,placeholder:"请输入备注内容"},domProps:{value:t.formData.stepFive.opinionRemark},on:{input:function(e){e.target.composing||t.$set(t.formData.stepFive,"opinionRemark",e.target.value)}}})]),t._l(t.commontMsg,(function(e,s){return a("div",{key:e.id,staticClass:"evaluate"},[a("p",{staticClass:"evaluate-contain"},[a("span",{staticClass:"title"},[t._v(t._s(e.userName)+":")]),t._v(t._s(e.content)+" ")]),a("div",{staticClass:"evaluate-bottom"},[a("span",{staticClass:"date"},[t._v(t._s(e.createdAt))]),t.lastIndex==s&&"-1"!=t.lastIndex?a("span",{staticClass:"more",on:{click:t.lookmore}},[t._v("查看更多评价")]):t._e()])])})),"2"==t.raskStep&&t.isCreator?a("div",{staticClass:"btn",on:{click:t.submitupload}},[t._v(" 提交 ")]):t._e()],2):t._e(),"5"==t.step?a("div",{staticClass:"step-contain"},[a("div",{staticClass:"form-ele",staticStyle:{"border-bottom":"none"}},[a("div",{staticClass:"title",staticStyle:{width:"auto"}},[t._v(" 评议报告: ")]),a("div",{staticClass:"enclosure"},[t.stepFiveFlag&&1==t.attachment3?[0==t.formData.stepFive.fileList.length?a("van-uploader",{attrs:{"after-read":t.afterRead2,multiple:"",accept:"*","max-count":"1"}},[a("div",{staticClass:"enclosureBtn"},[a("img",{staticClass:"enclosureImg",attrs:{src:s("b160"),alt:""}}),t._v(" 附件上传 ")])]):t._e()]:t._e()],2)]),a("div",{staticStyle:{"border-bottom":"1px solid #f3f3f3"}},[a("van-uploader",{attrs:{"before-delete":t.beforedelete,"show-upload":!1,deletable:!!t.stepFiveFlag},model:{value:t.formData.stepFive.fileList,callback:function(e){t.$set(t.formData.stepFive,"fileList",e)},expression:"formData.stepFive.fileList"}})],1),a("van-action-sheet",{on:{select:t.onSelect2},model:{value:t.isshow2,callback:function(e){t.isshow2=e},expression:"isshow2"}},[a("van-checkbox-group",{model:{value:t.results3,callback:function(e){t.results3=e},expression:"results3"}},[a("van-cell-group",t._l(t.actions2,(function(e,s){return a("van-cell",{key:s,attrs:{clickable:"",title:e.title},on:{click:function(a){return t.toggle4(e,s)}}})})),1)],1),a("van-pagination",{attrs:{"total-items":t.count3,"items-per-page":20,"force-ellipses":""},on:{change:t.change3},model:{value:t.currentPage3,callback:function(e){t.currentPage3=e},expression:"currentPage3"}})],1),t._l(t.showMeeting2,(function(t,e){return a("van-cell-group",{key:e},[a("van-cell",{staticStyle:{"font-size":"16px","padding-left":"0"},attrs:{title:"关联的会议:",value:t}})],1)})),a("div",[a("div",{staticClass:"form-ele",staticStyle:{"border-bottom":"none"}},[a("div",{staticClass:"title"},[t._v("表态发言")]),a("div",{staticClass:"enclosure"},[t.stepFirstFlag&&1==t.attachment1?[0==t.formData.stepOne.fileList.length?a("van-uploader",{attrs:{"after-read":t.afterRead,accept:"*",multiple:"","max-count":"1"}},[a("div",{staticClass:"enclosureBtn"},[a("img",{staticClass:"enclosureImg",attrs:{src:s("b160"),alt:""}}),t._v(" 上传附件 ")])]):t._e()]:t._e()],2)]),a("div",{staticStyle:{"border-bottom":"1px solid #f3f3f3"}},[a("van-uploader",{attrs:{"before-delete":t.beforedelete,"show-upload":!1,deletable:t.stepFirstFlag},model:{value:t.formData.stepOne.fileList,callback:function(e){t.$set(t.formData.stepOne,"fileList",e)},expression:"formData.stepOne.fileList"}})],1),a("van-action-sheet",{on:{select:t.onSelect},model:{value:t.isshow,callback:function(e){t.isshow=e},expression:"isshow"}},[a("van-checkbox-group",{model:{value:t.results1,callback:function(e){t.results1=e},expression:"results1"}},[a("van-cell-group",t._l(t.actions,(function(e,s){return a("van-cell",{key:s,attrs:{clickable:"",title:e.title},on:{click:function(a){return t.toggle1(e,s)}}})})),1)],1),a("van-pagination",{attrs:{"total-items":t.count1,"items-per-page":20,"force-ellipses":""},on:{change:t.change1},model:{value:t.currentPage1,callback:function(e){t.currentPage1=e},expression:"currentPage1"}})],1),t._l(t.showMeeting,(function(t,e){return a("van-cell-group",{key:e},[a("van-cell",{staticStyle:{"font-size":"16px","padding-left":"0"},attrs:{title:"关联的会议:",value:t}})],1)}))],2),a("div",{staticClass:"form-ele"},[a("div",{staticClass:"title"},[t._v("备 注:")]),a("input",{directives:[{name:"model",rawName:"v-model",value:t.formData.stepFive.opinionRemark,expression:"formData.stepFive.opinionRemark"}],staticClass:"input-ele",attrs:{type:"text",disabled:!t.stepFiveFlag,placeholder:"请输入备注内容"},domProps:{value:t.formData.stepFive.opinionRemark},on:{input:function(e){e.target.composing||t.$set(t.formData.stepFive,"opinionRemark",e.target.value)}}})]),a("div",{staticClass:"form-ele"},[a("div",{staticClass:"title"},[t._v("测评得分:")]),a("input",{directives:[{name:"model",rawName:"v-model",value:t.formData.stepFive.opinionRemark,expression:"formData.stepFive.opinionRemark"}],staticClass:"input-ele",attrs:{type:"text",disabled:!t.stepFiveFlag,placeholder:"请输入备注内容"},domProps:{value:t.formData.stepFive.opinionRemark},on:{input:function(e){e.target.composing||t.$set(t.formData.stepFive,"opinionRemark",e.target.value)}}})]),a("div",[t.stepFiveFlag?a("div",{staticClass:"form-ele",on:{click:function(e){t.show=!0}}},[a("div",{staticClass:"title"},[t._v("上传时间:")]),a("input",{directives:[{name:"model",rawName:"v-model",value:t.formData.stepFive.opinionUploadAt,expression:"formData.stepFive.opinionUploadAt"}],staticClass:"input-ele",attrs:{type:"text",placeholder:"请选择上传时间",disabled:""},domProps:{value:t.formData.stepFive.opinionUploadAt},on:{input:function(e){e.target.composing||t.$set(t.formData.stepFive,"opinionUploadAt",e.target.value)}}}),a("van-icon",{staticClass:"downIcon",attrs:{name:"arrow-down",color:"#D6D6D6"}})],1):a("div",{staticClass:"form-ele"},[a("div",{staticClass:"title"},[t._v("上传时间:")]),a("input",{directives:[{name:"model",rawName:"v-model",value:t.formData.stepFive.opinionUploadAt,expression:"formData.stepFive.opinionUploadAt"}],staticClass:"input-ele",attrs:{type:"text",placeholder:"请选择上传时间",disabled:""},domProps:{value:t.formData.stepFive.opinionUploadAt},on:{input:function(e){e.target.composing||t.$set(t.formData.stepFive,"opinionUploadAt",e.target.value)}}}),a("van-icon",{staticClass:"downIcon",attrs:{name:"arrow-down",color:"#D6D6D6"}})],1)]),t._l(t.commontMsg,(function(e,s){return a("div",{key:e.id,staticClass:"evaluate"},[a("p",{staticClass:"evaluate-contain"},[a("span",{staticClass:"title"},[t._v(t._s(e.userName)+":")]),t._v(t._s(e.content)+" ")]),a("div",{staticClass:"evaluate-bottom"},[a("span",{staticClass:"date"},[t._v(t._s(e.createdAt))]),t.lastIndex==s&&"-1"!=t.lastIndex?a("span",{staticClass:"more",on:{click:t.lookmore}},[t._v("查看更多评价")]):t._e()])])})),"5"==t.raskStep&&t.isCreator?a("div",{staticClass:"btn",on:{click:t.submitupload}},[t._v(" 提交 ")]):t._e()],2):t._e(),"6"==t.step?a("div",{staticClass:"step-contain"},[a("div",[t.stepSixFlag?a("div",{staticClass:"form-ele",on:{click:function(e){return t.stepSixData(1)}}},[a("div",{staticClass:"title"},[t._v("起始时间:")]),a("input",{directives:[{name:"model",rawName:"v-model",value:t.formData.stepSix.alterUploadAt,expression:"formData.stepSix.alterUploadAt"}],staticClass:"input-ele",attrs:{type:"text",placeholder:"请选择起始时间",disabled:""},domProps:{value:t.formData.stepSix.alterUploadAt},on:{input:function(e){e.target.composing||t.$set(t.formData.stepSix,"alterUploadAt",e.target.value)}}}),a("van-icon",{staticClass:"downIcon",attrs:{name:"arrow-down",color:"#D6D6D6"}})],1):a("div",{staticClass:"form-ele"},[a("div",{staticClass:"title"},[t._v("起始时间:")]),a("input",{directives:[{name:"model",rawName:"v-model",value:t.formData.stepSix.alterUploadAt,expression:"formData.stepSix.alterUploadAt"}],staticClass:"input-ele",attrs:{type:"text",placeholder:"请选择起始时间",disabled:""},domProps:{value:t.formData.stepSix.alterUploadAt},on:{input:function(e){e.target.composing||t.$set(t.formData.stepSix,"alterUploadAt",e.target.value)}}}),a("van-icon",{staticClass:"downIcon",attrs:{name:"arrow-down",color:"#D6D6D6"}})],1)]),a("div",[t.stepSixFlag?a("div",{staticClass:"form-ele",on:{click:function(e){return t.stepSixData(2)}}},[a("div",{staticClass:"title"},[t._v("结束时间:")]),a("input",{directives:[{name:"model",rawName:"v-model",value:t.formData.stepSix.alterEndAt,expression:"formData.stepSix.alterEndAt"}],staticClass:"input-ele",attrs:{type:"text",placeholder:"请选择结束时间",disabled:""},domProps:{value:t.formData.stepSix.alterEndAt},on:{input:function(e){e.target.composing||t.$set(t.formData.stepSix,"alterEndAt",e.target.value)}}}),a("van-icon",{staticClass:"downIcon",attrs:{name:"arrow-down",color:"#D6D6D6"}})],1):a("div",{staticClass:"form-ele"},[a("div",{staticClass:"title"},[t._v("结束时间:")]),a("input",{directives:[{name:"model",rawName:"v-model",value:t.formData.stepSix.alterEndAt,expression:"formData.stepSix.alterEndAt"}],staticClass:"input-ele",attrs:{type:"text",placeholder:"请选择结束时间",disabled:""},domProps:{value:t.formData.stepSix.alterEndAt},on:{input:function(e){e.target.composing||t.$set(t.formData.stepSix,"alterEndAt",e.target.value)}}}),a("van-icon",{staticClass:"downIcon",attrs:{name:"arrow-down",color:"#D6D6D6"}})],1)]),a("div",{staticClass:"form-ele"},[a("div",{staticClass:"title"},[t._v("整改得分:")]),a("input",{directives:[{name:"model",rawName:"v-model",value:t.formData.stepSix.score,expression:"formData.stepSix.score"}],staticClass:"input-ele",attrs:{type:"text",disabled:!t.stepSixFlag,placeholder:"请输入整改得分内容"},domProps:{value:t.formData.stepSix.score},on:{input:function(e){e.target.composing||t.$set(t.formData.stepSix,"score",e.target.value)}}})]),a("div",[a("div",{staticClass:"form-ele",staticStyle:{"border-bottom":"none"}},[a("div",{staticClass:"title"},[t._v("整改报告:")]),a("div",{staticClass:"enclosure"},[t.stepFirstFlag&&1==t.attachment1?[0==t.formData.stepOne.fileList.length?a("van-uploader",{attrs:{"after-read":t.afterRead,accept:"*",multiple:"","max-count":"1"}},[a("div",{staticClass:"enclosureBtn"},[a("img",{staticClass:"enclosureImg",attrs:{src:s("b160"),alt:""}}),t._v(" 整改报告 ")])]):t._e()]:t._e()],2)]),a("div",{staticStyle:{"border-bottom":"1px solid #f3f3f3"}},[a("van-uploader",{attrs:{"before-delete":t.beforedelete,"show-upload":!1,deletable:t.stepFirstFlag},model:{value:t.formData.stepOne.fileList,callback:function(e){t.$set(t.formData.stepOne,"fileList",e)},expression:"formData.stepOne.fileList"}})],1),a("van-action-sheet",{on:{select:t.onSelect},model:{value:t.isshow,callback:function(e){t.isshow=e},expression:"isshow"}},[a("van-checkbox-group",{model:{value:t.results1,callback:function(e){t.results1=e},expression:"results1"}},[a("van-cell-group",t._l(t.actions,(function(e,s){return a("van-cell",{key:s,attrs:{clickable:"",title:e.title},on:{click:function(a){return t.toggle1(e,s)}}})})),1)],1),a("van-pagination",{attrs:{"total-items":t.count1,"items-per-page":20,"force-ellipses":""},on:{change:t.change1},model:{value:t.currentPage1,callback:function(e){t.currentPage1=e},expression:"currentPage1"}})],1),t._l(t.showMeeting,(function(t,e){return a("van-cell-group",{key:e},[a("van-cell",{staticStyle:{"font-size":"16px","padding-left":"0"},attrs:{title:"关联的会议:",value:t}})],1)}))],2),a("div",[a("div",{staticClass:"form-ele",staticStyle:{"border-bottom":"none"}},[a("div",{staticClass:"title"},[t._v("跟踪督查")]),a("div",{staticClass:"enclosure"},[t.stepFirstFlag&&1==t.attachment1?[0==t.formData.stepOne.fileList.length?a("van-uploader",{attrs:{"after-read":t.afterRead,accept:"*",multiple:"","max-count":"1"}},[a("div",{staticClass:"enclosureBtn"},[a("img",{staticClass:"enclosureImg",attrs:{src:s("b160"),alt:""}}),t._v(" 上传附件 ")])]):t._e()]:t._e()],2)]),a("div",{staticStyle:{"border-bottom":"1px solid #f3f3f3"}},[a("van-uploader",{attrs:{"before-delete":t.beforedelete,"show-upload":!1,deletable:t.stepFirstFlag},model:{value:t.formData.stepOne.fileList,callback:function(e){t.$set(t.formData.stepOne,"fileList",e)},expression:"formData.stepOne.fileList"}})],1),a("van-action-sheet",{on:{select:t.onSelect},model:{value:t.isshow,callback:function(e){t.isshow=e},expression:"isshow"}},[a("van-checkbox-group",{model:{value:t.results1,callback:function(e){t.results1=e},expression:"results1"}},[a("van-cell-group",t._l(t.actions,(function(e,s){return a("van-cell",{key:s,attrs:{clickable:"",title:e.title},on:{click:function(a){return t.toggle1(e,s)}}})})),1)],1),a("van-pagination",{attrs:{"total-items":t.count1,"items-per-page":20,"force-ellipses":""},on:{change:t.change1},model:{value:t.currentPage1,callback:function(e){t.currentPage1=e},expression:"currentPage1"}})],1),t._l(t.showMeeting,(function(t,e){return a("van-cell-group",{key:e},[a("van-cell",{staticStyle:{"font-size":"16px","padding-left":"0"},attrs:{title:"关联的会议:",value:t}})],1)}))],2),"6"==t.raskStep&&t.isCreator?a("div",{staticClass:"btn",on:{click:t.submitupload}},[t._v(" 提交 ")]):t._e()]):t._e(),"7"==t.step?a("div",{staticClass:"step-contain"},[a("div",{staticClass:"form-ele"},[a("div",{staticClass:"title",staticStyle:{width:"100px","margin-right":"80px"}},[t._v(" 评议部门: ")]),a("div",{staticClass:"notice-contain"},[t._v(t._s(t.formData.stepOne.reviewSubject))])]),a("div",{staticClass:"form-ele"},[a("div",{staticClass:"title",staticStyle:{width:"100px","margin-right":"80px"}},[t._v(" 评议描述: ")]),a("div",{staticClass:"notice-contain"},[t._v(t._s(t.formData.stepOne.reviewDesc))])]),a("div",{staticClass:"form-ele"},[a("div",{staticClass:"title",staticStyle:{width:"100px","margin-right":"80px"}},[t._v(" 测评平均分: ")]),a("div",{staticClass:"notice-contain"},[t._v(t._s(this.pivotText))])]),a("div",{staticClass:"form-ele"},[a("div",{staticClass:"title",staticStyle:{width:"120px","margin-right":"60px"}},[t._v(" 整改情况报告: ")]),a("div",{staticClass:"notice-contain"},[t._v(t._s(t.formData.stepSix.alterRemark))])]),a("div",{staticClass:"form-ele"},[a("div",{staticClass:"title",staticStyle:{width:"100px","margin-right":"80px"}},[t._v(" 评议得分: ")]),a("div",{staticClass:"notice-contain"},[t._v(t._s(t.formData.stepSix.score))])]),a("div",[t._m(0),a("div",{staticStyle:{"border-bottom":"1px solid #f3f3f3",display:"flex"}},t._l(this.formData.stepFour.fileList,(function(e){return a("div",{key:e.name,staticClass:"fileList1List"},[a("img",{attrs:{src:s("db8f"),alt:""}}),a("h4",[t._v(t._s(e.name))])])})),0)]),a("div",[t._m(1),a("div",{staticStyle:{"border-bottom":"1px solid #f3f3f3",display:"flex"}},t._l(this.formData.stepFive.fileList,(function(e){return a("div",{key:e.name,staticClass:"fileList1List"},[a("img",{attrs:{src:s("db8f"),alt:""}}),a("h4",[t._v(t._s(e.name))])])})),0)]),a("div",[t._m(2),a("div",{staticStyle:{"border-bottom":"1px solid #f3f3f3",display:"flex"}},t._l(this.formData.stepOne.fileList,(function(e){return a("div",{key:e.name,staticClass:"fileList1List"},[a("img",{attrs:{src:s("db8f"),alt:""}}),a("h4",[t._v(t._s(e.name))])])})),0)]),a("div",[t._m(3),a("div",{staticStyle:{"border-bottom":"1px solid #f3f3f3",display:"flex"}},t._l(this.formData.stepFour.fileList,(function(e){return a("div",{key:e.name,staticClass:"fileList1List"},[a("img",{attrs:{src:s("db8f"),alt:""}}),a("h4",[t._v(t._s(e.name))])])})),0)]),a("div",[t._m(4),a("div",{staticStyle:{"border-bottom":"1px solid #f3f3f3",display:"flex"}},t._l(this.formData.stepSix.fileList,(function(e){return a("div",{key:e.name,staticClass:"fileList1List"},[a("img",{attrs:{src:s("db8f"),alt:""}}),a("h4",[t._v(t._s(e.name))])])})),0)]),t._l(t.commontMsg,(function(e,s){return a("div",{key:e.id,staticClass:"evaluate"},[a("p",{staticClass:"evaluate-contain"},[a("span",{staticClass:"title"},[t._v(t._s(e.userName)+":")]),t._v(t._s(e.content)+" ")]),a("div",{staticClass:"evaluate-bottom"},[a("span",{staticClass:"date"},[t._v(t._s(e.createdAt))]),t.lastIndex==s&&"-1"!=t.lastIndex?a("span",{staticClass:"more",on:{click:t.lookmore}},[t._v("查看更多评价")]):t._e()])])}))],2):t._e()]),a("van-calendar",{attrs:{type:"range","allow-same-day":!0},on:{confirm:t.onConfirmReview},model:{value:t.Reviewshow,callback:function(e){t.Reviewshow=e},expression:"Reviewshow"}}),a("van-action-sheet",{attrs:{title:"请添加审批人员"},model:{value:t.showPicker3,callback:function(e){t.showPicker3=e},expression:"showPicker3"}},[a("van-checkbox-group",{on:{change:t.changeCheckbox},model:{value:t.result2,callback:function(e){t.result2=e},expression:"result2"}},[a("van-cell-group",[a("van-list",{attrs:{finished:t.finished,"finished-text":"没有更多了",error:t.error,"error-text":"请求失败,点击重新加载"},on:{"update:error":function(e){t.error=e},load:t.onLoad},model:{value:t.listLoading,callback:function(e){t.listLoading=e},expression:"listLoading"}},t._l(t.users,(function(e,s){return a("van-cell",{key:s,attrs:{clickable:"",title:e.userName},on:{click:function(e){return t.toggle("checkboxes2",s)}},scopedSlots:t._u([{key:"right-icon",fn:function(){return[a("van-checkbox",{ref:"checkboxes2",refInFor:!0,attrs:{name:e}})]},proxy:!0}],null,!0)})})),1)],1)],1)],1),a("van-action-sheet",{attrs:{title:"请添加审批人员"},model:{value:t.showPicker4,callback:function(e){t.showPicker4=e},expression:"showPicker4"}},[a("van-checkbox-group",{on:{change:t.changeCheckbox2},model:{value:t.result3,callback:function(e){t.result3=e},expression:"result3"}},[a("van-cell-group",[a("van-list",{attrs:{finished:t.finished2,"finished-text":"没有更多了",error:t.error2,"error-text":"请求失败,点击重新加载"},on:{"update:error":function(e){t.error2=e},load:t.onLoad2},model:{value:t.listLoading2,callback:function(e){t.listLoading2=e},expression:"listLoading2"}},t._l(t.users2,(function(e,s){return a("van-cell",{key:s,attrs:{clickable:"",title:e.userName},on:{click:function(e){return t.toggle("checkboxes3",s)}},scopedSlots:t._u([{key:"right-icon",fn:function(){return[a("van-checkbox",{ref:"checkboxes3",refInFor:!0,attrs:{name:e}})]},proxy:!0}],null,!0)})})),1)],1)],1)],1),a("van-action-sheet",{attrs:{title:"请添加审批人员"},model:{value:t.showPicker5,callback:function(e){t.showPicker5=e},expression:"showPicker5"}},[a("van-checkbox-group",{model:{value:t.result4,callback:function(e){t.result4=e},expression:"result4"}},[a("van-cell-group",[a("van-list",{attrs:{finished:t.finished3,"finished-text":"没有更多了",error:t.error3,"error-text":"请求失败,点击重新加载"},on:{"update:error":function(e){t.error3=e},load:t.onLoad3},model:{value:t.listLoading3,callback:function(e){t.listLoading3=e},expression:"listLoading3"}},t._l(t.users3,(function(e,s){return a("van-cell",{key:s,attrs:{clickable:"",title:e.userName},on:{click:function(a){return t.toggle2("checkboxes4",s,e)}},scopedSlots:t._u([{key:"right-icon",fn:function(){return[a("van-checkbox",{ref:"checkboxes4",refInFor:!0,attrs:{name:e.id}})]},proxy:!0}],null,!0)})})),1)],1)],1)],1),a("van-popup",{style:{height:"50%"},attrs:{position:"bottom",round:""},model:{value:t.show,callback:function(e){t.show=e},expression:"show"}},[a("van-datetime-picker",{attrs:{type:t.pickerType,title:"请选择时间","columns-order":["year","month","day","hour","minute"],"min-date":t.minDate,formatter:t.formatter},on:{confirm:t.confirmTime,cancel:function(e){t.show=!1}},model:{value:t.currentDate,callback:function(e){t.currentDate=e},expression:"currentDate"}})],1),a("van-popup",{style:{height:"50%"},attrs:{position:"bottom",round:""},model:{value:t.show1,callback:function(e){t.show1=e},expression:"show1"}},[a("van-datetime-picker",{attrs:{type:"datetime",title:"请选择时间","columns-order":["year","month","day","hour","minute"],"min-date":t.minDate1,formatter:t.formatter},on:{confirm:t.confirmTime1,cancel:function(e){t.show1=!1}},model:{value:t.currentDate1,callback:function(e){t.currentDate1=e},expression:"currentDate1"}})],1),a("van-popup",{style:{height:"50%"},attrs:{position:"bottom",round:""},model:{value:t.show3,callback:function(e){t.show3=e},expression:"show3"}},[a("van-datetime-picker",{attrs:{type:"datetime",title:"请选择时间","columns-order":["year","month","day","hour","minute"],"min-date":t.minDate3,formatter:t.formatter},on:{confirm:t.confirmTime3,cancel:function(e){t.show3=!1}},model:{value:t.currentDate3,callback:function(e){t.currentDate3=e},expression:"currentDate3"}})],1),""!=t.id&&t.step{Object(l["Jb"])(s).then(e=>{let s=e.data;1==s.state?(this.fileList.push({url:s.data[0],name:t.file.name}),n["a"].confirm({title:"附件是否关联会议"}).then(()=>{this.conference()}).catch(()=>{})):this.$toast.fail("上传失败")})}):(s.append("files",t.file),Object(l["Jb"])(s).then(e=>{let s=e.data;1==s.state?(this.fileList.push({url:s.data[0],name:t.file.name}),n["a"].confirm({title:"附件是否关联会议"}).then(()=>{this.conference()}).catch(()=>{})):this.$toast.fail("上传失败")}))},conference(){this.show=!0,Object(l["P"])({type:"all",page:that.currentPage}).then(t=>{}).catch(()=>{})}}},h=c,p=(s("336a"),s("2877")),d=Object(p["a"])(h,o,r,!1,null,"42b1a30a",null),m=d.exports,u=s("d399"),f=(s("4328"),s("9c8b")),v={components:{afterReadVue:m},data(){return{ChecklistValue:[],activeNames:["1"],reviewWorkChecks:[],iconCheck1:"",iconCheck2:"",iconCheck3:"",iconCheck4:"",iconCheck5:"",iconCheck6:"",iconCheck7:"",icon1Check:"",icon2Check:"",icon3Check:"",icon4Check:"",icon5Check:"",icon6Check:"",icon7Check:"",showMeeting:[],showMeeting1:[],showMeeting2:[],showMeeting3:[],showMeeting4:[],ConferenceIds:[],ConferenceIds1:[],ConferenceIds2:[],ConferenceIds3:[],ConferenceNames:[],ConferenceNames1:[],ConferenceNames2:[],ConferenceNames3:[],attachment1:!0,attachment2:!0,attachment3:!0,attachment4:!0,attachment5:!0,count1:"",count2:"",count3:"",count4:"",currentPage1:1,currentPage2:1,currentPage3:1,currentPage4:1,actions:[],actions1:[],actions2:[],actions3:[],results1:[],results2:[],results3:[],results4:[],isshow:!1,isshow1:!1,isshow2:!1,isshow3:!1,id:"",show:!1,show1:!1,show3:!1,active:0,value:"",initialSwipe:0,commentPage:1,reason:"",comment:"",step:1,raskStep:1,show:!1,show2:!1,minDate:new Date(2021,0,1),minDate1:new Date(2021,0,1),minDate3:new Date(2021,0,1),result2:[],result3:[],result4:[],users3:[],showPicker5:!1,listLoading3:!1,finished3:!1,error3:!1,showPicker3:!1,showPicker4:!1,users:[],error:!1,listLoading:!1,finished:!1,listPage:1,listPage3:1,users2:[],error2:!1,listLoading2:!1,finished2:!1,listPage2:1,radioStatus:null,showCalendar:!1,showCalendar2:!1,pickerType:"datetime",currentDate:new Date,currentDate1:new Date,currentDate3:new Date,currentDate2:new Date,beforeTime2:"",Proposed:[{name:""}],fonList:[],formData:{stepOne:{reviewSubject:"",inReportAudit1Ids:"",inReportAudit2Ids:"",reviewDesc:"",reviewWork:"",inReportAttachmentName:"",inReportAttachmentPath:"",reviewUploadAt:"",reviewWorkInReportAt:"",stepUsers1:[],stepUsers2:[],fileList:[]},stepTwo:{id:"",reportAttachmentList:[],reviewWorkReportUploadAt:""},stepFour:{checkAttachmentName:"",checkAttachmentPath:"",checkRemark:"",checkUploadAt:"",stepUsers1:[],fileList:[]},stepFive:{fileList:[],opinionAttachmentName:"",opinionAttachmentPath:"",opinionRemark:"",opinionUploadAt:""},stepSix:{fileList:[],resultAttachmentName:"",resultAttachmentPath:"",alterRemark:"",score:"",alterUploadAt:"",alterEndAt:""},averageScore:0,voteSorce:null},stepSixShow:0,pivotText:"0分",progresspercentage:0,voteArr:[{name:"赞同票数",num:0,type:"1",selected:!1,percentage:0},{name:"反对票数",num:0,type:"2",selected:!1,percentage:0},{name:"弃权票数",num:0,type:"3",selected:!1,percentage:0}],previousActive:0,commontMsg:[],commontAllNum:0,lastIndex:0,tabDisabled:!1,isCanAudit1:!1,isCanAudit2:!1,stepFirstFlag:!0,stepFourFlag:!1,stepSixFlag:!1,stepFiveFlag:!1,isCanCheck:!1,isCreator:!0,reviewType:"",Reviewshow:!1,list:[]}},created(){var t=localStorage.getItem("peopleRemovalId");this.reviewType="work",this.id=t||"",this.previousActive=this.$route.query.previousActive,this.id?("1"==this.previousActive?this.active=0:this.active=1,this.getappointDeatail(this.id),this.tabDisabled=!1):(this.active=0,this.step="1",this.tabDisabled=!0),Object(f["nb"])({type:"admin",page:this.listPage,size:30}).then(t=>{1==t.data.state&&(this.users=t.data.data,this.users2=t.data.data,this.users3=t.data.data)}).catch(t=>{})},watch:{Proposed:{handler(t){let e=this.formData.stepOne.reviewSubject;if(1==t.length)t[0].name,e=t[0].name;else{let s=[];t.forEach(t=>{s.push(t.name)}),e=s.toString()}this.formData.stepOne.reviewSubject=e},deep:!0},"formData.stepOne.fileList":{handler(t,e){0==t.length&&(this.showMeeting=[],this.ConferenceIds=[],this.ConferenceNames=[])},deep:!0}},methods:{onFileList(t){},formatDate(t){return`${t.getFullYear()}/${t.getMonth()+1}/${t.getDate()}`},onConfirmReview(t){const[e,s]=t;this.Reviewshow=!1,this.formData.stepOne.reviewWorkInReportAt=`${this.formatDate(e)} - ${this.formatDate(s)}`},propoList(){let t=this.Proposed,e=!0;t.forEach(t=>{""==t.name.trim("")&&(Object(u["a"])("部门不能为空"),e=!1)}),e&&this.Proposed.push({name:""})},addChecklist(){""!=this.ChecklistValue&&this.reviewWorkChecks.push({fileList:[],dept:"",user:"",name:this.ChecklistValue})},onSelect(t){this.show=!1,Object(u["a"])(t.name)},onSelect1(t){this.show1=!1,Object(u["a"])(t.name)},onSelect2(t){this.show2=!1,Object(u["a"])(t.name)},onSelect3(t){this.show3=!1,Object(u["a"])(t.name)},stepSixData(t){this.show=!0,this.stepSixShow=t},toggle1(t,e,s){if(this.isshow=!1,this.attachment1=!0,this.fileLength>0)for(var a=0;a0)for(var a=0;a0)for(var a=0;a0)for(var a=0;a{1==t.data.state&&(this.actions=t.data.data,this.count1=t.data.count)})},change2(){Object(l["P"])({type:"all",page:this.currentPage2}).then(t=>{1==t.data.state&&(this.actions1=t.data.data,this.count2=t.data.count)})},change3(){Object(l["P"])({type:"all",page:this.currentPage3}).then(t=>{1==t.data.state&&(this.actions2=t.data.data,this.count3=t.data.count)})},change4(){Object(l["P"])({type:"all",page:this.currentPage4}).then(t=>{1==t.data.state&&(this.actions3=t.data.data,this.count4=t.data.count)})},hitScore(){this.formData.voteSorce?(this.$toast.loading({message:"打分中...",forbidClick:!0,duration:0}),Object(f["f"])({reviewId:this.id,score:this.formData.voteSorce}).then(t=>{1==t.data.state?(this.$toast.success("打分成功"),setTimeout(()=>{this.getappointDeatail(this.id)},500)):this.$toast.clear()})):this.$toast("请输入分数")},submitResult(){if(this.radioStatus)if("2"!=this.radioStatus||this.reason){var t=1;this.isCanAudit2&&(t=2),this.$toast.loading({message:"正在提交...",forbidClick:!0,duration:0}),Object(f["qc"])({level:t,reviewId:this.id,status:this.radioStatus,reason:this.reason}).then(t=>{1==t.data.state?(this.$toast.success("提交成功"),setTimeout(()=>{this.getappointDeatail(this.id)},500)):this.$toast.clear()})}else this.$toast("请输入拒绝原因");else this.$toast("请选择审批")},clivote(t,e){this.voteArr.forEach(t=>{t.selected=!1}),this.voteArr[e].selected=!0,this.$toast.loading({message:"投票中...",forbidClick:!0,duration:0}),Object(f["uc"])({id:this.id,vote:t}).then(t=>{1==t.data.state?(this.$toast.success("投票成功"),setTimeout(()=>{this.getappointDeatail(this.id)},500)):this.$toast.clear()})},changeTabs(){if("0"!=this.active)return"1"==this.active?(this.commentPage="1",this.commontMsg=[],void this.getcommentlistWork()):void 0},lookmore(){this.commentPage++,this.getcommentlistWork()},getcommentlistWork(){this.$toast.loading({message:"加载中...",forbidClick:!0,duration:0}),Object(f["S"])({reviewId:this.id,page:this.commentPage,size:3,type:this.step}).then(t=>{1==t.data.state&&(this.commontAllNum=t.data.count,this.commontMsg=[...this.commontMsg,...t.data.data],t.data.data.length<3?this.lastIndex=-1:this.lastIndex=this.commontMsg.length-1,this.$toast.clear())})},publishComment(){this.comment?(this.$toast.loading({message:"发表中...",forbidClick:!0,duration:0}),Object(f["q"])({reviewId:this.id,content:this.comment,type:this.step}).then(t=>{1==t.data.state&&(this.$toast.success("发表成功"),this.comment="")})):this.$toast("请输入评论")},confirmTime(t){var e=`${t.getFullYear()}-${t.getMonth()+1>=10?t.getMonth()+1:"0"+(t.getMonth()+1)}-${t.getDate()>=10?t.getDate():"0"+t.getDate()}`,s=String(t).split(" ")[4],a=e+" "+s;this.show=!1,"1"!=this.raskStep?"3"!=this.raskStep?"5"!=this.raskStep?"6"!=this.raskStep||(1==this.stepSixShow?this.formData.stepSix.alterUploadAt=a:this.formData.stepSix.alterEndAt=a):this.formData.stepFive.opinionUploadAt=a:this.formData.stepFour.checkUploadAt=a:this.formData.stepOne.reviewUploadAt=a},confirmTime1(t){var e=`${t.getFullYear()}-${t.getMonth()+1>=10?t.getMonth()+1:"0"+(t.getMonth()+1)}-${t.getDate()>=10?t.getDate():"0"+t.getDate()}`,s=String(t).split(" ")[4],a=e+" "+s;this.show1=!1,"1"!=this.raskStep?"3"!=this.raskStep?"5"!=this.raskStep?"6"!=this.raskStep||(1==this.stepSixShow?this.formData.stepSix.alterUploadAt=a:this.formData.stepSix.alterEndAt=a):this.formData.stepFive.opinionUploadAt=a:this.formData.stepFour.checkUploadAt=a:this.formData.stepOne.reviewStartAt=a},confirmTime3(t){var e=`${t.getFullYear()}-${t.getMonth()+1>=10?t.getMonth()+1:"0"+(t.getMonth()+1)}-${t.getDate()>=10?t.getDate():"0"+t.getDate()}`,s=String(t).split(" ")[4],a=e+" "+s;if(this.show3=!1,"1"!=this.raskStep)if("2"==this.raskStep)this.formData.stepTwo.reviewWorkReportUploadAt=a;else{if("3"==this.raskStep)return void(this.formData.stepFour.checkUploadAt=a);if("5"==this.raskStep)return void(this.formData.stepFive.opinionUploadAt=a);if("6"==this.raskStep)return void(1==this.stepSixShow?this.formData.stepSix.alterUploadAt=a:this.formData.stepSix.alterEndAt=a)}else this.formData.stepOne.reviewEndAt=a},confirmTime2(t){var e=`${t.getFullYear()}-${t.getMonth()+1>=10?t.getMonth()+1:"0"+(t.getMonth()+1)}-${t.getDate()>=10?t.getDate():"0"+t.getDate()}`,s=String(t).split(" ")[4],a=e+" "+s;this.show2=!1,"2"!=this.raskStep?"4"!=this.raskStep?"3"!=this.raskStep||(this.formData.stepFour.voteAt=a):this.formData.stepThree.examAt=a:this.formData.stepTwo.conferenceAt=a},formatter(t,e){return"year"===t?e+"年":"month"===t?e+"月":"day"===t?e+"日":"hour"===t?e+"时":"minute"===t?e+"分":e},noticeStep(t,e){1==t&&(this.iconCheck1=!0,this.iconCheck2=!1,this.iconCheck3=!1,this.iconCheck4=!1,this.iconCheck5=!1,this.iconCheck6=!1,this.iconCheck7=!1,this.icon1Check=!0,this.icon2Check=!1,this.icon3Check=!1,this.icon4Check=!1,this.icon5Check=!1,this.icon6Check=!1,this.icon7Check=!1),2==t&&(this.iconCheck1=!1,this.iconCheck2=!0,this.iconCheck3=!1,this.iconCheck4=!1,this.iconCheck5=!1,this.iconCheck6=!1,this.iconCheck7=!1,this.icon1Check=!1,this.icon2Check=!0,this.icon3Check=!1,this.icon4Check=!1,this.icon5Check=!1,this.icon6Check=!1,this.icon7Check=!1),3==t&&(this.iconCheck1=!1,this.iconCheck2=!1,this.iconCheck3=!0,this.iconCheck4=!1,this.iconCheck5=!1,this.iconCheck6=!1,this.iconCheck7=!1,this.icon1Check=!1,this.icon2Check=!1,this.icon3Check=!0,this.icon4Check=!1,this.icon5Check=!1,this.icon6Check=!1,this.icon7Check=!1),4==t&&(this.iconCheck1=!1,this.iconCheck2=!1,this.iconCheck3=!1,this.iconCheck4=!0,this.iconCheck5=!1,this.iconCheck6=!1,this.iconCheck7=!1,this.icon1Check=!1,this.icon2Check=!1,this.icon3Check=!1,this.icon4Check=!0,this.icon5Check=!1,this.icon6Check=!1,this.icon7Check=!1),5==t&&(this.iconCheck1=!1,this.iconCheck2=!1,this.iconCheck3=!1,this.iconCheck4=!1,this.iconCheck5=!0,this.iconCheck6=!1,this.iconCheck7=!1,this.icon1Check=!1,this.icon2Check=!1,this.icon3Check=!1,this.icon4Check=!1,this.icon5Check=!0,this.icon6Check=!1,this.icon7Check=!1),6==t&&(this.iconCheck1=!1,this.iconCheck2=!1,this.iconCheck3=!1,this.iconCheck4=!1,this.iconCheck5=!1,this.iconCheck6=!0,this.iconCheck7=!1,this.icon1Check=!1,this.icon2Check=!1,this.icon3Check=!1,this.icon4Check=!1,this.icon5Check=!1,this.icon6Check=!0,this.icon7Check=!1),7==t&&(this.iconCheck1=!1,this.iconCheck2=!1,this.iconCheck3=!1,this.iconCheck4=!1,this.iconCheck5=!1,this.iconCheck6=!1,this.iconCheck7=!0,this.icon1Check=!1,this.icon2Check=!1,this.icon3Check=!1,this.icon4Check=!1,this.icon5Check=!1,this.icon6Check=!1,this.icon7Check=!0),this.step!=t&&(this.commentPage=1,this.step=t,this.commontMsg=[],this.getcommentlistWork())},getappointDeatail(t){this.$toast.loading({message:"加载中...",forbidClick:!0,duration:0}),Object(f["mc"])(t).then(t=>{if(1==t.data.state){var e=t.data.data;this.tabDisabled=!1,this.isCanAudit1=e.isCanAudit1,this.isCanAudit2=e.isCanAudit2,this.isCanCheck=e.isCanCheck,this.isCreator=e.isCreator,e.averageScore&&(this.formData.averageScore=e.averageScore,this.pivotText=e.averageScore+"分",this.progresspercentage=100*parseInt(e.averageScore/100)),e.state<3?this.initialSwipe=0:this.initialSwipe=1,e.reviewUploadAt?this.stepFirstFlag=!1:this.stepFirstFlag=!0,e.checkUploadAt?this.stepFourFlag=!1:this.stepFourFlag=!0,e.opinionUploadAt?this.stepFiveFlag=!1:this.stepFiveFlag=!0,e.alterUploadAt?this.stepSixFlag=!1:this.stepSixFlag=!0,e.state<8?this.step=e.state:this.step=7,this.raskStep=e.state,this.formData.stepOne.reviewEndAt=e.reviewEndAt,this.formData.stepOne.reviewSubject=e.reviewSubject,this.formData.stepOne.reviewDesc=e.reviewDesc,this.formData.stepOne.reviewWork=e.reviewWork,this.formData.stepOne.reviewWorkInReportAt=e.reviewWorkInReportAt,e.inReportAttachmentList.forEach(t=>{t.url=t.attachment,t.name=t.title}),this.formData.stepOne.fileList=e.inReportAttachmentList,this.formData.stepOne.stepUsers1=e.inReportAudit1List,this.formData.stepOne.stepUsers2=e.inReportAudit2List,this.formData.stepTwo.reviewWorkReportUploadAt=e.reviewWorkReportUploadAt,this.formData.stepTwo.reportAttachmentList,e.reportAttachmentList.forEach(t=>{}),this.formData.stepFour.checkUploadAt=e.checkUploadAt,this.formData.stepFour.checkRemark=e.checkRemark,this.fonList=e.checkAttachmentList;let a=e.checkAttachmentList;if(this.formData.stepFour.fileList=a,e.checkUserList.length>0)this.formData.stepFour.stepUsers1=e.checkUserList;else{var s=[...e.inReportAudit1List,...e.inReportAudit2List];for(let t=0;t{t.id=t.userId,this.result4.push(t.userId)}),this.formData.stepFour.stepUsers1=s}this.formData.stepFive.opinionRemark=e.opinionRemark,this.formData.stepFive.opinionUploadAt=e.opinionUploadAt,e.opinionAttachmentList.forEach(t=>{t.url=t.attachment,t.name=t.title}),this.formData.stepFive.fileList=e.opinionAttachmentList,this.formData.stepSix.alterRemark=e.alterRemark,this.formData.stepSix.alterUploadAt=e.alterUploadAt,this.formData.stepSix.alterEndAt=e.alterEndAt,this.formData.stepSix.score=e.score,e.resultAttachmentList.forEach(t=>{t.url=t.attachment,t.name=t.title}),this.formData.stepSix.fileList=e.resultAttachmentList,this.$toast.clear()}})},afterRead(t){var e=this;if(this.$toast.loading({message:"上传中...",forbidClick:!0,duration:0}),t.length)t.forEach(s=>{let a=new FormData;a.append("files",s.file),Object(l["Jb"])(a).then(a=>{if(1==a.data.state){if("1"==this.raskStep)return this.formData.stepOne.fileList.push({url:a.data.data[0],name:s.file.name}),this.$toast.clear(),this.fileLength=t.length,void n["a"].confirm({title:"附件是否关联会议"}).then(()=>{t.length>1&&Object(l["P"])({type:"all",page:e.currentPage1}).then(t=>{1==t.data.state&&(e.actions=t.data.data,e.count1=t.data.count,e.isshow=!0)}).catch(t=>{})}).catch(()=>{if(t.length>1)for(var s=0;s{if(1==s.data.state){if("1"==this.raskStep)return this.formData.stepOne.fileList.push({url:s.data.data[0],name:t.file.name}),this.$toast.clear(),this.fileLength=t.length,void n["a"].confirm({title:"附件是否关联会议"}).then(()=>{Object(l["P"])({type:"all",page:e.currentPage1}).then(t=>{1==t.data.state&&(e.actions=t.data.data,e.count1=t.data.count,e.isshow=!0)}).catch(t=>{})}).catch(()=>{var t="";e.ConferenceIds.push(t);var s="";e.ConferenceNames.push(s);var a="暂未关联会议";e.showMeeting.push(a)});if("3"==this.raskStep)return this.formData.stepFour.fileList.push({url:s.data.data[0],name:t.file.name}),void this.$toast.clear();if("5"==this.raskStep)return this.formData.stepFive.fileList.push({url:s.data.data[0],name:t.file.name}),void this.$toast.clear();if("6"==this.raskStep)return this.formData.stepSix.fileList.push({url:s.data.data[0],name:t.file.name}),void this.$toast.clear()}else this.$toast.fail("上传失败")})}},afterRead1(t){return e=>{if(this.$toast.loading({message:"上传中...",forbidClick:!0,duration:0}),e.length)e.forEach(s=>{let a=new FormData;a.append("files",s.file),Object(l["Jb"])(a).then(a=>{if(1==a.data.state)if("1"==this.raskStep);else{if("3"==this.raskStep)return this.reviewWorkChecks.forEach(e=>{this.reviewWorkChecks[t]==e&&e.fileList.push({url:a.data.data[0],name:s.file.name})}),this.$toast.clear(),void(this.fileLength=e.length);if("5"==this.raskStep)return this.formData.stepFive.fileList.push({url:a.data.data[0],name:s.file.name}),void this.$toast.clear();if("6"==this.raskStep)return this.formData.stepSix.fileList.push({url:a.data.data[0],name:s.file.name}),void this.$toast.clear()}else this.$toast.fail("上传失败")})});else{let s=new FormData;s.append("files",e.file),Object(l["Jb"])(s).then(s=>{if(1==s.data.state)if("1"==this.raskStep);else{if("3"==this.raskStep)return void this.reviewWorkChecks.forEach(a=>{this.reviewWorkChecks[t]==a&&(a.fileList.push({url:s.data.data[0],name:e.file.name}),this.$toast.clear(),this.fileLength=e.length)});if("5"==this.raskStep)return this.formData.stepFive.fileList.push({url:s.data.data[0],name:e.file.name}),void this.$toast.clear();if("6"==this.raskStep)return this.formData.stepSix.fileList.push({url:s.data.data[0],name:e.file.name}),void this.$toast.clear()}else this.$toast.fail("上传失败")})}}},afterRead2(t){var e=this;if(this.$toast.loading({message:"上传中...",forbidClick:!0,duration:0}),t.length)t.forEach(s=>{let a=new FormData;a.append("files",s.file),Object(l["Jb"])(a).then(a=>{if(1==a.data.state){if("1"==this.raskStep)return this.formData.stepOne.fileList.push({url:a.data.data[0],name:s.file.name}),void this.$toast.clear();if("3"==this.raskStep)return this.formData.stepFour.fileList.push({url:a.data.data[0],name:s.file.name}),void this.$toast.clear();if("5"==this.raskStep)return this.formData.stepFive.fileList.push({url:a.data.data[0],name:s.file.name}),this.$toast.clear(),this.fileLength=t.length,void n["a"].confirm({title:"附件是否关联会议"}).then(()=>{t.length>1&&Object(l["P"])({type:"all",page:e.currentPage3}).then(t=>{1==t.data.state&&(e.actions2=t.data.data,e.count3=t.data.count,e.isshow2=!0)}).catch(t=>{})}).catch(()=>{if(t.length>1)for(var s=0;s{if(1==s.data.state){if("1"==this.raskStep)return this.formData.stepOne.fileList.push({url:s.data.data[0],name:t.file.name}),void this.$toast.clear();if("2"==this.raskStep)return this.formData.stepTwo.reportAttachmentList.push({url:s.data.data[0],name:t.file.name}),void this.$toast.clear();if("3"==this.raskStep)return this.formData.stepFour.fileList.push({url:s.data.data[0],name:t.file.name}),void this.$toast.clear();if("5"==this.raskStep)return this.formData.stepFive.fileList.push({url:s.data.data[0],name:t.file.name}),this.$toast.clear(),this.fileLength=t.length,void n["a"].confirm({title:"附件是否关联会议"}).then(()=>{Object(l["P"])({type:"all",page:e.currentPage3}).then(t=>{1==t.data.state&&(e.actions2=t.data.data,e.count3=t.data.count,e.isshow2=!0)}).catch(t=>{})}).catch(()=>{var t="";e.ConferenceIds2.push(t);var s="";e.ConferenceNames2.push(s);var a="暂未关联会议";e.showMeeting2.push(a)});if("6"==this.raskStep)return this.formData.stepSix.fileList.push({url:s.data.data[0],name:t.file.name}),void this.$toast.clear()}else this.$toast.fail("上传失败")})}},afterRead3(t){var e=this;if(this.$toast.loading({message:"上传中...",forbidClick:!0,duration:0}),t.length)t.forEach(s=>{let a=new FormData;a.append("files",s.file),Object(l["Jb"])(a).then(a=>{if(1==a.data.state){if("1"==this.raskStep)return this.formData.stepOne.fileList.push({url:a.data.data[0],name:s.file.name}),void this.$toast.clear();if("3"==this.raskStep)return this.formData.stepFour.fileList.push({url:a.data.data[0],name:s.file.name}),void this.$toast.clear();if("5"==this.raskStep)return this.formData.stepFive.fileList.push({url:a.data.data[0],name:s.file.name}),void this.$toast.clear();if("6"==this.raskStep)return this.formData.stepSix.fileList.push({url:a.data.data[0],name:s.file.name}),this.$toast.clear(),this.fileLength=t.length,void n["a"].confirm({title:"附件是否关联会议"}).then(()=>{t.length>1&&Object(l["P"])({type:"all",page:e.currentPage4}).then(t=>{1==t.data.state&&(e.actions3=t.data.data,e.count4=t.data.count,e.isshow3=!0)}).catch(t=>{})}).catch(()=>{if(t.length>1)for(var s=0;s{if(1==s.data.state){if("1"==this.raskStep)return this.formData.stepOne.fileList.push({url:s.data.data[0],name:t.file.name}),void this.$toast.clear();if("2"==this.raskStep)return this.formData.stepTwo.reportAttachmentList.push({url:s.data.data[0],name:t.file.name}),void this.$toast.clear();if("3"==this.raskStep)return this.formData.stepFour.fileList.push({url:s.data.data[0],name:t.file.name}),void this.$toast.clear();if("5"==this.raskStep)return this.formData.stepFive.fileList.push({url:s.data.data[0],name:t.file.name}),void this.$toast.clear();if("6"==this.raskStep)return this.formData.stepSix.fileList.push({url:s.data.data[0],name:t.file.name}),this.$toast.clear(),this.fileLength=t.length,void n["a"].confirm({title:"附件是否关联会议"}).then(()=>{Object(l["P"])({type:"all",page:e.currentPage4}).then(t=>{1==t.data.state&&(e.actions3=t.data.data,e.count4=t.data.count,e.isshow3=!0)}).catch(t=>{})}).catch(()=>{var t="";e.ConferenceIds3.push(t);var s="";e.ConferenceNames3.push(s);var a="暂未关联会议";e.showMeeting3.push(a)})}else this.$toast.fail("上传失败")})}},afterRead4(t){var e=this;if(this.$toast.loading({message:"上传中...",forbidClick:!0,duration:0}),t.length)t.forEach(s=>{let a=new FormData;a.append("files",s.file),Object(l["Jb"])(a).then(a=>{if(1==a.data.state){if("1"==this.raskStep)return this.formData.stepOne.fileList.push({url:a.data.data[0],name:s.file.name}),void this.$toast.clear();if("3"==this.raskStep)return this.formData.stepFour.fileList.push({url:a.data.data[0],name:s.file.name}),void this.$toast.clear();if("5"==this.raskStep)return this.formData.stepFive.fileList.push({url:a.data.data[0],name:s.file.name}),void this.$toast.clear();if("6"==this.raskStep)return this.formData.stepSix.fileList.push({url:a.data.data[0],name:s.file.name}),this.$toast.clear(),this.fileLength=t.length,void n["a"].confirm({title:"附件是否关联会议"}).then(()=>{t.length>1&&Object(l["P"])({type:"all",page:e.currentPage4}).then(t=>{1==t.data.state&&(e.actions3=t.data.data,e.count4=t.data.count,e.isshow3=!0)}).catch(t=>{})}).catch(()=>{if(t.length>1)for(var s=0;s{if(1==s.data.state){if("2"==this.raskStep)return this.formData.stepTwo.reportAttachmentList.push({url:s.data.data[0],name:t.file.name}),this.$toast.clear(),this.fileLength=t.length,this.$toast.clear(),void n["a"].confirm({title:"附件是否关联会议"}).then(()=>{Object(l["P"])({type:"all",page:e.currentPage4}).then(t=>{1==t.data.state&&(e.actions3=t.data.data,e.count4=t.data.count,e.isshow3=!0)}).catch(t=>{})}).catch(()=>{var t="";e.ConferenceIds3.push(t);var s="";e.ConferenceNames3.push(s);var a="暂未关联会议";e.showMeeting3.push(a)});if("6"==this.raskStep)return}else this.$toast.fail("上传失败")})}},beforedelete(t){return e=>{"1"!=this.raskStep?"3"!=this.raskStep?"5"!=this.raskStep?"6"!=this.raskStep||this.formData.stepSix.fileList.forEach((t,s)=>{t.url==e.url&&(this.attachment4=!0,this.formData.stepSix.fileList.splice(s,1),this.showMeeting3.splice(s,1),this.ConferenceIds3.splice(s,1),this.ConferenceNames3.splice(s,1))}):this.formData.stepFive.fileList.forEach((t,s)=>{t.url==e.url&&(this.attachment3=!0,this.formData.stepFive.fileList.splice(s,1),this.showMeeting2.splice(s,1),this.ConferenceIds2.splice(s,1),this.ConferenceNames2.splice(s,1))}):this.reviewWorkChecks.forEach((e,s)=>{this.reviewWorkChecks[t]==e&&(this.attachment2=!0,e.fileList.splice(s,1),this.showMeeting1.splice(s,1),this.ConferenceIds1.splice(s,1),this.ConferenceNames1.splice(s,1))}):this.formData.stepOne.fileList.forEach((t,s)=>{t.url==e.url&&(this.attachment1=!0,this.formData.stepOne.fileList.splice(s,1),this.showMeeting.splice(s,1),this.ConferenceIds.splice(s,1),this.ConferenceNames.splice(s,1))})}},endVote(t){this.$toast.loading({message:"提交中...",forbidClick:!0,duration:0}),"1"==t&&Object(f["i"])({id:this.id}).then(t=>{if("1"==t.data.state)return this.$toast.success("操作成功"),void setTimeout(()=>{this.getappointDeatail(this.id)},500)})},submitupload(){var t=[],e=[],s="",a="";if("1"==this.raskStep){if(!this.formData.stepOne.reviewSubject)return void this.$toast("请输入评议部门");if(!this.formData.stepOne.reviewEndAt)return void this.$toast("请选择上报截止时间");if(!this.formData.stepOne.reviewWork)return void this.$toast("请输入确定评议");if(!this.formData.stepOne.reviewDesc)return void this.$toast("请输入评议描述");if(!this.formData.stepOne.reviewWorkInReportAt)return void this.$toast("请选择上传时间");this.formData.stepOne.fileList.length>0&&(this.formData.stepOne.fileList.forEach(s=>{t.push(s.name),e.push(s.url)}),this.formData.stepOne.inReportAttachmentName=t.join(","),this.formData.stepOne.inReportAttachmentPath=e.join(","),this.formData.stepOne.inReportAttachmentConferenceId=this.ConferenceIds.toString(),this.formData.stepOne.inReportAttachmentConferenceName=this.ConferenceNames.toString()),this.formData.stepOne.type=this.reviewType,s=this.formData.stepOne.stepUsers1.map(t=>t.id),a=this.formData.stepOne.stepUsers2.map(t=>t.id),this.formData.stepOne.inReportAudit1Ids=s.join(","),this.formData.stepOne.inReportAudit2Ids=a.join(","),this.$toast.loading({message:"提交中...",forbidClick:!0,duration:0}),Object(f["vb"])(this.formData.stepOne).then(t=>{if("1"==t.data.state)return this.$toast.success("提交成功"),localStorage.setItem("peopleRemovalId",t.data.data.id),this.id=t.data.data.id,void this.getappointDeatail(this.id)})}else if("2"==this.raskStep){let t=this.formData.stepTwo;if(""==t.reviewWorkReportUploadAt.trim(" "))return void this.$toast("请选择上传时间");if(t.reportAttachmentList.length<1)return void this.$toast("请上传附件");let e=[];t.reportAttachmentList.forEach(t=>{e.push({checkAttachmentConferenceId:"",checkAttachmentConferenceName:"",checkAttachmentName:t.name,checkAttachmentPath:t.url})}),t.id=this.id,t.reportAttachmentList=e,Object(f["gc"])(t).then(t=>{if("1"==t.data.state)return this.$toast.success("提交成功"),void setTimeout(()=>{this.getappointDeatail(this.id)},500)})}else if("3"==this.raskStep){if(!this.formData.stepFour.checkUploadAt)return void this.$toast("请选择上传时间");if(this.formData.stepFour.stepUsers1.length<1)return void this.$toast("请选择打分人员");s=this.formData.stepFour.stepUsers1.map(t=>t.id),this.formData.stepFour.reviewId=this.id,this.formData.stepFour.checkUserIds=s;let t=[];this.reviewWorkChecks.map(e=>{let s=[],a=[];e.fileList.forEach(t=>{s.push({checkAttachmentName:t.name,checkAttachmentPath:t.url,checkAttachmentConferenceId:"",checkAttachmentConferenceName:""})}),a.push({dept:e.dept,user:e.user}),t.push({checkUsers:a,name:e.name,checkAttachments:s})}),this.formData.stepFour.reviewWorkChecks=t;let e=this.formData.stepFour;e.obj="",this.$toast.loading({message:"提交中...",forbidClick:!0,duration:0}),Object(f["l"])(e).then(t=>{if("1"==t.data.state)return this.$toast.success("提交成功"),void setTimeout(()=>{this.getappointDeatail(this.id)},500)})}else if("5"==this.raskStep){if(this.formData.stepFive.fileList.length<1)return void this.$toast("请上传附件");if(!this.formData.stepFive.opinionUploadAt)return void this.$toast("请选择上传时间");this.formData.stepFive.fileList.forEach(s=>{t.push(s.name),e.push(s.url)}),this.formData.stepFive.opinionAttachmentName=t.join(","),this.formData.stepFive.opinionAttachmentPath=e.join(","),this.formData.stepOne.opinionAttachmentConferenceId=this.ConferenceIds2.toString(),this.formData.stepOne.opinionAttachmentConferenceName=this.ConferenceNames2.toString(),this.formData.stepFive.reviewId=this.id,this.$toast.loading({message:"提交中...",forbidClick:!0,duration:0}),Object(f["Ab"])(this.formData.stepFive).then(t=>{if("1"==t.data.state)return this.$toast.success("提交成功"),void setTimeout(()=>{this.getappointDeatail(this.id)},500)})}else if("6"==this.raskStep){if(!this.formData.stepSix.alterUploadAt)return void this.$toast("请选择起始时间");if(!this.formData.stepSix.alterEndAt)return void this.$toast("请选择结束时间");if(!this.formData.stepSix.score)return void this.$toast("请输入整改得分内容");this.formData.stepSix.fileList.forEach(s=>{t.push(s.name),e.push(s.url)}),this.formData.stepSix.resultAttachmentName=t.join(","),this.formData.stepSix.resultAttachmentPath=e.join(","),this.formData.stepOne.resultAttachmentConferenceId=this.ConferenceIds3.toString(),this.formData.stepOne.resultAttachmentConferenceName=this.ConferenceNames3.toString(),this.formData.stepSix.reviewId=this.id,this.$toast.loading({message:"提交中...",forbidClick:!0,duration:0}),Object(f["jc"])(this.formData.stepSix).then(t=>{if("1"==t.data.state)return this.$toast.success("提交成功"),void setTimeout(()=>{this.getappointDeatail(this.id)},500)})}},onLoad3(){this.listPage3++,Object(f["nb"])({type:"admin",page:this.listPage3,size:30}).then(t=>{1==t.data.state?(t.data.data.length>0?this.users3=[...this.users3,...t.data.data]:this.finished3=!0,this.listLoading3=!1):(this.listLoading3=!1,this.error3=!0)}).catch(t=>{this.listLoading3=!1,this.error3=!0})},onLoad(){this.listPage++,Object(f["nb"])({type:"admin",page:this.listPage,size:30}).then(t=>{1==t.data.state?(t.data.data.length>0?this.users=[...this.users,...t.data.data]:this.finished=!0,this.listLoading=!1):(this.listLoading=!1,this.error=!0)}).catch(t=>{this.listLoading=!1,this.error=!0})},onLoad2(){this.listPage2++,Object(f["nb"])({type:"admin",page:this.listPage2,size:30}).then(t=>{1==t.data.state?(t.data.data.length>0?this.users2=[...this.users2,...t.data.data]:this.finished2=!0,this.listLoading2=!1):(this.listLoading2=!1,this.error2=!0)}).catch(t=>{this.listLoading2=!1,this.error2=!0})},changeCheckbox(){"1"!=this.raskStep?"3"!=this.raskStep?"6"!=this.raskStep||(this.formData.stepSix.stepUsers=this.result2):this.formData.stepFour.stepUsers1=this.result2:this.formData.stepOne.stepUsers1=this.result2},changeCheckbox2(){"1"!=this.raskStep?"3"!=this.raskStep?"6"!=this.raskStep||(this.formData.stepSix.stepUsers=this.result3):this.formData.stepFour.stepUsers=this.result3:this.formData.stepOne.stepUsers2=this.result3},toggle(t,e){this.$refs[t][e].toggle()},toggle2(t,e,s){s.userId=s.id;var a=!1,i=-1;this.$refs[t][e].toggle(),this.formData.stepFour.stepUsers1.forEach((t,e)=>{t.userId==s.userId&&(a=!0,i=e)}),a?this.formData.stepFour.stepUsers1.splice(i,1):this.formData.stepFour.stepUsers1.push(s)},upload(){this.$router.push("/removalUpload")},close(t,e,s){if("1"!=this.raskStep||"1"!=e)return"3"==this.raskStep&&"1"==e?(this.formData.stepFour.stepUsers1.splice(t,1),void this.result4.forEach((t,e)=>{t==s.userId&&this.result4.splice(e,1)})):void("1"!=this.raskStep||"2"!=e||this.formData.stepOne.stepUsers2.splice(t,1));this.formData.stepOne.stepUsers1.splice(t,1)}}},g=v,k=(s("5793"),Object(p["a"])(g,a,i,!1,null,"7d8d9af2",null));e["default"]=k.exports},d31e:function(t,e){t.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAmCAYAAACsyDmTAAAACXBIWXMAAAsTAAALEwEAmpwYAAACf0lEQVRYhe2XQUhUURSGv580EgxKAqMwKmjToo1BtAl3ERFJQRBkUNaiFkVBUUGkEGHLFu2CIBBaRAsjCCJXEdQmhKFoYSSR0caQCEGd+VvMHbwzjL5548yTwB8ezNxzzpyP895/7xtYVblsn7DdZ1srzYLtQdsFF9UH0BIFu4CuJvT9LelzFZjzwG1AgIH5OHjA9qybo4LtSxUwR2zPRTnDpVtWmlAP0NqE6ZS0N4LZBzyNer8BzkhyDBQ/UF+A7w2EmQIGA8wu4AXQFmJjwDFJs2UVtu9E4ysbb6Nku9P2eLiFBdvfbG+pzGupVtwEmHbgJbAzLE0BhyRNZg5kuwV4BnSHpRngaDXnZQIEPAIOhs954JSkt4slNxXI9l3gdOkrcFnS86VqlgQK4+4FNiT0zgOjkiai2gvALRY2vvuSHoZYG3AdmAYelCwfN67qMttDKTbAX7bXhrpe2/NR7Imjs8r21chth2ueENCREI+1Hmi13QEMA2vC+mugv2IKnSzsfZvTAN0AJoGNCXl5YETSX9s7WNj4PgLHJc0l1NcGJGkKGKj1x0JNznY/sJvic/MnTX1TXCbpcb21SS5rB86R7LKyMuC9pFcNBwKGgIuUH761AGF7j6Rco4HmU8IQ8vPhSq0koJtAjmSXxTLwYbGzallAkmYonkWZKZPXjzRKclkncI10LqtUjmrnVT1AwD3g7DJgoPhMfQVGGgH0Y5kwUAT6WWtyEtAA8I50LqvUJ0ljDQGSVADq2nHr1f/lspXQKlCSqgFdsX2yyX23LRYoARWite3hykplbwUCsL0fGAXWZQgCxb9B3ZLGy4AC1CZga4YwBiYkTWfYM73+Af6PrBzob9y8AAAAAElFTkSuQmCC"}}]); \ No newline at end of file