This commit is contained in:
lijiaqi 2022-10-14 17:12:17 +08:00
parent d36d19c789
commit 9b7e4a7879
116 changed files with 174 additions and 250 deletions

View File

@ -409,7 +409,7 @@ public class AppointService extends BaseService<AppointMapper, Appoint> {
.setCreatedId(loginUser.getId())
.setCreatedAt(LocalDateTime.now());
if (StrUtil.isNotBlank(conferenceIdArr[i])) {
conferenceAttachmentService.associationMeeting(conferenceIdArr[i], conferenceNameArr[i], nameArr[i], "任免督职附件", loginUser.getId());
conferenceAttachmentService.associationMeeting(conferenceIdArr[i], pathArr[i], nameArr[i], "任免督职附件", loginUser.getId());
}
appointAttachmentService.save(appointAttachment);
}

View File

@ -75,7 +75,7 @@ public class ConferenceAttachmentService extends BaseTreeService<ConferenceAttac
.build();
conferenceAttachment1.setCreatedAt(LocalDateTime.now());
conferenceAttachment1.setUpdatedAt(LocalDateTime.now());
flag = saveOrUpdate(conferenceAttachment1);
flag = save(conferenceAttachment1);
}
//不存在
else {
@ -84,7 +84,6 @@ public class ConferenceAttachmentService extends BaseTreeService<ConferenceAttac
.builder()
.title(headline)
.conferenceId(conferenceId)
.attachment(attachment)
.createdId(userId)
.updatedId(userId)
.pid("")
@ -92,7 +91,7 @@ public class ConferenceAttachmentService extends BaseTreeService<ConferenceAttac
conferenceAttachment2.setCreatedAt(LocalDateTime.now());
conferenceAttachment2.setUpdatedAt(LocalDateTime.now());
conferenceAttachment2.setSortNo(9999);
flag = saveOrUpdate(conferenceAttachment2);
flag = save(conferenceAttachment2);
System.out.println(conferenceAttachment2);
//创建附件
@ -107,7 +106,7 @@ public class ConferenceAttachmentService extends BaseTreeService<ConferenceAttac
.build();
conferenceAttachment1.setCreatedAt(LocalDateTime.now());
conferenceAttachment1.setUpdatedAt(LocalDateTime.now());
flag = saveOrUpdate(conferenceAttachment1);
flag = save(conferenceAttachment1);
}
return flag;
}

View File

@ -510,7 +510,7 @@ public class ContactDbService extends BaseService<ContactDbMapper, ContactDb> {
.setConferenceName(conferenceNameArr[i]).
setContactDbId(contactDbId).setTitle(nameArr[i]).setAttachment(pathArr[i]).setCreatedId(loginUser.getId()).setCreatedAt(LocalDateTime.now());
if (StrUtil.isNotBlank(conferenceIdArr[i])) {
conferenceAttachmentService.associationMeeting(conferenceIdArr[i], conferenceNameArr[i],
conferenceAttachmentService.associationMeeting(conferenceIdArr[i], pathArr[i],
nameArr[i], "常委会联系代表附件", loginUser.getId());
}
contactDbAttachmentService.save(contactDbAttachment);

View File

@ -446,7 +446,7 @@ public class ReviewOfficerService extends BaseService<ReviewOfficerMapper, Revie
.setCreatedId(loginUser.getId())
.setCreatedAt(LocalDateTime.now());
if (StrUtil.isNotBlank(conferenceIdArr[i])) {
conferenceAttachmentService.associationMeeting(conferenceIdArr[i], conferenceNameArr[i], nameArr[i], "两官评议附件", loginUser.getId());
conferenceAttachmentService.associationMeeting(conferenceIdArr[i], pathArr[i], nameArr[i], "两官评议附件", loginUser.getId());
}
reviewOfficerAttachmentService.save(reviewAttachment);
}

View File

@ -447,7 +447,7 @@ public class ReviewSubjectService extends BaseService<ReviewSubjectMapper, Revie
.setCreatedId(loginUser.getId())
.setCreatedAt(LocalDateTime.now());
if (StrUtil.isNotBlank(conferenceIdArr[i])) {
conferenceAttachmentService.associationMeeting(conferenceIdArr[i], conferenceNameArr[i], nameArr[i], "专题评议附件", loginUser.getId());
conferenceAttachmentService.associationMeeting(conferenceIdArr[i], pathArr[i], nameArr[i], "专题评议附件", loginUser.getId());
}
reviewSubjectAttachmentService.save(reviewAttachment);
}

View File

@ -297,7 +297,7 @@ public class ReviewSuperviseService extends BaseService<ReviewSuperviseMapper, R
reviewSuperviseAttachment.setType(type).setConferenceId(conferenceIdArr[i])
.setConferenceName(conferenceNameArr[i]).setReviewSuperviseId(reviewSuperviseId).setTitle(nameArr[i]).setAttachment(pathArr[i]).setCreatedId(loginUser.getId()).setCreatedAt(LocalDateTime.now());
if (StrUtil.isNotBlank(conferenceIdArr[i])) {
conferenceAttachmentService.associationMeeting(conferenceIdArr[i], conferenceNameArr[i], nameArr[i], "审议督政附件", loginUser.getId());
conferenceAttachmentService.associationMeeting(conferenceIdArr[i], pathArr[i], nameArr[i], "审议督政附件", loginUser.getId());
}
reviewSuperviseAttachmentService.save(reviewSuperviseAttachment);
}

View File

@ -270,10 +270,10 @@ public class ReviewWorkService extends BaseService<ReviewWorkMapper, ReviewWork>
List<CheckAttachment> attachment = reviewWorkAskStateRequest.getAttachment();
if (CollectionUtil.isNotEmpty(attachment)) {
saveReviewWorkAttachment(reviewWork.getId(),
attachment.stream().map(CheckAttachment::getCheckAttachmentName).collect(Collectors.toList()).toString(),
attachment.stream().map(CheckAttachment::getCheckAttachmentPath).collect(Collectors.toList()).toString(), loginUser, ReviewWork.STATE_ASK,
attachment.stream().map(CheckAttachment::getCheckAttachmentConferenceId).collect(Collectors.toList()).toString(),
attachment.stream().map(CheckAttachment::getCheckAttachmentConferenceName).collect(Collectors.toList()).toString());
attachment.stream().map(CheckAttachment::getCheckAttachmentName).collect(Collectors.toList()).toString().replace("[","").replace("]",""),
attachment.stream().map(CheckAttachment::getCheckAttachmentPath).collect(Collectors.toList()).toString().replace("[","").replace("]",""), loginUser, ReviewWork.STATE_ASK,
attachment.stream().map(CheckAttachment::getCheckAttachmentConferenceId).collect(Collectors.toList()).toString().replace("[","").replace("]",""),
attachment.stream().map(CheckAttachment::getCheckAttachmentConferenceName).collect(Collectors.toList()).toString().replace("[","").replace("]",""));
}
if (CollectionUtil.isNotEmpty(reviewWorkAskStateRequest.getMessages())){
@ -300,10 +300,10 @@ public class ReviewWorkService extends BaseService<ReviewWorkMapper, ReviewWork>
saveReviewWorkAttachment(reviewWork.getId(),
reviewWorkReportStateRequest.getReportAttachmentList().stream().map(CheckAttachment::getCheckAttachmentName).collect(Collectors.toList()).toString(),
reviewWorkReportStateRequest.getReportAttachmentList().stream().map(CheckAttachment::getCheckAttachmentPath).collect(Collectors.toList()).toString(), loginUser, ReviewWork.STATE_REPORT,
reviewWorkReportStateRequest.getReportAttachmentList().stream().map(CheckAttachment::getCheckAttachmentConferenceId).collect(Collectors.toList()).toString(),
reviewWorkReportStateRequest.getReportAttachmentList().stream().map(CheckAttachment::getCheckAttachmentConferenceName).collect(Collectors.toList()).toString());
reviewWorkReportStateRequest.getReportAttachmentList().stream().map(CheckAttachment::getCheckAttachmentName).collect(Collectors.toList()).toString().replace("[","").replace("]",""),
reviewWorkReportStateRequest.getReportAttachmentList().stream().map(CheckAttachment::getCheckAttachmentPath).collect(Collectors.toList()).toString().replace("[","").replace("]",""), loginUser, ReviewWork.STATE_REPORT,
reviewWorkReportStateRequest.getReportAttachmentList().stream().map(CheckAttachment::getCheckAttachmentConferenceId).collect(Collectors.toList()).toString().replace("[","").replace("]",""),
reviewWorkReportStateRequest.getReportAttachmentList().stream().map(CheckAttachment::getCheckAttachmentConferenceName).collect(Collectors.toList()).toString().replace("[","").replace("]",""));
return reviewWork;
@ -324,18 +324,18 @@ public class ReviewWorkService extends BaseService<ReviewWorkMapper, ReviewWork>
List<CheckAttachment> 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");
attachment1.stream().map(CheckAttachment::getCheckAttachmentName).collect(Collectors.toList()).toString().replace("[","").replace("]",""),
attachment1.stream().map(CheckAttachment::getCheckAttachmentPath).collect(Collectors.toList()).toString().replace("[","").replace("]",""), loginUser, ReviewWork.STATE_CHECK,
attachment1.stream().map(CheckAttachment::getCheckAttachmentConferenceId).collect(Collectors.toList()).toString().replace("[","").replace("]",""),
attachment1.stream().map(CheckAttachment::getCheckAttachmentConferenceName).collect(Collectors.toList()).toString().replace("[","").replace("]",""), "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");
attachment2.stream().map(CheckAttachment::getCheckAttachmentName).collect(Collectors.toList()).toString().replace("[","").replace("]",""),
attachment2.stream().map(CheckAttachment::getCheckAttachmentPath).collect(Collectors.toList()).toString().replace("[","").replace("]",""), loginUser, ReviewWork.STATE_CHECK,
attachment2.stream().map(CheckAttachment::getCheckAttachmentConferenceId).collect(Collectors.toList()).toString().replace("[","").replace("]",""),
attachment2.stream().map(CheckAttachment::getCheckAttachmentConferenceName).collect(Collectors.toList()).toString().replace("[","").replace("]",""), "2");
}
@ -453,18 +453,18 @@ public class ReviewWorkService extends BaseService<ReviewWorkMapper, ReviewWork>
List<CheckAttachment> attachment2 = reviewWorkOpinionStateRequest.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_OPINION,
attachment1.stream().map(CheckAttachment::getCheckAttachmentConferenceId).collect(Collectors.toList()).toString(),
attachment1.stream().map(CheckAttachment::getCheckAttachmentConferenceName).collect(Collectors.toList()).toString(), "1");
attachment1.stream().map(CheckAttachment::getCheckAttachmentName).collect(Collectors.toList()).toString().replace("[","").replace("]",""),
attachment1.stream().map(CheckAttachment::getCheckAttachmentPath).collect(Collectors.toList()).toString().replace("[","").replace("]",""), loginUser, ReviewWork.STATE_OPINION,
attachment1.stream().map(CheckAttachment::getCheckAttachmentConferenceId).collect(Collectors.toList()).toString().replace("[","").replace("]",""),
attachment1.stream().map(CheckAttachment::getCheckAttachmentConferenceName).collect(Collectors.toList()).toString().replace("[","").replace("]",""), "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_OPINION,
attachment2.stream().map(CheckAttachment::getCheckAttachmentConferenceId).collect(Collectors.toList()).toString(),
attachment2.stream().map(CheckAttachment::getCheckAttachmentConferenceName).collect(Collectors.toList()).toString(), "2");
attachment2.stream().map(CheckAttachment::getCheckAttachmentName).collect(Collectors.toList()).toString().replace("[","").replace("]",""),
attachment2.stream().map(CheckAttachment::getCheckAttachmentPath).collect(Collectors.toList()).toString().replace("[","").replace("]",""), loginUser, ReviewWork.STATE_OPINION,
attachment2.stream().map(CheckAttachment::getCheckAttachmentConferenceId).collect(Collectors.toList()).toString().replace("[","").replace("]",""),
attachment2.stream().map(CheckAttachment::getCheckAttachmentConferenceName).collect(Collectors.toList()).toString().replace("[","").replace("]",""), "2");
}
// saveReviewWorkAttachment(reviewWork.getId(), reviewWorkOpinionStateRequest.getOpinionAttachmentName(),
@ -487,18 +487,18 @@ public class ReviewWorkService extends BaseService<ReviewWorkMapper, ReviewWork>
List<CheckAttachment> attachment2 = reviewWorkResultStateRequest.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_RESULT,
attachment1.stream().map(CheckAttachment::getCheckAttachmentConferenceId).collect(Collectors.toList()).toString(),
attachment1.stream().map(CheckAttachment::getCheckAttachmentConferenceName).collect(Collectors.toList()).toString(), "1");
attachment1.stream().map(CheckAttachment::getCheckAttachmentName).collect(Collectors.toList()).toString().replace("[","").replace("]",""),
attachment1.stream().map(CheckAttachment::getCheckAttachmentPath).collect(Collectors.toList()).toString().replace("[","").replace("]",""), loginUser, ReviewWork.STATE_RESULT,
attachment1.stream().map(CheckAttachment::getCheckAttachmentConferenceId).collect(Collectors.toList()).toString().replace("[","").replace("]",""),
attachment1.stream().map(CheckAttachment::getCheckAttachmentConferenceName).collect(Collectors.toList()).toString().replace("[","").replace("]",""), "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_RESULT,
attachment2.stream().map(CheckAttachment::getCheckAttachmentConferenceId).collect(Collectors.toList()).toString(),
attachment2.stream().map(CheckAttachment::getCheckAttachmentConferenceName).collect(Collectors.toList()).toString(), "2");
attachment2.stream().map(CheckAttachment::getCheckAttachmentName).collect(Collectors.toList()).toString().replace("[","").replace("]",""),
attachment2.stream().map(CheckAttachment::getCheckAttachmentPath).collect(Collectors.toList()).toString().replace("[","").replace("]",""), loginUser, ReviewWork.STATE_RESULT,
attachment2.stream().map(CheckAttachment::getCheckAttachmentConferenceId).collect(Collectors.toList()).toString().replace("[","").replace("]",""),
attachment2.stream().map(CheckAttachment::getCheckAttachmentConferenceName).collect(Collectors.toList()).toString().replace("[","").replace("]",""), "2");
}
// saveReviewWorkAttachment(reviewWork.getId(), reviewWorkResultStateRequest.getResultAttachmentName(),
@ -677,7 +677,7 @@ public class ReviewWorkService extends BaseService<ReviewWorkMapper, ReviewWork>
.setCreatedAt(LocalDateTime.now());
reviewWorkAttachmentService.save(reviewAttachment);
if (StrUtil.isNotBlank(conferenceIdArr[i])) {
conferenceAttachmentService.associationMeeting(conferenceIdArr[i], conferenceNameArr[i],
conferenceAttachmentService.associationMeeting(conferenceIdArr[i], pathArr[i],
nameArr[i], "工作评议附件", loginUser.getId());
}
}
@ -730,7 +730,7 @@ public class ReviewWorkService extends BaseService<ReviewWorkMapper, ReviewWork>
.setCreatedAt(LocalDateTime.now());
reviewWorkAttachmentService.save(reviewAttachment);
if (StrUtil.isNotBlank(conferenceIdArr[i])) {
conferenceAttachmentService.associationMeeting(conferenceIdArr[i], conferenceNameArr[i],
conferenceAttachmentService.associationMeeting(conferenceIdArr[i], pathArr[i],
nameArr[i], "工作评议附件", loginUser.getId());
}
}
@ -763,10 +763,10 @@ public class ReviewWorkService extends BaseService<ReviewWorkMapper, ReviewWork>
List<CheckAttachment> attachment1 = reviewWorkMessageStateRequest.getAttachment();
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_MESSAGE,
attachment1.stream().map(CheckAttachment::getCheckAttachmentConferenceId).collect(Collectors.toList()).toString(),
attachment1.stream().map(CheckAttachment::getCheckAttachmentConferenceName).collect(Collectors.toList()).toString());
attachment1.stream().map(CheckAttachment::getCheckAttachmentName).collect(Collectors.toList()).toString().replace("[","").replace("]",""),
attachment1.stream().map(CheckAttachment::getCheckAttachmentPath).collect(Collectors.toList()).toString().replace("[","").replace("]",""), loginUser, ReviewWork.STATE_MESSAGE,
attachment1.stream().map(CheckAttachment::getCheckAttachmentConferenceId).collect(Collectors.toList()).toString().replace("[","").replace("]",""),
attachment1.stream().map(CheckAttachment::getCheckAttachmentConferenceName).collect(Collectors.toList()).toString().replace("[","").replace("]",""));
}
return reviewWork;
}

