This commit is contained in:
lijiaqi 2022-11-21 13:14:56 +08:00
parent a9d3a216f1
commit 6003780f4f
171 changed files with 312 additions and 86 deletions

View File

@ -196,7 +196,7 @@ public class ApiContactDbController extends ApiBaseController {
@ResponseBody
@DynamicResponseParameters(properties = {@DynamicParameter(name = "data", value = "常委会联系代表", dataTypeClass =
ContactDbDto.class)})
public void stateEvaluateSave(@Validated ContactDbEvaluateRequest contactDbEvaluateRequest) {
public void stateEvaluateSave(@Validated @RequestBody ContactDbEvaluateRequest contactDbEvaluateRequest) {
ContactDb contactDb = contactDbService.stateEvaluateSave(contactDbEvaluateRequest, getApiUser());
render(Ret.ok().data(ContactDbWrapper.build().entityVO(contactDb)));
}

View File

@ -0,0 +1,62 @@
package com.ydool.boot.modules.rddb.entity;
import com.baomidou.mybatisplus.annotation.TableName;
import com.ydool.boot.core.entity.BaseEntity;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
/**
* <p>
* 建议待送
* </p>
*
* @author zhouyuan
* @since 2022-11-21
*/
@Data
@EqualsAndHashCode(callSuper = true)
@TableName("t_contact_db_message")
public class ContactDbMessage extends BaseEntity{
private static final long serialVersionUID = 1L;
/**
* 创建者
*/
private String createdId;
/**
* 更新者
*/
private String updatedId;
/**
* 流程id
*/
@ApiModelProperty(value = "流程id")
private String contactId;
/**
* 内容
*/
@ApiModelProperty(value = "内容")
private String content;
/**
* 提送人
*/
@ApiModelProperty(value = "提送人")
private String userName;
/**
* 联系电话
*/
@ApiModelProperty(value = "联系电话")
private String telephone;
/**
* 部门
*/
@ApiModelProperty(value = "部门")
private String dept;
}

View File

@ -54,4 +54,7 @@ public class ContactDbDto extends ContactDb {
@ApiModelProperty(value = "当前用户是否可以测评")
Boolean isCanEvaluate;
@ApiModelProperty(value = "建议代送")
List<ContactDbMessage> contactDbMessageList;
}

View File

@ -6,6 +6,7 @@ import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
import java.time.LocalDateTime;
import java.util.List;
/**
* @author zhouyuan
@ -74,4 +75,7 @@ public class ContactDbEvaluateRequest {
@ApiModelProperty(value = "相关材料附件关联会议名称 英文逗号间隔")
String materialAttachmentConferenceName;
@ApiModelProperty(value = "建议代送")
List<ContactDbMessageRequest> contactDbMessages;
}

View File

@ -0,0 +1,37 @@
package com.ydool.boot.modules.rddb.entity.request.contact_db.state;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
@Data
public class ContactDbMessageRequest {
/**
* 流程id
*/
@ApiModelProperty(value = "流程id")
private String contactId;
/**
* 内容
*/
@ApiModelProperty(value = "内容")
private String content;
/**
* 提送人
*/
@ApiModelProperty(value = "提送人")
private String userName;
/**
* 联系电话
*/
@ApiModelProperty(value = "联系电话")
private String telephone;
/**
* 部门
*/
@ApiModelProperty(value = "部门")
private String dept;
}

View File

@ -20,7 +20,7 @@ public class MyGenerator {
public static void main(String[] args) {
//表名
String tableName = "t_review_work_message";
String tableName = "t_contact_db_message";
//表前缀
String tablePrefix = "t_";

View File

@ -0,0 +1,16 @@
package com.ydool.boot.modules.rddb.mapper;
import com.ydool.boot.modules.rddb.entity.ContactDbMessage;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
/**
* <p>
* 建议待送 Mapper 接口
* </p>
*
* @author zhouyuan
* @since 2022-11-21
*/
public interface ContactDbMessageMapper extends BaseMapper<ContactDbMessage> {
}

View File

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.ydool.boot.modules.rddb.mapper.ContactDbMessageMapper">
</mapper>

View File

@ -0,0 +1,20 @@
package com.ydool.boot.modules.rddb.service;
import com.ydool.boot.modules.rddb.entity.ContactDbMessage;
import com.ydool.boot.modules.rddb.mapper.ContactDbMessageMapper;
import com.ydool.boot.modules.rddb.service.inter.IContactDbMessageService;
import com.ydool.boot.core.service.BaseService;
import org.springframework.stereotype.Service;
/**
* <p>
* 建议待送 服务实现类
* </p>
*
* @author zhouyuan
* @since 2022-11-21
*/
@Service
public class ContactDbMessageService extends BaseService<ContactDbMessageMapper, ContactDbMessage> implements IContactDbMessageService {
}

View File

@ -64,6 +64,9 @@ public class ContactDbService extends BaseService<ContactDbMapper, ContactDb> {
@Autowired
ContactDbConferenceRecordUserService contactDbConferenceRecordUserService;
@Autowired
ContactDbMessageService contactDbMessageService;
/*后台*/
@Transactional
@ -302,6 +305,19 @@ public class ContactDbService extends BaseService<ContactDbMapper, ContactDb> {
ContactDbAttachment.TYPE_CONFERENCE_MATERIAL,
contactDbEvaluateRequest.getMaterialAttachmentConferenceId(),
contactDbEvaluateRequest.getMaterialAttachmentConferenceName());
List<ContactDbMessageRequest> contactDbMessages = contactDbEvaluateRequest.getContactDbMessages();
if (CollectionUtil.isNotEmpty(contactDbMessages)){
List<ContactDbMessage> contactDbMessageList = new ArrayList<ContactDbMessage>();
contactDbMessages.forEach(contactDbMessage ->{
ContactDbMessage dbMessage = BeanUtil.copyProperties(contactDbMessages, ContactDbMessage.class);
dbMessage.setContactId(loginUser.getId());
dbMessage.setCreatedAt(LocalDateTime.now());
dbMessage.setUpdatedId(loginUser.getId());
dbMessage.setUpdatedAt(LocalDateTime.now());
contactDbMessageList.add(dbMessage);
});
contactDbMessageService.saveBatch(contactDbMessageList);
}
return contactDb;
}

View File

@ -0,0 +1,16 @@
package com.ydool.boot.modules.rddb.service.inter;
import com.ydool.boot.modules.rddb.entity.ContactDbMessage;
import com.baomidou.mybatisplus.extension.service.IService;
/**
* <p>
* 建议待送 服务类
* </p>
*
* @author zhouyuan
* @since 2022-11-21
*/
public interface IContactDbMessageService extends IService<ContactDbMessage> {
}

View File

@ -0,0 +1,21 @@
package com.ydool.boot.modules.rddb.web;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.stereotype.Controller;
import com.ydool.boot.core.web.BaseController;
/**
* <p>
* 建议待送 前端控制器
* </p>
*
* @author zhouyuan
* @since 2022-11-21
*/
@Controller
@RequestMapping("/rddb/contactDbMessage")
public class ContactDbMessageController extends BaseController {
}

View File

@ -12,10 +12,7 @@ import com.ydool.boot.modules.rddb.entity.*;
import com.ydool.boot.modules.rddb.entity.dto.ConferenceRecordDto;
import com.ydool.boot.modules.rddb.entity.dto.ContactDbDto;
import com.ydool.boot.modules.rddb.mapper.ConferenceMapper;
import com.ydool.boot.modules.rddb.service.ContactDbAttachmentService;
import com.ydool.boot.modules.rddb.service.ContactDbConferenceRecordService;
import com.ydool.boot.modules.rddb.service.ContactDbConferenceRecordUserService;
import com.ydool.boot.modules.rddb.service.ContactDbUserService;
import com.ydool.boot.modules.rddb.service.*;
import org.springframework.beans.factory.annotation.Autowired;
import java.math.BigDecimal;
@ -45,6 +42,7 @@ public class ContactDbWrapper extends BaseWrapper<ContactDb, ContactDbDto> {
SpringUtils.getBean(ContactDbConferenceRecordService.class);
ContactDbConferenceRecordUserService contactDbConferenceRecordUserService =
SpringUtils.getBean(ContactDbConferenceRecordUserService.class);
ContactDbMessageService contactDbMessageService = SpringUtils.getBean(ContactDbMessageService.class);
// List<ContactDbAttachment> recordAttachmentList = contactDbAttachmentService.list(new
@ -293,6 +291,10 @@ public class ContactDbWrapper extends BaseWrapper<ContactDb, ContactDbDto> {
evaluateUserList.stream().map(ContactDbUser::getUserId).collect(Collectors.toList());
if (evaluateUserIdList.contains(userInfo.getId())) dto.setIsCanEvaluate(true);
}
List<ContactDbMessage> contactDbMessages =
contactDbMessageService.list(new LambdaQueryWrapper<ContactDbMessage>().eq(ContactDbMessage::getContactId,
contactDb.getId()));
dto.setContactDbMessageList(contactDbMessages);
return dto;
}
}

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

@ -0,0 +1 @@
.news[data-v-1ee7323f]{margin:0 .42667rem;border-bottom:.02667rem solid #f3f3f3}.news[data-v-1ee7323f]:last-of-type{border-bottom:none}.news .newList2[data-v-1ee7323f]{padding:.42667rem 0}.news .newList2 .top[data-v-1ee7323f]{font-size:.37333rem;color:#333;line-height:.58667rem;font-weight:700}.news .newList2 .imgarr[data-v-1ee7323f]{display:flex;margin-top:.21333rem}.news .newList2 .imgarr img[data-v-1ee7323f]{width:30%;margin-right:3%;height:auto;-o-object-fit:cover;object-fit:cover}.news .newList2 .newdate[data-v-1ee7323f]{font-size:.32rem;color:#999;line-height:.45333rem;margin-top:.21333rem}.news .newList[data-v-1ee7323f]{display:flex;justify-content:space-between;padding:.42667rem 0}.news .newList .newleft[data-v-1ee7323f]{display:flex;flex-direction:column;justify-content:space-between}.news .newList .newleft .newtitle[data-v-1ee7323f]{font-size:.37333rem;color:#333;line-height:.58667rem;font-weight:700}.news .newList .newleft .newdate[data-v-1ee7323f]{font-size:.32rem;color:#999;line-height:.45333rem;margin-top:.10667rem}.news .newList .newimg[data-v-1ee7323f]{margin-left:.26667rem;width:3.33333rem;height:2.24rem;-o-object-fit:cover;object-fit:cover}.muloverellipse[data-v-1ee7323f]{word-break:break-all;text-overflow:ellipsis;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow:hidden}.notice[data-v-1ee7323f]{min-height:100%;background-color:#fff;display:flex;flex-direction:column;overflow:auto}.list[data-v-1ee7323f]{flex:1}.list .item[data-v-1ee7323f]{position:relative;padding:.53333rem .42667rem;display:flex;align-items:center}.list .item[data-v-1ee7323f]:not(:last-child):after{content:"";position:absolute;bottom:0;left:.42667rem;right:.42667rem;height:.02667rem;background-color:#f3f3f3}.list .item .tag[data-v-1ee7323f]{margin-right:.10667rem;border-radius:.21333rem;font-size:.26667rem;vertical-align:middle}.list .item .title[data-v-1ee7323f]{flex:1;font-size:.37333rem;color:#333;line-height:.53333rem;font-weight:700}.list .item .icon[data-v-1ee7323f]{margin-left:.8rem;font-size:.32rem}.imgaddBtn[data-v-1ee7323f]{position:fixed;bottom:26%;right:0}.imgaddBtn .imgdiv[data-v-1ee7323f]{height:2.4rem;margin-top:.26667rem;z-index:50;opacity:.9}.imgaddBtn .imgdiv .add[data-v-1ee7323f]{width:2.72rem;z-index:999}.imgaddBtn .imgtext[data-v-1ee7323f]{font-size:.42667rem;text-align:center}

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1 @@
.form-ele[data-v-f7a008cc]{background-color:#fff;padding:.42667rem .64rem;margin-bottom:.42667rem}.form-ele .form-title[data-v-f7a008cc]{font-size:.42667rem;font-weight:600}.form-ele .form-content .form-text[data-v-f7a008cc]{font-size:.42667rem;font-weight:500;color:#a5a5a5}.form-ele .form-content .form-com .form-com-item[data-v-f7a008cc]{font-size:.42667rem;color:#a5a5a5;background-color:#f8f8f8;border-radius:.21333rem;padding:.32rem}.form-ele .form-content .form-com .form-com-item .date[data-v-f7a008cc]{font-size:.32rem;text-align:right}.form-te .form-content[data-v-f7a008cc]{margin-top:.37333rem}.flex[data-v-f7a008cc]{display:flex;justify-content:space-between;align-items:baseline}.end[data-v-f7a008cc]{padding:0 .42667rem}.end .van-button[data-v-f7a008cc]{height:1.33333rem;border-radius:.21333rem}.announce[data-v-f7a008cc]{position:fixed;width:100%;bottom:0}.announce .issue[data-v-f7a008cc]{padding:.08rem .37333rem;border-radius:.21333rem;background-color:#d03a29;color:#f8f8f8}

View File

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

View File

@ -0,0 +1 @@
.flex-align-center[data-v-6dbed47e]{display:flex;align-items:center}.browse_image[data-v-6dbed47e]{width:2.13333rem;height:2.13333rem}[data-v-6dbed47e] .from_el{display:flex;align-items:center}[data-v-6dbed47e] .from_el .title{width:2.4rem;font-size:.42667rem;flex-shrink:0}[data-v-6dbed47e] .from_el .enclosure{margin-top:.53333rem}[data-v-6dbed47e] .from_el .enclosureBtn{display:inline-block;padding:.21333rem .42667rem;background:#d03a29;border-radius:.10667rem;color:#fff}[data-v-6dbed47e] .from_el .enclosureBtn .enclosureImg{margin-right:.10667rem;width:.34667rem;height:.32rem;vertical-align:middle}.preview-cover[data-v-6dbed47e]{position:absolute;bottom:0;box-sizing:border-box;width:100%;padding:.10667rem;color:#fff;font-size:.32rem;text-align:center;background:rgba(0,0,0,.3)}.browse[data-v-6dbed47e]{margin:.26667rem 0}.browse .browse_delet[data-v-6dbed47e]{width:100%;text-align:right;font-size:.42667rem}.browse .imagesee[data-v-6dbed47e]{width:2.66667rem}.onlyImg[data-v-939c6088]{display:flex;justify-content:space-between}.onlyImg .img[data-v-939c6088]{margin-left:.32rem;width:2.13333rem;height:2.13333rem;-o-object-fit:cover;object-fit:cover}.pdf_con[data-v-939c6088]{font-size:.37333rem}.pdf_con img[data-v-939c6088]{width:1.12rem}.mulimg .imglist[data-v-939c6088]{margin-top:.16rem;display:flex;flex-wrap:wrap}.mulimg .imglist img[data-v-939c6088]{width:30%;margin-right:2%;height:auto}.page[data-v-939c6088]{min-height:100%;background-color:#fff}.notice[data-v-939c6088]{padding:.42667rem}.matter[data-v-939c6088],.title[data-v-939c6088]{font-size:.4rem;color:#333;line-height:.53333rem;font-weight:700}.date[data-v-939c6088],.matter span[data-v-939c6088]{font-size:.32rem;line-height:.45333rem}.date[data-v-939c6088]{margin-top:.16rem;color:#999}.content[data-v-939c6088]{width:100%;font-size:.37333rem;color:#333;line-height:.64rem;margin-top:.21333rem}.imagesd[data-v-939c6088]{margin-top:.21333rem;width:100%;display:flex;flex-wrap:wrap}.imagesd div[data-v-939c6088]{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

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1 @@
.van-pagination[data-v-02d0f24c]{position:fixed;bottom:0;width:100%;z-index:999;background:#fff}.box[data-v-02d0f24c]{display:flex;flex-direction:column;height:100%;font-size:.42667rem}.box .add[data-v-02d0f24c]{width:2.13333rem;height:2.13333rem;position:fixed;right:.32rem;bottom:20%}.box[data-v-02d0f24c] .van-tab.van-tab--active{font-size:.42667rem;font-weight:800}.box .tab-contain[data-v-02d0f24c]{padding:.32rem;padding-bottom:1.12rem}.box .tab-contain .van-cell[data-v-02d0f24c]{margin-bottom:.37333rem}.box .tab-contain .van-cell .custom-title[data-v-02d0f24c]{font-weight:700;font-size:.42667rem}.box .tab-contain .van-cell .custom-title1[data-v-02d0f24c]{font-weight:700;margin-left:.8rem;font-size:.37333rem;color:#47aef3}.box .tab-contain .van-cell .custom-title2[data-v-02d0f24c]{font-weight:700;margin-left:.8rem;font-size:.37333rem;color:#c86b1d}.box .tab-contain .van-cell .van-icon[data-v-02d0f24c]{color:#333}

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1 @@
.van-pagination[data-v-17ce3700]{position:fixed;bottom:0;width:100%;z-index:999;background:#fff}.box[data-v-17ce3700]{display:flex;flex-direction:column;height:100%;font-size:.42667rem}.box .add[data-v-17ce3700]{width:2.13333rem;height:2.13333rem;position:fixed;right:.32rem;bottom:20%}.box[data-v-17ce3700] .van-tab.van-tab--active{font-size:.42667rem;font-weight:800}.box .tab-contain[data-v-17ce3700]{padding:.32rem;padding-bottom:1.12rem}.box .tab-contain .van-cell[data-v-17ce3700]{margin-bottom:.37333rem}.box .tab-contain .van-cell .custom-title[data-v-17ce3700]{font-weight:700;font-size:.42667rem}.box .tab-contain .van-cell .custom-title1[data-v-17ce3700]{font-weight:700;margin-left:.8rem;font-size:.37333rem;color:#47aef3}.box .tab-contain .van-cell .custom-title2[data-v-17ce3700]{font-weight:700;margin-left:.8rem;font-size:.37333rem;color:#c86b1d}.box .tab-contain .van-cell .van-icon[data-v-17ce3700]{color:#333}

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 @@
.van-pagination[data-v-1e33314c]{position:fixed;bottom:0;width:100%;z-index:999;background:#fff}.box[data-v-1e33314c]{display:flex;flex-direction:column;height:100%;font-size:.42667rem}.box .add[data-v-1e33314c]{width:2.13333rem;height:2.13333rem;position:fixed;right:.32rem;bottom:20%}.box[data-v-1e33314c] .van-tab.van-tab--active{font-size:.42667rem;font-weight:800}.box .tab-contain[data-v-1e33314c]{padding:.32rem;padding-bottom:1.12rem}.box .tab-contain .van-cell[data-v-1e33314c]{margin-bottom:.37333rem}.box .tab-contain .van-cell .custom-title[data-v-1e33314c]{font-weight:700;font-size:.42667rem}.box .tab-contain .van-cell .custom-title1[data-v-1e33314c]{font-weight:700;margin-left:.8rem;font-size:.37333rem;color:#47aef3}.box .tab-contain .van-cell .custom-title2[data-v-1e33314c]{font-weight:700;margin-left:.8rem;font-size:.37333rem;color:#c86b1d}.box .tab-contain .van-cell .van-icon[data-v-1e33314c]{color:#333}

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

@ -0,0 +1 @@
.news[data-v-215ad780]{margin:0 .42667rem;border-bottom:.02667rem solid #f3f3f3}.news[data-v-215ad780]:last-of-type{border-bottom:none}.news .newList2[data-v-215ad780]{padding:.42667rem 0}.news .newList2 .top[data-v-215ad780]{font-size:.37333rem;color:#333;line-height:.58667rem;font-weight:700}.news .newList2 .imgarr[data-v-215ad780]{display:flex;margin-top:.21333rem}.news .newList2 .imgarr img[data-v-215ad780]{width:30%;margin-right:3%;height:auto;-o-object-fit:cover;object-fit:cover}.news .newList2 .newdate[data-v-215ad780]{font-size:.32rem;color:#999;line-height:.45333rem;margin-top:.21333rem}.news .newList[data-v-215ad780]{display:flex;justify-content:space-between;padding:.42667rem 0}.news .newList .newleft[data-v-215ad780]{display:flex;flex-direction:column;justify-content:space-between}.news .newList .newleft .newtitle[data-v-215ad780]{font-size:.37333rem;color:#333;line-height:.58667rem;font-weight:700}.news .newList .newleft .newdate[data-v-215ad780]{font-size:.32rem;color:#999;line-height:.45333rem;margin-top:.10667rem}.news .newList .newimg[data-v-215ad780]{margin-left:.26667rem;width:3.33333rem;height:2.24rem;-o-object-fit:cover;object-fit:cover}.muloverellipse[data-v-215ad780]{word-break:break-all;text-overflow:ellipsis;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow:hidden}.notice[data-v-215ad780]{min-height:100%;background-color:#fff;display:flex;flex-direction:column;overflow:auto}.list[data-v-215ad780]{flex:1}.list .item[data-v-215ad780]{position:relative;padding:.53333rem .42667rem;display:flex;align-items:center}.list .item[data-v-215ad780]:not(:last-child):after{content:"";position:absolute;bottom:0;left:.42667rem;right:.42667rem;height:.02667rem;background-color:#f3f3f3}.list .item .tag[data-v-215ad780]{margin-right:.10667rem;border-radius:.21333rem;font-size:.26667rem;vertical-align:middle}.list .item .title[data-v-215ad780]{flex:1;font-size:.37333rem;color:#333;line-height:.53333rem;font-weight:700}.list .item .icon[data-v-215ad780]{margin-left:.8rem;font-size:.32rem}.imgaddBtn[data-v-215ad780]{position:fixed;bottom:26%;right:0}.imgaddBtn .imgdiv[data-v-215ad780]{height:2.4rem;margin-top:.26667rem;z-index:50;opacity:.9}.imgaddBtn .imgdiv .add[data-v-215ad780]{width:2.72rem;z-index:999}.imgaddBtn .imgtext[data-v-215ad780]{font-size:.42667rem;text-align:center}

View File

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

View File

@ -0,0 +1 @@
.quill-editor[data-v-f736fb48] .ql-container{height:3.2rem}.filecontent[data-v-f736fb48]{margin:.32rem 0;padding:.42667rem;background:#fff}.filecontent[data-v-f736fb48] .van-cell{background-color:#f8f8f8}.filecontent .p1[data-v-f736fb48]{font-size:.42667rem;font-family:PingFang SC,PingFang SC-Bold;font-weight:700;color:#333;line-height:.53333rem;margin-bottom:.32rem}.form .van-cell[data-v-f736fb48]{margin-bottom:.32rem}.form .van-cell[data-v-f736fb48] .van-cell__title{font-size:.42667rem;color:#333;font-weight:700}.form .van-cell[data-v-f736fb48] .van-cell__value{font-size:.37333rem}.form .van-cell .van-icon[data-v-f736fb48]:before{vertical-align:middle;margin-left:.21333rem}.form .textarea[data-v-f736fb48]{flex-direction:column}.form .textarea[data-v-f736fb48] .van-cell__value{margin-top:.32rem;background-color:#f8f8f8;padding:.32rem}.form .van-button[data-v-f736fb48]{display:block;width:8.50667rem;height:1.06667rem;margin:1.38667rem auto .42667rem;background-color:#d03a29;border-color:#d03a29;font-size:.37333rem;color:#fff;line-height:1.06667rem;font-weight:700;border-radius:.10667rem}

File diff suppressed because one or more lines are too long

View File

@ -1 +0,0 @@
.news[data-v-41def42d]{margin:0 .42667rem;border-bottom:.02667rem solid #f3f3f3}.news[data-v-41def42d]:last-of-type{border-bottom:none}.news .newList2[data-v-41def42d]{padding:.42667rem 0}.news .newList2 .top[data-v-41def42d]{font-size:.37333rem;color:#333;line-height:.58667rem;font-weight:700}.news .newList2 .imgarr[data-v-41def42d]{display:flex;margin-top:.21333rem}.news .newList2 .imgarr img[data-v-41def42d]{width:30%;margin-right:3%;height:auto;-o-object-fit:cover;object-fit:cover}.news .newList2 .newdate[data-v-41def42d]{font-size:.32rem;color:#999;line-height:.45333rem;margin-top:.21333rem}.news .newList[data-v-41def42d]{display:flex;justify-content:space-between;padding:.42667rem 0}.news .newList .newleft[data-v-41def42d]{display:flex;flex-direction:column;justify-content:space-between}.news .newList .newleft .newtitle[data-v-41def42d]{font-size:.37333rem;color:#333;line-height:.58667rem;font-weight:700}.news .newList .newleft .newdate[data-v-41def42d]{font-size:.32rem;color:#999;line-height:.45333rem;margin-top:.10667rem}.news .newList .newimg[data-v-41def42d]{margin-left:.26667rem;width:3.33333rem;height:2.24rem;-o-object-fit:cover;object-fit:cover}.muloverellipse[data-v-41def42d]{word-break:break-all;text-overflow:ellipsis;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow:hidden}.notice[data-v-41def42d]{min-height:100%;background-color:#fff;display:flex;flex-direction:column;overflow:auto}.list[data-v-41def42d]{flex:1}.list .item[data-v-41def42d]{position:relative;padding:.53333rem .42667rem;display:flex;align-items:center}.list .item[data-v-41def42d]:not(:last-child):after{content:"";position:absolute;bottom:0;left:.42667rem;right:.42667rem;height:.02667rem;background-color:#f3f3f3}.list .item .tag[data-v-41def42d]{margin-right:.10667rem;border-radius:.21333rem;font-size:.26667rem;vertical-align:middle}.list .item .title[data-v-41def42d]{flex:1;font-size:.37333rem;color:#333;line-height:.53333rem;font-weight:700}.list .item .icon[data-v-41def42d]{margin-left:.8rem;font-size:.32rem}.imgaddBtn[data-v-41def42d]{position:fixed;bottom:26%;right:0}.imgaddBtn .imgdiv[data-v-41def42d]{height:2.4rem;margin-top:.26667rem;z-index:50;opacity:.9}.imgaddBtn .imgdiv .add[data-v-41def42d]{width:2.72rem;z-index:999}.imgaddBtn .imgtext[data-v-41def42d]{font-size:.42667rem;text-align:center}

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

@ -0,0 +1 @@
.van-pagination[data-v-631a8e3b]{position:fixed;bottom:0;width:100%;z-index:999;background:#fff}.box[data-v-631a8e3b]{display:flex;flex-direction:column;height:100%;font-size:.42667rem}.box .add[data-v-631a8e3b]{width:2.13333rem;height:2.13333rem;position:fixed;right:.32rem;bottom:20%}.box[data-v-631a8e3b] .van-tab.van-tab--active{font-size:.42667rem;font-weight:800}.box .tab-contain[data-v-631a8e3b]{padding:.32rem;padding-bottom:1.12rem}.box .tab-contain .van-cell[data-v-631a8e3b]{margin-bottom:.37333rem}.box .tab-contain .van-cell .custom-title[data-v-631a8e3b]{font-weight:700;font-size:.42667rem}.box .tab-contain .van-cell .custom-title1[data-v-631a8e3b]{font-weight:700;margin-left:.8rem;font-size:.37333rem;color:#47aef3}.box .tab-contain .van-cell .custom-title2[data-v-631a8e3b]{font-weight:700;margin-left:.8rem;font-size:.37333rem;color:#c86b1d}.box .tab-contain .van-cell .van-icon[data-v-631a8e3b]{color:#333}

View File

@ -0,0 +1 @@
.flex-align-center[data-v-6dbed47e]{display:flex;align-items:center}.browse_image[data-v-6dbed47e]{width:2.13333rem;height:2.13333rem}[data-v-6dbed47e] .from_el{display:flex;align-items:center}[data-v-6dbed47e] .from_el .title{width:2.4rem;font-size:.42667rem;flex-shrink:0}[data-v-6dbed47e] .from_el .enclosure{margin-top:.53333rem}[data-v-6dbed47e] .from_el .enclosureBtn{display:inline-block;padding:.21333rem .42667rem;background:#d03a29;border-radius:.10667rem;color:#fff}[data-v-6dbed47e] .from_el .enclosureBtn .enclosureImg{margin-right:.10667rem;width:.34667rem;height:.32rem;vertical-align:middle}.preview-cover[data-v-6dbed47e]{position:absolute;bottom:0;box-sizing:border-box;width:100%;padding:.10667rem;color:#fff;font-size:.32rem;text-align:center;background:rgba(0,0,0,.3)}.browse[data-v-6dbed47e]{margin:.26667rem 0}.browse .browse_delet[data-v-6dbed47e]{width:100%;text-align:right;font-size:.42667rem}.browse .imagesee[data-v-6dbed47e]{width:2.66667rem}

File diff suppressed because one or more lines are too long

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

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

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

@ -0,0 +1 @@
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-0e5ae20e"],{"6f8e":function(t,a,e){t.exports=e.p+"img/icon_add.dae54178.png"},"7da1":function(t,a,e){"use strict";var i=e("f81c"),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"}}),"admin"==t.usertype||"township"==t.usertype?i("div",{staticClass:"imgaddBtn"},[0==this.active?i("div",{staticClass:"imgdiv"},[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()]):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:1}},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("7da1"),e("fc62"),e("2877")),r=Object(l["a"])(c,i,s,!1,null,"1ee7323f",null);a["default"]=r.exports},c149:function(t,a,e){},f81c:function(t,a,e){},fc62:function(t,a,e){"use strict";var i=e("c149"),s=e.n(i);s.a}}]);

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1 @@
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-146566c5"],{"20cc":function(t,e,s){},"3d13":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:"征求意见"}}),t._m(0),t._m(1),t._m(2),t._m(3),0==t.active?s("div",{staticClass:"end"},[s("van-button",{attrs:{type:"primary",size:"large",color:"#d03a29"}},[t._v("结束征求")])],1):t._e(),0==t.active?s("div",{staticClass:"announce"},[s("van-search",{attrs:{"left-icon":"edit","show-action":"",placeholder:"请输入留言评论",background:"#FFF"},on:{search:t.onSearch},scopedSlots:t._u([{key:"action",fn:function(){return[s("div",{staticClass:"issue",on:{click:t.onSearch}},[t._v("发表")])]},proxy:!0}],null,!1,2682845571),model:{value:t.value,callback:function(e){t.value=e},expression:"value"}})],1):t._e()],1)},i=[function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"form-ele flex"},[s("div",{staticClass:"form-title"},[t._v(" 征求主题 ")]),s("div",{staticClass:"form-content"},[s("div",{staticClass:"form-text"},[t._v(" xxx ")])])])},function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"form-ele flex"},[s("div",{staticClass:"form-title"},[t._v(" 征求时间 ")]),s("div",{staticClass:"form-content"},[s("div",{staticClass:"form-text"},[t._v(" xxx ")])])])},function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"form-ele form-te"},[s("div",{staticClass:"form-title"},[t._v(" 议题内容 ")]),s("div",{staticClass:"form-content"},[s("div",{staticClass:"form-text"},[t._v(" xxx ")])])])},function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"form-ele form-te"},[s("div",{staticClass:"form-title"},[t._v(" 意见征求 ")]),s("div",{staticClass:"form-content"},[s("div",{staticClass:"form-com"},[s("div",{staticClass:"form-com-item"},[s("div",{staticClass:"form-text"},[t._v("xxxxxxxxxxxxxxxxxxxxx")]),s("div",{staticClass:"date"},[t._v("2022-11-16 10:30")])])])])])}],c={data(){return{value:"",active:this.$route.query.active}},mounted(){},methods:{onSearch(){}}},r=c,n=(s("64e6"),s("2877")),l=Object(n["a"])(r,a,i,!1,null,"f7a008cc",null);e["default"]=l.exports},"64e6":function(t,e,s){"use strict";var a=s("20cc"),i=s.n(a);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

View File

@ -1 +1 @@
(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}}]);
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-20c0e5b5"],{5230:function(t,a,i){"use strict";var e=i("d2f8"),s=i.n(e);s.a},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("5230"),i("2877")),r=Object(d["a"])(l,e,s,!1,null,"7d8218d8",null);a["default"]=r.exports},d2f8:function(t,a,i){}}]);

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

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

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