File diff suppressed because one or more lines are too long

View File

@ -1 +0,0 @@
@-webkit-keyframes resizeSensorVisibility{0%{top:0}}@keyframes resizeSensorVisibility{0%{top:0}}.annotationLayer{left:0;top:0;right:0;bottom:0}.annotationLayer,.annotationLayer section{position:absolute}.annotationLayer .linkAnnotation>a{position:absolute;font-size:1em;top:0;left:0;width:100%;height:100%;background:url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7") 0 0 repeat}.annotationLayer .linkAnnotation>a:hover{opacity:.2;background:#ff0;box-shadow:0 .05333rem .26667rem #ff0}.annotationLayer .textAnnotation img{position:absolute;cursor:pointer}.annotationLayer .buttonWidgetAnnotation.checkBox input,.annotationLayer .buttonWidgetAnnotation.radioButton input,.annotationLayer .choiceWidgetAnnotation select,.annotationLayer .textWidgetAnnotation input,.annotationLayer .textWidgetAnnotation textarea{background-color:rgba(0,54,255,.13);border:.02667rem solid transparent;box-sizing:border-box;font-size:.24rem;height:100%;padding:0 .08rem;vertical-align:top;width:100%}.annotationLayer .textWidgetAnnotation textarea{font:message-box;font-size:.24rem;resize:none}.annotationLayer .buttonWidgetAnnotation.checkBox input[disabled],.annotationLayer .buttonWidgetAnnotation.radioButton input[disabled],.annotationLayer .choiceWidgetAnnotation select[disabled],.annotationLayer .textWidgetAnnotation input[disabled],.annotationLayer .textWidgetAnnotation textarea[disabled]{background:none;border:.02667rem solid transparent;cursor:not-allowed}.annotationLayer .buttonWidgetAnnotation.checkBox input:hover,.annotationLayer .buttonWidgetAnnotation.radioButton input:hover,.annotationLayer .choiceWidgetAnnotation select:hover,.annotationLayer .textWidgetAnnotation input:hover,.annotationLayer .textWidgetAnnotation textarea:hover{border:.02667rem solid #000}.annotationLayer .choiceWidgetAnnotation select:focus,.annotationLayer .textWidgetAnnotation input:focus,.annotationLayer .textWidgetAnnotation textarea:focus{background:none;border:.02667rem solid transparent}.annotationLayer .textWidgetAnnotation input.comb{font-family:monospace;padding-left:.05333rem;padding-right:0}.annotationLayer .textWidgetAnnotation input.comb:focus{width:115%}.annotationLayer .buttonWidgetAnnotation.checkBox input,.annotationLayer .buttonWidgetAnnotation.radioButton input{-webkit-appearance:none;-moz-appearance:none;appearance:none}.annotationLayer .popupWrapper{position:absolute;width:20em}.annotationLayer .popup{position:absolute;z-index:200;max-width:20em;background-color:#ff9;box-shadow:0 .05333rem .13333rem #333;border-radius:.05333rem;padding:.6em;margin-left:.13333rem;cursor:pointer;word-wrap:break-word}.annotationLayer .popup h1{font-size:1em;border-bottom:.02667rem solid #000;padding-bottom:.2em}.annotationLayer .popup p{padding-top:.2em}.annotationLayer .fileAttachmentAnnotation,.annotationLayer .highlightAnnotation,.annotationLayer .lineAnnotation svg line,.annotationLayer .squigglyAnnotation,.annotationLayer .strikeoutAnnotation,.annotationLayer .underlineAnnotation{cursor:pointer}

View File

@ -1 +0,0 @@
.van-pagination[data-v-3802042b]{position:fixed;bottom:0;width:100%;z-index:999;background:#fff}.van-tag[data-v-3802042b]{margin-right:.42667rem}.box[data-v-3802042b]{display:flex;flex-direction:column;height:100%;font-size:.42667rem}.box .imgaddBtn[data-v-3802042b]{position:fixed;bottom:26%;right:0}.box .imgaddBtn .imgdiv[data-v-3802042b]{height:2.4rem;margin-top:.26667rem;z-index:50;opacity:.9}.box .imgaddBtn .imgdiv .add[data-v-3802042b]{width:2.72rem;z-index:999}.box .imgaddBtn .imgtext[data-v-3802042b]{font-size:.42667rem;text-align:center}.box[data-v-3802042b] .van-tab.van-tab--active{font-size:.42667rem;font-weight:800}.box .tab-contain[data-v-3802042b]{padding:.32rem}.box .tab-contain .van-cell[data-v-3802042b]{margin-bottom:.37333rem}.box .tab-contain .van-cell .custom-title[data-v-3802042b]{font-size:.42667rem}.box .tab-contain .van-cell .van-icon[data-v-3802042b]{color:#333}

View File

@ -1 +0,0 @@
.fileOverViewBox[data-v-51084a46]{background:#000;width:100%}.fileOverViewBox .fileOverViewContentBox[data-v-51084a46]{width:100%;margin:0 auto;background:#fff}.fileOverViewBox .fileOverViewContentBox .arrow[data-v-51084a46]{position:fixed;width:100%;height:1.6rem;z-index:100;box-shadow:0 .05333rem .05333rem rgba(0,0,0,.5);background:hsla(0,0%,100%,.9)}.fileOverViewBox .fileOverViewContentBox .arrow .turn[data-v-51084a46]{cursor:pointer}.fileOverViewBox .fileOverViewContentBox .arrow .turn[data-v-51084a46]:hover{color:#58a5fe}.fileOverViewBox .fileOverViewContentBox .arrow .pageBox[data-v-51084a46]{margin:0 .53333rem}.fileOverViewBox .fileOverViewContentBox[data-v-51084a46] .docViewBox{padding:.53333rem}.fileOverViewBox .fileOverViewContentBox[data-v-51084a46] .docViewBox p{margin:.21333rem 0;font-size:.42667rem!important}.fileOverViewBox .fileOverViewContentBox[data-v-51084a46] .docViewBox img{margin:.37333rem 0;overflow:hidden}.fileOverViewBox .fileOverViewContentBox[data-v-51084a46] .docViewBox li{margin:.21333rem 0;font-size:.42667rem!important}

File diff suppressed because one or more lines are too long

View File

@ -1 +0,0 @@
.page[data-v-9d83963c]{height:100%;display:flex;flex-direction:column}.navVar-box[data-v-9d83963c]{position:-webkit-sticky;position:sticky;top:0;z-index:100}.view .van-circle[data-v-9d83963c]{width:100%!important;align-self:center}.view .progress[data-v-9d83963c]{background-color:#07c160;color:#fff;text-align:center font-size .37333rem padding .13333rem 0}.view .pdf[data-v-9d83963c]{width:100%}.prev[data-v-9d83963c]{flex:1;text-align:center;padding:.26667rem;position:fixed;left:0;top:50%}.prev img[data-v-9d83963c]{width:.8rem;height:.8rem}.next[data-v-9d83963c]{flex:1;text-align:center;padding:.26667rem;position:fixed;right:0;top:50%}.next img[data-v-9d83963c]{width:.8rem;height:.8rem}.button_content[data-v-9d83963c]{position:absolute;right:.42667rem;bottom:1.6rem;z-index:9999}.button_content .box[data-v-9d83963c]{width:1.06667rem;height:1.06667rem;margin-bottom:.53333rem;background-color:#fff;border-radius:50%;box-shadow:0 0 .26667rem .05333rem #efefef;padding:.24rem;font-size:0}.view[data-v-9d83963c]{overflow:auto}

View File

@ -1 +0,0 @@
.onlyImg[data-v-01fd6e99]{display:flex;justify-content:space-between}.onlyImg .img[data-v-01fd6e99]{margin-left:.32rem;width:2.13333rem;height:2.13333rem;-o-object-fit:cover;object-fit:cover}.pdf_con[data-v-01fd6e99]{font-size:.37333rem}.pdf_con img[data-v-01fd6e99]{width:1.12rem}.mulimg .imglist[data-v-01fd6e99]{margin-top:.16rem;display:flex;flex-wrap:wrap}.mulimg .imglist img[data-v-01fd6e99]{width:30%;margin-right:2%;height:auto}.page[data-v-01fd6e99]{min-height:100%;background-color:#fff}.notice[data-v-01fd6e99]{padding:.42667rem}.title[data-v-01fd6e99]{font-size:.4rem;color:#333;line-height:.53333rem;font-weight:700}.date[data-v-01fd6e99]{margin-top:.16rem;font-size:.32rem;color:#999;line-height:.45333rem}.content[data-v-01fd6e99]{width:100%;font-size:.37333rem;color:#333;line-height:.64rem;margin-top:.21333rem}.imagesd[data-v-01fd6e99]{margin-top:.21333rem;width:100%;display:flex;flex-wrap:wrap}.imagesd div[data-v-01fd6e99]{margin-right:.05333rem}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1 +0,0 @@
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-023fbab4"],{4708:function(t,a,s){"use strict";s.r(a);var e=function(){var t=this,a=t.$createElement,s=t._self._c||a;return s("div",{staticClass:"page"},[s("nav-bar",{attrs:{"left-arrow":"",title:"督事统计"}}),s("div",{staticClass:"list"},t._l(t.list,(function(a){return s("div",{key:a.id,staticClass:"item"},[s("div",{staticClass:"name"},[t._v(t._s(a.name))]),s("div",{staticClass:"value"},[t._v(t._s(a.remarks))])])})),0)],1)},i=[],n=s("0c6d"),c={data(){return{list:[]}},created(){Object(n["G"])().then(t=>{1==t.data.state&&(this.list=t.data.data)})}},r=c,l=(s("d653"),s("2877")),d=Object(l["a"])(r,e,i,!1,null,"595d3d1a",null);a["default"]=d.exports},c39a:function(t,a,s){},d653:function(t,a,s){"use strict";var e=s("c39a"),i=s.n(e);i.a}}]);

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1 +0,0 @@
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-10d1c2b0"],{"1ad1":function(t,e,s){"use strict";s.r(e);var a=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",[s("nav-bar",{attrs:{"left-arrow":"",title:"添加建议"}}),s("van-form",{staticClass:"form",on:{submit:t.onSubmit}},[s("van-field",{attrs:{readonly:"",label:"姓名",placeholder:"请输入您的姓名","input-align":"right",rules:[{required:!0,message:""}]},model:{value:t.voterName,callback:function(e){t.voterName=e},expression:"voterName"}}),s("van-field",{attrs:{label:"反馈主题",placeholder:"请输入您的主题","input-align":"right",rules:[{required:!0,message:""}]},model:{value:t.suggestTitle,callback:function(e){t.suggestTitle=e},expression:"suggestTitle"}}),s("van-field",{staticClass:"textarea",attrs:{type:"textarea",label:"反馈意见内容",placeholder:"请输入您的反馈意见",rules:[{required:!0,message:""}]},model:{value:t.suggestContent,callback:function(e){t.suggestContent=e},expression:"suggestContent"}}),s("van-field",{staticClass:"upload",attrs:{name:"imgs",label:"上传图片"},scopedSlots:t._u([{key:"input",fn:function(){return[s("van-uploader",{attrs:{multiple:"",accept:"image/*","upload-icon":"plus","max-count":6},model:{value:t.imgs,callback:function(e){t.imgs=e},expression:"imgs"}})]},proxy:!0}])}),s("van-button",{attrs:{type:"primary","native-type":"submit"}},[t._v("提交")])],1)],1)},i=[],o=s("0c6d"),n={data(){return{voterName:localStorage.getItem("userName"),suggestTitle:"",suggestContent:"",imgs:[]}},created(){},methods:{onSubmit(t){if(this.imgs.length){let t=new FormData;this.imgs.map(e=>{t.append("files",e.file)}),this.$toast.loading({message:"正在上传图片...",duration:0,forbidClick:!0}),Object(o["Jb"])(t).then(t=>{if(1==t.data.state){this.$toast.loading({message:"正在提交...",duration:0,forbidClick:!0});let e={};e=this.$route.query.insideid?{voterName:this.voterName,suggestTitle:this.suggestTitle,suggestContent:this.suggestContent,photo:t.data.data.join(),liaisonStationId:this.$route.query.insideid}:{voterName:this.voterName,suggestTitle:this.suggestTitle,suggestContent:this.suggestContent,photo:t.data.data.join(),streetId:this.$route.query.id},Object(o["wb"])(e).then(t=>{1==t.data.state?(this.$toast.success("提交成功"),this.$router.go(-1)):this.$toast.fail(t.data.msg)}).catch(t=>{this.$toast.fail("提交失败")})}else this.$toast.fail(t.data.msg)}).catch(t=>{this.$toast.fail("上传失败")})}else{this.$toast.loading({message:"正在提交...",duration:0,forbidClick:!0});let t={};t=this.$route.query.insideid?{voterName:this.voterName,suggestTitle:this.suggestTitle,suggestContent:this.suggestContent,liaisonStationId:this.$route.query.insideid}:{voterName:this.voterName,suggestTitle:this.suggestTitle,suggestContent:this.suggestContent,streetId:this.$route.query.id},Object(o["wb"])(t).then(t=>{1==t.data.state?(this.$toast.success("提交成功"),this.$router.go(-1)):this.$toast.fail(t.data.msg)}).catch(t=>{this.$toast.fail("提交失败")})}}}},l=n,r=(s("2912"),s("2877")),u=Object(r["a"])(l,a,i,!1,null,"1b4234d4",null);e["default"]=u.exports},2912:function(t,e,s){"use strict";var a=s("4c74"),i=s.n(a);i.a},"4c74":function(t,e,s){}}]);

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1 +0,0 @@
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-175201a2"],{"9de0":function(t,e,a){"use strict";a.r(e);var i=function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",[a("nav-bar",{attrs:{"left-arrow":"",title:"发布"}}),a("van-form",{staticClass:"form",on:{submit:t.onSubmit}},[a("van-field",{attrs:{label:"标题",placeholder:"请输入标题","input-align":"right",rules:[{required:!0,message:""}]},model:{value:t.title,callback:function(e){t.title=e},expression:"title"}}),a("van-field",{attrs:{readonly:"",clickable:"",name:"datetimePicker",label:"日期",placeholder:"请选择日期","input-align":"right","right-icon":"arrow",rules:[{required:!0,message:""}]},on:{click:function(e){t.showPicker=!0}},model:{value:t.noticeDate,callback:function(e){t.noticeDate=e},expression:"noticeDate"}}),a("van-field",{staticClass:"textarea",attrs:{type:"textarea",label:"内容",placeholder:"请输入内容",rules:[{required:!0,message:""}]},model:{value:t.content,callback:function(e){t.content=e},expression:"content"}}),a("div",{staticClass:"filecontent"},[a("p",{staticClass:"p1"},[t._v("上传图片")]),a("van-uploader",{attrs:{multiple:"",accept:"image/*","upload-icon":"plus"},model:{value:t.attachment,callback:function(e){t.attachment=e},expression:"attachment"}})],1),a("van-field",{attrs:{name:"radio",label:"是否置顶","input-align":"right"},scopedSlots:t._u([{key:"input",fn:function(){return[a("van-radio-group",{attrs:{direction:"horizontal","checked-color":"#09A709","icon-size":"16"},model:{value:t.top,callback:function(e){t.top=e},expression:"top"}},[a("van-radio",{attrs:{name:"1"}},[t._v("是")]),a("van-radio",{attrs:{name:"0"}},[t._v("否")])],1)]},proxy:!0}])}),a("van-button",{attrs:{type:"primary","native-type":"submit"}},[t._v("提交发布")])],1),a("van-popup",{attrs:{position:"bottom"},model:{value:t.showPicker,callback:function(e){t.showPicker=e},expression:"showPicker"}},[a("van-datetime-picker",{attrs:{type:"date",formatter:t.formatter},on:{confirm:t.onConfirm,cancel:function(e){t.showPicker=!1}},model:{value:t.currentDate,callback:function(e){t.currentDate=e},expression:"currentDate"}})],1)],1)},n=[],o=a("0c6d"),r={data(){return{title:"",noticeDate:"",content:"",showPicker:!1,top:"1",currentDate:new Date,diff:this.$route.query.diff||"",attachment:[]}},methods:{formatter(t,e){return"year"===t?e+"年":"month"===t?e+"月":"day"===t?e+"日":e},onConfirm(t){this.noticeDate=`${t.getFullYear()}-${(t.getMonth()+1).toString().padStart(2,"0")}-${t.getDate().toString().padStart(2,"0")}`,this.showPicker=!1},onSubmit(t){var e={},a=[];if(e.title=this.title,e.content=this.content,e.noticeDate=this.noticeDate,e.top=this.top,e.uploadPersonnel=localStorage.getItem("userName"),this.attachment.length>0){let t=new FormData;this.attachment.map(e=>{t.append("files",e.file)}),this.$toast.loading({message:"正在上传图片...",duration:0,forbidClick:!0}),Object(o["Jb"])(t).then(t=>{1==t.data.state&&(this.attachment.forEach(t=>{a.push(t.file.name)}),e.coverNames=a.join(","),e.coverPaths=t.data.data.join(),this.$toast.loading({message:"正在提交...",duration:0,forbidClick:!0}),Object(o["gb"])(e).then(t=>{1==t.data.state?(this.$toast.success("提交成功"),this.$router.go(-1)):this.$toast.fail(t.data.msg)}).catch(t=>{this.$toast.fail("提交失败")}))})}else e.coverNames="",e.coverPaths="",e.uploadPersonnel=localStorage.getItem("userName"),this.$toast.loading({message:"正在提交...",duration:0,forbidClick:!0}),Object(o["gb"])(e).then(t=>{1==t.data.state?(this.$toast.success("提交成功"),this.$router.go(-1)):this.$toast.fail(t.data.msg)}).catch(t=>{this.$toast.fail("提交失败")})}}},s=r,c=(a("e1e1"),a("2877")),l=Object(c["a"])(s,i,n,!1,null,"126f3bdf",null);e["default"]=l.exports},c843:function(t,e,a){},e1e1:function(t,e,a){"use strict";var i=a("c843"),n=a.n(i);n.a}}]);

View File

@ -1 +0,0 @@
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-177cc0fa"],{"2b09":function(t,e,n){"use strict";n.r(e);var a=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",[n("nav-bar",{attrs:{"left-arrow":"",title:"总体概况"}}),t._m(0),n("div",{staticClass:"content"},[t._v(" "+t._s(t.content)+" ")])],1)},c=[function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"main"},[n("iframe",{attrs:{id:"ifrID",src:"http://show.ydool.com/renda/index.html",frameBorder:"0",width:"100%",scrolling:"yes",height:"320px"}})])}],i=n("0c6d"),r={data(){return{code1:"xiangshan_county_general_situation",content:""}},created(){this.init()},methods:{init(){Object(i["Y"])({code:this.code1}).then(t=>{this.content=t.data.data})}}},s=r,o=(n("52b5"),n("2877")),d=Object(o["a"])(s,a,c,!1,null,"3a1e6cad",null);e["default"]=d.exports},"4cb6":function(t,e,n){},"52b5":function(t,e,n){"use strict";var a=n("4cb6"),c=n.n(a);c.a}}]);

File diff suppressed because one or more lines are too long

View File

@ -1 +0,0 @@
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-18649d42"],{"49c2":function(t,a,s){"use strict";var i=s("cd00"),l=s.n(i);l.a},6615:function(t,a,s){"use strict";s.r(a);var i=function(){var t=this,a=t.$createElement,i=t._self._c||a;return i("div",{staticClass:"page"},[i("nav-bar",{attrs:{"left-arrow":"",title:"人大活动"}}),i("van-tabs",{on:{click:t.onClick},model:{value:t.active,callback:function(a){t.active=a},expression:"active"}},[i("van-tab",{attrs:{title:"活动安排"}},[i("div",{staticClass:"list"},[0==t.all.list.length?i("van-empty",{attrs:{description:"暂无数据"}}):t._e(),t._l(t.all.list,(function(a){return i("div",{key:a.id,staticClass:"item",on:{click:function(s){return t.to("/performanceDuties/detail?id="+a.id)}}},[i("div",{staticClass:"title"},[i("div",{staticClass:"text"},[t._v(t._s(a.activityName))])]),i("div",{staticClass:"detail"},[i("div",{staticClass:"cell"},[i("div",{staticClass:"label"},[t._v("活动时间:")]),i("div",{staticClass:"value"},[t._v(t._s(a.activityDate))])]),i("div",{staticClass:"cell"},[i("div",{staticClass:"label"},[t._v("活动地点:")]),i("div",{staticClass:"value"},[t._v(t._s(a.activityAddress))])]),i("div",{staticClass:"cell"},[i("div",{staticClass:"label"},[t._v("活动详情:")]),i("div",{staticClass:"value",domProps:{innerHTML:t._s(a.activityContent)}})])])])}))],2)]),i("van-tab",{attrs:{title:"监督结果"}},[i("div",{staticClass:"list"},[0==t.all.list.length?i("van-empty",{attrs:{description:"暂无数据"}}):t._e(),t._l(t.all.list,(function(a){return i("div",{key:a.id,staticClass:"item",on:{click:function(s){return t.to("/performanceDuties/detail?id="+a.id)}}},[i("div",{staticClass:"title"},[i("div",{staticClass:"text"},[t._v(t._s(a.activityName))])]),i("div",{staticClass:"detail"},[i("div",{staticClass:"cell"},[i("div",{staticClass:"label"},[t._v("活动时间:")]),i("div",{staticClass:"value"},[t._v(t._s(a.activityDate))])]),i("div",{staticClass:"cell"},[i("div",{staticClass:"label"},[t._v("活动地点:")]),i("div",{staticClass:"value"},[t._v(t._s(a.activityAddress))])]),i("div",{staticClass:"cell"},[i("div",{staticClass:"label"},[t._v("活动详情:")]),i("div",{staticClass:"value",domProps:{innerHTML:t._s(a.activityContent)}})])])])}))],2)])],1),0!=t.all.list.length?i("van-pagination",{attrs:{"total-items":t.all.total,"items-per-page":t.all.size,mode:"simple"},on:{change:t.changeFn},model:{value:t.all.page,callback:function(a){t.$set(t.all,"page",a)},expression:"all.page"}}):t._e(),i("img",{staticClass:"add",attrs:{src:s("6f8e"),alt:""},on:{click:function(a){return t.to("/performanceDuties/add")}}})],1)},l=[],e=s("0c6d"),c=(s("bc3a"),{data(){return{active:"活动安排",usertype:localStorage.getItem("usertype"),keyword:"",keyword2:"",active:0,valNum:"1",my:{page:1,size:1,total:0,list:[]},all:{page:1,size:5,total:0,list:[]}}},created(){this.usertype=localStorage.getItem("usertype"),this.$toast.loading({message:"正在加载...",duration:0,forbidClick:!0}),this.showList("1")},methods:{onClick(t,a){var s;switch(a){case"活动安排":s=1;break;case"监督结果":s=2;break}this.all.page=1,this.valNum=s,this.showList(s)},showList(t){Object(e["d"])({pageNo:this.all.page,pageSize:this.all.size,activityName:this.keyword2||null,category:t}).then(t=>{1==t.data.state?(this.all.list=t.data.data,this.all.total=t.data.count,this.$toast.clear()):this.$toast.fail(t.data.msg)}).catch(t=>{this.$toast.fail("加载失败")})},to(t){this.$router.push(t)},searchMy(){this.my.page=1,this.changeFn()},searchAll(){this.all.page=1,this.changeFn2()},changeFn(t){this.$toast.loading({message:"正在加载...",duration:0,forbidClick:!0}),Object(e["d"])({pageNo:this.all.page,pageSize:this.all.size,activityName:this.keyword2||null,category:this.valNum}).then(t=>{1==t.data.state?(this.all.list=t.data.data,this.all.total=t.data.count,this.$toast.clear()):this.$toast.fail(t.data.msg)}).catch(t=>{this.$toast.fail("加载失败")})},changeFn2(t){this.$toast.loading({message:"正在加载...",duration:0,forbidClick:!0}),Object(e["d"])({pageNo:this.all.page,pageSize:this.all.size,activityName:this.keyword2||null}).then(t=>{1==t.data.state&&(this.$toast.clear(),this.all.list=t.data.data,this.all.total=t.data.count)})}}}),n=c,d=(s("49c2"),s("2877")),o=Object(d["a"])(n,i,l,!1,null,"19962714",null);a["default"]=o.exports},"6f8e":function(t,a,s){t.exports=s.p+"img/icon_add.dae54178.png"},cd00:function(t,a,s){}}]);

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1 +0,0 @@
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-23c58442"],{3135:function(t,a,e){},3627:function(t,a){t.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAADK0lEQVRIS5VWQWgVVxQ9d2b8uMjCRYQfcJGFoCIuBIWCgRqI0KALRUHdKQbeG/6iil1YsPSDLiy0qMHJvDcqCi4UFBRcKCgo1IKQLlqahWBEN2WGUIiLEIRO3pX7mQnj9+dnMsth3jn3nnvPeUNYwxNF0YDv+/eDILg4MTHxR52jVOcj+abdbgdDQ0P3ARwEMJum6bZ2u52vdr4WgYA3m827RHSEmTMiGlVKvSnBkyTZDmAwz/OFubm5v6vEqxJ0gS8Q0e4S3Fq7H8AVAJtLMikAwHmt9U1515egB/i4UuqVHDTGfE9EAi7PLIA/AWwCMFK8u6SU+nFFgrrgzHwuy7LfSlmiKBoJguChSEZEe3sSrAH8tNb6aveg4zg+5nneXQCPehJYa68DmGBm0XxZliRJDjPzAwFk5p7g5cY1m815Ivr0FYEx5jIRne4F7py7R0RBP/CyG2vtPDMPfEFQggP4BGBfOVCpvAJ+Tmv9iwBNTU1taTQag92mM8bsIqJpZp5ZJqhULuY5rrXuSFEFl5VUSp0pwT3PewlgAMCo1lq2CIXbnxHRN7KuHQJjzCkiusHMawInoiaAV3mej7darQUBD4LgSbGqs4uLi7spiqJmEATvAax3zp0Mw/B2ncr7gVfdTtbanyVqZKWUUocK8G+dc89loFVZJicnNzUajelu8GpOdUeJEEwD2MXM41rrp3EcDxPRP0Qk2i5rXnT6AsDWqiyr5ZQQzAPYAGCjUuo/a+1ZAL9WO6qCM/PrpaWlfaJ5v5wq15WMMf+LFGmarhO7J0lygZnPA+hkSVflb/I8H221Wlk/t1edLR28lTR0zu0Iw3AmjuMDnuc9Fi8Urh0homEAawbvpKkx5hYRnWDmi1rrn4ohx8ysK5X8Vaxi7cqXJYrjeK/neTK8j865nWEYfigMM+L7/h4A77Ise1Sm5Uo5tdLN1jGatVbM8Z3I4JwbC8Pw3+4DhebXi26/CMF+12ZJMAjg92IFPzLzNQAPfN/PnHOyrmMAfpBZdYdg7TvZWiskd4pOVjo3y8ySU53cqfN8FdfFFh0t8mS4cOaMdJSm6c06fxJV4s/eUSzVpkpFdwAAAABJRU5ErkJggg=="},8071:function(t,a,e){"use strict";e.r(a);var i=function(){var t=this,a=t.$createElement,e=t._self._c||a;return e("div",[e("nav-bar",{attrs:{"left-arrow":"",title:"活动详情"}}),e("div",{staticClass:"header"},[e("div",{staticClass:"title"},[t._v(t._s(t.detail.activityName))]),e("div",{staticClass:"date"},[t._v(t._s(t.detail.updatedAt))]),e("div",{staticClass:"content",domProps:{innerHTML:t._s(t.detail.activityContent)}})]),e("div",{staticClass:"time"},[e("div",{staticClass:"item"},[e("van-icon",{attrs:{name:"clock-o"}}),t._v("活动时间:"+t._s(t.detail.activityDate))],1)]),e("div",{staticClass:"address"},[e("van-icon",{attrs:{name:"location-o",color:"#D03A29"}}),e("div",{staticClass:"text"},[t._v(t._s(t.detail.activityAddress))])],1),t.detail.files&&t.detail.files.length?e("div",{staticClass:"files"},[e("div",{staticClass:"title"},[e("van-icon",{attrs:{name:t.icon}}),t._v("附件:")],1),e("van-uploader",{attrs:{disabled:"",deletable:!1,"preview-full-image":!1,"max-count":t.detail.files.length},on:{"click-preview":t.openfile},model:{value:t.detail.files,callback:function(a){t.$set(t.detail,"files",a)},expression:"detail.files"}})],1):t._e()],1)},s=[],l=e("0c6d"),d=e("28a2"),n={data(){return{detail:{},icon:e("3627")}},created(){this.detail={},this.$toast.loading({message:"正在加载...",duration:0,forbidClick:!0}),Object(l["c"])(this.$route.query.id).then(t=>{1==t.data.state?(t.data.data.files&&(t.data.data.files=t.data.data.files.map(t=>({type:t.split(".")[t.split(".").length-1],name:t.split("/")[t.split("/").length-1],url:t}))),this.detail=t.data.data,this.$toast.clear()):this.$toast.fail(t.data.msg)}).catch(()=>{this.$toast.fail("加载失败")})},methods:{openfile(t){"pdf"==t.type.toLowerCase()?this.$router.push("/pdf?url="+t.url):"jpg"==t.type.toLowerCase()||"png"==t.type.toLowerCase()?Object(d["a"])({images:[t.url],showIndex:!1}):window.open(t.url)}}},c=n,o=(e("9a8a"),e("2877")),r=Object(o["a"])(c,i,s,!1,null,"138c6814",null);a["default"]=r.exports},"9a8a":function(t,a,e){"use strict";var i=e("3135"),s=e.n(i);s.a}}]);

File diff suppressed because one or more lines are too long

View File

@ -1 +0,0 @@
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-26aa06bd"],{"0998":function(t,a,s){"use strict";var i=s("c9cb"),e=s.n(i);e.a},"1e05":function(t,a,s){"use strict";s.r(a);var i=function(){var t=this,a=t.$createElement,s=t._self._c||a;return s("div",[s("nav-bar",{attrs:{"left-arrow":"",title:"代表联络站"}}),s("div",{staticClass:"list"},[s("div",{staticClass:"item"},[s("div",{staticClass:"title"},[t._v("立法征求意见")]),s("van-icon",{attrs:{name:"arrow"}})],1),s("div",{staticClass:"item"},[s("div",{staticClass:"title"},[t._v("监督征求意见")]),s("van-icon",{attrs:{name:"arrow"}})],1),s("div",{staticClass:"item"},[s("div",{staticClass:"title"},[t._v("评议征求意见")]),s("van-icon",{attrs:{name:"arrow"}})],1),s("div",{staticClass:"item",on:{click:t.herff}},[s("div",{staticClass:"title"},[t._v("备案审查")]),s("van-icon",{attrs:{name:"arrow"}})],1)])],1)},e=[],n={data(){return{name:""}},methods:{to(t){this.$router.push(t)},onSearch(t){this.$router.push("/peoplecongress/list?name="+this.name)},herff(){let t="https://www.baidu.com/";window.location.href=t}}},r=n,c=(s("0998"),s("2877")),o=Object(c["a"])(r,i,e,!1,null,"42a2d30e",null);a["default"]=o.exports},c9cb:function(t,a,s){}}]);

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1 +0,0 @@
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-2d0e454c"],{9087:function(t,e,r){"use strict";r.r(e);var s=function(){var t=this,e=t.$createElement,r=t._self._c||e;return r("div")},o=[],u={created(){this.$route.query.access_token?(this.$toast.loading({message:"",duration:0,forbidClick:!0}),localStorage.setItem("Authortokenasf","bearer "+this.$route.query.access_token),localStorage.setItem("usertype","street"==this.$route.query.type||"contact"==this.$route.query.type?"township":this.$route.query.type),this.$toast.clear(),this.$router.push("/")):this.$router.push("/login")}},a=u,i=r("2877"),n=Object(i["a"])(a,s,o,!1,null,null,null);e["default"]=n.exports}}]);

File diff suppressed because one or more lines are too long

View File

@ -1 +0,0 @@
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-346c1354"],{"19a7":function(t,s,e){"use strict";var a=e("3f17"),i=e.n(a);i.a},"3f17":function(t,s,e){},a17c:function(t,s,e){t.exports=e.p+"img/no587@2x.8fad7f8d.png"},ad0f:function(t,s,e){"use strict";e.r(s);var a=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",{staticClass:"page"},[e("nav-bar",{attrs:{"left-arrow":"",title:t.headerTitle+"督事列表"}}),e("div",{staticClass:"superintendence"},[t.supervise.list.length?e("div",{staticClass:"list"},t._l(t.supervise.list,(function(s){return e("div",{key:s.id,staticClass:"item",on:{click:function(e){return t.to("/Superintendence/detail?id="+s.id)}}},[e("div",{staticClass:"title"},[e("div",{staticClass:"text"},[t._v(t._s(s.title))])]),e("div",{staticClass:"detail"},[e("div",{staticClass:"cell"},[e("div",{staticClass:"label"},[t._v("督事时间:")]),e("div",{staticClass:"value"},[t._v(t._s(s.startTime))])]),e("div",{staticClass:"cell"},[e("div",{staticClass:"label"},[t._v("督事地点:")]),e("div",{staticClass:"value"},[t._v(t._s(s.address))])]),e("div",{staticClass:"cell"},[e("div",{staticClass:"label"},[t._v("督事详情:")]),e("div",{staticClass:"value"},[t._v(t._s(s.content))])])]),e("van-steps",{attrs:{active:s.status}},[e("van-step",[t._v("问环节")]),e("van-step",[t._v("议环节")]),e("van-step",[t._v("督环节")]),e("van-step",[t._v("评环节")])],1),"rddb"!=t.usertype?e("div",{staticClass:"bottom"},[e("div",{staticClass:"date"},[t._v(t._s(s.createdAt))]),e("div",{staticClass:"more"},[t._v("查看详情>>")])]):e("div",{staticClass:"more"},[e("div",[t._v("查看详情")]),e("van-icon",{attrs:{name:"arrow"}})],1)],1)})),0):t._e(),t.supervise.list.length?e("van-pagination",{attrs:{"total-items":t.supervise.total,"items-per-page":t.supervise.size,mode:"simple"},on:{change:t.getData},model:{value:t.supervise.page,callback:function(s){t.$set(t.supervise,"page",s)},expression:"supervise.page"}}):e("van-empty",{attrs:{description:"暂无数据"}})],1)],1)},i=[],l=e("0c6d"),r=e("a17c"),c=e.n(r),d=(e("bc3a"),{data(){return{image:c.a,headerTitle:"",supervise:{page:1,size:10,total:0,list:[]},active:1,usertype:localStorage.getItem("usertype")}},created(){this.headerTitle=this.$route.query.streetName,this.$toast.loading({message:"正在加载...",duration:0,forbidClick:!0}),Object(l["z"])({page:this.supervise.page,size:this.supervise.size,streetId:this.$route.query.id}).then(t=>{1==t.data.state?(this.supervise.list=t.data.data,this.supervise.total=t.data.count,this.$toast.clear()):this.$toast.fail(t.data.msg)}).catch(t=>{this.$toast.fail("加载失败")})},methods:{getData(){this.$toast.loading({message:"正在加载...",duration:0,forbidClick:!0}),Object(l["z"])({page:this.supervise.page,size:this.supervise.size,streetId:this.$route.query.id}).then(t=>{1==t.data.state?(this.supervise.list=t.data.data,this.supervise.total=t.data.count,this.$toast.clear()):this.$toast.fail(t.data.msg)}).catch(t=>{this.$toast.fail("加载失败")})},to(t){this.$router.push(t)}}}),v=d,n=(e("19a7"),e("2877")),o=Object(n["a"])(v,a,i,!1,null,"2e56174a",null);s["default"]=o.exports}}]);

File diff suppressed because one or more lines are too long

View File

@ -1 +0,0 @@
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-37701811"],{"41a0":function(t,a,s){"use strict";s.r(a);var i=function(){var t=this,a=t.$createElement,s=t._self._c||a;return s("div",[s("nav-bar",{attrs:{"left-arrow":"",title:"代表联络站"}}),s("div",{staticClass:"list"},[s("router-link",{attrs:{to:"/generalOverview"}},[s("div",{staticClass:"item"},[s("div",{staticClass:"title"},[t._v("总体概况")]),s("van-icon",{attrs:{name:"arrow"}})],1)]),s("div",{staticClass:"item"},[s("div",{staticClass:"title"},[t._v("县总站")]),s("van-icon",{attrs:{name:"arrow"}})],1),s("div",{staticClass:"item"},[s("div",{staticClass:"title"},[t._v("乡镇街道站")]),s("van-icon",{attrs:{name:"arrow"}})],1),s("div",{staticClass:"item"},[s("div",{staticClass:"title"},[t._v("村企站")]),s("van-icon",{attrs:{name:"arrow"}})],1),s("div",{staticClass:"item"},[s("div",{staticClass:"title"},[t._v("网络联络站")]),s("van-icon",{attrs:{name:"arrow"}})],1)],1)],1)},e=[],n={data(){return{name:""}},methods:{to(t){this.$router.push(t)},onSearch(t){this.$router.push("/peoplecongress/list?name="+this.name)}}},r=n,c=(s("e930"),s("2877")),l=Object(c["a"])(r,i,e,!1,null,"202e4a33",null);a["default"]=l.exports},"709e":function(t,a,s){},e930:function(t,a,s){"use strict";var i=s("709e"),e=s.n(i);e.a}}]);

View File

@ -1 +0,0 @@
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-37ca28b9"],{2827:function(t,e,i){"use strict";var a=i("4862"),s=i.n(a);s.a},4465:function(t,e,i){"use strict";i.r(e);var a=function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",{staticClass:"notice"},[a("nav-bar",{attrs:{"left-arrow":"",title:t.navtitle}}),a("div",[a("van-list",{attrs:{finished:t.finished,"finished-text":"没有更多了"},on:{load:t.getrdlist},model:{value:t.loading,callback:function(e){t.loading=e},expression:"loading"}},t._l(t.list,(function(e){return a("div",{key:e.id,staticClass:"news"},[e.coverAttachmentList&&e.coverAttachmentList.length>1?a("div",{staticClass:"newList2",on:{click:function(i){return t.to("/rdNotice/detail?id="+e.id)}}},[a("div",{staticClass:"top muloverellipse"},[t._v(" "+t._s(e.title)+" ")]),a("div",{staticClass:"imgarr"},t._l(e.coverAttachmentList.slice(0,3),(function(t,e){return a("img",{key:e,attrs:{src:t.attachment,alt:""}})})),0),e.noticeDate?a("div",{staticClass:"newdate"},[t._v(" "+t._s(e.noticeDate.split(" ")[0])+" ")]):t._e()]):a("div",{staticClass:"newList",on:{click:function(i){return t.to("/rdNotice/detail?id="+e.id)}}},[a("div",{staticClass:"newleft"},[a("div",{staticClass:"newtitle muloverellipse"},[t._v(" "+t._s(e.title)+" ")]),e.noticeDate?a("div",{staticClass:"newdate"},[t._v(" "+t._s(e.noticeDate.split(" ")[0])+" ")]):t._e()]),e.coverAttachmentList?a("img",{staticClass:"newimg",attrs:{src:e.coverAttachmentList[0].attachment,alt:""}}):t._e()])])})),0)],1),"admin"==t.usertype||"township"==t.usertype?a("img",{staticClass:"add",attrs:{src:i("6f8e"),alt:""},on:{click:function(e){return t.to("/rdNotice/add")}}}):t._e()],1)},s=[],n=i("0c6d"),c={data(){return{usertype:localStorage.getItem("usertype"),list:[],pageNo:1,pageSize:1,total:0,diff:this.$route.query.diff||"",navtitle:"人大新闻",loading:!1,finished:!1}},created(){this.usertype=localStorage.getItem("usertype"),this.getrdlist()},methods:{to(t){this.$router.push(t)},getrdlist(){this.loading=!0,Object(n["p"])({pageNo:this.pageNo,pageSize:this.pageSize,platform:localStorage.getItem("usertype")}).then(t=>{this.loading=!1,1==t.data.state?("1"==this.pageNo?this.list=t.data.data:this.list=[...this.list,...t.data.data],this.total=t.data.count,this.pageNo++,this.pageSize>t.data.data.length&&(this.finished=!0)):(this.finished=!0,this.$toast.fail("加载失败"))}).catch(t=>{this.$toast.fail("加载失败")})}}},l=c,o=(i("eabe"),i("2827"),i("2877")),r=Object(o["a"])(l,a,s,!1,null,"6da506b6",null);e["default"]=r.exports},4862:function(t,e,i){},"6f8e":function(t,e,i){t.exports=i.p+"img/icon_add.dae54178.png"},c63b:function(t,e,i){},eabe:function(t,e,i){"use strict";var a=i("c63b"),s=i.n(a);s.a}}]);

View File

@ -1 +0,0 @@
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-3ae37a59"],{"149e":function(t,e,n){"use strict";n.r(e);var r=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",[n("nav-bar",{attrs:{"left-arrow":"",title:"选择乡镇街道"}}),n("div",{staticClass:"list"},[n("van-button",{staticClass:"item",attrs:{type:"primary",icon:"arrow","icon-position":"right"},on:{click:function(e){return t.to("/peoplecongress")}}},[t._v("全部")]),t._l(t.street,(function(e){return n("van-button",{key:e.id,staticClass:"item",attrs:{type:"primary",icon:"arrow","icon-position":"right"},on:{click:function(n){return t.to("/peoplecongress?id="+e.id)}}},[t._v(t._s(e.name))])}))],2)],1)},i=[],a=n("0c6d"),s={data(){return{street:[]}},created(){Object(a["y"])().then(t=>{this.street=t.data.data})},methods:{to(t){this.$router.push(t)}}},o=s,c=(n("f4ec"),n("2877")),u=Object(c["a"])(o,r,i,!1,null,"3573db13",null);e["default"]=u.exports},"72e5":function(t,e,n){},f4ec:function(t,e,n){"use strict";var r=n("72e5"),i=n.n(r);i.a}}]);

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1 +0,0 @@
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-47ad0812"],{"7c84":function(t,a,e){"use strict";e.r(a);var s=function(){var t=this,a=t.$createElement,e=t._self._c||a;return e("div",{staticClass:"page"},[e("nav-bar",{attrs:{"left-arrow":"",title:"我的消息"}}),e("div",{staticClass:"list"},t._l(t.list,(function(a){return e("div",{key:a.id,staticClass:"item",class:{unread:0==a.status},on:{click:function(e){return t.todetail(a)}}},[e("div",{staticClass:"title"},[t._v(t._s(a.title))]),e("div",{staticClass:"content"},[t._v(t._s(a.content))]),e("div",{staticClass:"foot"},[e("div",{staticClass:"date"},[t._v(t._s(a.createdAt))]),e("div",{staticClass:"more"},[t._v("立即查看>>")])])])})),0),e("van-pagination",{attrs:{"total-items":t.total,"items-per-page":t.pageSize,mode:"simple"},on:{change:t.getData},model:{value:t.pageNo,callback:function(a){t.pageNo=a},expression:"pageNo"}})],1)},i=[],n=e("0c6d"),o={data(){return{list:[],pageNo:1,pageSize:10,total:0}},created(){this.getData()},methods:{getData(){this.$toast.loading({message:"正在加载...",duration:0,forbidClick:!0}),Object(n["l"])({page:this.page,size:this.size,type:"5,6"}).then(t=>{1==t.data.state?(this.total=t.data.count,this.list=t.data.data,this.$toast.clear()):this.$toast.fail(t.data.msg)}).catch(t=>{this.$toast.fail("加载失败")})},todetail(t){Object(n["fb"])({id:t.id}).then(a=>{1==a.data.state&&(5==t.type?this.$router.push("/mine/message/detail?type=proposal&id="+t.actionId):6==t.type&&this.$router.push("/mine/message/detail?id="+t.actionId))})}}},c=o,l=(e("e728"),e("2877")),d=Object(l["a"])(c,s,i,!1,null,"d25a0f2c",null);a["default"]=d.exports},e728:function(t,a,e){"use strict";var s=e("ee5c"),i=e.n(s);i.a},ee5c:function(t,a,e){}}]);

View File

@ -1 +0,0 @@
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-47c41384"],{4922:function(t,a,e){},6996:function(t,a,e){"use strict";e.r(a);var s=function(){var t=this,a=t.$createElement,e=t._self._c||a;return e("div",{staticClass:"suggestionsdeatil-box"},[e("nav-bar",{attrs:{"left-arrow":"",title:"消息详情"}}),e("div",{staticClass:"body"},[e("div",{staticClass:"top"},[e("div",[e("img",{attrs:{src:t.detaildata.avatar,alt:""}}),e("span",[t._v(t._s(t.detaildata.voterName))])]),e("span",[t._v(t._s(t.detaildata.formatDateTime))])]),e("div",{staticClass:"bg"}),e("div",{staticClass:"content"},[t._v(t._s(t.detaildata.suggestContent))]),e("div",{staticClass:"picture"},[e("ul",t._l(t.detaildata.photo,(function(t,a){return e("li",{key:a},[e("img",{attrs:{src:t,alt:""}})])})),0)]),1==t.detaildata.status?e("div",{staticClass:"reply"},[e("div",{staticClass:"reply-user"},[t._v(t._s(t.detaildata.db)+"")]),e("div",{staticClass:"reply-content"},[t._v(t._s(t.detaildata.replyContent))])]):t._e(),0==t.detaildata.status?[e("div",{staticClass:"answer"},[e("van-field",{attrs:{rows:"4",autosize:"",type:"textarea",placeholder:"请输入您的回复内容","show-word-limit":""},model:{value:t.message,callback:function(a){t.message=a},expression:"message"}})],1),e("div",{staticClass:"btn"},[e("span",{on:{click:t.reviewFn}},[t._v("回复")])])]:t._e()],2)],1)},i=[],d=e("f564"),l=e("2241"),r=e("0c6d"),o={components:{[d["a"].name]:d["a"],[l["a"].name]:l["a"]},data(){return{usertype:localStorage.getItem("usertype"),rddbId:localStorage.getItem("rddbId"),message:"",detaildata:"",yetallocation:[]}},created(){this.usertype=localStorage.getItem("usertype"),this.message="",this.detaildata="",this.$route.query.id&&this.getData()},methods:{getData(){this.$toast.loading({message:"正在加载...",duration:0,forbidClick:!0}),Object(r["O"])(this.$route.query.id).then(t=>{1==t.data.state?(this.$toast.clear(),this.detaildata=t.data.data,this.detaildata.photo=this.detaildata.photo.split(",")||[]):this.$toast.fail(t.data.msg)}).catch(()=>{this.$toast.fail("加载失败")})},reviewFn(){if(this.message){let t={};t.id=this.$route.query.id,t.replyContent=this.message,l["a"].confirm({message:"确认回复该建议吗"}).then(()=>{Object(r["zb"])(t).then(t=>{1==t.data.state&&(Object(d["a"])({type:"success",message:"回复成功"}),this.getData())})}).catch(()=>{})}else Object(d["a"])({type:"warning",message:"请输入回复内容"})},to(t){this.$router.push(t)}}},n=o,c=(e("b0ac"),e("2877")),u=Object(c["a"])(n,s,i,!1,null,"2329eab4",null);a["default"]=u.exports},b0ac:function(t,a,e){"use strict";var s=e("4922"),i=e.n(s);i.a}}]);

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1 +0,0 @@
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-4fba4b01"],{"2e90":function(t,a,e){"use strict";var i=e("7452"),s=e.n(i);s.a},7452:function(t,a,e){},"8c7d":function(t,a,e){"use strict";e.r(a);var i=function(){var t=this,a=t.$createElement,e=t._self._c||a;return e("div",{staticClass:"page"},[e("nav-bar",{attrs:{"left-arrow":"",title:"动态详情"}}),e("div",{staticClass:"notice"},[e("div",{staticClass:"title"},[t._v(t._s(t.detail.title))]),e("div",{staticClass:"date"},[t._v(t._s(t.detail.categoryName))]),e("div",{staticClass:"date"},[t._v(t._s(t.detail.createdAt))]),t.detail.pictureArr&&t.detail.pictureArr.length?e("van-swipe",{staticClass:"swipe",attrs:{autoplay:3e3}},t._l(t.detail.pictureArr,(function(t,a){return e("van-swipe-item",{key:a},[e("img",{attrs:{src:t,alt:""}})])})),1):t._e(),e("div",{staticClass:"content"},[t._v(t._s(t.detail.content))])],1)],1)},s=[],r=e("0c6d"),c={data(){return{detail:""}},created(){this.$route.query.id&&(this.$toast.loading({message:"正在加载...",duration:0,forbidClick:!0}),Object(r["e"])({id:this.$route.query.id}).then(t=>{1==t.data.state?(this.$toast.clear(),this.detail=t.data.data):this.$toast.fail(t.data.msg)}).catch(t=>{this.$toast.fail("加载失败")}))}},l=c,d=(e("2e90"),e("2877")),n=Object(d["a"])(l,i,s,!1,null,"15506ce8",null);a["default"]=n.exports}}]);

View File

@ -1 +0,0 @@
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-53fa7b08"],{"0336":function(t,s,a){t.exports=a.p+"img/icon_user.5e553d53.png"},"550e":function(t,s,a){},"5cce":function(t,s,a){"use strict";a.r(s);var i=function(){var t=this,s=t.$createElement,i=t._self._c||s;return i("div",[i("nav-bar",{attrs:{"left-arrow":"",title:"代表信息"}}),i("div",{staticClass:"avatar"},[i("img",{attrs:{src:a("0336"),alt:""}})]),i("div",{staticClass:"list"},[i("div",{staticClass:"item"},[i("div",{staticClass:"label"},[t._v("名字:")]),i("div",{staticClass:"value"},[t._v(t._s(t.detail.name))])]),i("div",{staticClass:"item"},[i("div",{staticClass:"label"},[t._v("性别:")]),i("div",{staticClass:"value"},[t._v(t._s(t.detail.sex))])])]),i("div",{staticClass:"list"},[i("div",{staticClass:"item"},[i("div",{staticClass:"label"},[t._v("工作单位及职务:")]),i("div",{staticClass:"value"},[t._v(t._s(t.detail.unit))])]),i("div",{staticClass:"item"},[i("div",{staticClass:"label"},[t._v("代表身份:")]),i("div",{staticClass:"value"},[t._v(t._s(t.detail.dbIdentityStr))])]),i("div",{staticClass:"item"},[i("div",{staticClass:"label"},[t._v("选区地址:")]),i("div",{staticClass:"value"},[t._v(t._s(t.detail.precinctAddressStr))])]),i("div",{staticClass:"item"},[i("div",{staticClass:"label"},[t._v("联络站:")]),i("div",{staticClass:"value"},[t._v(t._s(t.detail.officeId))])])])],1)},e=[],l=a("0c6d"),d={data(){return{detail:{}}},created(){this.$toast.loading({message:"正在加载...",duration:0,forbidClick:!0}),Object(l["k"])(this.$route.query.id).then(t=>{1==t.data.state?(this.$toast.clear(),this.detail=t.data.data):this.$toast.fail(t.data.msg)}).catch(()=>{this.$toast.fail("加载失败")})},methods:{to(t){this.$router.push(t)}}},c=d,v=(a("9b2d"),a("2877")),r=Object(v["a"])(c,i,e,!1,null,"5083167e",null);s["default"]=r.exports},"9b2d":function(t,s,a){"use strict";var i=a("550e"),e=a.n(i);e.a}}]);

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1 +0,0 @@
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-584fb733"],{7058:function(t,a,e){"use strict";e.r(a);var s=function(){var t=this,a=t.$createElement,e=t._self._c||a;return e("div",{staticClass:"suggestions-box"},[e("nav-bar",{attrs:{"left-arrow":"",title:"我的消息"}}),e("div",{staticClass:"body"},[0==t.list.length?e("van-empty",{attrs:{description:"暂无数据"}}):t._e(),e("ul",t._l(t.list,(function(a){return e("li",{key:a.id,on:{click:function(e){return t.to("/dbmessage/detail?id="+a.id,a.id)}}},[e("div",{staticClass:"top"},[e("div",[e("div",{staticClass:"avatar",class:{unread:0==a.isRead}},[e("img",{attrs:{src:a.avatar,alt:""}})]),e("span",[t._v(t._s(a.voterName))])]),e("span",[t._v(t._s(a.formatDateTime))])]),e("div",{staticClass:"bg"}),e("div",{staticClass:"content"},[t._v(t._s(a.suggestContent))]),0==a.status?e("div",{staticClass:"noreply"},[t._v("待回复")]):e("div",{staticClass:"reply"},[e("p",[e("span",[t._v(t._s(a.db)+"回复“"+t._s(a.voterName)+"”:")]),t._v(" "+t._s(a.replyContent)+" ")])])])})),0)],1),0!=t.list.length?e("van-pagination",{attrs:{"total-items":t.totalitems,"items-per-page":t.pageSize,mode:"simple"},on:{change:t.changeFn},model:{value:t.currentPage,callback:function(a){t.currentPage=a},expression:"currentPage"}}):t._e(),"township"==t.usertype?e("tabbar"):t._e()],1)},i=[],n=e("0c6d"),r={data(){return{currentPage:1,pageSize:5,totalitems:"",usertype:localStorage.getItem("usertype"),value:"",list:[]}},created(){this.value="",this.currentPage=1,this.getdata()},methods:{onSearch(t){this.currentPage=1,this.getdata()},changeFn(t){this.getdata()},getdata(){this.$toast.loading({message:"正在加载...",duration:0,forbidClick:!0}),Object(n["M"])({pageNo:this.currentPage,pageSize:this.pageSize}).then(t=>{1==t.data.state?(this.$toast.clear(),this.totalitems=t.data.count,this.list=t.data.data):this.$toast.fail(t.data.msg)}).catch(()=>{this.$toast.fail("加载失败")})},to(t,a){let e={};e.id=a,Object(n["yb"])(e).then(t=>{}),this.$router.push(t)}}},c=r,l=(e("ed17"),e("2877")),o=Object(l["a"])(c,s,i,!1,null,"b15dae7c",null);a["default"]=o.exports},"94a1":function(t,a,e){},ed17:function(t,a,e){"use strict";var s=e("94a1"),i=e.n(s);i.a}}]);

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1 +0,0 @@
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-6297f966"],{"08f8":function(t,a){t.exports="data:image/png;base64,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"},"470d":function(t,a,e){"use strict";var i=e("aa3a"),n=e.n(i);n.a},4822:function(t,a,e){"use strict";var i=e("8019"),n=e.n(i);n.a},"655d":function(t,a,e){t.exports=e.p+"img/word.49661a9f.webp"},8019:function(t,a,e){},aa3a:function(t,a,e){},e373:function(t,a,e){"use strict";e.r(a);var i=function(){var t=this,a=t.$createElement,i=t._self._c||a;return i("div",{staticClass:"page"},[i("nav-bar",{attrs:{"left-arrow":"",title:t.navtitle}}),i("pdfVue"),i("div",{staticClass:"notice"},[i("div",{staticClass:"title",domProps:{innerHTML:t._s(t.detail.title)}}),i("div",{staticClass:"content ql-editor",domProps:{innerHTML:t._s(t.detail.content)}}),i("div",{staticClass:"date"},[t._v(t._s(t.detail.updatedAt))]),i("div",{staticClass:"imagesd"},t._l(t.detail.fileAttachmentList,(function(a,n){return i("div",{key:n},[-1==a.attachment.indexOf(".pdf")&&-1==a.attachment.indexOf(".docx")?i("div",[i("van-image",{attrs:{width:"160",height:"160",src:a.attachment},on:{click:function(e){return t.previewData(a,n)}}})],1):-1!=a.attachment.indexOf(".pdf")?i("div",[i("div",{staticClass:"pdf_con",on:{click:function(e){return t.ptfData(a,1)}}},[i("img",{attrs:{src:e("08f8")}}),t._v(" "+t._s(a.title)+" ")])]):-1!=a.attachment.indexOf(".docx")?i("div",[i("div",{staticClass:"pdf_con",on:{click:function(e){return t.ptfData(a,2)}}},[i("img",{attrs:{src:e("655d")}}),t._v(" "+t._s(a.title)+" ")])]):t._e()])})),0)])],1)},n=[],s=(e("a753"),e("8096"),e("14e1"),e("0c6d")),c=e("28a2"),A={components:{[c["a"].Component.name]:c["a"].Component},data(){return{detail:{},diff:this.$route.query.diff||"",navtitle:""}},created(){this.navtitle="通知公告",this.detail={},this.getData()},methods:{ptfData(t,a){1==a&&this.$router.push({path:"/pdf",query:{url:t.attachment}}),2==a&&this.$router.push({path:"/file-over-view",query:{url:t.attachment}})},previewData(t,a){let e=this.detail,i=[];if(e){let t=e.fileAttachmentList;0!=t.length&&(t.forEach(t=>{i.push(t.attachment)}),Object(c["a"])({images:i,startPosition:a}))}},getData(){this.$toast.loading({message:"正在加载...",duration:0,forbidClick:!0}),Object(s["W"])(this.$route.query.id).then(t=>{1==t.data.state?(this.$toast.clear(),this.detail=t.data.data):this.$toast.fail(t.data.msg)}).catch(()=>{this.$toast.fail("加载失败")})}}},o=A,d=(e("4822"),e("470d"),e("2877")),r=Object(d["a"])(o,i,n,!1,null,"01fd6e99",null);a["default"]=r.exports}}]);

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1 +0,0 @@
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-6ebeb74e"],{"0fbf":function(t,a,s){"use strict";var e=s("21f8"),n=s.n(e);n.a},"21f8":function(t,a,s){},"52b3":function(t,a,s){t.exports=s.p+"img/icon34.3c6ae80d.png"},"7ca5":function(t,a){t.exports="data:image/png;base64,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"},"84e6":function(t,a,s){"use strict";s.r(a);var e=function(){var t=this,a=t.$createElement,e=t._self._c||a;return e("div",[e("nav-bar",{attrs:{"left-arrow":"",title:"象山县人大代表目录"}}),e("van-search",{attrs:{shape:"round",placeholder:"请输入人大代表名称或者地区"},on:{search:t.onSearch},model:{value:t.name,callback:function(a){t.name=a},expression:"name"}}),e("div",{staticClass:"list"},[e("div",{staticClass:"item",on:{click:function(a){return t.to("/peoplecongress/typeRddb")}}},[e("img",{staticClass:"icon",attrs:{src:s("7ca5"),alt:""}}),e("div",{staticClass:"title"},[t._v("代表信息")]),e("van-icon",{attrs:{name:"arrow"}})],1),e("div",{staticClass:"item"},[e("img",{staticClass:"icon",attrs:{src:s("52b3"),alt:""}}),e("div",{staticClass:"title"},[t._v("议案建议")]),e("van-icon",{attrs:{name:"arrow"}})],1),e("div",{staticClass:"item"},[e("img",{staticClass:"icon",attrs:{src:s("876f"),alt:""}}),e("div",{staticClass:"title"},[t._v("民生项目")]),e("van-icon",{attrs:{name:"arrow"}})],1)])],1)},n=[],i={data(){return{name:""}},methods:{to(t){this.$router.push(t)},onSearch(t){this.$router.push("/peoplecongress/list?name="+this.name)}}},r=i,o=(s("0fbf"),s("2877")),c=Object(o["a"])(r,e,n,!1,null,"24bfffd9",null);a["default"]=c.exports},"876f":function(t,a,s){t.exports=s.p+"img/icon35.6e14290b.png"}}]);

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1 +0,0 @@
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-73aa39a0"],{"22bc":function(e,A,s){"use strict";s.r(A);var t=function(){var e=this,A=e.$createElement,t=e._self._c||A;return t("div",{staticClass:"distribution-box"},[t("div",{staticClass:"top"},[t("img",{attrs:{src:s("ec9f"),alt:""},on:{click:e.goback}}),t("span",[e._v("确认")])]),t("ul",{staticClass:"peopleList"},e._l(e.people,(function(A,a){return t("li",{key:A.id,ref:"chooseLi",refInFor:!0,on:{click:function(s){return e.chooseFn(A,a)}}},[e._v(" "+e._s(A.name)+" "),t("img",{attrs:{src:s("dd24"),alt:""}})])})),0)])},a=[],o={data(){return{people:[{id:1,name:"人大代表"},{id:2,name:"人大代表"},{id:3,name:"人大代表"}]}},methods:{goback(){this.$router.go(-1)},chooseFn(e,A){function s(e){for(var A=[],s=e.parentNode.children,t=0;t<s.length;t++)1==s[t].nodeType&&s[t]!=e&&A.push(s[t]);return A}for(var t=s(this.$refs.chooseLi[A]),a=0;a<t.length;a++)t[a].className="",t[a].children[0].className="";this.$refs.chooseLi[A].className.length<=0?(this.$refs.chooseLi[A].className="choosecolor",this.$refs.chooseLi[A].children[0].className="chooseimg"):(this.$refs.chooseLi[A].classList="",this.$refs.chooseLi[A].children[0].className="")}}},i=o,c=(s("9c76"),s("2877")),r=Object(c["a"])(i,t,a,!1,null,"6299c78e",null);A["default"]=r.exports},"8d73":function(e,A,s){},"9c76":function(e,A,s){"use strict";var t=s("8d73"),a=s.n(t);a.a},dd24:function(e,A){e.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAC5klEQVRYR81XPWhTURT+znvx5T7oUAtCBzeDVFwcugiKdSw6OPiTRB0EBcHFoaBOKghWcC0WWuhgTQMWXBQXoYoFBzN006JuBQOCdSjkvvjePXKfeTFN3l/SlHjH5Nzzfe+c754fQtozgyF7xD7F4AliGmfi/QQa1dcZXCWmDSauEOht7WftFW5gK41rSjLKlrMHSNFtAJeISCTZ+4SYJYBFNnjayTvf4u5EE1iAEFlxF4QpAmXSALfbMNgF47F05H1cgSbVcUIJ6K82lLEMwpFegDvuMNaUoc6GRaODgFWyDptkvgHg57ePp6pMNeGcd9ZbfW4jkH2azRkZ4/0ugAeYVeWq485l52vwwz8CCxB21v7Qt7BHhY6xVnNqRwNNNAmIknhI5Kt91w8zT8uivKOBfAI69JShT72qvVvG+nWwy4d0KnwCoiTmiOhqt47i7Bm8SqBclJ6YeV4W5TXCDIbEXvEjbZFJQ1JBLTvrTsE6aOVMMlfCSOhiJTflPrKX7AsAymkcp7EJwHEPrra3StYZk8wXEXfzJJbEEwJdT+M8yaYdHAsYFUKsEGgs7C6DZ3UEPgIYT3Ke9H+34A1/FR2B70FXi2Cpu1q1IahQHj2C66a1oSPA0TWDt1x2J91Nd02MiNcEOtZu2yt4sxLGEfCUV6hfrP8VqH4tbSR2Cu4XorgUMPOq3JSTzeGihUQ/wIMUxIowlMSwmJJf5IPgqSWpPUbAvggTn2EHiVaPCU8toVrOkv3MzsPAUtIzCyWxA3AfT6HQVSneRmKH4M1S7DejspgjTteMNAmPvZumYS5GVbikaOr/mXhe5nUz+h/acaMlD24g8UM26JEsSMXghtKGcqySNRY1RKQRV4xN1WPvZL1Y/9xqE76Y6PHcNJ73bULWi4mnzrWO481mFMl4kKtZKyl/Yt5Dt6C6XE4NLPJvfhT21YkpCI2KXs+H7dNs8AkCjTPa1nPQBoMrpOhd7VftZdr1/A/ZFKfXgyBhcwAAAABJRU5ErkJggg=="},ec9f:function(e,A){e.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAkCAYAAADhAJiYAAAB4UlEQVRYR9WYS0pcYRSEqwZZgSjBB0qiougahGCUSKZuwB24HF2EUwe+xYGDhCBCfOBYRCKKbqCk4L9wuLR030ffvvmn3c35qDr/f+o00bLDlvGgr0CSxgBsAxgGsEHyqpsAfQOSNArgFMB0gjgguTIQIEkTAA4BzASAXZI/GweSNJ6U+RKK3wH4RvK+USBJhrAyU6HwbYJ56Abjz2vroQRzAsB2ZecawDLJnmBqA5LkxjWMb1WEsU2PvSiTfaeyQpJmARzlYP4mm/4VgamsUII5BuArnp3LZNNTUZhKQJLmABjmcyh8AWCFZCmY0kCS5pNNeRg38HMZZUr3UIJxA4+Ewn8AfCf5UgWmsEKSFtM7E2F+A1itA6YQUILxbfKgzI5hrMxrVWUKWSZpIY2DoVD4V4J5qwumZ4Uk7bt4KHwO4AfJWmGKAO35OueA1uq06v+2zPStaupMzlZd+wDlV7odD2OA+miONT86eoBqfrgGKGehdsSPHFQ7AlqA6hRhnRrdU81G2ADljaNTyC+Uqytn6jhYP9g8BrMGBaUmU5qMi6KhbF+zi2KA8vZq+74GBXdIrneLKrValrPPUH4Ssj8bzkguDQwoDWQvjlsAPgHYJHkzUKBuxTt93jfLysD4N+9qJLol/fO7OAAAAABJRU5ErkJggg=="}}]);

View File

@ -1 +0,0 @@
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-73b71e08"],{"50d4":function(s,t,a){"use strict";var e=a("74c9"),i=a.n(e);i.a},"74c9":function(s,t,a){},b953:function(s,t,a){"use strict";a.r(t);var e=function(){var s=this,t=s.$createElement,a=s._self._c||t;return a("div",{staticClass:"register-box"},[a("p",{staticClass:"title"},[s._v("用户注册")]),a("div",{staticClass:"account"},[a("p",[s._v("账号")]),a("div",{staticClass:"loginconter"},[a("van-field",{attrs:{type:"number",clearable:"",placeholder:"请输入您的手机号"},model:{value:s.phone,callback:function(t){s.phone=t},expression:"phone"}})],1),a("div",{staticClass:"line"})]),a("div",{staticClass:"password"},[a("p",[s._v("验证码")]),a("div",{staticClass:"loginconter"},[a("van-field",{attrs:{clearable:"",placeholder:"验证码"},model:{value:s.verificationCode,callback:function(t){s.verificationCode=t},expression:"verificationCode"}}),a("van-button",{staticClass:"getcaptcha",attrs:{disabled:s.disabledFlag},on:{click:s.getcode}},[s._v(s._s(s.codeword))])],1),a("div",{staticClass:"line"})]),a("div",{staticClass:"password"},[a("p",[s._v("密码")]),a("div",{staticClass:"loginconter"},[a("van-field",{attrs:{type:"password",clearable:"",placeholder:"请输入您的密码"},model:{value:s.password,callback:function(t){s.password=t},expression:"password"}})],1),a("div",{staticClass:"line"})]),a("div",{staticClass:"password"},[a("p",[s._v("确认密码")]),a("div",{staticClass:"loginconter"},[a("van-field",{attrs:{type:"password",clearable:"",placeholder:"请再次输入您的密码"},model:{value:s.password2,callback:function(t){s.password2=t},expression:"password2"}})],1),a("div",{staticClass:"line"})]),a("div",{staticClass:"btn",on:{click:s.submit}},[s._v("注册")]),a("div",{staticClass:"back",on:{click:function(t){return s.$router.go(-1)}}},[s._v("返回")])])},i=[],o=a("0c6d"),l={data(){return{phone:"",verificationCode:"",password:"",password2:"",disabledFlag:!1,codeword:"获取验证码"}},methods:{getcode(){this.phone?Object(o["Gb"])({phone:this.phone}).then(s=>{if(1==s.data.state){this.disabledFlag=!0;var t=60;this.codeword=t+"秒",this.timer=setInterval(()=>{t--,this.codeword=t+"秒",t<=0&&(clearInterval(this.timer),this.codeword="重新发送",this.disabledFlag=!1)},1e3)}}).catch(s=>{this.disabledFlag=!1}):this.$toast("请输入手机号")},submit(){""!=this.password&&this.password==this.password2?Object(o["Db"])({code:this.verificationCode,password:this.password,phone:this.phone,type:"voter"}).then(s=>{1==s.data.state&&this.$router.push("/login")}):this.$toast("两次输入密码不一致")}}},c=l,d=(a("50d4"),a("2877")),n=Object(d["a"])(c,e,i,!1,null,"31920bb3",null);t["default"]=n.exports}}]);

File diff suppressed because one or more lines are too long

View File

@ -1 +0,0 @@
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-77fb2bc4"],{6088:function(t,a,i){"use strict";i.r(a);var e=function(){var t=this,a=t.$createElement,i=t._self._c||a;return i("div",{staticClass:"page"},[i("nav-bar",{attrs:{"left-arrow":"",title:t.navtitle}}),i("div",{staticClass:"notice"},[i("div",{staticClass:"title"},[t._v(t._s(t.detail.title))]),t.detail.coverAttachmentList&&t.detail.coverAttachmentList.length<2?i("div",{staticClass:"onlyImg"},[i("div",{staticClass:"content",domProps:{innerHTML:t._s(t.detail.content)}}),t.detail.coverAttachmentList.length>0?i("div",t._l(t.detail.coverAttachmentList,(function(t){return i("img",{key:t.id,staticClass:"img",attrs:{src:t.attachment,alt:""}})})),0):t._e()]):i("div",{staticClass:"mulimg"},[i("div",{staticClass:"content",domProps:{innerHTML:t._s(t.detail.content)}}),i("div",{staticClass:"imglist"},t._l(t.detail.coverAttachmentList.slice(0,3),(function(t){return i("img",{key:t.id,attrs:{src:t.attachment,alt:""}})})),0)]),t.detail.noticeDate?i("div",{staticClass:"date"},[t._v(t._s(t.detail.noticeDate.split(" ")[0]))]):t._e()])],1)},s=[],n=i("0c6d"),c={data(){return{detail:{},diff:this.$route.query.diff||"",navtitle:""}},created(){this.navtitle="人大新闻",this.detail={},this.getData()},methods:{getData(){this.$toast.loading({message:"正在加载...",duration:0,forbidClick:!0}),Object(n["q"])(this.$route.query.id).then(t=>{1==t.data.state?(this.$toast.clear(),this.detail=t.data.data):this.$toast.fail(t.data.msg)}).catch(()=>{this.$toast.fail("加载失败")})}}},l=c,d=(i("e525"),i("d666"),i("2877")),r=Object(d["a"])(l,e,s,!1,null,"2086fbce",null);a["default"]=r.exports},"84b2":function(t,a,i){},d1d0:function(t,a,i){},d666:function(t,a,i){"use strict";var e=i("d1d0"),s=i.n(e);s.a},e525:function(t,a,i){"use strict";var e=i("84b2"),s=i.n(e);s.a}}]);

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1 +0,0 @@
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-7faf4e56"],{"06fc":function(t,s,a){},"1ed9":function(t,s,a){"use strict";a.r(s);var i=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",[a("nav-bar",{attrs:{"left-arrow":"",title:"签到详情"}}),a("div",{staticClass:"personnel"},[a("div",{staticClass:"title green"},[t._v("已签到人员:")]),a("div",{staticClass:"list"},t._l(t.sign,(function(s){return a("div",{key:s.id,staticClass:"item"},[t._v(t._s(s.userName))])})),0)]),a("div",{staticClass:"personnel"},[a("div",{staticClass:"title red"},[t._v("未签到人员:")]),a("div",{staticClass:"list"},t._l(t.unsign,(function(s){return a("div",{key:s.id,staticClass:"item"},[t._v(t._s(s.userName))])})),0)])],1)},e=[],n=a("0c6d"),c={data(){return{sign:[],unsign:[]}},created(){this.$toast.loading({message:"正在加载...",duration:0,forbidClick:!0}),Object(n["F"])({id:this.$route.query.id}).then(t=>{1==t.data.state?(this.$toast.clear(),t.data.data.map(t=>{0==t.status?this.unsign.push(t):1==t.status&&this.sign.push(t)})):this.$toast.fail(t.data.msg)}).catch(t=>{this.$toast.fail("加载失败")})}},r=c,d=(a("eed2"),a("2877")),l=Object(d["a"])(r,i,e,!1,null,"2c6462a5",null);s["default"]=l.exports},eed2:function(t,s,a){"use strict";var i=a("06fc"),e=a.n(i);e.a}}]);

File diff suppressed because one or more lines are too long

View File

@ -1 +0,0 @@
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-88263f50"],{"1bfc":function(t,a,e){},5533:function(t,a,e){},"6f8e":function(t,a,e){t.exports=e.p+"img/icon_add.dae54178.png"},a71d:function(t,a,e){"use strict";var i=e("1bfc"),s=e.n(i);s.a},ab43:function(t,a,e){"use strict";e.r(a);var i=function(){var t=this,a=t.$createElement,i=t._self._c||a;return i("div",{staticClass:"notice"},[i("nav-bar",{attrs:{"left-arrow":"",title:t.navtitle}}),i("van-tabs",{on:{change:t.changeTab},model:{value:t.active,callback:function(a){t.active=a},expression:"active"}},[i("van-tab",{attrs:{title:"通知"}}),i("van-tab",{attrs:{title:"公告"}})],1),i("div",{staticClass:"list"},t._l(t.list,(function(a){return i("div",{key:a.id,staticClass:"item",on:{click:function(e){return t.to("/notice/detail?id="+a.id+"&diff="+t.diff)}}},[i("div",{staticClass:"title"},[a.top?i("van-tag",{staticClass:"tag",attrs:{color:"#D03A29",plain:"",type:"primary"}},[t._v("置顶")]):t._e(),t._v(" "+t._s(a.title)+" ")],1),i("van-icon",{staticClass:"icon",attrs:{name:"arrow"}})],1)})),0),0!=t.list.length&&"1"==this.diff?i("van-pagination",{attrs:{"total-items":t.total,"items-per-page":t.pageSize,mode:"simple"},on:{change:t.getzwlist},model:{value:t.pageNo,callback:function(a){t.pageNo=a},expression:"pageNo"}}):t._e(),0==t.list.length||this.diff?t._e():i("van-pagination",{attrs:{"total-items":t.total,"items-per-page":t.pageSize,mode:"simple"},on:{change:t.getData},model:{value:t.pageNo,callback:function(a){t.pageNo=a},expression:"pageNo"}}),i("div",{staticClass:"imgaddBtn"},[i("div",{staticClass:"imgdiv"},["admin"==t.usertype||"township"==t.usertype?i("img",{staticClass:"add",attrs:{src:e("6f8e"),alt:""},on:{click:function(a){return t.to("/notice/add?type="+(0==t.active?"tz":"gg"))}}}):t._e()]),0==this.active?i("div",{staticClass:"imgtext"},[t._v("新增通知")]):t._e(),0!=this.active?i("div",{staticClass:"imgtext"},[t._v("新增公告")]):t._e()])],1)},s=[],n=e("0c6d"),o={data(){return{usertype:localStorage.getItem("usertype"),list:[],pageNo:1,pageSize:10,total:0,diff:this.$route.query.diff||"",navtitle:"",loading:!1,finished:!1,active:0}},created(){this.usertype=localStorage.getItem("usertype"),this.navtitle="通知公告",this.getData()},methods:{to(t){this.$router.push(t)},getData(){this.$toast.loading({message:"正在加载...",duration:0,forbidClick:!0}),Object(n["V"])({pageNo:this.pageNo,pageSize:this.pageSize,platform:localStorage.getItem("usertype"),type:0==this.active?"tz":"gg"}).then(t=>{1==t.data.state?(this.$toast.clear(),this.list=t.data.data,this.total=t.data.count):this.$toast.fail(t.data.msg)}).catch(()=>{this.$toast.fail("加载失败")})},changeTab(){this.getData()}}},c=o,l=(e("edf4"),e("a71d"),e("2877")),r=Object(l["a"])(c,i,s,!1,null,"158711c3",null);a["default"]=r.exports},edf4:function(t,a,e){"use strict";var i=e("5533"),s=e.n(i);s.a}}]);

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

Some files were not shown because too many files have changed in this diff Show More