Commit 6e7ffdbe authored by Administrator's avatar Administrator

Merge remote-tracking branch 'origin/V20231129-中建一局二公司' into V20231129-中建一局二公司

parents 0c671c5b 93895dbd
...@@ -166,6 +166,7 @@ tenant: ...@@ -166,6 +166,7 @@ tenant:
- sys_push_record - sys_push_record
- d_customer - d_customer
- d_project - d_project
- d_project_type
- d_subcontract - d_subcontract
- advisory_body - advisory_body
- advisory_body_project - advisory_body_project
...@@ -184,7 +185,6 @@ tenant: ...@@ -184,7 +185,6 @@ tenant:
- d_customer_tax_certificate - d_customer_tax_certificate
- f_supplier_limited - f_supplier_limited
# MyBatisPlus配置 # MyBatisPlus配置
# https://baomidou.com/config/ # https://baomidou.com/config/
mybatis-plus: mybatis-plus:
......
package com.dsk.cscec.constant; package com.dsk.cscec.constant;
/** /**
* 搜索常量信息 * 咨询机构管理搜索常量信息
* *
* @author sxk * @author sxk
* @date 2023.12.11 * @date 2023.12.11
* @time 14:22 * @time 14:22
*/ */
public interface QueryConstants { public interface AdvisoryBodyManageQueryConstants {
/** /**
* 筛选数据一级公司名称 * 筛选数据一级公司名称
*/ */
......
package com.dsk.cscec.constant;
/**
* 涉诉限用禁用管理搜索常量信息
*
* @author sxk
* @date 2023.12.11
* @time 14:22
*/
public interface SupplierLimitedManageQueryConstants {
/**
* 涉诉限用禁用数据区分字段
*/
String LIMITED_DATA_TYPE = "限用禁用";
/**
* 解除限用禁用数据区分字段
*/
String UNLIMITED_DATA_TYPE = "解除限禁";
}
...@@ -18,7 +18,7 @@ import org.springframework.web.bind.annotation.*; ...@@ -18,7 +18,7 @@ import org.springframework.web.bind.annotation.*;
import javax.annotation.Resource; import javax.annotation.Resource;
import javax.validation.constraints.NotBlank; import javax.validation.constraints.NotBlank;
import javax.validation.constraints.NotNull; import java.util.List;
/** /**
* 咨询机构管理控制层 * 咨询机构管理控制层
...@@ -30,7 +30,7 @@ import javax.validation.constraints.NotNull; ...@@ -30,7 +30,7 @@ import javax.validation.constraints.NotNull;
@RequestMapping("advisory/body") @RequestMapping("advisory/body")
public class AdvisoryBodyManageController extends BaseController { public class AdvisoryBodyManageController extends BaseController {
@Resource @Resource
private IDProjectService baseService; private IDProjectService projectService;
@Resource @Resource
private AdvisoryBodyService advisoryBodyService; private AdvisoryBodyService advisoryBodyService;
@Resource @Resource
...@@ -43,7 +43,7 @@ public class AdvisoryBodyManageController extends BaseController { ...@@ -43,7 +43,7 @@ public class AdvisoryBodyManageController extends BaseController {
*/ */
@GetMapping("/getProjectList") @GetMapping("/getProjectList")
public TableDataInfo<ProjectSearchVo> getProjectList(ProjectSearchBo projectSearchBo, PageQuery pageQuery) { public TableDataInfo<ProjectSearchVo> getProjectList(ProjectSearchBo projectSearchBo, PageQuery pageQuery) {
return baseService.queryProjectList(projectSearchBo, pageQuery); return projectService.queryProjectList(projectSearchBo, pageQuery);
} }
/** /**
...@@ -54,12 +54,20 @@ public class AdvisoryBodyManageController extends BaseController { ...@@ -54,12 +54,20 @@ public class AdvisoryBodyManageController extends BaseController {
return advisoryBodyService.queryAdvisoryBodyList(advisoryBodySearchBo, pageQuery); return advisoryBodyService.queryAdvisoryBodyList(advisoryBodySearchBo, pageQuery);
} }
/**
* 获取项目承接类型下拉列表
*/
@GetMapping("/getIsInvestProject")
public R<List<String>> getIsInvestProject() {
return R.ok(projectService.queryIsInvestProject());
}
/** /**
* 获取合作项目明细 * 获取合作项目明细
*/ */
@GetMapping("/getCooperateProjectDetailList") @GetMapping("/getCooperateProjectDetailList")
public TableDataInfo<CooperateProjectDetailSearchVo> getCooperateProjectDetailList(@Validated CooperateProjectDetailSearchBo cooperateProjectDetailSearchBo, PageQuery pageQuery) { public TableDataInfo<CooperateProjectDetailSearchVo> getCooperateProjectDetailList(@Validated CooperateProjectDetailSearchBo cooperateProjectDetailSearchBo, PageQuery pageQuery) {
return baseService.queryCooperateProjectDetailList(cooperateProjectDetailSearchBo, pageQuery); return projectService.queryCooperateProjectDetailList(cooperateProjectDetailSearchBo, pageQuery);
} }
/** /**
...@@ -67,7 +75,7 @@ public class AdvisoryBodyManageController extends BaseController { ...@@ -67,7 +75,7 @@ public class AdvisoryBodyManageController extends BaseController {
*/ */
@GetMapping("/getProjectDetail") @GetMapping("/getProjectDetail")
public R<ProjectDetailVo> getProjectDetail(@Validated ProjectDetailBo projectDetailBo) { public R<ProjectDetailVo> getProjectDetail(@Validated ProjectDetailBo projectDetailBo) {
return R.ok(baseService.queryProjectDetail(projectDetailBo)); return R.ok(projectService.queryProjectDetail(projectDetailBo));
} }
/** /**
...@@ -79,19 +87,22 @@ public class AdvisoryBodyManageController extends BaseController { ...@@ -79,19 +87,22 @@ public class AdvisoryBodyManageController extends BaseController {
} }
/** /**
* 新增咨询机构 * 编辑咨询机构结算信息
* 包含:
* 新增咨询机构(advisory_body表)
* 新增/更新咨询机构与项目关联信息(advisory_body_project表)
*/ */
@PostMapping("/addAdvisoryBody") @PostMapping("/editAdvisoryBody")
public R<Void> addAdvisoryBody(@Validated AddAdvisoryBodyBo addAdvisoryBodyBo) { public R<Void> editAdvisoryBody(@Validated EditAdvisoryBodyInfoBo editInfoBo) {
return toAjax(advisoryBodyService.addAdvisoryBody(addAdvisoryBodyBo)); return toAjax(advisoryBodyService.editAdvisoryBody(editInfoBo));
} }
/** /**
* 获取咨询机构自定义表单 * 获取咨询机构自定义表单
*/ */
@GetMapping("/getAdvisoryBodyCustomForm/{projectKey}") @GetMapping("/getAdvisoryBodyCustomForm")
public R<AdvisoryBodyCustomForm> getAdvisoryBodyCustomForm(@Validated @NotNull(message = "项目主键不能为空") @PathVariable Long projectKey) { public R<List<AdvisoryBodyCustomForm>> getAdvisoryBodyCustomForm() {
return R.ok(advisoryBodyCustomFormService.getById(projectKey)); return R.ok(advisoryBodyCustomFormService.list());
} }
/** /**
...@@ -108,7 +119,7 @@ public class AdvisoryBodyManageController extends BaseController { ...@@ -108,7 +119,7 @@ public class AdvisoryBodyManageController extends BaseController {
*/ */
@PutMapping("/updateAdvisoryBodyCustomForm") @PutMapping("/updateAdvisoryBodyCustomForm")
@Transactional(rollbackFor = Exception.class) @Transactional(rollbackFor = Exception.class)
public R<Void> updateAdvisoryBodyCustomForm(@Validated AdvisoryBodyCustomForm advisoryBodyCustomForm) { public R<Void> updateAdvisoryBodyCustomForm(@Validated EditAdvisoryBodyCustomFormBo editBo) {
return toAjax(advisoryBodyCustomFormService.updateById(advisoryBodyCustomForm)); return toAjax(advisoryBodyCustomFormService.updateById(editBo));
} }
} }
\ No newline at end of file
package com.dsk.cscec.controller; package com.dsk.cscec.controller;
import com.dsk.common.core.domain.R;
import com.dsk.cscec.domain.DProjectType;
import com.dsk.cscec.domain.TreeSelect;
import com.dsk.cscec.service.DProjectTypeService; import com.dsk.cscec.service.DProjectTypeService;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController; import org.springframework.web.bind.annotation.RestController;
import javax.annotation.Resource; import javax.annotation.Resource;
import java.util.List;
/** /**
* 维表:工程类型,源于IPM(DProjectType)表控制层 * 维表:工程类型,源于IPM(DProjectType)表控制层
...@@ -13,7 +18,7 @@ import javax.annotation.Resource; ...@@ -13,7 +18,7 @@ import javax.annotation.Resource;
* @since 2024-01-05 11:45:43 * @since 2024-01-05 11:45:43
*/ */
@RestController @RestController
@RequestMapping("dProjectType") @RequestMapping("/dProjectType")
public class DProjectTypeController { public class DProjectTypeController {
/** /**
* 服务对象 * 服务对象
...@@ -21,6 +26,24 @@ public class DProjectTypeController { ...@@ -21,6 +26,24 @@ public class DProjectTypeController {
@Resource @Resource
private DProjectTypeService dProjectTypeService; private DProjectTypeService dProjectTypeService;
/**
* 获取所有工程类型
* @param
* @return
*/
@GetMapping("/getAll")
public R<List<TreeSelect>> selectList() {
return R.ok(dProjectTypeService.getList(new DProjectType()));
}
/**
* 根据工程类型id获取子级
* @param projectTypeId
* @return
*/
@GetMapping("/getChildren")
public R<List<DProjectType>> getChildren(String projectTypeId) {
return R.ok(dProjectTypeService.getChildren(projectTypeId));
}
} }
package com.dsk.cscec.controller;
import com.dsk.cscec.service.FSupplierLimitedService;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import javax.annotation.Resource;
/**
* 供应商限制信息表(FSupplierLimited)表控制层
*
* @author sxk
* @since 2024-01-05 11:34:19
*/
@RestController
@RequestMapping("fSupplierLimited")
public class FSupplierLimitedController {
/**
* 服务对象
*/
@Resource
private FSupplierLimitedService fSupplierLimitedService;
}
package com.dsk.cscec.controller;
import com.dsk.common.core.domain.PageQuery;
import com.dsk.common.core.page.TableDataInfo;
import com.dsk.cscec.domain.bo.SupplierLimitedSearchBo;
import com.dsk.cscec.domain.bo.SupplierUnlimitedSearchBo;
import com.dsk.cscec.domain.vo.SupplierLimitedSearchVo;
import com.dsk.cscec.domain.vo.SupplierUnlimitedSearchVo;
import com.dsk.cscec.service.FSupplierLimitedService;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import javax.annotation.Resource;
/**
* 供应商限制信息表(FSupplierLimited)表控制层
*
* @author sxk
* @since 2024-01-05 11:34:19
*/
@RestController
@RequestMapping("fSupplierLimited")
public class SupplierLimitedController {
/**
* 服务对象
*/
@Resource
private FSupplierLimitedService supplierLimitedService;
/**
* 获取涉诉限用禁用名单
*/
@GetMapping("/getSupplierLimitedList")
public TableDataInfo<SupplierLimitedSearchVo> getSupplierLimitedList(SupplierLimitedSearchBo searchBo, PageQuery pageQuery) {
return supplierLimitedService.querySupplierLimitedList(searchBo, pageQuery);
}
/**
* 获取解除限用禁用名单
*/
@GetMapping("/getSupplierUnlimitedList")
public TableDataInfo<SupplierUnlimitedSearchVo> getSupplierUnlimitedList(SupplierUnlimitedSearchBo searchBo, PageQuery pageQuery) {
return supplierLimitedService.querySupplierUnlimitedList(searchBo, pageQuery);
}
}
...@@ -6,7 +6,6 @@ import lombok.Data; ...@@ -6,7 +6,6 @@ import lombok.Data;
import lombok.EqualsAndHashCode; import lombok.EqualsAndHashCode;
import javax.validation.constraints.NotBlank; import javax.validation.constraints.NotBlank;
import javax.validation.constraints.NotNull;
import java.io.Serializable; import java.io.Serializable;
/** /**
...@@ -22,14 +21,8 @@ public class AdvisoryBodyCustomForm extends BaseEntity implements Serializable { ...@@ -22,14 +21,8 @@ public class AdvisoryBodyCustomForm extends BaseEntity implements Serializable {
/** /**
* 项目主键 * 项目主键
*/ */
@TableId(value = "project_key") @TableId(value = "ab_custom_form_id")
@NotNull(message = "项目主键不能为空") private Long abCustomFormId;
private Long projectKey;
/**
* 咨询机构ID
*/
@NotNull(message = "咨询机构ID不能为空")
private Long advisoryBodyId;
/** /**
* json数据 * json数据
*/ */
......
package com.dsk.cscec.domain; package com.dsk.cscec.domain;
import com.baomidou.mybatisplus.annotation.TableField;
import lombok.Data; import lombok.Data;
import java.util.ArrayList;
import java.util.Date; import java.util.Date;
import java.io.Serializable; import java.io.Serializable;
import java.util.List;
/** /**
* 维表:工程类型,源于IPM(DProjectType)实体类 * 维表:工程类型,源于IPM(DProjectType)实体类
...@@ -62,4 +65,7 @@ public class DProjectType implements Serializable { ...@@ -62,4 +65,7 @@ public class DProjectType implements Serializable {
* 数据加载时间 * 数据加载时间
*/ */
private Date loadTime; private Date loadTime;
@TableField(exist = false)
private List<DProjectType> children = new ArrayList<DProjectType>();
} }
...@@ -43,4 +43,10 @@ public class TreeSelect implements Serializable { ...@@ -43,4 +43,10 @@ public class TreeSelect implements Serializable {
this.children = dept.getChildren().stream().map(TreeSelect::new).collect(Collectors.toList()); this.children = dept.getChildren().stream().map(TreeSelect::new).collect(Collectors.toList());
} }
public TreeSelect(DProjectType type) {
this.id = type.getProjectTypeId();
this.label = type.getProjectTypeName();
this.children = type.getChildren().stream().map(TreeSelect::new).collect(Collectors.toList());
}
} }
...@@ -54,8 +54,14 @@ public class AdvisoryBodyBo extends BaseEntity { ...@@ -54,8 +54,14 @@ public class AdvisoryBodyBo extends BaseEntity {
/** /**
* 项目承接类型 * 项目承接类型
*/ */
private String isinvestproject;
/**
* 工程基础大类
*/
private String projectType1;
/** /**
* 工程类别明细 * 工程类别明细
*/ */
private String projectType2;
} }
package com.dsk.cscec.domain.bo;
import com.dsk.cscec.domain.AdvisoryBodyCustomForm;
import lombok.Data;
import javax.validation.constraints.NotNull;
/**
* @author sxk
* @date 2024.01.09
* @time 11:24
*/
@Data
public class EditAdvisoryBodyCustomFormBo extends AdvisoryBodyCustomForm {
/**
* 项目主键
*/
@NotNull(message = "自定义表单ID不能为空")
private Long abCustomFormId;
}
...@@ -13,7 +13,7 @@ import java.util.Date; ...@@ -13,7 +13,7 @@ import java.util.Date;
* @time 09:54 * @time 09:54
*/ */
@Data @Data
public class AddAdvisoryBodyBo { public class EditAdvisoryBodyInfoBo {
/** /**
* 是否为新资讯机构 * 是否为新资讯机构
*/ */
...@@ -41,6 +41,7 @@ public class AddAdvisoryBodyBo { ...@@ -41,6 +41,7 @@ public class AddAdvisoryBodyBo {
private String businessScope; private String businessScope;
/** /**
* 合作时间 * 合作时间
* PRD上要求以合作时间作为排序字段,但PM未给出新增合作时间的位置,暂用创建时间作为排序字段
*/ */
@DateTimeFormat(pattern = "yyyy-MM-dd") @DateTimeFormat(pattern = "yyyy-MM-dd")
private Date cooperatorDate; private Date cooperatorDate;
......
...@@ -19,6 +19,5 @@ public class ProjectDetailBo { ...@@ -19,6 +19,5 @@ public class ProjectDetailBo {
/** /**
* 咨询机构Cid * 咨询机构Cid
*/ */
@NotNull(message = "咨询机构Cid不能为空")
private Long advisoryBodyCid; private Long advisoryBodyCid;
} }
package com.dsk.cscec.domain.bo;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
/**
* @author sxk
* @date 2024.01.05
* @time 13:51
*/
@Data
public class SupplierLimitedSearchBo {
/**
* 供应商名称
*/
private String supplierName;
/**
* 是否为局名义被诉案件(是/否)
*/
private String isGroupCase;
/**
* 限用/禁用开始时间
*/
@DateTimeFormat(pattern = "yyyy-MM-dd")
private Date limitedStartTime;
/**
* 限用/禁用结束时间
*/
@DateTimeFormat(pattern = "yyyy-MM-dd")
private Date limitedEndTime;
}
package com.dsk.cscec.domain.bo;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
/**
* @author sxk
* @date 2024.01.08
* @time 09:07
*/
@Data
public class SupplierUnlimitedSearchBo {
/**
* 解除限用开始时间
*/
@DateTimeFormat(pattern = "yyyy-MM-dd")
private Date unlimitedStartTime;
/**
* 解除限用结束时间
*/
@DateTimeFormat(pattern = "yyyy-MM-dd")
private Date unlimitedEndTime;
/**
* 申请单位
*/
private String applyUnit;
}
...@@ -16,4 +16,12 @@ public class AdvisoryBodyExistVo extends AdvisoryBody { ...@@ -16,4 +16,12 @@ public class AdvisoryBodyExistVo extends AdvisoryBody {
* 是否为新资讯机构 * 是否为新资讯机构
*/ */
private Boolean isNewAdvisoryBody; private Boolean isNewAdvisoryBody;
/**
* 法定代表人
*/
private String corporatePerson;
/**
* 注册地址
*/
private String regAddress;
} }
package com.dsk.cscec.domain.vo;
import lombok.Data;
import java.util.Date;
/**
* @author sxk
* @date 2024.01.05
* @time 14:14
*/
@Data
public class SupplierLimitedSearchVo {
/**
* 主键id
*/
private String fid;
/**
* 单据编号
*/
private String frecordno;
/**
* 供应商Cid
*/
private Integer supplierCid;
/**
* 供应商名称(分供方名称)
*/
private String fsuppliername;
/**
* 供应商统一社会信用代码
*/
private String funifiedsocialcreditcode;
/**
* 限用情形
*/
private String flimitsituation;
/**
* 禁用情形
*/
private String fdisablesituation;
/**
* 子企业(限用推送单位)
*/
private String fjobunitname;
/**
* 限用/禁用状态
*/
private String fstate;
/**
* 时间戳(限用/禁用开始日期)
*/
private Date fts;
}
package com.dsk.cscec.domain.vo;
import lombok.Data;
import java.util.Date;
/**
* @author sxk
* @date 2024.01.05
* @time 17:47
*/
@Data
public class SupplierUnlimitedSearchVo {
/**
* 主键id
*/
private String fid;
/**
* 单据编号
*/
private String frecordno;
/**
* 供应商Cid
*/
private Integer supplierCid;
/**
* 供应商名称(分供方名称)
*/
private String fsuppliername;
/**
* 供应商统一社会信用代码
*/
private String funifiedsocialcreditcode;
/**
* 解除限用理由
*/
private String frelievereason;
/**
* 子企业(申请单位)
*/
private String fjobunitname;
/**
* 解除前状态(原限用/禁用)
*/
private String fbeforestate;
/**
* 限用日期
*/
private Date flimitdate;
/**
* 时间戳(解除限用/禁用开始日期)
*/
private Date fts;
}
...@@ -9,6 +9,8 @@ import com.dsk.cscec.domain.vo.CooperateProjectDetailSearchVo; ...@@ -9,6 +9,8 @@ import com.dsk.cscec.domain.vo.CooperateProjectDetailSearchVo;
import com.dsk.cscec.domain.vo.ProjectSearchVo; import com.dsk.cscec.domain.vo.ProjectSearchVo;
import org.apache.ibatis.annotations.Param; import org.apache.ibatis.annotations.Param;
import java.util.List;
/** /**
* 项目维表(DProject)表数据库访问层 * 项目维表(DProject)表数据库访问层
* *
...@@ -21,9 +23,13 @@ public interface DProjectMapper extends BaseMapper<DProject> { ...@@ -21,9 +23,13 @@ public interface DProjectMapper extends BaseMapper<DProject> {
*/ */
Page<ProjectSearchVo> selectPageProjectList(@Param("page") Page<ProjectSearchVo> page, @Param(Constants.WRAPPER) Wrapper<DProject> queryWrapper); Page<ProjectSearchVo> selectPageProjectList(@Param("page") Page<ProjectSearchVo> page, @Param(Constants.WRAPPER) Wrapper<DProject> queryWrapper);
/**
* 获取项目承接类型下拉列表
*/
List<String> queryIsInvestProject();
/** /**
* 获取合作项目明细 * 获取合作项目明细
*/ */
Page<CooperateProjectDetailSearchVo> selectPageCooperateProjectDetailList(@Param("page") Page<CooperateProjectDetailSearchVo> page, @Param(Constants.WRAPPER) Wrapper<DProject> Wrapper); Page<CooperateProjectDetailSearchVo> selectPageCooperateProjectDetailList(@Param("page") Page<CooperateProjectDetailSearchVo> page, @Param(Constants.WRAPPER) Wrapper<DProject> Wrapper);
} }
\ No newline at end of file
package com.dsk.cscec.mapper; package com.dsk.cscec.mapper;
import com.baomidou.mybatisplus.core.conditions.Wrapper;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.core.toolkit.Constants;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.dsk.cscec.domain.FSupplierLimited; import com.dsk.cscec.domain.FSupplierLimited;
import com.dsk.cscec.domain.vo.SupplierLimitedSearchVo;
import com.dsk.cscec.domain.vo.SupplierUnlimitedSearchVo;
import org.apache.ibatis.annotations.Param;
/** /**
* 供应商限制信息表(FSupplierLimited)表数据库访问层 * 供应商限制信息表(FSupplierLimited)表数据库访问层
...@@ -10,7 +17,14 @@ import com.dsk.cscec.domain.FSupplierLimited; ...@@ -10,7 +17,14 @@ import com.dsk.cscec.domain.FSupplierLimited;
* @since 2024-01-05 11:34:19 * @since 2024-01-05 11:34:19
*/ */
public interface FSupplierLimitedMapper extends BaseMapper<FSupplierLimited> { public interface FSupplierLimitedMapper extends BaseMapper<FSupplierLimited> {
/**
* 获取涉诉限用禁用名单
*/
Page<SupplierLimitedSearchVo> selectPageSupplierLimitedList(@Param("page") Page<Object> build, @Param(Constants.WRAPPER) Wrapper<FSupplierLimited> wrapper);
/**
* 获取解除限用禁用名单
*/
Page<SupplierUnlimitedSearchVo> selectPageSupplierUnlimitedList(@Param("page") Page<Object> build, @Param(Constants.WRAPPER) QueryWrapper<FSupplierLimited> wrapper);
} }
...@@ -4,7 +4,7 @@ import com.baomidou.mybatisplus.extension.service.IService; ...@@ -4,7 +4,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
import com.dsk.common.core.domain.PageQuery; import com.dsk.common.core.domain.PageQuery;
import com.dsk.common.core.page.TableDataInfo; import com.dsk.common.core.page.TableDataInfo;
import com.dsk.cscec.domain.AdvisoryBody; import com.dsk.cscec.domain.AdvisoryBody;
import com.dsk.cscec.domain.bo.AddAdvisoryBodyBo; import com.dsk.cscec.domain.bo.EditAdvisoryBodyInfoBo;
import com.dsk.cscec.domain.bo.AdvisoryBodySearchBo; import com.dsk.cscec.domain.bo.AdvisoryBodySearchBo;
import com.dsk.cscec.domain.vo.AdvisoryBodyExistVo; import com.dsk.cscec.domain.vo.AdvisoryBodyExistVo;
import com.dsk.cscec.domain.vo.AdvisoryBodySearchVo; import com.dsk.cscec.domain.vo.AdvisoryBodySearchVo;
...@@ -34,12 +34,15 @@ public interface AdvisoryBodyService extends IService<AdvisoryBody> { ...@@ -34,12 +34,15 @@ public interface AdvisoryBodyService extends IService<AdvisoryBody> {
AdvisoryBodyExistVo checkAdvisoryBodyExist(String advisoryBodyName); AdvisoryBodyExistVo checkAdvisoryBodyExist(String advisoryBodyName);
/** /**
* 新增咨询机构 * 编辑咨询机构结算信息
* 包含:
* 新增咨询机构(advisory_body表)
* 新增/更新咨询机构与项目关联信息(advisory_body_project表)
* *
* @param addAdvisoryBodyBo 新增信息 * @param editInfoBo 编辑信息
* @return 添加结果 * @return 编辑结果
*/ */
Integer addAdvisoryBody(AddAdvisoryBodyBo addAdvisoryBodyBo); Integer editAdvisoryBody(EditAdvisoryBodyInfoBo editInfoBo);
/** /**
* 每小时更新一次咨询机构经营范围 * 每小时更新一次咨询机构经营范围
......
...@@ -2,6 +2,9 @@ package com.dsk.cscec.service; ...@@ -2,6 +2,9 @@ package com.dsk.cscec.service;
import com.baomidou.mybatisplus.extension.service.IService; import com.baomidou.mybatisplus.extension.service.IService;
import com.dsk.cscec.domain.DProjectType; import com.dsk.cscec.domain.DProjectType;
import com.dsk.cscec.domain.TreeSelect;
import java.util.List;
/** /**
* 维表:工程类型,源于IPM(DProjectType)表服务接口 * 维表:工程类型,源于IPM(DProjectType)表服务接口
...@@ -11,5 +14,13 @@ import com.dsk.cscec.domain.DProjectType; ...@@ -11,5 +14,13 @@ import com.dsk.cscec.domain.DProjectType;
*/ */
public interface DProjectTypeService extends IService<DProjectType> { public interface DProjectTypeService extends IService<DProjectType> {
List<TreeSelect> getList(DProjectType type);
/**
* 根据工程类型id获取下一级
*
* @param projectTypeId
* @return
*/
List<DProjectType> getChildren(String projectTypeId);
} }
package com.dsk.cscec.service; package com.dsk.cscec.service;
import com.baomidou.mybatisplus.extension.service.IService; import com.baomidou.mybatisplus.extension.service.IService;
import com.dsk.common.core.domain.PageQuery;
import com.dsk.common.core.page.TableDataInfo;
import com.dsk.cscec.domain.FSupplierLimited; import com.dsk.cscec.domain.FSupplierLimited;
import com.dsk.cscec.domain.bo.SupplierLimitedSearchBo;
import com.dsk.cscec.domain.bo.SupplierUnlimitedSearchBo;
import com.dsk.cscec.domain.vo.SupplierLimitedSearchVo;
import com.dsk.cscec.domain.vo.SupplierUnlimitedSearchVo;
/** /**
* 供应商限制信息表(FSupplierLimited)表服务接口 * 供应商限制信息表(FSupplierLimited)表服务接口
...@@ -10,5 +16,21 @@ import com.dsk.cscec.domain.FSupplierLimited; ...@@ -10,5 +16,21 @@ import com.dsk.cscec.domain.FSupplierLimited;
* @since 2024-01-05 11:34:23 * @since 2024-01-05 11:34:23
*/ */
public interface FSupplierLimitedService extends IService<FSupplierLimited> { public interface FSupplierLimitedService extends IService<FSupplierLimited> {
/**
* 获取涉诉限用禁用名单
*
* @param searchBo 查询实体
* @param pageQuery 分页对象
* @return 所有数据
*/
TableDataInfo<SupplierLimitedSearchVo> querySupplierLimitedList(SupplierLimitedSearchBo searchBo, PageQuery pageQuery);
/**
* 获取解除限用禁用名单
*
* @param searchBo 查询实体
* @param pageQuery 分页对象
* @return 所有数据
*/
TableDataInfo<SupplierUnlimitedSearchVo> querySupplierUnlimitedList(SupplierUnlimitedSearchBo searchBo, PageQuery pageQuery);
} }
...@@ -11,6 +11,8 @@ import com.dsk.cscec.domain.vo.CooperateProjectDetailSearchVo; ...@@ -11,6 +11,8 @@ import com.dsk.cscec.domain.vo.CooperateProjectDetailSearchVo;
import com.dsk.cscec.domain.vo.ProjectDetailVo; import com.dsk.cscec.domain.vo.ProjectDetailVo;
import com.dsk.cscec.domain.vo.ProjectSearchVo; import com.dsk.cscec.domain.vo.ProjectSearchVo;
import java.util.List;
/** /**
* 项目维表(DProject)表服务接口 * 项目维表(DProject)表服务接口
* *
...@@ -27,6 +29,13 @@ public interface IDProjectService extends IService<DProject> { ...@@ -27,6 +29,13 @@ public interface IDProjectService extends IService<DProject> {
*/ */
TableDataInfo<ProjectSearchVo> queryProjectList(ProjectSearchBo projectSearchBo, PageQuery pageQuery); TableDataInfo<ProjectSearchVo> queryProjectList(ProjectSearchBo projectSearchBo, PageQuery pageQuery);
/**
* 获取项目承接类型下拉列表
*
* @return 去重后的项目承接类型
*/
List<String> queryIsInvestProject();
/** /**
* 获取合作项目明细 * 获取合作项目明细
* *
......
...@@ -15,7 +15,7 @@ import com.dsk.common.exception.ServiceException; ...@@ -15,7 +15,7 @@ import com.dsk.common.exception.ServiceException;
import com.dsk.common.utils.StringUtils; import com.dsk.common.utils.StringUtils;
import com.dsk.cscec.domain.AdvisoryBody; import com.dsk.cscec.domain.AdvisoryBody;
import com.dsk.cscec.domain.AdvisoryBodyProject; import com.dsk.cscec.domain.AdvisoryBodyProject;
import com.dsk.cscec.domain.bo.AddAdvisoryBodyBo; import com.dsk.cscec.domain.bo.EditAdvisoryBodyInfoBo;
import com.dsk.cscec.domain.bo.AdvisoryBodySearchBo; import com.dsk.cscec.domain.bo.AdvisoryBodySearchBo;
import com.dsk.cscec.domain.vo.AdvisoryBodyExistVo; import com.dsk.cscec.domain.vo.AdvisoryBodyExistVo;
import com.dsk.cscec.domain.vo.AdvisoryBodySearchVo; import com.dsk.cscec.domain.vo.AdvisoryBodySearchVo;
...@@ -140,6 +140,15 @@ public class AdvisoryBodyServiceImpl extends ServiceImpl<AdvisoryBodyMapper, Adv ...@@ -140,6 +140,15 @@ public class AdvisoryBodyServiceImpl extends ServiceImpl<AdvisoryBodyMapper, Adv
if (ObjectUtil.isNotNull(advisoryBody)) { if (ObjectUtil.isNotNull(advisoryBody)) {
//咨询机构表中有记录,则设置为非新咨询机构 //咨询机构表中有记录,则设置为非新咨询机构
AdvisoryBodyExistVo advisoryBodyExistVo = BeanUtil.toBean(advisoryBody, AdvisoryBodyExistVo.class); AdvisoryBodyExistVo advisoryBodyExistVo = BeanUtil.toBean(advisoryBody, AdvisoryBodyExistVo.class);
EnterpriseInfoHeaderBody infoHeaderBody = new EnterpriseInfoHeaderBody();
infoHeaderBody.setCompanyId(advisoryBodyExistVo.getAdvisoryBodyCid());
Map<String, Object> companyMap = dskOpenApiUtil.requestBody("/api/jsk/enterprise/infoHeader", BeanUtil.beanToMap(infoHeaderBody, false, false));
Map companyData = MapUtils.getMap(companyMap, "data", null);
//法人信息
advisoryBodyExistVo.setCorporatePerson(MapUtils.getString(companyData,"corporatePerson"));
//注册地址
advisoryBodyExistVo.setRegAddress(MapUtils.getString(companyData, "addressDetail", ""));
//是否为新资讯机构
advisoryBodyExistVo.setIsNewAdvisoryBody(false); advisoryBodyExistVo.setIsNewAdvisoryBody(false);
return advisoryBodyExistVo; return advisoryBodyExistVo;
} else { } else {
...@@ -154,9 +163,23 @@ public class AdvisoryBodyServiceImpl extends ServiceImpl<AdvisoryBodyMapper, Adv ...@@ -154,9 +163,23 @@ public class AdvisoryBodyServiceImpl extends ServiceImpl<AdvisoryBodyMapper, Adv
String companyName = StringUtils.removeRed(MapUtils.getString(companyData, "name", "NotExist")); String companyName = StringUtils.removeRed(MapUtils.getString(companyData, "name", "NotExist"));
if (advisoryBodyName.equals(companyName)) { if (advisoryBodyName.equals(companyName)) {
AdvisoryBodyExistVo advisoryBodyExistVo = new AdvisoryBodyExistVo(); AdvisoryBodyExistVo advisoryBodyExistVo = new AdvisoryBodyExistVo();
advisoryBodyExistVo.setAdvisoryBodyCid(Math.toIntExact(MapUtils.getLong(companyData, "jskEid"))); //jskEid就是cid
Long jskEid = MapUtils.getLong(companyData, "jskEid");
advisoryBodyExistVo.setAdvisoryBodyCid(Math.toIntExact(jskEid));
//企业名称
advisoryBodyExistVo.setAdvisoryBodyName(companyName); advisoryBodyExistVo.setAdvisoryBodyName(companyName);
//经营范围
advisoryBodyExistVo.setBusinessScope(MapUtils.getString(companyData, "businessScope")); advisoryBodyExistVo.setBusinessScope(MapUtils.getString(companyData, "businessScope"));
//法人信息
advisoryBodyExistVo.setCorporatePerson(MapUtils.getString(companyData,"legalPerson"));
EnterpriseInfoHeaderBody infoHeaderBody = new EnterpriseInfoHeaderBody();
infoHeaderBody.setCompanyId(Math.toIntExact(jskEid));
Map<String, Object> companyMap = dskOpenApiUtil.requestBody("/api/jsk/enterprise/infoHeader", BeanUtil.beanToMap(infoHeaderBody, false, false));
Map companyData1 = MapUtils.getMap(companyMap, "data", null);
//注册地址
advisoryBodyExistVo.setRegAddress(MapUtils.getString(companyData1, "addressDetail", ""));
//是否为新资讯机构
advisoryBodyExistVo.setIsNewAdvisoryBody(true); advisoryBodyExistVo.setIsNewAdvisoryBody(true);
return advisoryBodyExistVo; return advisoryBodyExistVo;
} }
...@@ -164,31 +187,64 @@ public class AdvisoryBodyServiceImpl extends ServiceImpl<AdvisoryBodyMapper, Adv ...@@ -164,31 +187,64 @@ public class AdvisoryBodyServiceImpl extends ServiceImpl<AdvisoryBodyMapper, Adv
//查不到则抛异常 //查不到则抛异常
throw new ServiceException("咨询机构不存在或结果不唯一,请输入完整咨询机构企业名称"); throw new ServiceException("咨询机构不存在或结果不唯一,请输入完整咨询机构企业名称");
} }
throw new ServiceException("咨询机构不存在");
} }
return null;
} }
/** /**
* 新增咨询机构 * 编辑咨询机构结算信息
* 包含:
* 新增咨询机构(advisory_body表)
* 新增/更新咨询机构与项目关联信息(advisory_body_project表)
* *
* @param addAdvisoryBodyBo 新增信息 * @param editInfoBo 编辑信息
* @return 添加结果 * @return 编辑结果
*/ */
@Override @Override
@Transactional(rollbackFor = Exception.class) @Transactional(rollbackFor = Exception.class)
public Integer addAdvisoryBody(AddAdvisoryBodyBo addAdvisoryBodyBo) { public Integer editAdvisoryBody(EditAdvisoryBodyInfoBo editInfoBo) {
long advisoryBodyId = IdUtil.getSnowflakeNextId(); long advisoryBodyId = IdUtil.getSnowflakeNextId();
; //如果是新增咨询机构,则新增记录到咨询机构表
//如果是新增咨询机构,则需要新增记录到咨询机构表 if (editInfoBo.getIsNewAdvisoryBody()) {
if (addAdvisoryBodyBo.getIsNewAdvisoryBody()) { AdvisoryBody newAdvisoryBody = BeanUtil.toBean(editInfoBo, AdvisoryBody.class);
AdvisoryBody newAdvisoryBody = BeanUtil.toBean(addAdvisoryBodyBo, AdvisoryBody.class);
newAdvisoryBody.setAdvisoryBodyId(advisoryBodyId); newAdvisoryBody.setAdvisoryBodyId(advisoryBodyId);
//考虑到咨询机构经营范围是列表中的一个查询条件,因此需要单独存入表中
//但考虑到经营范围又来自建设库,进而衍生出数据一致性问题,因此在项目中做了定时任务同步数据
//故无需担心数据一致性问题
baseMapper.insert(newAdvisoryBody); baseMapper.insert(newAdvisoryBody);
//校验咨询机构与项目关联表中是否有记录,无则新增,有则修改
return checkAdvisoryBodyProjectInfoAndEdit(editInfoBo, advisoryBodyId);
} else {
//如果不是新增咨询机构,则校验咨询机构与项目关联表中是否有记录,无则新增,有则修改
return checkAdvisoryBodyProjectInfoAndEdit(editInfoBo, advisoryBodyId);
} }
}
AdvisoryBodyProject advisoryBodyProject = BeanUtil.toBean(addAdvisoryBodyBo, AdvisoryBodyProject.class); /**
advisoryBodyProject.setAdvisoryBodyId(advisoryBodyId); * 校验咨询机构与项目关联表中是否有记录,无则新增,有则修改
return advisoryBodyProjectMapper.insert(advisoryBodyProject); */
private Integer checkAdvisoryBodyProjectInfoAndEdit(EditAdvisoryBodyInfoBo editInfoBo, Long advisoryBodyId) {
AdvisoryBodyProject advisoryBodyProject = advisoryBodyProjectMapper.selectById(editInfoBo.getProjectKey());
if (ObjectUtil.isNotNull(advisoryBodyProject)) {
//修改咨询机构与项目关联信息
AdvisoryBodyProject updateAdvisoryBodyProject = BeanUtil.toBean(editInfoBo, AdvisoryBodyProject.class);
updateAdvisoryBodyProject.setProjectKey(editInfoBo.getProjectKey());
if (editInfoBo.getIsNewAdvisoryBody()) {
//新增的咨询机构不会咨询机构ID,需要到咨询机构表中查询
AdvisoryBody advisoryBody = baseMapper.selectOne(new LambdaQueryWrapper<AdvisoryBody>()
.eq(AdvisoryBody::getAdvisoryBodyCid, editInfoBo.getAdvisoryBodyCid()));
updateAdvisoryBodyProject.setAdvisoryBodyId(advisoryBody.getAdvisoryBodyId());
}else {
updateAdvisoryBodyProject.setAdvisoryBodyId(advisoryBodyProject.getAdvisoryBodyId());
}
return advisoryBodyProjectMapper.updateById(updateAdvisoryBodyProject);
} else {
//新增咨询机构与项目关联信息
AdvisoryBodyProject addAdvisoryBodyProject = BeanUtil.toBean(editInfoBo, AdvisoryBodyProject.class);
addAdvisoryBodyProject.setAdvisoryBodyId(advisoryBodyId);
return advisoryBodyProjectMapper.insert(addAdvisoryBodyProject);
}
} }
/** /**
......
...@@ -12,7 +12,7 @@ import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; ...@@ -12,7 +12,7 @@ import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.dsk.common.core.domain.PageQuery; import com.dsk.common.core.domain.PageQuery;
import com.dsk.common.core.page.TableDataInfo; import com.dsk.common.core.page.TableDataInfo;
import com.dsk.common.utils.StringUtils; import com.dsk.common.utils.StringUtils;
import com.dsk.cscec.constant.QueryConstants; import com.dsk.cscec.constant.AdvisoryBodyManageQueryConstants;
import com.dsk.cscec.domain.DCustomer; import com.dsk.cscec.domain.DCustomer;
import com.dsk.cscec.domain.bo.AdvisoryBodyBo; import com.dsk.cscec.domain.bo.AdvisoryBodyBo;
import com.dsk.cscec.domain.bo.CustomerCooperationBo; import com.dsk.cscec.domain.bo.CustomerCooperationBo;
...@@ -98,7 +98,7 @@ public class CustomerInfoServiceImpl extends ServiceImpl<DCustomerMapper, DCusto ...@@ -98,7 +98,7 @@ public class CustomerInfoServiceImpl extends ServiceImpl<DCustomerMapper, DCusto
Assert.isTrue(false,"参数不能为空"); Assert.isTrue(false,"参数不能为空");
} }
LambdaQueryWrapper<DCustomer> lqw = Wrappers.lambdaQuery(); LambdaQueryWrapper<DCustomer> lqw = Wrappers.lambdaQuery();
lqw.eq(DCustomer::getRecommendOrgId,QueryConstants.LEVEL1_COMPANY_ID); lqw.eq(DCustomer::getRecommendOrgId, AdvisoryBodyManageQueryConstants.LEVEL1_COMPANY_ID);
lqw.eq(ObjectUtil.isNotNull(bo.getCustomerKey()),DCustomer::getCustomerKey,bo.getCustomerKey()); lqw.eq(ObjectUtil.isNotNull(bo.getCustomerKey()),DCustomer::getCustomerKey,bo.getCustomerKey());
lqw.eq(StringUtil.isNotBlank(bo.getUnifySocialCode()),DCustomer::getUnifySocialCode,bo.getUnifySocialCode()); lqw.eq(StringUtil.isNotBlank(bo.getUnifySocialCode()),DCustomer::getUnifySocialCode,bo.getUnifySocialCode());
lqw.eq(StringUtil.isNotBlank(bo.getCustomerName()),DCustomer::getCustomerName,bo.getCustomerName()); lqw.eq(StringUtil.isNotBlank(bo.getCustomerName()),DCustomer::getCustomerName,bo.getCustomerName());
...@@ -132,7 +132,7 @@ public class CustomerInfoServiceImpl extends ServiceImpl<DCustomerMapper, DCusto ...@@ -132,7 +132,7 @@ public class CustomerInfoServiceImpl extends ServiceImpl<DCustomerMapper, DCusto
@Override @Override
public TableDataInfo<AdvisoryBodyVo> queryAdvisoryList(AdvisoryBodyBo bo, PageQuery query) { public TableDataInfo<AdvisoryBodyVo> queryAdvisoryList(AdvisoryBodyBo bo, PageQuery query) {
bo.setContractOrgId(QueryConstants.LEVEL1_COMPANY_ID); bo.setContractOrgId(AdvisoryBodyManageQueryConstants.LEVEL1_COMPANY_ID);
Page<AdvisoryBodyVo> page = advisoryBodyMapper.queryListByBo(query.build(),bo); Page<AdvisoryBodyVo> page = advisoryBodyMapper.queryListByBo(query.build(),bo);
return TableDataInfo.build(page); return TableDataInfo.build(page);
} }
...@@ -142,7 +142,7 @@ public class CustomerInfoServiceImpl extends ServiceImpl<DCustomerMapper, DCusto ...@@ -142,7 +142,7 @@ public class CustomerInfoServiceImpl extends ServiceImpl<DCustomerMapper, DCusto
if(StringUtil.isBlank(bo.getCustomerId()) && StringUtil.isBlank(bo.getCustomerName())){ if(StringUtil.isBlank(bo.getCustomerId()) && StringUtil.isBlank(bo.getCustomerName())){
Assert.isTrue(false,"供应商不能为空"); Assert.isTrue(false,"供应商不能为空");
} }
bo.setSignOrgId(QueryConstants.LEVEL1_COMPANY_ID); bo.setSignOrgId(AdvisoryBodyManageQueryConstants.LEVEL1_COMPANY_ID);
Page<CustomerCooperationVo> page = dSubcontractMapper.selectCooperationList(query.build(),bo); Page<CustomerCooperationVo> page = dSubcontractMapper.selectCooperationList(query.build(),bo);
return TableDataInfo.build(page); return TableDataInfo.build(page);
} }
...@@ -153,15 +153,15 @@ public class CustomerInfoServiceImpl extends ServiceImpl<DCustomerMapper, DCusto ...@@ -153,15 +153,15 @@ public class CustomerInfoServiceImpl extends ServiceImpl<DCustomerMapper, DCusto
return new HashMap<>(); return new HashMap<>();
} }
AdvisoryBodyBo advisoryBodyBo = new AdvisoryBodyBo(); AdvisoryBodyBo advisoryBodyBo = new AdvisoryBodyBo();
advisoryBodyBo.setContractOrgId(QueryConstants.LEVEL1_COMPANY_ID); advisoryBodyBo.setContractOrgId(AdvisoryBodyManageQueryConstants.LEVEL1_COMPANY_ID);
advisoryBodyBo.setAdvisoryBodyName(companyName); advisoryBodyBo.setAdvisoryBodyName(companyName);
LambdaQueryWrapper<DCustomer> lqw = Wrappers.lambdaQuery(); LambdaQueryWrapper<DCustomer> lqw = Wrappers.lambdaQuery();
lqw.eq(DCustomer::getRecommendOrgId,QueryConstants.LEVEL1_COMPANY_ID); lqw.eq(DCustomer::getRecommendOrgId, AdvisoryBodyManageQueryConstants.LEVEL1_COMPANY_ID);
lqw.eq(StringUtil.isNotBlank(companyName), DCustomer::getCustomerName, companyName); lqw.eq(StringUtil.isNotBlank(companyName), DCustomer::getCustomerName, companyName);
CustomerCooperationBo customerCooperationBo = new CustomerCooperationBo(); CustomerCooperationBo customerCooperationBo = new CustomerCooperationBo();
customerCooperationBo.setSignOrgId(QueryConstants.LEVEL1_COMPANY_ID); customerCooperationBo.setSignOrgId(AdvisoryBodyManageQueryConstants.LEVEL1_COMPANY_ID);
customerCooperationBo.setCustomerName(companyName); customerCooperationBo.setCustomerName(companyName);
Map<String, Object> result = new HashMap<>(); Map<String, Object> result = new HashMap<>();
......
package com.dsk.cscec.service.impl; package com.dsk.cscec.service.impl;
import cn.hutool.core.util.ObjectUtil;
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
import com.baomidou.mybatisplus.core.toolkit.StringUtils;
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.dsk.cscec.domain.DProjectType; import com.dsk.cscec.domain.DProjectType;
import com.dsk.cscec.domain.TreeSelect;
import com.dsk.cscec.mapper.DProjectTypeMapper; import com.dsk.cscec.mapper.DProjectTypeMapper;
import com.dsk.cscec.service.DProjectTypeService; import com.dsk.cscec.service.DProjectTypeService;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import javax.annotation.Resource; import javax.annotation.Resource;
import java.util.ArrayList;
import java.util.List;
import java.util.stream.Collectors;
/** /**
* 维表:工程类型,源于IPM(DProjectType)表服务实现类 * 维表:工程类型,源于IPM(DProjectType)表服务实现类
...@@ -19,4 +27,85 @@ public class DProjectTypeServiceImpl extends ServiceImpl<DProjectTypeMapper, DPr ...@@ -19,4 +27,85 @@ public class DProjectTypeServiceImpl extends ServiceImpl<DProjectTypeMapper, DPr
@Resource @Resource
private DProjectTypeMapper baseMapper; private DProjectTypeMapper baseMapper;
@Override
public List<TreeSelect> getList(DProjectType bo) {
return buildTree(baseMapper.selectList(buildQueryWrapper(bo))).stream().map(TreeSelect::new).collect(Collectors.toList());
}
@Override
public List<DProjectType> getChildren(String projectTypeId) {
DProjectType bo = new DProjectType();
if (StringUtils.isNotBlank(projectTypeId)) {
bo.setParentId(projectTypeId);
} else {
bo.setLevelNo(1l);
}
return baseMapper.selectList(buildQueryWrapper(bo));
}
private LambdaQueryWrapper<DProjectType> buildQueryWrapper(DProjectType bo) {
LambdaQueryWrapper<DProjectType> lqw = Wrappers.lambdaQuery();
lqw.eq(ObjectUtil.isNotNull(bo.getProjectTypeKey()), DProjectType::getProjectTypeKey, bo.getProjectTypeKey());
// lqw.like(StringUtils.isNotBlank(bo.getProjectTypeName()), DProjectType::getProjectTypeName, bo.getProjectTypeName());
lqw.eq(ObjectUtil.isNotNull(bo.getLevelNo()), DProjectType::getLevelNo, bo.getLevelNo());
lqw.eq(StringUtils.isNotBlank(bo.getProjectTypeId()), DProjectType::getProjectTypeId, bo.getProjectTypeId());
lqw.eq(StringUtils.isNotBlank(bo.getParentId()), DProjectType::getParentId, bo.getParentId());
return lqw;
}
public List<DProjectType> buildTree(List<DProjectType> types) {
List<DProjectType> returnList = new ArrayList<DProjectType>();
List<String> tempList = new ArrayList<String>();
for (DProjectType type : types) {
tempList.add(type.getProjectTypeId());
}
for (DProjectType type : types) {
// 如果是顶级节点, 遍历该父节点的所有子节点
if (!tempList.contains(type.getParentId())) {
recursionFn(types, type);
returnList.add(type);
}
}
if (returnList.isEmpty()) {
returnList = types;
}
return returnList;
}
/**
* 递归列表
*/
private void recursionFn(List<DProjectType> list, DProjectType t) {
// 得到子节点列表
List<DProjectType> childList = getChildList(list, t);
t.setChildren(childList);
for (DProjectType tChild : childList) {
if (hasChild(list, tChild)) {
recursionFn(list, tChild);
}
}
}
/**
* 得到子节点列表
*/
private List<DProjectType> getChildList(List<DProjectType> list, DProjectType t) {
List<DProjectType> tlist = new ArrayList<DProjectType>();
for (DProjectType n : list) {
if (ObjectUtil.isNotNull(n.getParentId()) && n.getParentId().equals(t.getProjectTypeId())) {
tlist.add(n);
}
}
return tlist;
}
/**
* 判断是否有子节点
*/
private boolean hasChild(List<DProjectType> list, DProjectType t) {
return getChildList(list, t).size() > 0;
}
} }
package com.dsk.cscec.service.impl; package com.dsk.cscec.service.impl;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.toolkit.ObjectUtils;
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.dsk.common.core.domain.PageQuery;
import com.dsk.common.core.page.TableDataInfo;
import com.dsk.common.utils.StringUtils;
import com.dsk.cscec.constant.SupplierLimitedManageQueryConstants;
import com.dsk.cscec.domain.FSupplierLimited; import com.dsk.cscec.domain.FSupplierLimited;
import com.dsk.cscec.domain.bo.SupplierLimitedSearchBo;
import com.dsk.cscec.domain.bo.SupplierUnlimitedSearchBo;
import com.dsk.cscec.domain.vo.SupplierLimitedSearchVo;
import com.dsk.cscec.domain.vo.SupplierUnlimitedSearchVo;
import com.dsk.cscec.mapper.FSupplierLimitedMapper; import com.dsk.cscec.mapper.FSupplierLimitedMapper;
import com.dsk.cscec.service.FSupplierLimitedService; import com.dsk.cscec.service.FSupplierLimitedService;
import com.dsk.system.utils.DskOpenApiUtil;
import org.apache.commons.collections4.MapUtils;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import javax.annotation.Resource; import javax.annotation.Resource;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
/** /**
* 供应商限制信息表(FSupplierLimited)表服务实现类 * 供应商限制信息表(FSupplierLimited)表服务实现类
...@@ -18,5 +35,106 @@ import javax.annotation.Resource; ...@@ -18,5 +35,106 @@ import javax.annotation.Resource;
public class FSupplierLimitedServiceImpl extends ServiceImpl<FSupplierLimitedMapper, FSupplierLimited> implements FSupplierLimitedService { public class FSupplierLimitedServiceImpl extends ServiceImpl<FSupplierLimitedMapper, FSupplierLimited> implements FSupplierLimitedService {
@Resource @Resource
private FSupplierLimitedMapper baseMapper; private FSupplierLimitedMapper baseMapper;
@Resource
private DskOpenApiUtil dskOpenApiUtil;
/**
* 获取涉诉限用禁用名单
*
* @param searchBo 查询实体
* @param pageQuery 分页对象
* @return 所有数据
*/
@Override
public TableDataInfo<SupplierLimitedSearchVo> querySupplierLimitedList(SupplierLimitedSearchBo searchBo, PageQuery pageQuery) {
QueryWrapper<FSupplierLimited> wrapper = Wrappers.query();
wrapper
//供应商名称
.like(StringUtils.isNotBlank(searchBo.getSupplierName()), "fsl.fsuppliername", searchBo.getSupplierName())
//是否为局名义被诉案件
.eq(StringUtils.isNotBlank(searchBo.getIsGroupCase()), "fsl.fisgroupcase", searchBo.getIsGroupCase())
//限用/禁用时间
.between(ObjectUtils.isNotNull(searchBo.getLimitedStartTime()) && ObjectUtils.isNotNull(searchBo.getLimitedEndTime()),
"fsl.fts",
searchBo.getLimitedStartTime(),
searchBo.getLimitedEndTime())
//筛选涉诉限用禁用名单数据
.eq("fsl.fdatatype", SupplierLimitedManageQueryConstants.LIMITED_DATA_TYPE)
//根据限用/禁用时间倒序排序
.orderByDesc("fsl.fts");
Page<SupplierLimitedSearchVo> page = baseMapper.selectPageSupplierLimitedList(pageQuery.build(), wrapper);
for (SupplierLimitedSearchVo searchVo : page.getRecords()) {
Map<String, Object> params = new HashMap<>();
String supplierName = searchVo.getFsuppliername();
params.put("keyword", supplierName);
Map jskData = MapUtils.getMap(dskOpenApiUtil.requestBody("/nationzj/enterprice/index", params), "data", null);
//防止没有数据而导致强转错误,所以先判断下total
if (MapUtils.getInteger(jskData, "total", 0) > 0) {
List<Map<String, Object>> data = (List<Map<String, Object>>) jskData.get("list");
for (Map<String, Object> companyData : data) {
//企业名称完全匹配上,则直接返回给前端
String companyName = StringUtils.removeRed(MapUtils.getString(companyData, "name", "NotExist"));
if (supplierName.equals(companyName)) {
searchVo.setSupplierCid(Math.toIntExact(MapUtils.getLong(companyData, "jskEid")));
}
}
//查不到则抛异常
//throw new ServiceException("未查询到该供应商Cid");
}
//关键字标红
if (StringUtils.isNotBlank(searchBo.getSupplierName())) {
searchVo.setFsuppliername(StringUtils.markInRed(searchVo.getFsuppliername(), searchBo.getSupplierName()));
}
}
return TableDataInfo.build(page);
}
/**
* 获取解除限用禁用名单
*
* @param searchBo 查询实体
* @param pageQuery 分页对象
* @return 所有数据
*/
@Override
public TableDataInfo<SupplierUnlimitedSearchVo> querySupplierUnlimitedList(SupplierUnlimitedSearchBo searchBo, PageQuery pageQuery) {
QueryWrapper<FSupplierLimited> wrapper = Wrappers.query();
wrapper
//申请单位
.like(StringUtils.isNotBlank(searchBo.getApplyUnit()), "fsl.fjobunitname", searchBo.getApplyUnit())
//解除限用/禁用时间
.between(ObjectUtils.isNotNull(searchBo.getUnlimitedStartTime()) && ObjectUtils.isNotNull(searchBo.getUnlimitedEndTime()),
"fsl.fts",
searchBo.getUnlimitedStartTime(),
searchBo.getUnlimitedEndTime())
//筛选解除限用禁用名单数据
.eq("fsl.fdatatype", SupplierLimitedManageQueryConstants.UNLIMITED_DATA_TYPE)
//根据解除限用/禁用时间倒序排序
.orderByDesc("fsl.fts");
Page<SupplierUnlimitedSearchVo> page = baseMapper.selectPageSupplierUnlimitedList(pageQuery.build(), wrapper);
for (SupplierUnlimitedSearchVo searchVo : page.getRecords()) {
Map<String, Object> params = new HashMap<>();
String supplierName = searchVo.getFsuppliername();
params.put("keyword", supplierName);
Map jskData = MapUtils.getMap(dskOpenApiUtil.requestBody("/nationzj/enterprice/index", params), "data", null);
//防止没有数据而导致强转错误,所以先判断下total
if (MapUtils.getInteger(jskData, "total", 0) > 0) {
List<Map<String, Object>> data = (List<Map<String, Object>>) jskData.get("list");
for (Map<String, Object> companyData : data) {
//企业名称完全匹配上,则直接返回给前端
String companyName = StringUtils.removeRed(MapUtils.getString(companyData, "name", "NotExist"));
if (supplierName.equals(companyName)) {
searchVo.setSupplierCid(Math.toIntExact(MapUtils.getLong(companyData, "jskEid")));
}
}
//查不到则抛异常
//throw new ServiceException("未查询到该供应商Cid");
}
}
return TableDataInfo.build(page);
}
} }
...@@ -13,7 +13,7 @@ import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; ...@@ -13,7 +13,7 @@ import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.dsk.common.core.domain.PageQuery; import com.dsk.common.core.domain.PageQuery;
import com.dsk.common.core.page.TableDataInfo; import com.dsk.common.core.page.TableDataInfo;
import com.dsk.common.utils.StringUtils; import com.dsk.common.utils.StringUtils;
import com.dsk.cscec.constant.QueryConstants; import com.dsk.cscec.constant.AdvisoryBodyManageQueryConstants;
import com.dsk.cscec.domain.AdvisoryBody; import com.dsk.cscec.domain.AdvisoryBody;
import com.dsk.cscec.domain.AdvisoryBodyProject; import com.dsk.cscec.domain.AdvisoryBodyProject;
import com.dsk.cscec.domain.DProject; import com.dsk.cscec.domain.DProject;
...@@ -101,9 +101,9 @@ public class IDProjectServiceImpl extends ServiceImpl<DProjectMapper, DProject> ...@@ -101,9 +101,9 @@ public class IDProjectServiceImpl extends ServiceImpl<DProjectMapper, DProject>
//咨询机构的项目数据取中建一局集团第二建筑有限公司和他的下级组织 //咨询机构的项目数据取中建一局集团第二建筑有限公司和他的下级组织
wrapper wrapper
//承包单位ID //承包单位ID
.eq("p.contract_org_id", QueryConstants.LEVEL1_COMPANY_ID) .eq("p.contract_org_id", AdvisoryBodyManageQueryConstants.LEVEL1_COMPANY_ID)
//承包单位主键(字段叫主键,但并不是主键) //承包单位主键(字段叫主键,但并不是主键)
.eq("p.contract_org_name", QueryConstants.LEVEL1_COMPANY_NAME) .eq("p.contract_org_name", AdvisoryBodyManageQueryConstants.LEVEL1_COMPANY_NAME)
//项目名称 //项目名称
.like(StringUtils.isNotBlank(projectSearchBo.getProjectName()), "p.project_name", projectSearchBo.getProjectName()) .like(StringUtils.isNotBlank(projectSearchBo.getProjectName()), "p.project_name", projectSearchBo.getProjectName())
//根据咨询机构名称查出来对应的项目ID //根据咨询机构名称查出来对应的项目ID
...@@ -130,6 +130,16 @@ public class IDProjectServiceImpl extends ServiceImpl<DProjectMapper, DProject> ...@@ -130,6 +130,16 @@ public class IDProjectServiceImpl extends ServiceImpl<DProjectMapper, DProject>
return wrapper; return wrapper;
} }
/**
* 获取项目承接类型下拉列表
*
* @return 去重后的项目承接类型
*/
@Override
public List<String> queryIsInvestProject() {
return baseMapper.queryIsInvestProject();
}
/** /**
* 根据项目主键查询咨询机构 * 根据项目主键查询咨询机构
* *
...@@ -204,24 +214,27 @@ public class IDProjectServiceImpl extends ServiceImpl<DProjectMapper, DProject> ...@@ -204,24 +214,27 @@ public class IDProjectServiceImpl extends ServiceImpl<DProjectMapper, DProject>
*/ */
@Override @Override
public ProjectDetailVo queryProjectDetail(ProjectDetailBo projectDetailBo) { public ProjectDetailVo queryProjectDetail(ProjectDetailBo projectDetailBo) {
Long advisoryBodyCid = projectDetailBo.getAdvisoryBodyCid();
//查询项目明细 //查询项目明细
DProject dProject = baseMapper.selectOne(new LambdaQueryWrapper<DProject>() DProject dProject = baseMapper.selectOne(new LambdaQueryWrapper<DProject>()
.eq(DProject::getProjectKey, projectDetailBo.getProjectKey())); .eq(DProject::getProjectKey, projectDetailBo.getProjectKey()));
ProjectDetailVo projectDetailVo = BeanUtil.toBean(dProject, ProjectDetailVo.class); ProjectDetailVo projectDetailVo = BeanUtil.toBean(dProject, ProjectDetailVo.class);
//查询咨询机构信息并填充 //查询咨询机构信息并填充
projectDetailVo.setAdvisoryBody(advisoryBodyMapper.queryAdvisoryBodyByProjectKey(projectDetailBo.getProjectKey())); projectDetailVo.setAdvisoryBody(advisoryBodyMapper.queryAdvisoryBodyByProjectKey(projectDetailBo.getProjectKey()));
EnterpriseInfoHeaderBody infoHeaderBody = new EnterpriseInfoHeaderBody();
infoHeaderBody.setCompanyId(Math.toIntExact(projectDetailBo.getAdvisoryBodyCid()));
Map<String, Object> companyMap = dskOpenApiUtil.requestBody("/api/jsk/enterprise/infoHeader", BeanUtil.beanToMap(infoHeaderBody, false, false));
Map companyData = MapUtils.getMap(companyMap, "data", null);
//法人
projectDetailVo.setCorporatePerson(MapUtils.getString(companyData, "corporatePerson", ""));
//注册地址
projectDetailVo.setRegAddress(MapUtils.getString(companyData, "addressDetail", ""));
//查询项目信息并填充 //查询项目信息并填充
projectDetailVo.setAdvisoryBodyProject(advisoryBodyProjectMapper.selectById(projectDetailBo.getProjectKey())); projectDetailVo.setAdvisoryBodyProject(advisoryBodyProjectMapper.selectById(projectDetailBo.getProjectKey()));
if (ObjectUtil.isNotNull(advisoryBodyCid)) {
EnterpriseInfoHeaderBody infoHeaderBody = new EnterpriseInfoHeaderBody();
infoHeaderBody.setCompanyId(Math.toIntExact(advisoryBodyCid));
Map<String, Object> companyMap = dskOpenApiUtil.requestBody("/api/jsk/enterprise/infoHeader", BeanUtil.beanToMap(infoHeaderBody, false, false));
Map companyData = MapUtils.getMap(companyMap, "data", null);
//法人
projectDetailVo.setCorporatePerson(MapUtils.getString(companyData, "corporatePerson", ""));
//注册地址
projectDetailVo.setRegAddress(MapUtils.getString(companyData, "addressDetail", ""));
}
return projectDetailVo; return projectDetailVo;
} }
} }
......
...@@ -80,6 +80,7 @@ public class ExportService { ...@@ -80,6 +80,7 @@ public class ExportService {
//回调函数 //回调函数
composeQueryDto.setExportBackUrl(EXPORT_BACK_URL); composeQueryDto.setExportBackUrl(EXPORT_BACK_URL);
composeQueryDto.setExportExeclName(fileName); composeQueryDto.setExportExeclName(fileName);
log.info(JSONObject.toJSONString(composeQueryDto));
dskOpenApiUtil.requestBody("/operate/export/zjyj/aptitude", BeanUtil.beanToMap(composeQueryDto,false,false)); dskOpenApiUtil.requestBody("/operate/export/zjyj/aptitude", BeanUtil.beanToMap(composeQueryDto,false,false));
return AjaxResult.success(); return AjaxResult.success();
} }
......
...@@ -57,6 +57,15 @@ ...@@ -57,6 +57,15 @@
</if> </if>
</trim> </trim>
</if> </if>
<if test="bo.isinvestproject != null and bo.isinvestproject != ''">
and dp.isinvestproject = #{bo.isinvestproject}
</if>
<if test="bo.projectType1 != null and bo.projectType1 != ''">
and dp.project_type1 = #{bo.projectType1}
</if>
<if test="bo.projectType2 != null and bo.projectType2 != ''">
and dp.project_type2 = #{bo.projectType2}
</if>
</where> </where>
order by dp.contract_sign_date desc order by dp.contract_sign_date desc
</select> </select>
......
...@@ -21,6 +21,12 @@ ...@@ -21,6 +21,12 @@
${ew.getCustomSqlSegment} ${ew.getCustomSqlSegment}
</select> </select>
<select id="queryIsInvestProject" resultType="java.lang.String">
SELECT DISTINCT isinvestproject
FROM d_project
WHERE (isinvestproject <![CDATA[ <> ]]> '')
</select>
<select id="selectPageCooperateProjectDetailList" <select id="selectPageCooperateProjectDetailList"
resultType="com.dsk.cscec.domain.vo.CooperateProjectDetailSearchVo"> resultType="com.dsk.cscec.domain.vo.CooperateProjectDetailSearchVo">
select p.project_key, select p.project_key,
......
...@@ -2,6 +2,32 @@ ...@@ -2,6 +2,32 @@
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.dsk.cscec.mapper.FSupplierLimitedMapper"> <mapper namespace="com.dsk.cscec.mapper.FSupplierLimitedMapper">
<select id="selectPageSupplierLimitedList" resultType="com.dsk.cscec.domain.vo.SupplierLimitedSearchVo">
select fsl.fid,
fsl.frecordno,
fsl.fsuppliername,
fsl.funifiedsocialcreditcode,
fsl.flimitsituation,
fsl.fdisablesituation,
fsl.fjobunitname,
fsl.fstate,
fsl.fts
from f_supplier_limited fsl
${ew.getCustomSqlSegment}
</select>
<select id="selectPageSupplierUnlimitedList" resultType="com.dsk.cscec.domain.vo.SupplierUnlimitedSearchVo">
select fsl.fid,
fsl.frecordno,
fsl.fsuppliername,
fsl.funifiedsocialcreditcode,
fsl.frelievereason,
fsl.fjobunitname,
fsl.fbeforestate,
fsl.flimitdate,
fsl.fts
from f_supplier_limited fsl
${ew.getCustomSqlSegment}
</select>
</mapper> </mapper>
# 页面标题 # 页面标题
VUE_APP_TITLE = 数字化经营履约全生命链路管理系统 VUE_APP_TITLE = 中建一局集团第二建筑有限公司
# 开发环境配置 # 开发环境配置
ENV = 'development' ENV = 'development'
...@@ -16,4 +16,4 @@ VUE_CLI_BABEL_TRANSPILE_MODULES = true ...@@ -16,4 +16,4 @@ VUE_CLI_BABEL_TRANSPILE_MODULES = true
VUE_APP_SUB_SYSTEM_ADDRESS = "http://192.168.60.210:3400" VUE_APP_SUB_SYSTEM_ADDRESS = "http://192.168.60.210:3400"
# Bi大屏系统地址 # Bi大屏系统地址
VUE_APP_BI_SYSTEM_ADDRESS = "https://192.168.60.104:8001" VUE_APP_BI_SYSTEM_ADDRESS = "https://192.168.60.104:8001"
\ No newline at end of file
# 页面标题 # 页面标题
VUE_APP_TITLE = 数字化经营履约全生命链路管理系统 VUE_APP_TITLE = 中建一局集团第二建筑有限公司
# 生产环境配置 # 生产环境配置
ENV = 'production' ENV = 'production'
......
# 页面标题 # 页面标题
VUE_APP_TITLE = 数字化经营履约全生命链路管理系统 VUE_APP_TITLE = 中建一局集团第二建筑有限公司
NODE_ENV = production NODE_ENV = production
......
# 页面标题 # 页面标题
VUE_APP_TITLE = 数字化经营履约全生命链路管理系统 VUE_APP_TITLE = 中建一局集团第二建筑有限公司
NODE_ENV = "production" NODE_ENV = "production"
...@@ -15,4 +15,4 @@ VUE_APP_BASE_API = '/prod-api' ...@@ -15,4 +15,4 @@ VUE_APP_BASE_API = '/prod-api'
VUE_APP_SUB_SYSTEM_ADDRESS = "https://pre-plug.jiansheku.com" VUE_APP_SUB_SYSTEM_ADDRESS = "https://pre-plug.jiansheku.com"
# Bi大屏系统地址 # Bi大屏系统地址
VUE_APP_BI_SYSTEM_ADDRESS = "https://192.168.60.104:8001" VUE_APP_BI_SYSTEM_ADDRESS = "https://192.168.60.104:8001"
\ No newline at end of file
dsk-operate-ui/public/favicon.ico

16.6 KB | W: | H:

dsk-operate-ui/public/favicon.ico

4.19 KB | W: | H:

dsk-operate-ui/public/favicon.ico
dsk-operate-ui/public/favicon.ico
dsk-operate-ui/public/favicon.ico
dsk-operate-ui/public/favicon.ico
  • 2-up
  • Swipe
  • Onion skin
...@@ -42,4 +42,17 @@ export const getgetConsultingOrgProjectDetailApi = (params) => request({ ...@@ -42,4 +42,17 @@ export const getgetConsultingOrgProjectDetailApi = (params) => request({
url: "/advisory/body/getProjectDetail", url: "/advisory/body/getProjectDetail",
method: "get", method: "get",
params params
});
/**
* 查询咨询机构
* @param {*} advisoryBodyName
* @returns
*/
export const searchConsultingApi = (advisoryBodyName) => request({
url: "/advisory/body/checkAdvisoryBodyExist",
method: "get",
params: {
advisoryBodyName
}
}); });
\ No newline at end of file
...@@ -48,3 +48,21 @@ export function custmerInfo(param) { ...@@ -48,3 +48,21 @@ export function custmerInfo(param) {
method: 'get', method: 'get',
}); });
} }
//涉诉限用禁用名单名单
export function getSupplierLimitedList(param) {
return request({
url: '/fSupplierLimited/getSupplierLimitedList',
params: param,
method: 'get',
});
}
//解除限用禁用名单名单
export function getSupplierUnlimitedList(param) {
return request({
url: '/fSupplierLimited/getSupplierUnlimitedList',
params: param,
method: 'get',
});
}
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="none" version="1.1" width="14" height="14" viewBox="0 0 14 14"><defs><clipPath id="master_svg0_264_80202"><rect x="0" y="0" width="14" height="14" rx="0"/></clipPath></defs><g clip-path="url(#master_svg0_264_80202)"><g><path d="M0.5,3L0.5,11Q0.5,11.62132,0.93934,12.0607Q1.3786800000000001,12.5,2,12.5L12,12.5Q12.6213,12.5,13.0607,12.0607Q13.5,11.62132,13.5,11L13.5,3Q13.5,2.378679,13.0607,1.9393399Q12.6213,1.5,12,1.5L2,1.5Q1.3786800000000001,1.5,0.9393398,1.9393399Q0.5,2.37868,0.5,3ZM1.646447,11.35355Q1.5,11.20711,1.5,11L1.5,3Q1.5,2.792893,1.646447,2.646447Q1.7928929999999998,2.5,2,2.5L12,2.5Q12.2071,2.5,12.3536,2.646447Q12.5,2.792894,12.5,3L12.5,11Q12.5,11.20711,12.3536,11.35355Q12.2071,11.5,12,11.5L2,11.5Q1.792894,11.5,1.646447,11.35355Z" fill-rule="evenodd" fill="#86909C" fill-opacity="1"/></g><g><path d="M6.5,8.75L6.5,9.625002Q6.5,9.674248,6.509607,9.722547Q6.519215,9.77085,6.53806,9.81634Q6.556906,9.86184,6.584265,9.90279Q6.611625,9.94373,6.646447,9.97856Q6.681269,10.01338,6.722215,10.04074Q6.763161,10.0681,6.808658,10.08694Q6.854155,10.10579,6.9024549,10.11539Q6.9507543,10.125,7,10.125Q7.0492457,10.125,7.0975451,10.11539Q7.145845,10.10579,7.191342,10.08694Q7.236839,10.0681,7.277785,10.04074Q7.318731,10.01338,7.353553,9.97856Q7.388375,9.94373,7.415735,9.90279Q7.443094,9.86184,7.46194,9.81634Q7.480785,9.77085,7.490393,9.722547Q7.5,9.674248,7.5,9.625002L7.5,8.75Q7.5,8.7007543,7.490393,8.6524549Q7.480785,8.604155,7.46194,8.558658Q7.443094,8.513161,7.415735,8.472215Q7.388375,8.431269,7.353553,8.396447Q7.318731,8.361625,7.277785,8.334265Q7.236839,8.306906,7.191342,8.28806Q7.145845,8.269214999999999,7.0975451,8.259607Q7.0492457,8.25,7,8.25Q6.9507543,8.25,6.9024549,8.259607Q6.854155,8.269214999999999,6.808658,8.28806Q6.763161,8.306906,6.722215,8.334265Q6.681269,8.361625,6.646447,8.396447Q6.611625,8.431269,6.584265,8.472215Q6.556906,8.513161,6.53806,8.558658Q6.519215,8.604155,6.509607,8.6524549Q6.5,8.7007543,6.5,8.75Z" fill-rule="evenodd" fill="#86909C" fill-opacity="1"/></g><g><path d="M4.75,7.875L4.75,9.625Q4.75,9.67425,4.759607,9.72254Q4.769215,9.77084,4.78806,9.81634Q4.806906,9.86184,4.834265,9.90278Q4.861625,9.94373,4.896447,9.97855Q4.931269,10.01337,4.972215,10.04073Q5.013161,10.06809,5.058658,10.08694Q5.104155,10.10578,5.1524549,10.11539Q5.2007543,10.125,5.25,10.125Q5.2992457,10.125,5.3475451,10.11539Q5.395845,10.10578,5.441342,10.08694Q5.486839,10.06809,5.527785,10.04073Q5.568731,10.01337,5.603553,9.97855Q5.638375,9.94373,5.665735,9.90278Q5.693094,9.86184,5.71194,9.81634Q5.730785,9.77084,5.740393,9.72254Q5.75,9.67425,5.75,9.625L5.75,7.875Q5.75,7.8257543,5.740393,7.7774549Q5.730785,7.729155,5.71194,7.683658Q5.693094,7.638161,5.665735,7.597215Q5.638375,7.556269,5.603553,7.521447Q5.568731,7.486625,5.527785,7.459265Q5.486839,7.431906,5.441342,7.41306Q5.395845,7.394215,5.3475451,7.384607Q5.2992457,7.375,5.25,7.375Q5.2007543,7.375,5.1524549,7.384607Q5.104155,7.394215,5.058658,7.41306Q5.013161,7.431906,4.972215,7.459265Q4.931269,7.486625,4.896447,7.521447Q4.861625,7.556269,4.834265,7.597215Q4.806906,7.638161,4.78806,7.683658Q4.769215,7.729155,4.759607,7.7774549Q4.75,7.8257543,4.75,7.875Z" fill-rule="evenodd" fill="#86909C" fill-opacity="1"/></g><g><path d="M3,6.125L3,9.625Q3,9.67425,3.009607,9.72254Q3.019215,9.77084,3.0380599999999998,9.81634Q3.056906,9.86184,3.084265,9.90278Q3.111625,9.94373,3.146447,9.97855Q3.181269,10.01338,3.222215,10.04073Q3.263161,10.06809,3.308658,10.08694Q3.354155,10.10578,3.4024549,10.11539Q3.4507543,10.125,3.5,10.125Q3.5492457,10.125,3.5975451,10.11539Q3.645845,10.10578,3.691342,10.08694Q3.736839,10.06809,3.777785,10.04073Q3.818731,10.01338,3.853553,9.97855Q3.888375,9.94373,3.915735,9.90278Q3.943094,9.86184,3.9619400000000002,9.81634Q3.980785,9.77084,3.990393,9.72254Q4,9.67425,4,9.625L4,6.125Q4,6.0757543,3.990393,6.0274549Q3.980785,5.979155,3.9619400000000002,5.933658Q3.943094,5.888161,3.915735,5.847215Q3.888375,5.806269,3.853553,5.771447Q3.818731,5.736625,3.777785,5.709265Q3.736839,5.681906,3.691342,5.66306Q3.645845,5.644215,3.5975451,5.634607Q3.5492457,5.625,3.5,5.625Q3.4507543,5.625,3.4024549,5.634607Q3.354155,5.644215,3.308658,5.66306Q3.263161,5.681906,3.222215,5.709265Q3.181269,5.736625,3.146447,5.771447Q3.111625,5.806269,3.084265,5.847215Q3.056906,5.888161,3.0380599999999998,5.933658Q3.019215,5.979155,3.009607,6.0274549Q3,6.0757543,3,6.125Z" fill-rule="evenodd" fill="#86909C" fill-opacity="1"/></g><g><ellipse cx="9.081436157226562" cy="5.36932373046875" rx="1.3125" ry="1.3125" fill-opacity="0" stroke-opacity="1" stroke="#86909C" fill="none" stroke-width="1"/></g><g><path d="M10.040442157226563,7.03543673046875L10.915383157226563,7.91037373046875Q10.985709157226562,7.9807037304687505,11.077594157226562,8.01876373046875Q11.169480157226563,8.05682373046875,11.268936157226562,8.05682373046875Q11.368392157226562,8.05682373046875,11.460276157226563,8.01876373046875Q11.552166157226562,7.9807037304687505,11.622486157226563,7.91037373046875Q11.692816157226563,7.84005373046875,11.730876157226563,7.74816373046875Q11.768936157226562,7.65627973046875,11.768936157226562,7.55682373046875Q11.768936157226562,7.45736773046875,11.730876157226563,7.36548173046875Q11.692816157226563,7.27359673046875,11.622486157226563,7.20327073046875L10.747549157226562,6.3283297304687505L10.747489157226562,6.32827073046875Q10.677163157226563,6.25794373046875,10.585278157226563,6.21988373046875Q10.493392357226563,6.18182373046875,10.393936157226562,6.18182373046875Q10.294479957226562,6.18182373046875,10.202594157226562,6.21988373046875Q10.110709157226562,6.25794373046875,10.040383157226563,6.32827073046875Q9.970056157226562,6.39859673046875,9.931996157226562,6.49048173046875Q9.893936157226562,6.58236753046875,9.893936157226562,6.68182373046875Q9.893936157226562,6.78127993046875,9.931996157226562,6.87316573046875Q9.970056157226562,6.96505073046875,10.040383157226563,7.03537673046875L10.040442157226563,7.03543673046875Z" fill-rule="evenodd" fill="#86909C" fill-opacity="1"/></g></g></svg> <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="none" version="1.1" width="16" height="16" viewBox="0 0 16 16"><defs><clipPath id="master_svg0_233_92225/11_04941"><rect x="0" y="0" width="16" height="16" rx="0"/></clipPath></defs><g clip-path="url(#master_svg0_233_92225/11_04941)"><g><path d="M0.5,3.5L0.5,12.5Q0.5,13.1213,0.93934,13.5607Q1.3786800000000001,14,2,14L14,14Q14.6213,14,15.0607,13.5607Q15.5,13.1213,15.5,12.5L15.5,3.5Q15.5,2.878679,15.0607,2.4393399Q14.6213,2,14,2L2,2Q1.3786800000000001,2,0.9393398,2.4393399Q0.5,2.87868,0.5,3.5ZM1.646447,12.8536Q1.5,12.7071,1.5,12.5L1.5,3.5Q1.5,3.292893,1.646447,3.146447Q1.7928929999999998,3,2,3L14,3Q14.2071,3,14.3536,3.146447Q14.5,3.292894,14.5,3.5L14.5,12.5Q14.5,12.7071,14.3536,12.8536Q14.2071,13,14,13L2,13Q1.792894,13,1.646447,12.8536Z" fill-rule="evenodd" fill="#FFFFFF" fill-opacity="1"/></g><g><path d="M7.5,10L7.5,11Q7.5,11.04925,7.509607,11.09755Q7.519215,11.14585,7.53806,11.19134Q7.556906,11.23684,7.584265,11.27779Q7.611625,11.31873,7.646447,11.35356Q7.681269,11.38838,7.722215,11.41574Q7.763161,11.4431,7.808658,11.46194Q7.854155,11.48079,7.9024549,11.49039Q7.9507543,11.5,8,11.5Q8.0492457,11.5,8.0975451,11.49039Q8.145845,11.48079,8.191342,11.46194Q8.236839,11.4431,8.277785,11.41574Q8.318731,11.38838,8.353553,11.35356Q8.388375,11.31873,8.415735,11.27779Q8.443094,11.23684,8.46194,11.19134Q8.480785000000001,11.14585,8.490393,11.09755Q8.5,11.04925,8.5,11L8.5,10Q8.5,9.9507543,8.490393,9.9024549Q8.480785000000001,9.854155,8.46194,9.808658Q8.443094,9.763161,8.415735,9.722215Q8.388375,9.681269,8.353553,9.646447Q8.318731,9.611625,8.277785,9.584265Q8.236839,9.556906,8.191342,9.53806Q8.145845,9.519214999999999,8.0975451,9.509607Q8.0492457,9.5,8,9.5Q7.9507543,9.5,7.9024549,9.509607Q7.854155,9.519214999999999,7.808658,9.53806Q7.763161,9.556906,7.722215,9.584265Q7.681269,9.611625,7.646447,9.646447Q7.611625,9.681269,7.584265,9.722215Q7.556906,9.763161,7.53806,9.808658Q7.519215,9.854155,7.509607,9.9024549Q7.5,9.9507543,7.5,10Z" fill-rule="evenodd" fill="#FFFFFF" fill-opacity="1"/></g><g><path d="M5.5,9L5.5,11Q5.5,11.04925,5.509607,11.09754Q5.519215,11.14584,5.53806,11.19134Q5.556906,11.23684,5.584265,11.27778Q5.611625,11.31873,5.646447,11.35355Q5.681269,11.38838,5.722215,11.41573Q5.763161,11.44309,5.808658,11.46194Q5.854155,11.48078,5.9024549,11.49039Q5.9507543,11.5,6,11.5Q6.0492457,11.5,6.0975451,11.49039Q6.145845,11.48078,6.191342,11.46194Q6.236839,11.44309,6.277785,11.41573Q6.318731,11.38838,6.353553,11.35355Q6.388375,11.31873,6.415735,11.27779Q6.443094,11.23684,6.46194,11.19134Q6.480785,11.14584,6.490393,11.09754Q6.5,11.04925,6.5,11L6.5,9Q6.5,8.9507543,6.490393,8.9024549Q6.480785,8.854155,6.46194,8.808658Q6.443094,8.763161,6.415735,8.722215Q6.388375,8.681269,6.353553,8.646447Q6.318731,8.611625,6.277785,8.584265Q6.236839,8.556906,6.191342,8.53806Q6.145845,8.519214999999999,6.0975451,8.509607Q6.0492457,8.5,6,8.5Q5.9507543,8.5,5.9024549,8.509607Q5.854155,8.519214999999999,5.808658,8.53806Q5.763161,8.556906,5.722215,8.584265Q5.681269,8.611625,5.646447,8.646447Q5.611625,8.681269,5.584265,8.722215Q5.556906,8.763161,5.53806,8.808658Q5.519215,8.854155,5.509607,8.9024549Q5.5,8.9507543,5.5,9Z" fill-rule="evenodd" fill="#FFFFFF" fill-opacity="1"/></g><g><path d="M3.5,7L3.5,11Q3.5,11.04925,3.509607,11.09755Q3.519215,11.14584,3.5380599999999998,11.19134Q3.556906,11.23684,3.584265,11.27778Q3.611625,11.31873,3.646447,11.35355Q3.681269,11.38837,3.722215,11.41573Q3.763161,11.44309,3.808658,11.46194Q3.854155,11.48078,3.9024549,11.49039Q3.9507543,11.5,4,11.5Q4.0492457,11.5,4.0975451,11.49039Q4.145845,11.48078,4.191342,11.46194Q4.236839,11.44309,4.277785,11.41573Q4.318731,11.38837,4.353553,11.35355Q4.388375,11.31873,4.415735,11.27778Q4.443094,11.23684,4.46194,11.19134Q4.480785,11.14584,4.490393,11.09755Q4.5,11.04925,4.5,11L4.5,7Q4.5,6.9507543,4.490393,6.9024549Q4.480785,6.854155,4.46194,6.808658Q4.443094,6.763161,4.415735,6.722215Q4.388375,6.681269,4.353553,6.646447Q4.318731,6.611625,4.277785,6.584265Q4.236839,6.556906,4.191342,6.53806Q4.145845,6.519215,4.0975451,6.509607Q4.0492457,6.5,4,6.5Q3.9507543,6.5,3.9024549,6.509607Q3.854155,6.519215,3.808658,6.53806Q3.763161,6.556906,3.722215,6.584265Q3.681269,6.611625,3.646447,6.646447Q3.611625,6.681269,3.584265,6.722215Q3.556906,6.763161,3.5380599999999998,6.808658Q3.519215,6.854155,3.509607,6.9024549Q3.5,6.9507543,3.5,7Z" fill-rule="evenodd" fill="#FFFFFF" fill-opacity="1"/></g><g><ellipse cx="10.3787841796875" cy="6.1363677978515625" rx="1.5" ry="1.5" fill-opacity="0" stroke-opacity="1" stroke="#FFFFFF" fill="none" stroke-width="1"/></g><g><path d="M11.5252901796875,7.989980797851563L12.5252311796875,8.989917797851563Q12.5955571796875,9.060247797851563,12.6874421796875,9.098307797851563Q12.7793281796875,9.136367797851562,12.8787841796875,9.136367797851562Q12.9782441796875,9.136367797851562,13.0701241796875,9.098307797851563Q13.1620141796875,9.060247797851563,13.2323341796875,8.989917797851563Q13.3026641796875,8.919597797851562,13.3407241796875,8.827707797851563Q13.3787841796875,8.735827797851563,13.3787841796875,8.636367797851562Q13.3787841796875,8.536911797851563,13.3407241796875,8.445025797851562Q13.3026641796875,8.353140797851562,13.2323341796875,8.282814797851563L12.2323971796875,7.282873797851563L12.2323371796875,7.282814797851563Q12.1620111796875,7.212487797851563,12.0701261796875,7.174427797851562Q11.9782403796875,7.1363677978515625,11.8787841796875,7.1363677978515625Q11.7793279796875,7.1363677978515625,11.6874421796875,7.174427797851562Q11.5955571796875,7.212487797851563,11.5252311796875,7.282814797851563Q11.4549041796875,7.353140797851562,11.4168441796875,7.445025797851563Q11.3787841796875,7.536911597851563,11.3787841796875,7.6363677978515625Q11.3787841796875,7.735823997851562,11.4168441796875,7.827709797851562Q11.4549041796875,7.919594797851563,11.5252311796875,7.989920797851562L11.5252901796875,7.989980797851563Z" fill-rule="evenodd" fill="#FFFFFF" fill-opacity="1"/></g></g></svg>
\ No newline at end of file \ No newline at end of file
This source diff could not be displayed because it is too large. You can view the blob instead.
<svg xmlns="http://www.w3.org/2000/svg" fill="white" version="1.1" width="14" height="14" viewBox="0 0 14 14">
<defs>
<clipPath id="master_svg0_634_008390">
<rect x="0" y="0" width="14" height="14" rx="0"/>
</clipPath>
</defs>
<g clip-path="url(#master_svg0_634_008390)">
<g>
<path
d="M1.0104570234375,2.9374589765625L1.0104570234375,11.9582959765625Q1.0104570234375,12.3854259765625,1.3125050234375,12.6875259765625Q1.6145490234375,12.9895259765625,2.0417070234375,12.9895259765625L11.9583740234375,12.9895259765625Q12.3855740234375,12.9895259765625,12.6875740234375,12.6875259765625Q12.9895740234375,12.3854259765625,12.9895740234375,11.9582859765625L12.9895740234375,2.9374539765625Q12.9895740234375,2.3808559765625,12.5959740234375,1.9872829765625Q12.2024740234375,1.5937089765625,11.6458740234375,1.5937089765625L2.3542070234375,1.5937089765625Q1.7976080234375,1.5937089765625,1.4040326234375,1.9872845765625Q1.0104570234375,2.3808599765625,1.0104570234375,2.9374589765625ZM2.0417070234375,12.0937259765625Q1.9062910234375,12.0937259765625,1.9062910234375,11.9582959765625L1.9062910234375,2.9374589765625Q1.9062910234375,2.7519259765625,2.0374820234374997,2.6207339765624997Q2.1686740234375,2.4895429765625,2.3542070234375,2.4895429765625L11.6458740234375,2.4895429765625Q11.8313740234375,2.4895429765625,11.9625740234375,2.6207339765624997Q12.0937740234375,2.7519249765625,12.0937740234375,2.9374579765625L12.0937740234375,11.9582959765625Q12.0937740234375,12.0937259765625,11.9583740234375,12.0937259765625L2.0417070234375,12.0937259765625Z"
fill-rule="evenodd" fill="#ffffff" fill-opacity="1"/>
</g>
<g>
<path
d="M4.822917,1.3557511Q4.825,1.3341757,4.825,1.3125Q4.825,1.2681789,4.816353,1.2247094Q4.807707,1.18124,4.790746,1.140292Q4.773785,1.099345,4.749161,1.062493Q4.724538,1.025642,4.693198,0.994302Q4.661858,0.962962,4.625007,0.938339Q4.588155,0.913715,4.547208,0.896754Q4.50626,0.879793,4.4627906,0.871147Q4.4193211,0.8625,4.375,0.8625Q4.3306789,0.8625,4.2872094,0.871147Q4.24374,0.879793,4.202792,0.896754Q4.161845,0.913715,4.124993,0.938339Q4.088142,0.962962,4.056802,0.994302Q4.025462,1.025642,4.000839,1.062493Q3.976215,1.099345,3.959254,1.140292Q3.942293,1.18124,3.933647,1.2247094Q3.925,1.2681789,3.925,1.3125Q3.925,1.3341757,3.927083,1.3557511L3.927083,3.45675Q3.925,3.47832,3.925,3.5Q3.925,3.54432,3.933647,3.58779Q3.942293,3.63126,3.959254,3.67221Q3.976215,3.71315,4.000839,3.75001Q4.025462,3.78686,4.056802,3.8182Q4.088142,3.84954,4.124993,3.87416Q4.161845,3.89878,4.202792,3.91575Q4.24374,3.93271,4.2872094,3.94135Q4.3306789,3.95,4.375,3.95Q4.4193211,3.95,4.4627906,3.94135Q4.50626,3.93271,4.547208,3.91575Q4.588155,3.89878,4.625007,3.87416Q4.661858,3.84954,4.693198,3.8182Q4.724538,3.78686,4.749161,3.75001Q4.773785,3.71315,4.790746,3.67221Q4.807707,3.63126,4.816353,3.58779Q4.825,3.54432,4.825,3.5Q4.825,3.47832,4.822917,3.45675L4.822917,1.3557511Z"
fill-rule="evenodd" fill="#ffffff" fill-opacity="1"/>
</g>
<g>
<path
d="M10.072917,1.3557511Q10.075,1.3341757,10.075,1.3125Q10.075,1.2681789,10.066353,1.2247094Q10.057707,1.18124,10.040746,1.140292Q10.023785,1.099345,9.999161,1.062493Q9.974538,1.025642,9.943198,0.994302Q9.911858,0.962962,9.875007,0.938339Q9.838155,0.913715,9.797208,0.896754Q9.75626,0.879793,9.7127906,0.871147Q9.6693211,0.8625,9.625,0.8625Q9.5806789,0.8625,9.5372094,0.871147Q9.49374,0.879793,9.452792,0.896754Q9.411845,0.913715,9.374993,0.938339Q9.338142,0.962962,9.306802,0.994302Q9.275462,1.025642,9.250839,1.062493Q9.226215,1.099345,9.209254,1.140292Q9.192293,1.18124,9.183647,1.2247094Q9.175,1.2681789,9.175,1.3125Q9.175,1.3341757,9.177083,1.3557511L9.177083,3.45675Q9.175,3.47832,9.175,3.5Q9.175,3.54432,9.183647,3.58779Q9.192293,3.63126,9.209254,3.67221Q9.226215,3.71315,9.250839,3.75001Q9.275462,3.78686,9.306802,3.8182Q9.338142,3.84954,9.374993,3.87416Q9.411845,3.89878,9.452792,3.91575Q9.49374,3.93271,9.5372094,3.94135Q9.5806789,3.95,9.625,3.95Q9.6693211,3.95,9.7127906,3.94135Q9.75626,3.93271,9.797208,3.91575Q9.838155,3.89878,9.875007,3.87416Q9.911858,3.84954,9.943198,3.8182Q9.974538,3.78686,9.999161,3.75001Q10.023785,3.71315,10.040746,3.67221Q10.057707,3.63126,10.066353,3.58779Q10.075,3.54432,10.075,3.5Q10.075,3.47832,10.072917,3.45675L10.072917,1.3557511Z"
fill-rule="evenodd" fill="#ffffff" fill-opacity="1"/>
</g>
<g>
<ellipse cx="7" cy="7.875" rx="0.875" ry="0.875" fill="#ffffff" fill-opacity="1"/>
</g>
<g transform="matrix(0,1,-1,0,14.875,-4.375)">
<path
d="M12.47396,4.862093L14.74727,6.174593Q14.79834,6.204078,14.84004,6.245775Q14.88174,6.28747,14.91122,6.33854Q14.94071,6.38961,14.95597,6.4465699999999995Q14.97123,6.50353,14.97123,6.5625L14.97123,9.1875Q14.97123,9.24647,14.95597,9.303429999999999Q14.94071,9.360389999999999,14.91122,9.41146Q14.88174,9.462530000000001,14.84004,9.50422Q14.79834,9.545919999999999,14.74727,9.57541L12.47396,10.88791Q12.42289,10.917390000000001,12.36593,10.932649999999999Q12.30897,10.94792,12.25,10.94792Q12.19103,10.94792,12.13407,10.932649999999999Q12.07711,10.917390000000001,12.02604,10.88791L9.752725,9.57541Q9.701656,9.545919999999999,9.6599584,9.50422Q9.61826079,9.462530000000001,9.5887761,9.41146Q9.5592914,9.360389999999999,9.544029,9.303429999999999Q9.5287667,9.24647,9.5287667,9.1875L9.5287666,6.5625Q9.5287666,6.50353,9.544029,6.4465699999999995Q9.5592914,6.38961,9.5887761,6.33854Q9.61826075,6.28747,9.6599584,6.245775Q9.701656,6.204077,9.752725,6.174593L12.02604,4.862093Q12.07711,4.8326080000000005,12.13407,4.817346Q12.19103,4.802083,12.25,4.802083Q12.30897,4.802083,12.36593,4.817346Q12.42289,4.8326080000000005,12.47396,4.862093L12.47396,4.862093ZM12.02604,5.637907L12.25,5.25L12.47396,5.637907L10.200642,6.95041L9.976683,6.5625L10.4246,6.5625L10.4246,9.1875L9.976683,9.1875L10.200642,8.79959L12.47396,10.11209L12.25,10.5L12.02604,10.11209L14.29936,8.79959L14.52332,9.1875L14.0754,9.1875L14.0754,6.5625L14.52332,6.5625L14.29936,6.95041L12.02604,5.637907Z"
fill="#ffffff" fill-opacity="1"/>
</g>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" fill="none" version="1.1" width="14" height="14" viewBox="0 0 14 14">
<defs>
<clipPath id="master_svg0_634_008390">
<rect x="0" y="0" width="14" height="14" rx="0"/>
</clipPath>
</defs>
<g clip-path="url(#master_svg0_634_008390)">
<g>
<path
d="M1.0104570234375,2.9374589765625L1.0104570234375,11.9582959765625Q1.0104570234375,12.3854259765625,1.3125050234375,12.6875259765625Q1.6145490234375,12.9895259765625,2.0417070234375,12.9895259765625L11.9583740234375,12.9895259765625Q12.3855740234375,12.9895259765625,12.6875740234375,12.6875259765625Q12.9895740234375,12.3854259765625,12.9895740234375,11.9582859765625L12.9895740234375,2.9374539765625Q12.9895740234375,2.3808559765625,12.5959740234375,1.9872829765625Q12.2024740234375,1.5937089765625,11.6458740234375,1.5937089765625L2.3542070234375,1.5937089765625Q1.7976080234375,1.5937089765625,1.4040326234375,1.9872845765625Q1.0104570234375,2.3808599765625,1.0104570234375,2.9374589765625ZM2.0417070234375,12.0937259765625Q1.9062910234375,12.0937259765625,1.9062910234375,11.9582959765625L1.9062910234375,2.9374589765625Q1.9062910234375,2.7519259765625,2.0374820234374997,2.6207339765624997Q2.1686740234375,2.4895429765625,2.3542070234375,2.4895429765625L11.6458740234375,2.4895429765625Q11.8313740234375,2.4895429765625,11.9625740234375,2.6207339765624997Q12.0937740234375,2.7519249765625,12.0937740234375,2.9374579765625L12.0937740234375,11.9582959765625Q12.0937740234375,12.0937259765625,11.9583740234375,12.0937259765625L2.0417070234375,12.0937259765625Z"
fill-rule="evenodd" fill="#ffffff" fill-opacity="1"/>
</g>
<g>
<path
d="M4.822917,1.3557511Q4.825,1.3341757,4.825,1.3125Q4.825,1.2681789,4.816353,1.2247094Q4.807707,1.18124,4.790746,1.140292Q4.773785,1.099345,4.749161,1.062493Q4.724538,1.025642,4.693198,0.994302Q4.661858,0.962962,4.625007,0.938339Q4.588155,0.913715,4.547208,0.896754Q4.50626,0.879793,4.4627906,0.871147Q4.4193211,0.8625,4.375,0.8625Q4.3306789,0.8625,4.2872094,0.871147Q4.24374,0.879793,4.202792,0.896754Q4.161845,0.913715,4.124993,0.938339Q4.088142,0.962962,4.056802,0.994302Q4.025462,1.025642,4.000839,1.062493Q3.976215,1.099345,3.959254,1.140292Q3.942293,1.18124,3.933647,1.2247094Q3.925,1.2681789,3.925,1.3125Q3.925,1.3341757,3.927083,1.3557511L3.927083,3.45675Q3.925,3.47832,3.925,3.5Q3.925,3.54432,3.933647,3.58779Q3.942293,3.63126,3.959254,3.67221Q3.976215,3.71315,4.000839,3.75001Q4.025462,3.78686,4.056802,3.8182Q4.088142,3.84954,4.124993,3.87416Q4.161845,3.89878,4.202792,3.91575Q4.24374,3.93271,4.2872094,3.94135Q4.3306789,3.95,4.375,3.95Q4.4193211,3.95,4.4627906,3.94135Q4.50626,3.93271,4.547208,3.91575Q4.588155,3.89878,4.625007,3.87416Q4.661858,3.84954,4.693198,3.8182Q4.724538,3.78686,4.749161,3.75001Q4.773785,3.71315,4.790746,3.67221Q4.807707,3.63126,4.816353,3.58779Q4.825,3.54432,4.825,3.5Q4.825,3.47832,4.822917,3.45675L4.822917,1.3557511Z"
fill-rule="evenodd" fill="#ffffff" fill-opacity="1"/>
</g>
<g>
<path
d="M10.072917,1.3557511Q10.075,1.3341757,10.075,1.3125Q10.075,1.2681789,10.066353,1.2247094Q10.057707,1.18124,10.040746,1.140292Q10.023785,1.099345,9.999161,1.062493Q9.974538,1.025642,9.943198,0.994302Q9.911858,0.962962,9.875007,0.938339Q9.838155,0.913715,9.797208,0.896754Q9.75626,0.879793,9.7127906,0.871147Q9.6693211,0.8625,9.625,0.8625Q9.5806789,0.8625,9.5372094,0.871147Q9.49374,0.879793,9.452792,0.896754Q9.411845,0.913715,9.374993,0.938339Q9.338142,0.962962,9.306802,0.994302Q9.275462,1.025642,9.250839,1.062493Q9.226215,1.099345,9.209254,1.140292Q9.192293,1.18124,9.183647,1.2247094Q9.175,1.2681789,9.175,1.3125Q9.175,1.3341757,9.177083,1.3557511L9.177083,3.45675Q9.175,3.47832,9.175,3.5Q9.175,3.54432,9.183647,3.58779Q9.192293,3.63126,9.209254,3.67221Q9.226215,3.71315,9.250839,3.75001Q9.275462,3.78686,9.306802,3.8182Q9.338142,3.84954,9.374993,3.87416Q9.411845,3.89878,9.452792,3.91575Q9.49374,3.93271,9.5372094,3.94135Q9.5806789,3.95,9.625,3.95Q9.6693211,3.95,9.7127906,3.94135Q9.75626,3.93271,9.797208,3.91575Q9.838155,3.89878,9.875007,3.87416Q9.911858,3.84954,9.943198,3.8182Q9.974538,3.78686,9.999161,3.75001Q10.023785,3.71315,10.040746,3.67221Q10.057707,3.63126,10.066353,3.58779Q10.075,3.54432,10.075,3.5Q10.075,3.47832,10.072917,3.45675L10.072917,1.3557511Z"
fill-rule="evenodd" fill="#ffffff" fill-opacity="1"/>
</g>
<g>
<ellipse cx="7" cy="7.875" rx="0.875" ry="0.875" fill="#ffffff" fill-opacity="1"/>
</g>
<g transform="matrix(0,1,-1,0,14.875,-4.375)">
<path
d="M12.47396,4.862093L14.74727,6.174593Q14.79834,6.204078,14.84004,6.245775Q14.88174,6.28747,14.91122,6.33854Q14.94071,6.38961,14.95597,6.4465699999999995Q14.97123,6.50353,14.97123,6.5625L14.97123,9.1875Q14.97123,9.24647,14.95597,9.303429999999999Q14.94071,9.360389999999999,14.91122,9.41146Q14.88174,9.462530000000001,14.84004,9.50422Q14.79834,9.545919999999999,14.74727,9.57541L12.47396,10.88791Q12.42289,10.917390000000001,12.36593,10.932649999999999Q12.30897,10.94792,12.25,10.94792Q12.19103,10.94792,12.13407,10.932649999999999Q12.07711,10.917390000000001,12.02604,10.88791L9.752725,9.57541Q9.701656,9.545919999999999,9.6599584,9.50422Q9.61826079,9.462530000000001,9.5887761,9.41146Q9.5592914,9.360389999999999,9.544029,9.303429999999999Q9.5287667,9.24647,9.5287667,9.1875L9.5287666,6.5625Q9.5287666,6.50353,9.544029,6.4465699999999995Q9.5592914,6.38961,9.5887761,6.33854Q9.61826075,6.28747,9.6599584,6.245775Q9.701656,6.204077,9.752725,6.174593L12.02604,4.862093Q12.07711,4.8326080000000005,12.13407,4.817346Q12.19103,4.802083,12.25,4.802083Q12.30897,4.802083,12.36593,4.817346Q12.42289,4.8326080000000005,12.47396,4.862093L12.47396,4.862093ZM12.02604,5.637907L12.25,5.25L12.47396,5.637907L10.200642,6.95041L9.976683,6.5625L10.4246,6.5625L10.4246,9.1875L9.976683,9.1875L10.200642,8.79959L12.47396,10.11209L12.25,10.5L12.02604,10.11209L14.29936,8.79959L14.52332,9.1875L14.0754,9.1875L14.0754,6.5625L14.52332,6.5625L14.29936,6.95041L12.02604,5.637907Z"
fill="#ffffff" fill-opacity="1"/>
</g>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" fill="none" version="1.1" width="14" height="14" viewBox="0 0 14 14">
<defs>
<clipPath id="master_svg0_634_008380">
<rect x="0" y="0" width="14" height="14" rx="0"/>
</clipPath>
</defs>
<g clip-path="url(#master_svg0_634_008380)">
<g>
<g>
<g>
<path
d="M3.500078046875,10.07293701171875L12.833448046875,10.07293701171875Q12.877548046875,10.07293701171875,12.920848046875,10.06432701171875Q12.964048046875,10.05572701171875,13.004848046875,10.038837011718751Q13.045548046875,10.02195701171875,13.082248046875,9.99744701171875Q13.118948046875,9.97293701171875,13.150148046875,9.94174701171875Q13.181348046875,9.91054701171875,13.205848046875,9.873867011718751Q13.230348046875,9.83718701171875,13.247248046875,9.79642701171875Q13.264148046875,9.75566701171875,13.272748046875,9.71240701171875Q13.281348046875,9.66913701171875,13.281348046875,9.62501701171875L13.281348046875,2.04168701171875Q13.281348046875,1.99757111171875,13.272748046875,1.95430281171875Q13.264148046875,1.91103501171875,13.247248046875,1.87027701171875Q13.230348046875,1.82951901171875,13.205848046875,1.7928380117187501Q13.181348046875,1.75615701171875,13.150148046875,1.72496201171875Q13.118948046875,1.69376701171875,13.082248046875,1.66925801171875Q13.045548046875,1.64474801171875,13.004848046875,1.62786601171875Q12.964048046875,1.61098401171875,12.920848046875,1.6023770117187501Q12.877548046875,1.59377001171875,12.833448046875,1.59377001171875L1.166748046875,1.59377001171875Q1.122632146875,1.59377001171875,1.079363846875,1.6023770117187501Q1.036096046875,1.61098401171875,0.9953380468749999,1.62786601171875Q0.954580046875,1.64474801171875,0.917899046875,1.66925801171875Q0.8812180468749999,1.69376701171875,0.8500230468750001,1.72496201171875Q0.818828046875,1.75615701171875,0.794319046875,1.7928380117187501Q0.7698090468750001,1.82951901171875,0.752927046875,1.87027701171875Q0.7360450468749999,1.91103501171875,0.727438046875,1.95430281171875Q0.718831046875,1.99757111171875,0.718831046875,2.04168701171875L0.718831046875,9.62501701171875Q0.718831046875,9.66913701171875,0.727438046875,9.71240701171875Q0.7360450468749999,9.755677011718749,0.752927046875,9.79642701171875Q0.7698090468750001,9.83718701171875,0.794319046875,9.873867011718751Q0.818828046875,9.91054701171875,0.8500230468750001,9.94174701171875Q0.8812180468749999,9.97293701171875,0.917899046875,9.99744701171875Q0.954580046875,10.02195701171875,0.9953380468749999,10.038837011718751Q1.036096046875,10.05572701171875,1.079363846875,10.06432701171875Q1.122632146875,10.07293701171875,1.166748046875,10.07293701171875L3.500078046875,10.07293701171875ZM12.385548046875,9.17710701171875L1.614665046875,9.17710701171875L1.614665046875,2.48960401171875L12.385548046875,2.48960401171875L12.385548046875,9.17710701171875Z"
fill-rule="evenodd" fill="#ffffff" fill-opacity="1"/>
</g>
<g>
<path
d="M5.114665046875,6.45993811171875Q5.116748046875,6.43836271171875,5.116748046875,6.41668701171875Q5.116748046875,6.37236591171875,5.108101046875,6.32889641171875Q5.099455046875,6.28542701171875,5.082494046875,6.24447901171875Q5.065533046875,6.20353201171875,5.040909046875,6.16668001171875Q5.016286046875,6.12982901171875,4.984946046875,6.09848901171875Q4.953606046875,6.06714901171875,4.916755046875,6.04252601171875Q4.879903046875,6.01790201171875,4.838956046875,6.00094101171875Q4.798008046875,5.98398001171875,4.754538646875,5.97533401171875Q4.711069146875,5.96668701171875,4.666748046875,5.96668701171875Q4.622426946875,5.96668701171875,4.578957446875,5.97533401171875Q4.535488046875,5.98398001171875,4.494540046875,6.00094101171875Q4.453593046875,6.01790201171875,4.416741046875,6.04252601171875Q4.379890046875,6.06714901171875,4.348550046875,6.09848901171875Q4.317210046875,6.12982901171875,4.292587046875,6.16668001171875Q4.267963046875,6.20353201171875,4.251002046875,6.24447901171875Q4.234041046875,6.28542701171875,4.225395046875,6.32889641171875Q4.216748046875,6.37236591171875,4.216748046875,6.41668701171875Q4.216748046875,6.43836271171875,4.218831046875,6.45993811171875L4.218831046875,7.54010701171875Q4.216748046875,7.56167701171875,4.216748046875,7.58335701171875Q4.216748046875,7.62767701171875,4.225395046875,7.67114701171875Q4.234041046875,7.71461701171875,4.251002046875,7.75555701171875Q4.267963046875,7.7965070117187505,4.292587046875,7.83335701171875Q4.317210046875,7.87020701171875,4.348550046875,7.90154701171875Q4.379890046875,7.9328870117187495,4.416741046875,7.95751701171875Q4.453593046875,7.98213701171875,4.494540046875,7.99909701171875Q4.535488046875,8.01605701171875,4.578957446875,8.02470701171875Q4.622426946875,8.03335701171875,4.666748046875,8.03335701171875Q4.711069146875,8.03335701171875,4.754538646875,8.02470701171875Q4.798008046875,8.01605701171875,4.838956046875,7.99909701171875Q4.879903046875,7.98213701171875,4.916755046875,7.95751701171875Q4.953606046875,7.9328870117187495,4.984946046875,7.90154701171875Q5.016286046875,7.87020701171875,5.040909046875,7.83335701171875Q5.065533046875,7.7965070117187505,5.082494046875,7.75555701171875Q5.099455046875,7.71461701171875,5.108101046875,7.67114701171875Q5.116748046875,7.62767701171875,5.116748046875,7.58335701171875Q5.116748046875,7.56167701171875,5.114665046875,7.54010701171875L5.114665046875,6.45993811171875Z"
fill-rule="evenodd" fill="#ffffff" fill-opacity="1"/>
</g>
<g>
<path
d="M7.447917,9.66831213515625Q7.45,9.64673673515625,7.45,9.62506103515625Q7.45,9.58073993515625,7.441353,9.53727043515625Q7.432707,9.49380103515625,7.415746,9.45285303515625Q7.398785,9.41190603515625,7.374161,9.37505403515625Q7.349538,9.33820303515625,7.318198,9.30686303515625Q7.286858,9.27552303515625,7.250007,9.25090003515625Q7.213155,9.22627603515625,7.172208,9.20931503515625Q7.13126,9.19235403515625,7.0877906,9.18370803515625Q7.0443211,9.17506103515625,7,9.17506103515625Q6.9556789,9.17506103515625,6.9122094,9.18370803515625Q6.86874,9.19235403515625,6.827792,9.20931503515625Q6.786845,9.22627603515625,6.749993,9.25090003515625Q6.713142,9.27552303515625,6.681802,9.30686303515625Q6.650462,9.33820303515625,6.625839,9.37505403515625Q6.601215,9.41190603515625,6.584254,9.45285303515625Q6.567293,9.49380103515625,6.558647,9.53727043515625Q6.55,9.58073993515625,6.55,9.62506103515625Q6.55,9.64673673515625,6.552083,9.66831213515625L6.552083,11.33181103515625Q6.55,11.35338103515625,6.55,11.37506103515625Q6.55,11.419381035156249,6.558647,11.46285103515625Q6.567293,11.50632103515625,6.584254,11.54727103515625Q6.601215,11.58821103515625,6.625839,11.62507103515625Q6.650462,11.66192103515625,6.681802,11.693261035156251Q6.713142,11.724601035156251,6.749993,11.74922103515625Q6.786845,11.77384103515625,6.827792,11.79081103515625Q6.86874,11.80777103515625,6.9122094,11.81641103515625Q6.9556789,11.82506103515625,7,11.82506103515625Q7.0443211,11.82506103515625,7.0877906,11.81641103515625Q7.13126,11.80777103515625,7.172208,11.79081103515625Q7.213155,11.77384103515625,7.250007,11.74922103515625Q7.286858,11.724601035156251,7.318198,11.693261035156251Q7.349538,11.66192103515625,7.374161,11.62507103515625Q7.398785,11.58821103515625,7.415746,11.54727103515625Q7.432707,11.50632103515625,7.441353,11.46285103515625Q7.45,11.419381035156249,7.45,11.37506103515625Q7.45,11.35338103515625,7.447917,11.33181103515625L7.447917,9.66831213515625Z"
fill-rule="evenodd" fill="#ffffff" fill-opacity="1"/>
</g>
<g>
<path
d="M7.447917,5.29331213515625Q7.45,5.27173673515625,7.45,5.25006103515625Q7.45,5.20573993515625,7.441353,5.16227043515625Q7.432707,5.11880103515625,7.415746,5.07785303515625Q7.398785,5.03690603515625,7.374161,5.00005403515625Q7.349538,4.96320303515625,7.318198,4.93186303515625Q7.286858,4.90052303515625,7.250007,4.87590003515625Q7.213155,4.85127603515625,7.172208,4.83431503515625Q7.13126,4.81735403515625,7.0877906,4.80870803515625Q7.0443211,4.80006103515625,7,4.80006103515625Q6.9556789,4.80006103515625,6.9122094,4.80870803515625Q6.86874,4.81735403515625,6.827792,4.83431503515625Q6.786845,4.85127603515625,6.749993,4.87590003515625Q6.713142,4.90052303515625,6.681802,4.93186303515625Q6.650462,4.96320303515625,6.625839,5.00005403515625Q6.601215,5.03690603515625,6.584254,5.07785303515625Q6.567293,5.11880103515625,6.558647,5.16227043515625Q6.55,5.20573993515625,6.55,5.25006103515625Q6.55,5.27173673515625,6.552083,5.29331213515625L6.552083,7.54014103515625Q6.55,7.56172103515625,6.55,7.58339103515625Q6.55,7.62771103515625,6.558647,7.67118103515625Q6.567293,7.714651035156249,6.584254,7.75560103515625Q6.601215,7.79655103515625,6.625839,7.83340103515625Q6.650462,7.87025103515625,6.681802,7.90159103515625Q6.713142,7.932931035156249,6.749993,7.95755103515625Q6.786845,7.98218103515625,6.827792,7.99914103515625Q6.86874,8.01610103515625,6.9122094,8.02475103515625Q6.9556789,8.03339103515625,7,8.03339103515625Q7.0443211,8.03339103515625,7.0877906,8.02475103515625Q7.13126,8.01610103515625,7.172208,7.99914103515625Q7.213155,7.98218103515625,7.250007,7.95755103515625Q7.286858,7.932931035156249,7.318198,7.90159103515625Q7.349538,7.87025103515625,7.374161,7.83340103515625Q7.398785,7.79655103515625,7.415746,7.75560103515625Q7.432707,7.714651035156249,7.441353,7.67118103515625Q7.45,7.62771103515625,7.45,7.58339103515625Q7.45,7.56172103515625,7.447917,7.54014103515625L7.447917,5.29331213515625Z"
fill-rule="evenodd" fill="#ffffff" fill-opacity="1"/>
</g>
<g>
<path
d="M9.781168953125,4.12656408828125Q9.783251953125,4.10498868828125,9.783251953125,4.08331298828125Q9.783251953125,4.03899188828125,9.774604953125,3.99552238828125Q9.765958953125,3.95205298828125,9.748997953125,3.91110498828125Q9.732036953125,3.87015798828125,9.707412953125,3.83330598828125Q9.682789953125,3.79645498828125,9.651449953125,3.7651149882812502Q9.620109953125,3.73377498828125,9.583258953125,3.70915198828125Q9.546406953125,3.68452798828125,9.505459953125,3.66756698828125Q9.464511953125,3.65060598828125,9.421042553125,3.64195998828125Q9.377573053125,3.63331298828125,9.333251953125,3.63331298828125Q9.288930853125,3.63331298828125,9.245461353125,3.64195998828125Q9.201991953125,3.65060598828125,9.161043953125,3.66756698828125Q9.120096953125,3.68452798828125,9.083244953125,3.70915198828125Q9.046393953125,3.73377498828125,9.015053953125,3.7651149882812502Q8.983713953125,3.79645498828125,8.959090953125,3.83330598828125Q8.934466953125,3.87015798828125,8.917505953125,3.91110498828125Q8.900544953125,3.95205298828125,8.891898953125,3.99552238828125Q8.883251953125,4.03899188828125,8.883251953125,4.08331298828125Q8.883251953125,4.10498868828125,8.885334953125,4.12656408828125L8.885334953125,7.5400629882812495Q8.883251953125,7.56163298828125,8.883251953125,7.58331298828125Q8.883251953125,7.62763298828125,8.891898953125,7.67110298828125Q8.900544953125,7.71457298828125,8.917505953125,7.75552298828125Q8.934466953125,7.796462988281251,8.959090953125,7.83332298828125Q8.983713953125,7.87017298828125,9.015053953125,7.90151298828125Q9.046393953125,7.93285298828125,9.083244953125,7.95747298828125Q9.120096953125,7.98209298828125,9.161043953125,7.99906298828125Q9.201991953125,8.01602298828125,9.245461353125,8.02466298828125Q9.288930853125,8.03331298828125,9.333251953125,8.03331298828125Q9.377573053125,8.03331298828125,9.421042553125,8.02466298828125Q9.464511953125,8.01602298828125,9.505459953125,7.99906298828125Q9.546406953125,7.98209298828125,9.583258953125,7.95747298828125Q9.620109953125,7.93285298828125,9.651449953125,7.90151298828125Q9.682789953125,7.87017298828125,9.707412953125,7.83332298828125Q9.732036953125,7.796462988281251,9.748997953125,7.75552298828125Q9.765958953125,7.71457298828125,9.774604953125,7.67110298828125Q9.783251953125,7.62763298828125,9.783251953125,7.58331298828125Q9.783251953125,7.56163298828125,9.781168953125,7.5400629882812495L9.781168953125,4.12656408828125Z"
fill-rule="evenodd" fill="#ffffff" fill-opacity="1"/>
</g>
<g>
<path
d="M3.5432511,12.40622998828125Q3.5216757,12.40831298828125,3.5,12.40831298828125Q3.4556789,12.40831298828125,3.4122094,12.39966598828125Q3.36874,12.39101998828125,3.327792,12.37405898828125Q3.286845,12.35709798828125,3.249993,12.33247398828125Q3.213142,12.30785098828125,3.1818020000000002,12.27651098828125Q3.150462,12.24517098828125,3.125839,12.20831998828125Q3.101215,12.17146798828125,3.084254,12.13052098828125Q3.067293,12.08957298828125,3.058647,12.04610358828125Q3.05,12.00263408828125,3.05,11.95831298828125Q3.05,11.91399188828125,3.058647,11.87052238828125Q3.067293,11.82705298828125,3.084254,11.78610498828125Q3.101215,11.74515798828125,3.125839,11.70830598828125Q3.150462,11.67145498828125,3.1818020000000002,11.64011498828125Q3.213142,11.60877498828125,3.249993,11.58415198828125Q3.286845,11.55952798828125,3.327792,11.54256698828125Q3.36874,11.52560598828125,3.4122094,11.51695998828125Q3.4556789,11.50831298828125,3.5,11.50831298828125Q3.5216757,11.50831298828125,3.5432511,11.51039598828125L10.45676,11.51039598828125Q10.47834,11.50831298828125,10.50001,11.50831298828125Q10.54433,11.50831298828125,10.5878,11.51695998828125Q10.63127,11.52560598828125,10.67222,11.54256698828125Q10.71317,11.55952798828125,10.75002,11.58415198828125Q10.78687,11.60877498828125,10.81821,11.64011498828125Q10.84955,11.67145498828125,10.87417,11.70830598828125Q10.8988,11.74515798828125,10.915759999999999,11.78610498828125Q10.93272,11.82705298828125,10.94136,11.87052238828125Q10.950009999999999,11.91399188828125,10.950009999999999,11.95831298828125Q10.950009999999999,12.00263408828125,10.94136,12.04610358828125Q10.93272,12.08957298828125,10.915759999999999,12.13052098828125Q10.89879,12.17146798828125,10.87417,12.20831998828125Q10.84955,12.24517098828125,10.81821,12.27651098828125Q10.78687,12.30785098828125,10.75002,12.33247398828125Q10.71317,12.35709798828125,10.67222,12.37405898828125Q10.63127,12.39101998828125,10.5878,12.39966598828125Q10.54433,12.40831298828125,10.50001,12.40831298828125Q10.47834,12.40831298828125,10.45676,12.40622998828125L3.5432511,12.40622998828125Z"
fill-rule="evenodd" fill="#ffffff" fill-opacity="1"/>
</g>
</g>
</g>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" fill="none" version="1.1" width="14" height="14" viewBox="0 0 14 14">
<defs>
<clipPath id="master_svg0_634_008380">
<rect x="0" y="0" width="14" height="14" rx="0"/>
</clipPath>
</defs>
<g clip-path="url(#master_svg0_634_008380)">
<g>
<g>
<g>
<path
d="M3.500078046875,10.07293701171875L12.833448046875,10.07293701171875Q12.877548046875,10.07293701171875,12.920848046875,10.06432701171875Q12.964048046875,10.05572701171875,13.004848046875,10.038837011718751Q13.045548046875,10.02195701171875,13.082248046875,9.99744701171875Q13.118948046875,9.97293701171875,13.150148046875,9.94174701171875Q13.181348046875,9.91054701171875,13.205848046875,9.873867011718751Q13.230348046875,9.83718701171875,13.247248046875,9.79642701171875Q13.264148046875,9.75566701171875,13.272748046875,9.71240701171875Q13.281348046875,9.66913701171875,13.281348046875,9.62501701171875L13.281348046875,2.04168701171875Q13.281348046875,1.99757111171875,13.272748046875,1.95430281171875Q13.264148046875,1.91103501171875,13.247248046875,1.87027701171875Q13.230348046875,1.82951901171875,13.205848046875,1.7928380117187501Q13.181348046875,1.75615701171875,13.150148046875,1.72496201171875Q13.118948046875,1.69376701171875,13.082248046875,1.66925801171875Q13.045548046875,1.64474801171875,13.004848046875,1.62786601171875Q12.964048046875,1.61098401171875,12.920848046875,1.6023770117187501Q12.877548046875,1.59377001171875,12.833448046875,1.59377001171875L1.166748046875,1.59377001171875Q1.122632146875,1.59377001171875,1.079363846875,1.6023770117187501Q1.036096046875,1.61098401171875,0.9953380468749999,1.62786601171875Q0.954580046875,1.64474801171875,0.917899046875,1.66925801171875Q0.8812180468749999,1.69376701171875,0.8500230468750001,1.72496201171875Q0.818828046875,1.75615701171875,0.794319046875,1.7928380117187501Q0.7698090468750001,1.82951901171875,0.752927046875,1.87027701171875Q0.7360450468749999,1.91103501171875,0.727438046875,1.95430281171875Q0.718831046875,1.99757111171875,0.718831046875,2.04168701171875L0.718831046875,9.62501701171875Q0.718831046875,9.66913701171875,0.727438046875,9.71240701171875Q0.7360450468749999,9.755677011718749,0.752927046875,9.79642701171875Q0.7698090468750001,9.83718701171875,0.794319046875,9.873867011718751Q0.818828046875,9.91054701171875,0.8500230468750001,9.94174701171875Q0.8812180468749999,9.97293701171875,0.917899046875,9.99744701171875Q0.954580046875,10.02195701171875,0.9953380468749999,10.038837011718751Q1.036096046875,10.05572701171875,1.079363846875,10.06432701171875Q1.122632146875,10.07293701171875,1.166748046875,10.07293701171875L3.500078046875,10.07293701171875ZM12.385548046875,9.17710701171875L1.614665046875,9.17710701171875L1.614665046875,2.48960401171875L12.385548046875,2.48960401171875L12.385548046875,9.17710701171875Z"
fill-rule="evenodd" fill="#ffffff" fill-opacity="1"/>
</g>
<g>
<path
d="M5.114665046875,6.45993811171875Q5.116748046875,6.43836271171875,5.116748046875,6.41668701171875Q5.116748046875,6.37236591171875,5.108101046875,6.32889641171875Q5.099455046875,6.28542701171875,5.082494046875,6.24447901171875Q5.065533046875,6.20353201171875,5.040909046875,6.16668001171875Q5.016286046875,6.12982901171875,4.984946046875,6.09848901171875Q4.953606046875,6.06714901171875,4.916755046875,6.04252601171875Q4.879903046875,6.01790201171875,4.838956046875,6.00094101171875Q4.798008046875,5.98398001171875,4.754538646875,5.97533401171875Q4.711069146875,5.96668701171875,4.666748046875,5.96668701171875Q4.622426946875,5.96668701171875,4.578957446875,5.97533401171875Q4.535488046875,5.98398001171875,4.494540046875,6.00094101171875Q4.453593046875,6.01790201171875,4.416741046875,6.04252601171875Q4.379890046875,6.06714901171875,4.348550046875,6.09848901171875Q4.317210046875,6.12982901171875,4.292587046875,6.16668001171875Q4.267963046875,6.20353201171875,4.251002046875,6.24447901171875Q4.234041046875,6.28542701171875,4.225395046875,6.32889641171875Q4.216748046875,6.37236591171875,4.216748046875,6.41668701171875Q4.216748046875,6.43836271171875,4.218831046875,6.45993811171875L4.218831046875,7.54010701171875Q4.216748046875,7.56167701171875,4.216748046875,7.58335701171875Q4.216748046875,7.62767701171875,4.225395046875,7.67114701171875Q4.234041046875,7.71461701171875,4.251002046875,7.75555701171875Q4.267963046875,7.7965070117187505,4.292587046875,7.83335701171875Q4.317210046875,7.87020701171875,4.348550046875,7.90154701171875Q4.379890046875,7.9328870117187495,4.416741046875,7.95751701171875Q4.453593046875,7.98213701171875,4.494540046875,7.99909701171875Q4.535488046875,8.01605701171875,4.578957446875,8.02470701171875Q4.622426946875,8.03335701171875,4.666748046875,8.03335701171875Q4.711069146875,8.03335701171875,4.754538646875,8.02470701171875Q4.798008046875,8.01605701171875,4.838956046875,7.99909701171875Q4.879903046875,7.98213701171875,4.916755046875,7.95751701171875Q4.953606046875,7.9328870117187495,4.984946046875,7.90154701171875Q5.016286046875,7.87020701171875,5.040909046875,7.83335701171875Q5.065533046875,7.7965070117187505,5.082494046875,7.75555701171875Q5.099455046875,7.71461701171875,5.108101046875,7.67114701171875Q5.116748046875,7.62767701171875,5.116748046875,7.58335701171875Q5.116748046875,7.56167701171875,5.114665046875,7.54010701171875L5.114665046875,6.45993811171875Z"
fill-rule="evenodd" fill="#ffffff" fill-opacity="1"/>
</g>
<g>
<path
d="M7.447917,9.66831213515625Q7.45,9.64673673515625,7.45,9.62506103515625Q7.45,9.58073993515625,7.441353,9.53727043515625Q7.432707,9.49380103515625,7.415746,9.45285303515625Q7.398785,9.41190603515625,7.374161,9.37505403515625Q7.349538,9.33820303515625,7.318198,9.30686303515625Q7.286858,9.27552303515625,7.250007,9.25090003515625Q7.213155,9.22627603515625,7.172208,9.20931503515625Q7.13126,9.19235403515625,7.0877906,9.18370803515625Q7.0443211,9.17506103515625,7,9.17506103515625Q6.9556789,9.17506103515625,6.9122094,9.18370803515625Q6.86874,9.19235403515625,6.827792,9.20931503515625Q6.786845,9.22627603515625,6.749993,9.25090003515625Q6.713142,9.27552303515625,6.681802,9.30686303515625Q6.650462,9.33820303515625,6.625839,9.37505403515625Q6.601215,9.41190603515625,6.584254,9.45285303515625Q6.567293,9.49380103515625,6.558647,9.53727043515625Q6.55,9.58073993515625,6.55,9.62506103515625Q6.55,9.64673673515625,6.552083,9.66831213515625L6.552083,11.33181103515625Q6.55,11.35338103515625,6.55,11.37506103515625Q6.55,11.419381035156249,6.558647,11.46285103515625Q6.567293,11.50632103515625,6.584254,11.54727103515625Q6.601215,11.58821103515625,6.625839,11.62507103515625Q6.650462,11.66192103515625,6.681802,11.693261035156251Q6.713142,11.724601035156251,6.749993,11.74922103515625Q6.786845,11.77384103515625,6.827792,11.79081103515625Q6.86874,11.80777103515625,6.9122094,11.81641103515625Q6.9556789,11.82506103515625,7,11.82506103515625Q7.0443211,11.82506103515625,7.0877906,11.81641103515625Q7.13126,11.80777103515625,7.172208,11.79081103515625Q7.213155,11.77384103515625,7.250007,11.74922103515625Q7.286858,11.724601035156251,7.318198,11.693261035156251Q7.349538,11.66192103515625,7.374161,11.62507103515625Q7.398785,11.58821103515625,7.415746,11.54727103515625Q7.432707,11.50632103515625,7.441353,11.46285103515625Q7.45,11.419381035156249,7.45,11.37506103515625Q7.45,11.35338103515625,7.447917,11.33181103515625L7.447917,9.66831213515625Z"
fill-rule="evenodd" fill="#ffffff" fill-opacity="1"/>
</g>
<g>
<path
d="M7.447917,5.29331213515625Q7.45,5.27173673515625,7.45,5.25006103515625Q7.45,5.20573993515625,7.441353,5.16227043515625Q7.432707,5.11880103515625,7.415746,5.07785303515625Q7.398785,5.03690603515625,7.374161,5.00005403515625Q7.349538,4.96320303515625,7.318198,4.93186303515625Q7.286858,4.90052303515625,7.250007,4.87590003515625Q7.213155,4.85127603515625,7.172208,4.83431503515625Q7.13126,4.81735403515625,7.0877906,4.80870803515625Q7.0443211,4.80006103515625,7,4.80006103515625Q6.9556789,4.80006103515625,6.9122094,4.80870803515625Q6.86874,4.81735403515625,6.827792,4.83431503515625Q6.786845,4.85127603515625,6.749993,4.87590003515625Q6.713142,4.90052303515625,6.681802,4.93186303515625Q6.650462,4.96320303515625,6.625839,5.00005403515625Q6.601215,5.03690603515625,6.584254,5.07785303515625Q6.567293,5.11880103515625,6.558647,5.16227043515625Q6.55,5.20573993515625,6.55,5.25006103515625Q6.55,5.27173673515625,6.552083,5.29331213515625L6.552083,7.54014103515625Q6.55,7.56172103515625,6.55,7.58339103515625Q6.55,7.62771103515625,6.558647,7.67118103515625Q6.567293,7.714651035156249,6.584254,7.75560103515625Q6.601215,7.79655103515625,6.625839,7.83340103515625Q6.650462,7.87025103515625,6.681802,7.90159103515625Q6.713142,7.932931035156249,6.749993,7.95755103515625Q6.786845,7.98218103515625,6.827792,7.99914103515625Q6.86874,8.01610103515625,6.9122094,8.02475103515625Q6.9556789,8.03339103515625,7,8.03339103515625Q7.0443211,8.03339103515625,7.0877906,8.02475103515625Q7.13126,8.01610103515625,7.172208,7.99914103515625Q7.213155,7.98218103515625,7.250007,7.95755103515625Q7.286858,7.932931035156249,7.318198,7.90159103515625Q7.349538,7.87025103515625,7.374161,7.83340103515625Q7.398785,7.79655103515625,7.415746,7.75560103515625Q7.432707,7.714651035156249,7.441353,7.67118103515625Q7.45,7.62771103515625,7.45,7.58339103515625Q7.45,7.56172103515625,7.447917,7.54014103515625L7.447917,5.29331213515625Z"
fill-rule="evenodd" fill="#ffffff" fill-opacity="1"/>
</g>
<g>
<path
d="M9.781168953125,4.12656408828125Q9.783251953125,4.10498868828125,9.783251953125,4.08331298828125Q9.783251953125,4.03899188828125,9.774604953125,3.99552238828125Q9.765958953125,3.95205298828125,9.748997953125,3.91110498828125Q9.732036953125,3.87015798828125,9.707412953125,3.83330598828125Q9.682789953125,3.79645498828125,9.651449953125,3.7651149882812502Q9.620109953125,3.73377498828125,9.583258953125,3.70915198828125Q9.546406953125,3.68452798828125,9.505459953125,3.66756698828125Q9.464511953125,3.65060598828125,9.421042553125,3.64195998828125Q9.377573053125,3.63331298828125,9.333251953125,3.63331298828125Q9.288930853125,3.63331298828125,9.245461353125,3.64195998828125Q9.201991953125,3.65060598828125,9.161043953125,3.66756698828125Q9.120096953125,3.68452798828125,9.083244953125,3.70915198828125Q9.046393953125,3.73377498828125,9.015053953125,3.7651149882812502Q8.983713953125,3.79645498828125,8.959090953125,3.83330598828125Q8.934466953125,3.87015798828125,8.917505953125,3.91110498828125Q8.900544953125,3.95205298828125,8.891898953125,3.99552238828125Q8.883251953125,4.03899188828125,8.883251953125,4.08331298828125Q8.883251953125,4.10498868828125,8.885334953125,4.12656408828125L8.885334953125,7.5400629882812495Q8.883251953125,7.56163298828125,8.883251953125,7.58331298828125Q8.883251953125,7.62763298828125,8.891898953125,7.67110298828125Q8.900544953125,7.71457298828125,8.917505953125,7.75552298828125Q8.934466953125,7.796462988281251,8.959090953125,7.83332298828125Q8.983713953125,7.87017298828125,9.015053953125,7.90151298828125Q9.046393953125,7.93285298828125,9.083244953125,7.95747298828125Q9.120096953125,7.98209298828125,9.161043953125,7.99906298828125Q9.201991953125,8.01602298828125,9.245461353125,8.02466298828125Q9.288930853125,8.03331298828125,9.333251953125,8.03331298828125Q9.377573053125,8.03331298828125,9.421042553125,8.02466298828125Q9.464511953125,8.01602298828125,9.505459953125,7.99906298828125Q9.546406953125,7.98209298828125,9.583258953125,7.95747298828125Q9.620109953125,7.93285298828125,9.651449953125,7.90151298828125Q9.682789953125,7.87017298828125,9.707412953125,7.83332298828125Q9.732036953125,7.796462988281251,9.748997953125,7.75552298828125Q9.765958953125,7.71457298828125,9.774604953125,7.67110298828125Q9.783251953125,7.62763298828125,9.783251953125,7.58331298828125Q9.783251953125,7.56163298828125,9.781168953125,7.5400629882812495L9.781168953125,4.12656408828125Z"
fill-rule="evenodd" fill="#ffffff" fill-opacity="1"/>
</g>
<g>
<path
d="M3.5432511,12.40622998828125Q3.5216757,12.40831298828125,3.5,12.40831298828125Q3.4556789,12.40831298828125,3.4122094,12.39966598828125Q3.36874,12.39101998828125,3.327792,12.37405898828125Q3.286845,12.35709798828125,3.249993,12.33247398828125Q3.213142,12.30785098828125,3.1818020000000002,12.27651098828125Q3.150462,12.24517098828125,3.125839,12.20831998828125Q3.101215,12.17146798828125,3.084254,12.13052098828125Q3.067293,12.08957298828125,3.058647,12.04610358828125Q3.05,12.00263408828125,3.05,11.95831298828125Q3.05,11.91399188828125,3.058647,11.87052238828125Q3.067293,11.82705298828125,3.084254,11.78610498828125Q3.101215,11.74515798828125,3.125839,11.70830598828125Q3.150462,11.67145498828125,3.1818020000000002,11.64011498828125Q3.213142,11.60877498828125,3.249993,11.58415198828125Q3.286845,11.55952798828125,3.327792,11.54256698828125Q3.36874,11.52560598828125,3.4122094,11.51695998828125Q3.4556789,11.50831298828125,3.5,11.50831298828125Q3.5216757,11.50831298828125,3.5432511,11.51039598828125L10.45676,11.51039598828125Q10.47834,11.50831298828125,10.50001,11.50831298828125Q10.54433,11.50831298828125,10.5878,11.51695998828125Q10.63127,11.52560598828125,10.67222,11.54256698828125Q10.71317,11.55952798828125,10.75002,11.58415198828125Q10.78687,11.60877498828125,10.81821,11.64011498828125Q10.84955,11.67145498828125,10.87417,11.70830598828125Q10.8988,11.74515798828125,10.915759999999999,11.78610498828125Q10.93272,11.82705298828125,10.94136,11.87052238828125Q10.950009999999999,11.91399188828125,10.950009999999999,11.95831298828125Q10.950009999999999,12.00263408828125,10.94136,12.04610358828125Q10.93272,12.08957298828125,10.915759999999999,12.13052098828125Q10.89879,12.17146798828125,10.87417,12.20831998828125Q10.84955,12.24517098828125,10.81821,12.27651098828125Q10.78687,12.30785098828125,10.75002,12.33247398828125Q10.71317,12.35709798828125,10.67222,12.37405898828125Q10.63127,12.39101998828125,10.5878,12.39966598828125Q10.54433,12.40831298828125,10.50001,12.40831298828125Q10.47834,12.40831298828125,10.45676,12.40622998828125L3.5432511,12.40622998828125Z"
fill-rule="evenodd" fill="#ffffff" fill-opacity="1"/>
</g>
</g>
</g>
</g>
</svg>
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -26,6 +26,16 @@ ...@@ -26,6 +26,16 @@
opacity: 0; opacity: 0;
} }
.edit-fade-enter-active,
.edit-fade-leave-active {
transition: opacity 0.3s ease-in-out;
}
.edit-fade-leave-to,
.edit-fade-leave-to /* .fade-leave-active below version 2.1.8 */ {
opacity: 0;
}
.list-enter-active, .list-enter-active,
.list-leave-active { .list-leave-active {
transition: all 0.5s ease; transition: all 0.5s ease;
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
.el-form-item__label { .el-form-item__label {
font-weight: 400; font-weight: 400;
color: rgba(35, 35, 35, 0.8); color: rgba(35, 35, 35, 0.8);
text-align: left; text-align: right;
font-size: 14px; font-size: 14px;
line-height: 32px; line-height: 32px;
padding-right: 0px; padding-right: 0px;
......
...@@ -330,7 +330,7 @@ li { ...@@ -330,7 +330,7 @@ li {
padding-right: 12px; padding-right: 12px;
padding-left: 12px; padding-left: 12px;
line-height: 21px; line-height: 21px;
font-size: 12px; font-size: 14px;
font-weight: 400; font-weight: 400;
} }
thead { thead {
......
...@@ -233,3 +233,15 @@ ...@@ -233,3 +233,15 @@
.table-supplier .fixed-table .el-table__fixed-header-wrapper{ .table-supplier .fixed-table .el-table__fixed-header-wrapper{
top: -16px !important; top: -16px !important;
} }
.renling{
width: 280px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.ellipsis{
width: 500px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
...@@ -14,12 +14,12 @@ ...@@ -14,12 +14,12 @@
<!-- 已选字段 --> <!-- 已选字段 -->
<div class="use-header-container" v-if="useColumn.length"> <div class="use-header-container" v-if="useColumn.length">
<div class="use-header-title">已选字段</div> <div class="use-header-title">已选字段</div>
<vuedraggable v-model="useColumn" class="use-header-container-inner" ghostClass="dragClass"> <vuedraggable v-model="useColumn" class="use-header-container-inner" ghostClass="dragClass" handle=".use-header-item-drag-icon">
<transition-group name="fade" tag="div"> <transition-group name="fade" tag="div">
<div class="use-header-item" v-for="(item,index) of useColumn" :key="item.uid"> <div class="use-header-item" v-for="(item,index) of useColumn" :key="item.uid">
<el-checkbox v-model="item.use" class="use-header-item-label" <el-checkbox v-model="item.use" class="use-header-item-label"
@change="flag => checkedChange(index,flag,item)">{{item.label}}</el-checkbox> @change="flag => checkedChange(index,flag,item,false)">{{item.label}}</el-checkbox>
<img src="@/assets/images/consultingAgencyManagement/use-header-btn.png" alt=""> <img src="@/assets/images/consultingAgencyManagement/use-header-btn.png" alt="" class="use-header-item-drag-icon">
</div> </div>
</transition-group> </transition-group>
</vuedraggable> </vuedraggable>
...@@ -30,7 +30,7 @@ ...@@ -30,7 +30,7 @@
<div class="not-use-header-title">未选字段</div> <div class="not-use-header-title">未选字段</div>
<div class="not-use-header-item" v-for="(item,index) of notUseColumn" :key="item.uid"> <div class="not-use-header-item" v-for="(item,index) of notUseColumn" :key="item.uid">
<el-checkbox v-model="item.use" class="not-use-header-item-label" <el-checkbox v-model="item.use" class="not-use-header-item-label"
@change="flag => checkedChange(index,flag,item)">{{item.label}}</el-checkbox> @change="flag => checkedChange(index,flag,item,true)">{{item.label}}</el-checkbox>
</div> </div>
</div> </div>
...@@ -48,6 +48,7 @@ ...@@ -48,6 +48,7 @@
<script> <script>
import vuedraggable from "vuedraggable"; import vuedraggable from "vuedraggable";
import { v4 } from 'uuid'; import { v4 } from 'uuid';
import { elementMessageSingleton } from "@/utils";
export default { export default {
name: "dskTableHeaderSettingBar", name: "dskTableHeaderSettingBar",
components: { components: {
...@@ -128,7 +129,17 @@ export default { ...@@ -128,7 +129,17 @@ export default {
// console.log(this.notUseColumn); // console.log(this.notUseColumn);
} }
}, },
checkedChange(index, flag, item) { checkedChange(index, flag, item, isUse) {
// 至少保证一个自适应列存在
const { status, onlyColumn } = this.checkeOnlySelfAdaptation();
if (status && onlyColumn.uid == item.uid && !isUse) {
elementMessageSingleton("warning", "列表至少保证一个自适应列存在");
this.useColumn.splice(index, 1, {
...item,
use: true
});
return;
}
// 选中 往use push // 选中 往use push
if (flag) { if (flag) {
this.notUseColumn.splice(index, 1); this.notUseColumn.splice(index, 1);
...@@ -138,6 +149,24 @@ export default { ...@@ -138,6 +149,24 @@ export default {
this.useColumn.splice(index, 1); this.useColumn.splice(index, 1);
this.notUseColumn.push(item); this.notUseColumn.push(item);
}, },
checkeOnlySelfAdaptation() {
const _array = this.useColumn.filter(item => {
// 判断是否是自适应列
const isSelfAdaptationColumn = item.hasOwnProperty("minWidth") || item.width == "auto" || (!item.hasOwnProperty("minWidth") && !item.hasOwnProperty("width"));
return isSelfAdaptationColumn;
});
const len = _array.length;
// len等于1时仅剩一个自适应列
let status = false;
// 仅剩1个自适应列是用于判断当前取消的列是否是自适应列
let onlyColumn = null;
if (len == 1) {
onlyColumn = _array[0];
status = true;
}
return { status, onlyColumn };
},
cancel() { cancel() {
this.$emit("settingClose"); this.$emit("settingClose");
}, },
......
...@@ -45,7 +45,7 @@ export default { ...@@ -45,7 +45,7 @@ export default {
}, },
data() { data() {
return { return {
title: '中建一局公司', title: '中建一局集团第二建筑有限公司',
logo: logoImg logo: logoImg
} }
} }
......
...@@ -26,9 +26,9 @@ ...@@ -26,9 +26,9 @@
<router-link v-for="(tag, index) in visitedViews" ref="tag" :key="tag.fullPath" :class="isActive(tag)?'active':''" <router-link v-for="(tag, index) in visitedViews" ref="tag" :key="tag.fullPath" :class="isActive(tag)?'active':''"
:to="{ path: tag.fullPath, query: tag.query, fullPath: tag.fullPath }" tag="span" class="tags-view-item" :to="{ path: tag.fullPath, query: tag.query, fullPath: tag.fullPath }" tag="span" class="tags-view-item"
@click.middle.native="!isAffix(tag)?closeSelectedTag(tag):''" @contextmenu.prevent.native="openMenu(tag,$event)"> @click.middle.native="!isAffix(tag)?closeSelectedTag(tag):''" @contextmenu.prevent.native="openMenu(tag,$event)">
<svg :class="isActive(tag)?'tags-icon tags-icon-active':'tags-icon'" aria-hidden="true"> <!--<svg :class="isActive(tag)?'tags-icon tags-icon-active':'tags-icon'" aria-hidden="true">-->
<use :xlink:href="iconName(tag)" /> <!--<use :xlink:href="iconName(tag)" />-->
</svg> <!--</svg>-->
<span :id="isActive(tag)?'tagTitle':''">{{ tag.title.replace(/<[^>]+>/g, '') }}</span> <span :id="isActive(tag)?'tagTitle':''">{{ tag.title.replace(/<[^>]+>/g, '') }}</span>
<span v-if="!isAffix(tag)" class="el-icon-close" @click.prevent.stop="closeSelectedTag(tag)" /> <span v-if="!isAffix(tag)" class="el-icon-close" @click.prevent.stop="closeSelectedTag(tag)" />
<i <i
......
...@@ -324,7 +324,7 @@ export default { ...@@ -324,7 +324,7 @@ export default {
/** /**
* @type {HTMLDivElement} * @type {HTMLDivElement}
*/ */
const inner = document.querySelector(".basic-engineering-information-inner"); const inner = this.$el.querySelector(".basic-engineering-information-inner");
if (inner) { if (inner) {
const td = parseInt((inner.offsetWidth - 140 * 2) / 2); const td = parseInt((inner.offsetWidth - 140 * 2) / 2);
this.tableKeyWidth = `${parseInt(parseFloat(td / inner.offsetWidth) * 100)}%`; this.tableKeyWidth = `${parseInt(parseFloat(td / inner.offsetWidth) * 100)}%`;
......
<template> <template>
<div class="consulting-agency-container"> <div class="consulting-agency-container">
<el-form :model="comProjectDetailInfo" :rules="rules" :inline-message="false" class="basic-engineering-information-inner">
<!-- 基础信息 -->
<div class="project-basic-information">
<div class="info-module-title"><span>基础信息</span></div>
<table>
<colgroup>
<col>
<col :style="{width : tableKeyWidth}">
<col>
<col :style="{width : tableKeyWidth}">
</colgroup>
<tr>
<td class="table-key">咨询机构名称</td>
<td>
<transition mode="out-in" name="edit-fade">
<div class="normal-value" v-if="!comIsModify">
{{comProjectDetailInfo.advisoryBody && comProjectDetailInfo.advisoryBody.advisoryBodyName ? comProjectDetailInfo.advisoryBody.advisoryBodyName : "-"}}
</div>
<el-form-item label="" v-if="comIsModify">
<el-input v-model="comProjectDetailInfo.advisoryBody.advisoryBodyName" clearable v-focus placeholder="请输入完整咨询机构名称"
@input="searchConsulting"></el-input>
</el-form-item>
</transition>
</td>
<td class="table-key">法人代表</td>
<td>
{{comProjectDetailInfo.corporatePerson ? comProjectDetailInfo.corporatePerson : "-"}}
</td>
</tr>
<tr>
<!-- <td class="table-key">法人联系电话</td>
<td>
{{comProjectDetailInfo.corporatePerson ? comProjectDetailInfo.corporatePerson : "-"}}
</td> -->
<td class="table-key">注册地址</td>
<td colspan="3">
{{comProjectDetailInfo.regAddress ? comProjectDetailInfo.regAddress : "-"}}
</td>
</tr>
</table>
</div>
<!-- 项目联系人 -->
<div class="project-contact">
<div class="info-module-title"><span>项目联系人</span></div>
<table>
<colgroup>
<col>
<col :style="{width : tableKeyWidth}">
<col>
<col :style="{width : tableKeyWidth}">
</colgroup>
<tr>
<td class="table-key">项目负责人</td>
<td>
{{comProjectDetailInfo.advisoryBodyProject && comProjectDetailInfo.advisoryBodyProject.projectLeader ? comProjectDetailInfo.advisoryBodyProject.projectLeader : "-"}}
</td>
<td class="table-key">项目负责人专业</td>
<td>
{{comProjectDetailInfo.advisoryBodyProject && comProjectDetailInfo.advisoryBodyProject.projectLeaderMajor ? comProjectDetailInfo.advisoryBodyProject.projectLeaderMajor : "-"}}
</td>
</tr>
<tr>
<td class="table-key">联系电话</td>
<td colspan="3">
{{comProjectDetailInfo.advisoryBodyProject && comProjectDetailInfo.advisoryBodyProject.projectLeaderPhone ? comProjectDetailInfo.advisoryBodyProject.projectLeaderPhone : "-"}}
</td>
</tr>
</table>
</div>
<!-- 项目结算信息 -->
<div class="project-settlement-information">
<div class="info-module-title"><span>项目结算信息</span></div>
<table>
<colgroup>
<col>
<col :style="{width : tableKeyWidth}">
<col>
<col :style="{width : tableKeyWidth}">
</colgroup>
<tr>
<td class="table-key">结算开始时间</td>
<td>
{{comProjectDetailInfo.advisoryBodyProject && comProjectDetailInfo.advisoryBodyProject.settleStartTime ? comProjectDetailInfo.advisoryBodyProject.settleStartTime : "-"}}
</td>
<td class="table-key">结算完成时间</td>
<td>
{{comProjectDetailInfo.advisoryBodyProject && comProjectDetailInfo.advisoryBodyProject.settleFinishTime ? comProjectDetailInfo.advisoryBodyProject.settleFinishTime : "-"}}
</td>
</tr>
<tr>
<td class="table-key">是否为终审单位</td>
<td colspan="3">
{{comProjectDetailInfo.advisoryBodyProject && statusCheck(comProjectDetailInfo.advisoryBodyProject.isFinalJudgeUnit) ? statusCheck(comProjectDetailInfo.advisoryBodyProject.isFinalJudgeUnit) : "-"}}
</td>
</tr>
</table>
</div>
</el-form>
</div> </div>
</template> </template>
<script> <script>
import { searchConsultingApi } from "@/api/consultingOrgManagement";
export default { export default {
name: "consultingAgency", name: "consultingAgency",
props: { props: {
projectDetailInfo: Object projectDetailInfo: Object,
isModify: {
type: Boolean,
default: false
}
},
directives: {
focus: {
inserted(el) {
el.querySelector(".el-input__inner").focus();
}
}
},
watch: {
projectDetailInfo: {
handler(newValue, oldValue) {
this.comProjectDetailInfo = JSON.parse(JSON.stringify(newValue));
this.oldComProjectDetailInfo = JSON.parse(JSON.stringify(oldValue));
},
deep: true
},
isModify: {
handler(newValue) {
this.comIsModify = newValue;
}
}
}, },
data() { data() {
return { return {
comIsModify: this.isModify,
comProjectDetailInfo: JSON.parse(JSON.stringify(this.projectDetailInfo)),
oldComProjectDetailInfo: JSON.parse(JSON.stringify(this.projectDetailInfo)),
rules: {
},
tableKeyWidth: 0,
searchTimer: null
}; };
}, },
//可访问data属性 //可访问data属性
created() { created() {
this.setTableKeyWidth();
}, },
//计算集 //计算集
computed: { computed: {
...@@ -24,7 +154,59 @@ export default { ...@@ -24,7 +154,59 @@ export default {
}, },
//方法集 //方法集
methods: { methods: {
statusCheck(status) {
if (status == "0") {
return "是";
}
if (status == "1") {
return "否";
}
return "";
},
async setTableKeyWidth() {
try {
await this.$nextTick();
/**
* @type {HTMLDivElement}
*/
const inner = this.$el.querySelector(".basic-engineering-information-inner");
if (inner) {
const td = parseInt((inner.offsetWidth - 140 * 2) / 2);
this.tableKeyWidth = `${parseInt(parseFloat(td / inner.offsetWidth) * 100)}%`;
}
} catch (error) {
}
},
cancelModify() {
this.comProjectDetailInfo = JSON.parse(JSON.stringify(this.oldComProjectDetailInfo));
},
async searchConsulting(keywords) {
try {
if ((keywords || keywords == "0") && keywords?.toString()?.trim() && keywords?.toString()?.trim()?.length >= 1) {
this.clearSearchTimer();
this.searchTimer = setTimeout(async () => {
await this.searchConsultingHandle(keywords.toString().trim());
}, 1000);
}
} catch (error) {
}
},
async searchConsultingHandle(keywords) {
try {
const searchResult = await searchConsultingApi(keywords);
if (searchResult.code == 200) {
console.log(searchResult);
}
} catch (error) {
console.log(error);
}
},
clearSearchTimer() {
clearTimeout(this.searchTimer);
this.searchTimer = null;
}
}, },
} }
</script> </script>
...@@ -38,5 +220,113 @@ export default { ...@@ -38,5 +220,113 @@ export default {
padding: 16px; padding: 16px;
box-sizing: border-box; box-sizing: border-box;
overflow: auto; overflow: auto;
::v-deep .basic-engineering-information-inner {
width: 100%;
.info-module-title {
line-height: 24px;
color: #232323;
font-weight: bold;
font-size: 16px;
margin-bottom: 16px;
display: flex;
align-items: center;
& > span {
display: inline-block;
position: relative;
padding-left: 8px;
box-sizing: border-box;
&::before {
content: "";
position: absolute;
left: 0px;
top: 50%;
transform: translateY(-50%);
background: rgba(35, 35, 35, 0.8);
width: 2px;
height: 14px;
}
}
}
table {
width: 100%;
border-spacing: 0;
border-collapse: collapse;
&,
th,
td {
border: 1px solid #e6eaf1;
box-sizing: border-box;
}
td {
padding: 9px 12px;
line-height: 22px;
color: #232323;
font-size: 12px;
position: relative;
.normal-value {
vertical-align: middle;
line-height: 22px;
}
.el-form-item {
position: absolute;
left: 0px;
top: 0px;
width: 100%;
height: 100%;
margin-bottom: 0px;
z-index: 9;
.el-form-item__content {
height: 100%;
font-size: 12px;
line-height: unset;
.el-input {
height: 100%;
font-size: 12px;
}
.el-input__inner {
height: 40px;
line-height: 40px;
border-radius: unset;
border-color: transparent;
color: #232323;
font-size: 12px;
font-weight: 400;
padding-left: 12px;
outline: unset;
box-sizing: border-box;
&:focus {
border: 1px solid #0081ff;
}
}
}
}
}
.table-key {
background: #f0f3fa;
color: rgba(35, 35, 35, 0.8);
width: 140px;
&.lot {
height: 62px;
}
}
.data-td {
width: calc(100% - 140px);
}
}
.project-contact,
.project-settlement-information {
margin-top: 24px;
}
}
} }
</style> </style>
...@@ -17,14 +17,27 @@ ...@@ -17,14 +17,27 @@
<!-- tab切换部分 --> <!-- tab切换部分 -->
<div class="project-consulting-agency"> <div class="project-consulting-agency">
<!-- tab切换栏 --> <!-- tab切换栏 -->
<dsk-tab-toggle v-model="currentList" :tabs="toggleTabs"></dsk-tab-toggle> <div class="project-consulting-tab-container">
<dsk-tab-toggle v-model="currentList" :tabs="toggleTabs"></dsk-tab-toggle>
<!-- 编辑按钮 展示咨询机构结算信息显示 -->
<transition name="fade" appear mode="out-in">
<div class="edit-project-detail-container" v-if="currentList === 'consultingAgency' && !isModify" :key="'edit-project'">
<el-button type="primary" @click="editProjectDetail">编辑信息</el-button>
</div>
<div class="save-project-detail-container" v-if="currentList === 'consultingAgency' && isModify" :key="'save-project'">
<el-button type="primary" @click="editProjectDetail">保存</el-button>
<el-button @click="cancelSave">取消</el-button>
</div>
</transition>
</div>
<!-- tab切换容器 --> <!-- tab切换容器 -->
<div class="project-consulting-agency-inner"> <div class="project-consulting-agency-inner">
<!-- 工程基本信息 --> <!-- 工程基本信息 -->
<basic-engineering-information v-if="currentList === 'project'" :projectDetailInfo="projectDetailInfo"></basic-engineering-information> <basic-engineering-information v-if="currentList === 'project'" :projectDetailInfo="projectDetailInfo"></basic-engineering-information>
<!-- 咨询机构结算信息 --> <!-- 咨询机构结算信息 -->
<consulting-agency v-if="currentList === 'consultingAgency'" :projectDetailInfo="projectDetailInfo"></consulting-agency> <consulting-agency v-if="currentList === 'consultingAgency'" :projectDetailInfo="projectDetailInfo" :isModify="isModify"
ref="consultingAgency"></consulting-agency>
</div> </div>
</div> </div>
...@@ -62,7 +75,9 @@ export default { ...@@ -62,7 +75,9 @@ export default {
], ],
projectDetailInfo: {}, projectDetailInfo: {},
projectKey: "", projectKey: "",
advisoryBodyCid: "" advisoryBodyCid: "",
// 咨询机构结算信息 修改
isModify: false
}; };
}, },
//可访问data属性 //可访问data属性
...@@ -91,7 +106,17 @@ export default { ...@@ -91,7 +106,17 @@ export default {
} catch (error) { } catch (error) {
} }
} },
editProjectDetail() {
this.isModify = true;
},
saveProjectDetail() {
},
cancelSave() {
this.isModify = false;
this.$refs["consultingAgency"].cancelModify();
},
}, },
} }
</script> </script>
...@@ -157,6 +182,45 @@ export default { ...@@ -157,6 +182,45 @@ export default {
height: calc(100% - 110px); height: calc(100% - 110px);
margin-top: 16px; margin-top: 16px;
.project-consulting-tab-container {
position: relative;
.edit-project-detail-container {
position: absolute;
right: 16px;
top: 50%;
transform: translateY(-50%);
& > button {
height: 32px;
line-height: 32px;
padding: 0px 16px;
box-sizing: border-box;
background-color: #0081ff;
border-color: #0081ff;
}
}
.save-project-detail-container {
position: absolute;
right: 16px;
top: 50%;
transform: translateY(-50%);
& > button {
height: 32px;
line-height: 32px;
padding: 0px 16px;
box-sizing: border-box;
&.el-button--primary {
background-color: #0081ff;
border-color: #0081ff;
}
}
}
}
.project-consulting-agency-inner { .project-consulting-agency-inner {
width: 100%; width: 100%;
height: calc(100% - 47px); height: calc(100% - 47px);
......
...@@ -305,7 +305,7 @@ export default { ...@@ -305,7 +305,7 @@ export default {
const _temp = this.sideAddUid(JSON.parse(JSON.stringify(this.sideRoute))); const _temp = this.sideAddUid(JSON.parse(JSON.stringify(this.sideRoute)));
this.sideRoute = _temp; this.sideRoute = _temp;
this.defaultRoute = JSON.parse(JSON.stringify(this.sideRoute)); this.defaultRoute = JSON.parse(JSON.stringify(this.sideRoute));
this.searchIndex = this.findNodeIndex(this.defaultRoute, "overview").index; // this.searchIndex = this.findNodeIndex(this.defaultRoute, "overview").index;
}, },
// 查找菜单中的元素 // 查找菜单中的元素
findNodeIndex(tree, key, findKey = "pathName", findParent = false, parenNode = null) { findNodeIndex(tree, key, findKey = "pathName", findParent = false, parenNode = null) {
......
...@@ -130,7 +130,7 @@ export default { ...@@ -130,7 +130,7 @@ export default {
async maxHeightInit() { async maxHeightInit() {
try { try {
await this.$nextTick(); await this.$nextTick();
/** /**
* @type {HTMLDivElement} * @type {HTMLDivElement}
*/ */
const container = this.$el.querySelector(".table-item"); const container = this.$el.querySelector(".table-item");
...@@ -224,7 +224,7 @@ export default { ...@@ -224,7 +224,7 @@ export default {
} }
.el-table { .el-table {
.cell { .cell {
font-size: 12px; font-size: 14px;
} }
.el-table__header-wrapper { .el-table__header-wrapper {
min-height: 40px; min-height: 40px;
......
...@@ -92,7 +92,7 @@ export default { ...@@ -92,7 +92,7 @@ export default {
// 合作项目详情弹窗 // 合作项目详情弹窗
cooperationRecordDialog: false, cooperationRecordDialog: false,
dialogQueryParams: { dialogQueryParams: {
companyId: "", companyId: this.companyId,
combineId: "", combineId: "",
pageNum: 1, pageNum: 1,
pageSize: 10, pageSize: 10,
...@@ -264,7 +264,6 @@ export default { ...@@ -264,7 +264,6 @@ export default {
} }
}, },
viewProject(row) { viewProject(row) {
this.dialogQueryParams.companyId = row.companyId;
this.dialogQueryParams.combineId = row.counterpartCompanyId; this.dialogQueryParams.combineId = row.counterpartCompanyId;
this.cooperationRecordDialog = true; this.cooperationRecordDialog = true;
}, },
......
...@@ -92,7 +92,7 @@ export default { ...@@ -92,7 +92,7 @@ export default {
// 合作项目详情弹窗 // 合作项目详情弹窗
cooperationRecordDialog: false, cooperationRecordDialog: false,
dialogQueryParams: { dialogQueryParams: {
companyId: "", companyId: this.companyId,
combineId: "", combineId: "",
pageNum: 1, pageNum: 1,
pageSize: 10, pageSize: 10,
...@@ -264,7 +264,6 @@ export default { ...@@ -264,7 +264,6 @@ export default {
} }
}, },
viewProject(row) { viewProject(row) {
this.dialogQueryParams.companyId = row.companyId;
this.dialogQueryParams.combineId = row.companyId; this.dialogQueryParams.combineId = row.companyId;
this.cooperationRecordDialog = true; this.cooperationRecordDialog = true;
}, },
......
...@@ -203,7 +203,7 @@ export default { ...@@ -203,7 +203,7 @@ export default {
isCompany: false, //判断是否有建设库数据 isCompany: false, //判断是否有建设库数据
isCustomer: false, //判断是否展示修改客户信息 isCustomer: false, //判断是否展示修改客户信息
currentPath: { currentPath: {
pathName: 'overview' //默认展示页 pathName: '' //默认展示页
}, },
statisticObj: { statisticObj: {
basic: {}, basic: {},
...@@ -480,7 +480,7 @@ export default { ...@@ -480,7 +480,7 @@ export default {
height: auto; height: auto;
overflow: initial; overflow: initial;
box-sizing: border-box; box-sizing: border-box;
min-width: 1200px; /* min-width: 1200px; */
} }
} }
} }
......
...@@ -24,7 +24,7 @@ ...@@ -24,7 +24,7 @@
</div> </div>
</div> </div>
<div class="content"> <div class="content">
<div class="table-search"> <div class="table-search" v-if="tableDataTotal > 0 && !isSkeleton">
<div class="total">{{tableDataTotal}}</div> <div class="total">{{tableDataTotal}}</div>
<div class="right"> <div class="right">
<span class="add" @click="addEnterprise">添加企业</span> <span class="add" @click="addEnterprise">添加企业</span>
...@@ -58,8 +58,6 @@ ...@@ -58,8 +58,6 @@
label="操作" label="操作"
align="left" align="left"
width="160" width="160"
class-name="small-padding fixed-width"
fixed="right"
> >
<template slot-scope="scope"> <template slot-scope="scope">
<span style="color:#0081FF;" @click="handleCancel(scope.row.companyId)">取消监控</span> <span style="color:#0081FF;" @click="handleCancel(scope.row.companyId)">取消监控</span>
...@@ -70,8 +68,12 @@ ...@@ -70,8 +68,12 @@
<skeleton v-if="isSkeleton" style="padding: 16px"></skeleton> <skeleton v-if="isSkeleton" style="padding: 16px"></skeleton>
<div class="empty" v-if="tableDataTotal === 0 && !isSkeleton"> <div class="empty" v-if="tableDataTotal === 0 && !isSkeleton">
<img class="img" src="@/assets/images/project/empty.png"> <img class="img" src="@/assets/images/project/empty.png">
<div class="p1">抱歉,没找到相关数据</div> <div class="p1">您还未添加监控企业</div>
<div class="p2">建议调整关键词或筛选条件,重新搜索</div> <!--<div class="p2">建议调整关键词或筛选条件,重新搜索</div>-->
<div class="empty-btn">
<span class="add" @click="addEnterprise">添加企业</span>
<span class="add1" @click="handleBatch">批量监控</span>
</div>
</div> </div>
</div> </div>
<div class="pagination-box" v-if="tableDataTotal>queryParams.pageSize"> <div class="pagination-box" v-if="tableDataTotal>queryParams.pageSize">
...@@ -220,7 +222,6 @@ ...@@ -220,7 +222,6 @@
methods: { methods: {
async querySubmit() { async querySubmit() {
companyPage(this.queryParams).then(res => { companyPage(this.queryParams).then(res => {
console.log(res)
this.isSkeleton = false; this.isSkeleton = false;
this.tableData=res.rows this.tableData=res.rows
this.tableDataTotal=res.total this.tableDataTotal=res.total
...@@ -423,6 +424,7 @@ ...@@ -423,6 +424,7 @@
position: relative; position: relative;
::v-deep .el-radio{ ::v-deep .el-radio{
margin-right:16px; margin-right:16px;
color: rgba(35,35,35,0.8);
} }
::v-deep .el-date-editor{ ::v-deep .el-date-editor{
position: absolute; position: absolute;
...@@ -502,7 +504,6 @@ ...@@ -502,7 +504,6 @@
margin: 0 auto; margin: 0 auto;
height: 550px; height: 550px;
text-align: center; text-align: center;
border-top: 1px solid #EFEFEF;
.img{ .img{
width: 108px; width: 108px;
height: 108px; height: 108px;
...@@ -518,6 +519,29 @@ ...@@ -518,6 +519,29 @@
font-size: 14px; font-size: 14px;
margin-top: 8px; margin-top: 8px;
} }
.empty-btn{
margin-top: 24px;
span{
width: 88px;
height: 32px;
border-radius: 4px 4px 4px 4px;
line-height: 32px;
text-align: center;
display: inline-block;
font-size: 14px;
cursor: pointer;
}
.add{
color: #0081FF;
border: 1px solid #0081FF;
margin-right: 16px;
}
.add1{
color: #FFFFFF;
background: #0081FF;
border: 1px solid #0081FF;
}
}
} }
} }
::v-deep .dialogAdd{ ::v-deep .dialogAdd{
......
<template> <template>
<!--监控维度设置--> <!--监控维度设置-->
<div class="app-container MonitorSettings"> <div class="app-container MonitorSettings">
<div class="content"> <div class="content" style="height: 100%;">
<div class="m-title">监控维度设置</div> <div class="m-title">监控维度设置</div>
<div class="m-main"> <div class="m-main">
<div class="main-item"> <div class="main-item">
...@@ -127,7 +127,7 @@ ...@@ -127,7 +127,7 @@
rulesDetail({}).then(res => { rulesDetail({}).then(res => {
console.log(res) console.log(res)
if(res.data){ if(res.data){
let dimension=res.data.dimension.split(',');
this.queryParams={ this.queryParams={
pushFrequency:res.data.pushFrequency.toString(), pushFrequency:res.data.pushFrequency.toString(),
receiveMode:res.data.receiveMode.toString(), receiveMode:res.data.receiveMode.toString(),
...@@ -135,11 +135,15 @@ ...@@ -135,11 +135,15 @@
} }
this.startTime =res.data.timePeriodStart this.startTime =res.data.timePeriodStart
this.endTime = res.data.timePeriodEnd this.endTime = res.data.timePeriodEnd
for(let item in dimension){ if(res.data.dimension){
if (this.arr.indexOf(dimension[item]) == -1) { let dimension=res.data.dimension.split(',');
this.gsfx.push(dimension[item]) for(let item in dimension){
} else { if (this.arr.indexOf(dimension[item]) == -1) {
this.sffx.push(dimension[item]) console.log(dimension[item])
this.gsfx.push(dimension[item])
} else {
this.sffx.push(dimension[item])
}
} }
} }
} }
......
...@@ -65,7 +65,7 @@ ...@@ -65,7 +65,7 @@
</div> </div>
<div class="content"> <div class="content">
<div class="total">{{tableDataTotal}}</div> <div class="total" v-if="tableDataTotal > 0 && !isSkeleton">{{tableDataTotal}}</div>
<div class="table-item"> <div class="table-item">
<div v-if="tableDataTotal > 0 && !isSkeleton"> <div v-if="tableDataTotal > 0 && !isSkeleton">
<el-table <el-table
...@@ -96,8 +96,6 @@ ...@@ -96,8 +96,6 @@
label="操作" label="操作"
align="center" align="center"
width="150" width="150"
class-name="small-padding fixed-width"
fixed="right"
> >
<template slot-scope="scope"> <template slot-scope="scope">
<span style="cursor: pointer;color:#0081FF;" @click="handleDetail(scope.row)">查看详情</span> <span style="cursor: pointer;color:#0081FF;" @click="handleDetail(scope.row)">查看详情</span>
...@@ -108,8 +106,8 @@ ...@@ -108,8 +106,8 @@
<skeleton v-if="isSkeleton" style="padding: 16px"></skeleton> <skeleton v-if="isSkeleton" style="padding: 16px"></skeleton>
<div class="empty" v-if="tableDataTotal === 0 && !isSkeleton"> <div class="empty" v-if="tableDataTotal === 0 && !isSkeleton">
<img class="img" src="@/assets/images/project/empty.png"> <img class="img" src="@/assets/images/project/empty.png">
<div class="p1">抱歉,没找到相关数据</div> <div class="p1">暂未发现企业风险动态信息</div>
<div class="p2">建议调整关键词或筛选条件,重新搜索</div> <!--<div class="p2">建议调整关键词或筛选条件,重新搜索</div>-->
</div> </div>
</div> </div>
<div class="pagination-box" v-if="tableDataTotal>queryParams.pageSize"> <div class="pagination-box" v-if="tableDataTotal>queryParams.pageSize">
...@@ -376,7 +374,6 @@ ...@@ -376,7 +374,6 @@
el.Array.push({key:i,value:j}) el.Array.push({key:i,value:j})
} }
}) })
console.log(this.tableData)
}) })
}, },
getDetail(name,id) { getDetail(name,id) {
...@@ -718,10 +715,11 @@ ...@@ -718,10 +715,11 @@
top: -6px; top: -6px;
opacity: 0; opacity: 0;
line-height: 22px; line-height: 22px;
.el-input { ::v-deep .el-input {
width: 100%; width: 100%;
line-height: 22px; line-height: 22px;
.el-input__inner { .el-input__inner {
color: rgba(35,35,35,0.8);
width: 100%; width: 100%;
height: 22px !important; height: 22px !important;
} }
...@@ -744,6 +742,12 @@ ...@@ -744,6 +742,12 @@
margin-right: 24px; margin-right: 24px;
} }
} }
::v-deep .el-radio{
color: rgba(35,35,35,0.8);
}
::v-deep .el-checkbox__label{
color: rgba(35,35,35,0.8);
}
::v-deep .el-checkbox{ ::v-deep .el-checkbox{
margin-right: 10px; margin-right: 10px;
} }
...@@ -797,7 +801,6 @@ ...@@ -797,7 +801,6 @@
margin: 0 auto; margin: 0 auto;
height: 550px; height: 550px;
text-align: center; text-align: center;
border-top: 1px solid #EFEFEF;
.img{ .img{
width: 108px; width: 108px;
height: 108px; height: 108px;
......
...@@ -48,8 +48,11 @@ ...@@ -48,8 +48,11 @@
<skeleton v-if="isSkeleton" style="padding: 16px"></skeleton> <skeleton v-if="isSkeleton" style="padding: 16px"></skeleton>
<div class="empty" v-if="tableDataTotal === 0 && !isSkeleton"> <div class="empty" v-if="tableDataTotal === 0 && !isSkeleton">
<img class="img" src="@/assets/images/project/empty.png"> <img class="img" src="@/assets/images/project/empty.png">
<div class="p1">抱歉,没找到相关数据</div> <div class="p1">当前暂无监控报告</div>
<div class="p2">建议调整关键词或筛选条件,重新搜索</div> <!--<div class="p2">建议调整关键词或筛选条件,重新搜索</div>-->
</div>
<div class="pagination-box" v-if="tableDataTotal>queryParams.pageSize" style="background: #ffffff;margin-top: 16px;padding-right: 16px;">
<el-pagination background :current-page="queryParams.pageNum" :page-size="queryParams.pageSize" :total="tableDataTotal" layout="prev, pager, next, jumper" @current-change="handleCurrentChange" @size-change="handleSizeChange" />
</div> </div>
</div> </div>
</div> </div>
...@@ -89,7 +92,6 @@ ...@@ -89,7 +92,6 @@
methods: { methods: {
async querySubmit() { async querySubmit() {
reportPage(this.queryParams).then(res => { reportPage(this.queryParams).then(res => {
console.log(res)
this.isSkeleton = false; this.isSkeleton = false;
this.dataList=res.rows; this.dataList=res.rows;
this.tableDataTotal=res.total this.tableDataTotal=res.total
...@@ -100,7 +102,19 @@ ...@@ -100,7 +102,19 @@
this.queryParams.pageNum=1 this.queryParams.pageNum=1
this.queryParams.pageSize=10 this.queryParams.pageSize=10
this.querySubmit() this.querySubmit()
} },
// 重置页数
handleSizeChange(val) {
this.queryParams.pageNum = 1
this.queryParams.pageSize = val
this.querySubmit()
},
// 跳转指定页数
handleCurrentChange(val) {
this.queryParams.pageNum = val
this.querySubmit()
window.scrollTo(0, 0);
},
} }
} }
</script> </script>
...@@ -237,7 +251,6 @@ ...@@ -237,7 +251,6 @@
margin: 0 auto; margin: 0 auto;
height: 550px; height: 550px;
text-align: center; text-align: center;
border-top: 1px solid #EFEFEF;
background: #ffffff; background: #ffffff;
.img{ .img{
width: 108px; width: 108px;
......
<template> <template>
<div class="app-container enterprise_contatiner"> <div class="app-container enterprise_contatiner">
<div class="header"> <div class="header">
<div class="title_wrap">
<div class="enterprise_title">
评标助手
</div>
</div>
<el-tabs v-model="activeName" > <el-tabs v-model="activeName" >
<el-tab-pane label="查资质" name="first"></el-tab-pane> <el-tab-pane label="查资质" name="first"></el-tab-pane>
<el-tab-pane label="现行资质标准" name="second"></el-tab-pane> <el-tab-pane label="现行资质标准" name="second"></el-tab-pane>
...@@ -34,13 +39,12 @@ export default { ...@@ -34,13 +39,12 @@ export default {
<style lang="scss" scoped> <style lang="scss" scoped>
.header{ .header{
justify-content: space-between; justify-content: space-between;
height: 48px;
background: #FFFFFF; background: #FFFFFF;
border-radius: 4px 4px 0 0 ; border-radius: 4px 4px 0 0 ;
border-bottom: 1px solid #EEEEEE; border-bottom: 1px solid #EEEEEE;
color: #232323; color: #232323;
position: sticky; position: sticky;
top: 0; top: -16px;
z-index: 999; z-index: 999;
::v-deep .el-tabs{ ::v-deep .el-tabs{
height: 48px; height: 48px;
......
...@@ -27,8 +27,8 @@ ...@@ -27,8 +27,8 @@
</el-form-item> </el-form-item>
</el-row> </el-row>
<el-form-item label=" "> <el-form-item label=" ">
<el-button type="primary" size="small">查询</el-button> <el-button type="primary" size="small" @click="searchList">查询</el-button>
<el-button size="small">重置</el-button> <el-button size="small" @click="clears">重置</el-button>
</el-form-item> </el-form-item>
</el-form> </el-form>
</div> </div>
...@@ -37,6 +37,11 @@ ...@@ -37,6 +37,11 @@
<div class="total-title"> <div class="total-title">
<div class="totals">{{total}}</div> <div class="totals">{{total}}</div>
</div> </div>
<div class="table-item-jf table-item-jf1 empty-table" v-if="total == 0 && !isSkeleton">
<img class="item-jf-img" src="@/assets/images/kong.png" alt="">
<div class="item-jf-titel">暂无相关数据</div>
<div class="item-jf-text">抱歉,暂无数据,试试更换搜索条件吧</div>
</div>
<skeleton v-if="isSkeleton"></skeleton> <skeleton v-if="isSkeleton"></skeleton>
<div class="table-item-jf table-item" v-if="!isSkeleton&&tableData.length>0"> <div class="table-item-jf table-item" v-if="!isSkeleton&&tableData.length>0">
...@@ -47,18 +52,22 @@ ...@@ -47,18 +52,22 @@
<el-table-column type="index" label="序号" :fixed="tableColumnFixed" width="60" :resizable="false"> <el-table-column type="index" label="序号" :fixed="tableColumnFixed" width="60" :resizable="false">
<template slot-scope="scope"> <template slot-scope="scope">
<span>{{(pageNum - 1) *pageSize + scope.$index + 1}}</span> <span>{{(formdata.pageNum - 1) *formdata.pageSize + scope.$index + 1}}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="单据编号" :fixed="tableColumnFixed" width="120" :resizable="false"> <el-table-column label="单据编号" :fixed="tableColumnFixed" width="120" :resizable="false">
<template slot-scope="scope">
{{scope.row.frecordno||"--"}}
</template>
</el-table-column> </el-table-column>
<el-table-column label="分供方名称" :fixed="tableColumnFixed" width="380" :resizable="false"> <el-table-column label="分供方名称" :fixed="tableColumnFixed" width="380" :resizable="false">
<template slot-scope="scope"> <template slot-scope="scope">
<div class="renling"> <div class="renling">
<div style="display:flex;align-items:center"> <div style="display:flex;align-items:center">
<router-link :to="`/enterprise/${encodeStr(scope.row.id)}?path=cooperationRecord`" tag="a" <router-link v-if="scope.row.supplierCid" :to="`/enterprise/${encodeStr(scope.row.supplierCid)}`" tag="a"
class="wordprimary" v-html="scope.row.name"></router-link> class="wordprimary" v-html="scope.row.fsuppliername"></router-link>
<span v-else v-html="scope.row.fsuppliername"></span>
</div> </div>
</div> </div>
...@@ -68,38 +77,38 @@ ...@@ -68,38 +77,38 @@
<el-table-column label="社会统一信用代码" min-width="150"> <el-table-column label="社会统一信用代码" min-width="150">
<template slot-scope="scope"> <template slot-scope="scope">
{{scope.row.legalPerson||"--"}} {{scope.row.funifiedsocialcreditcode||"--"}}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="接触限用理由" min-width="280" :resizable="false"> <el-table-column label="解除限用理由" min-width="280" :resizable="false">
<template slot-scope="scope"> <template slot-scope="scope">
{{scope.row.legalPerson||"--"}} {{scope.row.frelievereason||"--"}}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="申请单位" min-width="120" :resizable="false"> <el-table-column label="申请单位" min-width="120" :resizable="false">
<template slot-scope="scope"> <template slot-scope="scope">
{{scope.row.legalPerson||"--"}} {{scope.row.fjobunitname||"--"}}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="原限用/禁用" min-width="120" :resizable="false"> <el-table-column label="原限用/禁用" min-width="120" :resizable="false">
<template slot-scope="scope"> <template slot-scope="scope">
{{scope.row.legalPerson||"--"}} {{scope.row.fbeforestate||"--"}}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="限用日期" min-width="150" :resizable="false"> <el-table-column label="限用日期" min-width="150" :resizable="false">
<template slot-scope="scope"> <template slot-scope="scope">
{{scope.row.legalPerson||"--"}} {{scope.row.flimitdate||"--"}}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="解除限用/禁用日期" min-width="150" :resizable="false"> <el-table-column label="解除限用/禁用日期" min-width="150" :resizable="false">
<template slot-scope="scope"> <template slot-scope="scope">
{{scope.row.legalPerson||"--"}} {{scope.row.fts||"--"}}
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
</div> </div>
<div class="pagination clearfix" v-show="total>0"> <div class="pagination clearfix" v-show="total>0">
<el-pagination background :page-size="pageSize" :current-page.sync="pageNum" @current-change="handleCurrentChange" layout="prev, pager, next" <el-pagination background :page-size="formdata.pageSize" :current-page.sync="formdata.pageNum" @current-change="handleCurrentChange" layout="prev, pager, next"
:total="total"> :total="total">
</el-pagination> </el-pagination>
</div> </div>
...@@ -113,217 +122,24 @@ ...@@ -113,217 +122,24 @@
import "@/assets/styles/public.scss"; import "@/assets/styles/public.scss";
import "@/assets/styles/supplierlist.scss"; import "@/assets/styles/supplierlist.scss";
import skeleton from '@/views/project/projectList/component/skeleton'; import skeleton from '@/views/project/projectList/component/skeleton';
import {getSupplierUnlimitedList} from '@/api/supplier/supplier';
export default { export default {
name: 'Unlist', name: 'Unlist',
components:{skeleton}, components:{skeleton},
data(){ data(){
return{ return{
encodeStr, encodeStr,
formdata:{}, formdata:{
options: [ unlimitedStartTime:'',
{ unlimitedEndTime:'',
value: 'zhinan', times:[],
label: '指南', applyUnit:'',
children: [{ pageSize:50,
value: 'shejiyuanze', pageNum:1,
label: '设计原则', },
children: [{ tableData:[],
value: 'yizhi', isSkeleton:true,
label: '一致' total:0,
}, {
value: 'fankui',
label: '反馈'
}, {
value: 'xiaolv',
label: '效率'
}, {
value: 'kekong',
label: '可控'
}]
}, {
value: 'daohang',
label: '导航',
children: [{
value: 'cexiangdaohang',
label: '侧向导航'
}, {
value: 'dingbudaohang',
label: '顶部导航'
}]
}]
}, {
value: 'zujian',
label: '组件',
children: [{
value: 'basic',
label: 'Basic',
children: [{
value: 'layout',
label: 'Layout 布局'
}, {
value: 'color',
label: 'Color 色彩'
}, {
value: 'typography',
label: 'Typography 字体'
}, {
value: 'icon',
label: 'Icon 图标'
}, {
value: 'button',
label: 'Button 按钮'
}]
}, {
value: 'form',
label: 'Form',
children: [{
value: 'radio',
label: 'Radio 单选框'
}, {
value: 'checkbox',
label: 'Checkbox 多选框'
}, {
value: 'input',
label: 'Input 输入框'
}, {
value: 'input-number',
label: 'InputNumber 计数器'
}, {
value: 'select',
label: 'Select 选择器'
}, {
value: 'cascader',
label: 'Cascader 级联选择器'
}, {
value: 'switch',
label: 'Switch 开关'
}, {
value: 'slider',
label: 'Slider 滑块'
}, {
value: 'time-picker',
label: 'TimePicker 时间选择器'
}, {
value: 'date-picker',
label: 'DatePicker 日期选择器'
}, {
value: 'datetime-picker',
label: 'DateTimePicker 日期时间选择器'
}, {
value: 'upload',
label: 'Upload 上传'
}, {
value: 'rate',
label: 'Rate 评分'
}, {
value: 'form',
label: 'Form 表单'
}]
}, {
value: 'data',
label: 'Data',
children: [{
value: 'table',
label: 'Table 表格'
}, {
value: 'tag',
label: 'Tag 标签'
}, {
value: 'progress',
label: 'Progress 进度条'
}, {
value: 'tree',
label: 'Tree 树形控件'
}, {
value: 'pagination',
label: 'Pagination 分页'
}, {
value: 'badge',
label: 'Badge 标记'
}]
}, {
value: 'notice',
label: 'Notice',
children: [{
value: 'alert',
label: 'Alert 警告'
}, {
value: 'loading',
label: 'Loading 加载'
}, {
value: 'message',
label: 'Message 消息提示'
}, {
value: 'message-box',
label: 'MessageBox 弹框'
}, {
value: 'notification',
label: 'Notification 通知'
}]
}, {
value: 'navigation',
label: 'Navigation',
children: [{
value: 'menu',
label: 'NavMenu 导航菜单'
}, {
value: 'tabs',
label: 'Tabs 标签页'
}, {
value: 'breadcrumb',
label: 'Breadcrumb 面包屑'
}, {
value: 'dropdown',
label: 'Dropdown 下拉菜单'
}, {
value: 'steps',
label: 'Steps 步骤条'
}]
}, {
value: 'others',
label: 'Others',
children: [{
value: 'dialog',
label: 'Dialog 对话框'
}, {
value: 'tooltip',
label: 'Tooltip 文字提示'
}, {
value: 'popover',
label: 'Popover 弹出框'
}, {
value: 'card',
label: 'Card 卡片'
}, {
value: 'carousel',
label: 'Carousel 走马灯'
}, {
value: 'collapse',
label: 'Collapse 折叠面板'
}]
}]
}, {
value: 'ziyuan',
label: '资源',
children: [{
value: 'axure',
label: 'Axure Components'
}, {
value: 'sketch',
label: 'Sketch Templates'
}, {
value: 'jiaohu',
label: '组件交互文档'
}]
}
],
tableData:[
{name:'测试',legalPerson:'AAAA'}
],
isSkeleton:false,
total:100,
pageSize:50,
pageNum:1,
// table列是否悬浮 // table列是否悬浮
tableColumnFixed: true, tableColumnFixed: true,
fbsvisib:false, fbsvisib:false,
...@@ -331,10 +147,47 @@ ...@@ -331,10 +147,47 @@
} }
}, },
created() { created() {
this.searchList()
}, },
methods:{ methods:{
handleCurrentChange(){ searchList(){
this.isSkeleton = true
let formdata = JSON.parse(JSON.stringify(this.formdata))
if(formdata.times != [] &&formdata.times.length>1){
formdata.unlimitedStartTime = formdata.times[0]
formdata.unlimitedEndTime = formdata.times[1]
}else{
formdata.unlimitedStartTime = ''
formdata.unlimitedEndTime = ''
}
delete formdata.times
getSupplierUnlimitedList(formdata).then(res=>{
this.isSkeleton = false
if(res.code == 200) {
this.total = res.total
this.tableData = res.rows
this.formdata.pageNum = res.currentPage
}else{
this.total = 0
this.tableData = []
this.formdata.pageNum = 1
}
})
},
clears(){
this.formdata={
unlimitedStartTime:'',
unlimitedEndTime:'',
times:[],
applyUnit:'',
pageSize:50,
pageNum:1,
}
this.searchList()
},
handleCurrentChange(val){
this.formdata.pageNum = val
this.searchList()
}, },
setHeaderRow() { setHeaderRow() {
return "owner-table-list-header"; return "owner-table-list-header";
......
...@@ -10,16 +10,17 @@ ...@@ -10,16 +10,17 @@
<el-form :model="formdata" label-width="155px" label-position="right" :inline="true" > <el-form :model="formdata" label-width="155px" label-position="right" :inline="true" >
<el-row> <el-row>
<el-form-item label="供应商名称"> <el-form-item label="供应商名称">
<el-input v-model="formdata.user" placeholder="请输入供应商名称"></el-input> <el-input v-model="formdata.supplierName" placeholder="请输入供应商名称" clearable></el-input>
</el-form-item> </el-form-item>
<el-form-item label="是否为局名义被诉案件"> <el-form-item label="是否为局名义被诉案件">
<el-select v-model="formdata.user" placeholder="请选择"> <el-select v-model="formdata.isGroupCase" placeholder="请选择" clearable>
<el-option label="是" value="shanghai"></el-option> <el-option label="是" value="是"></el-option>
<el-option label="否" value="否"></el-option>
</el-select> </el-select>
</el-form-item> </el-form-item>
<el-form-item label="限用/禁用时间"> <el-form-item label="限用/禁用时间">
<el-date-picker <el-date-picker
v-model="formdata.time" v-model="formdata.times" clearable
type="daterange" type="daterange"
value-format="yyyy-MM-dd" value-format="yyyy-MM-dd"
range-separator="至" range-separator="至"
...@@ -29,8 +30,8 @@ ...@@ -29,8 +30,8 @@
</el-form-item> </el-form-item>
</el-row> </el-row>
<el-form-item label=" "> <el-form-item label=" ">
<el-button type="primary" size="small">查询</el-button> <el-button type="primary" size="small" @click="searchList">查询</el-button>
<el-button size="small">重置</el-button> <el-button size="small" @click="clears">重置</el-button>
</el-form-item> </el-form-item>
</el-form> </el-form>
</div> </div>
...@@ -39,6 +40,11 @@ ...@@ -39,6 +40,11 @@
<div class="total-title"> <div class="total-title">
<div class="totals">{{total}}</div> <div class="totals">{{total}}</div>
</div> </div>
<div class="table-item-jf table-item-jf1 empty-table" v-if="total == 0 && !isSkeleton">
<img class="item-jf-img" src="@/assets/images/kong.png" alt="">
<div class="item-jf-titel">暂无相关数据</div>
<div class="item-jf-text">抱歉,暂无数据,试试更换搜索条件吧</div>
</div>
<skeleton v-if="isSkeleton"></skeleton> <skeleton v-if="isSkeleton"></skeleton>
<div class="table-item-jf table-item" v-if="!isSkeleton&&tableData.length>0"> <div class="table-item-jf table-item" v-if="!isSkeleton&&tableData.length>0">
...@@ -49,18 +55,22 @@ ...@@ -49,18 +55,22 @@
<el-table-column type="index" label="序号" :fixed="tableColumnFixed" width="60" :resizable="false"> <el-table-column type="index" label="序号" :fixed="tableColumnFixed" width="60" :resizable="false">
<template slot-scope="scope"> <template slot-scope="scope">
<span>{{(pageNum - 1) *pageSize + scope.$index + 1}}</span> <span>{{(formdata.pageNum - 1) *formdata.pageSize + scope.$index + 1}}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="单据编号" :fixed="tableColumnFixed" width="120" :resizable="false"> <el-table-column label="单据编号" :fixed="tableColumnFixed" width="120" :resizable="false">
<template slot-scope="scope">
{{scope.row.frecordno||"--"}}
</template>
</el-table-column> </el-table-column>
<el-table-column label="分供方名称" :fixed="tableColumnFixed" width="380" :resizable="false"> <el-table-column label="分供方名称" :fixed="tableColumnFixed" width="380" :resizable="false">
<template slot-scope="scope"> <template slot-scope="scope">
<div class="renling"> <div class="renling">
<div style="display:flex;align-items:center"> <div style="display:flex;align-items:center">
<router-link :to="`/enterprise/${encodeStr(scope.row.id)}?path=cooperationRecord`" tag="a" <router-link v-if="scope.row.supplierCid" :to="`/enterprise/${encodeStr(scope.row.supplierCid)}`" tag="a"
class="wordprimary" v-html="scope.row.name"></router-link> class="wordprimary" v-html="scope.row.fsuppliername"></router-link>
<span v-else v-html="scope.row.fsuppliername"></span>
</div> </div>
</div> </div>
...@@ -70,38 +80,38 @@ ...@@ -70,38 +80,38 @@
<el-table-column label="社会统一信用代码" min-width="150"> <el-table-column label="社会统一信用代码" min-width="150">
<template slot-scope="scope"> <template slot-scope="scope">
{{scope.row.legalPerson||"--"}} {{scope.row.funifiedsocialcreditcode||"--"}}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="限用情形" min-width="280" :resizable="false"> <el-table-column label="限用情形" min-width="280" :resizable="false">
<template slot-scope="scope"> <template slot-scope="scope">
{{scope.row.legalPerson||"--"}} {{scope.row.flimitsituation||"--"}}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="禁用情景" min-width="280" :resizable="false"> <el-table-column label="禁用情景" min-width="280" :resizable="false">
<template slot-scope="scope"> <template slot-scope="scope">
{{scope.row.legalPerson||"--"}} {{scope.row.fdisablesituation||"--"}}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="限用推送单位" min-width="120" :resizable="false"> <el-table-column label="限用推送单位" min-width="120" :resizable="false">
<template slot-scope="scope"> <template slot-scope="scope">
{{scope.row.legalPerson||"--"}} {{scope.row.fjobunitname||"--"}}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="限用/禁用" min-width="120" :resizable="false"> <el-table-column label="限用/禁用" min-width="120" :resizable="false">
<template slot-scope="scope"> <template slot-scope="scope">
{{scope.row.legalPerson||"--"}} {{scope.row.fstate||"--"}}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="限用/禁用开始日期" min-width="180" :resizable="false"> <el-table-column label="限用/禁用开始日期" min-width="180" :resizable="false">
<template slot-scope="scope"> <template slot-scope="scope">
{{scope.row.legalPerson||"--"}} {{scope.row.fts||"--"}}
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
</div> </div>
<div class="pagination clearfix" v-show="total>0"> <div class="pagination clearfix" v-show="total>0">
<el-pagination background :page-size="pageSize" :current-page.sync="pageNum" @current-change="handleCurrentChange" layout="prev, pager, next" <el-pagination background :page-size="formdata.pageSize" :current-page.sync="formdata.pageNum" @current-change="handleCurrentChange" layout="prev, pager, next"
:total="total"> :total="total">
</el-pagination> </el-pagination>
</div> </div>
...@@ -115,217 +125,25 @@ ...@@ -115,217 +125,25 @@
import "@/assets/styles/public.scss"; import "@/assets/styles/public.scss";
import "@/assets/styles/supplierlist.scss"; import "@/assets/styles/supplierlist.scss";
import skeleton from '@/views/project/projectList/component/skeleton'; import skeleton from '@/views/project/projectList/component/skeleton';
import {getSupplierLimitedList} from '@/api/supplier/supplier';
export default { export default {
name: 'disableList', name: 'disableList',
components:{skeleton}, components:{skeleton},
data(){ data(){
return{ return{
encodeStr, encodeStr,
formdata:{}, formdata:{
options: [ supplierName:'',
{ isGroupCase:'',
value: 'zhinan', limitedStartTime:'',
label: '指南', limitedEndTime:'',
children: [{ times:[],
value: 'shejiyuanze', pageSize:50,
label: '设计原则', pageNum:1,
children: [{ },
value: 'yizhi', tableData:[],
label: '一致' isSkeleton:true,
}, { total:0,
value: 'fankui',
label: '反馈'
}, {
value: 'xiaolv',
label: '效率'
}, {
value: 'kekong',
label: '可控'
}]
}, {
value: 'daohang',
label: '导航',
children: [{
value: 'cexiangdaohang',
label: '侧向导航'
}, {
value: 'dingbudaohang',
label: '顶部导航'
}]
}]
}, {
value: 'zujian',
label: '组件',
children: [{
value: 'basic',
label: 'Basic',
children: [{
value: 'layout',
label: 'Layout 布局'
}, {
value: 'color',
label: 'Color 色彩'
}, {
value: 'typography',
label: 'Typography 字体'
}, {
value: 'icon',
label: 'Icon 图标'
}, {
value: 'button',
label: 'Button 按钮'
}]
}, {
value: 'form',
label: 'Form',
children: [{
value: 'radio',
label: 'Radio 单选框'
}, {
value: 'checkbox',
label: 'Checkbox 多选框'
}, {
value: 'input',
label: 'Input 输入框'
}, {
value: 'input-number',
label: 'InputNumber 计数器'
}, {
value: 'select',
label: 'Select 选择器'
}, {
value: 'cascader',
label: 'Cascader 级联选择器'
}, {
value: 'switch',
label: 'Switch 开关'
}, {
value: 'slider',
label: 'Slider 滑块'
}, {
value: 'time-picker',
label: 'TimePicker 时间选择器'
}, {
value: 'date-picker',
label: 'DatePicker 日期选择器'
}, {
value: 'datetime-picker',
label: 'DateTimePicker 日期时间选择器'
}, {
value: 'upload',
label: 'Upload 上传'
}, {
value: 'rate',
label: 'Rate 评分'
}, {
value: 'form',
label: 'Form 表单'
}]
}, {
value: 'data',
label: 'Data',
children: [{
value: 'table',
label: 'Table 表格'
}, {
value: 'tag',
label: 'Tag 标签'
}, {
value: 'progress',
label: 'Progress 进度条'
}, {
value: 'tree',
label: 'Tree 树形控件'
}, {
value: 'pagination',
label: 'Pagination 分页'
}, {
value: 'badge',
label: 'Badge 标记'
}]
}, {
value: 'notice',
label: 'Notice',
children: [{
value: 'alert',
label: 'Alert 警告'
}, {
value: 'loading',
label: 'Loading 加载'
}, {
value: 'message',
label: 'Message 消息提示'
}, {
value: 'message-box',
label: 'MessageBox 弹框'
}, {
value: 'notification',
label: 'Notification 通知'
}]
}, {
value: 'navigation',
label: 'Navigation',
children: [{
value: 'menu',
label: 'NavMenu 导航菜单'
}, {
value: 'tabs',
label: 'Tabs 标签页'
}, {
value: 'breadcrumb',
label: 'Breadcrumb 面包屑'
}, {
value: 'dropdown',
label: 'Dropdown 下拉菜单'
}, {
value: 'steps',
label: 'Steps 步骤条'
}]
}, {
value: 'others',
label: 'Others',
children: [{
value: 'dialog',
label: 'Dialog 对话框'
}, {
value: 'tooltip',
label: 'Tooltip 文字提示'
}, {
value: 'popover',
label: 'Popover 弹出框'
}, {
value: 'card',
label: 'Card 卡片'
}, {
value: 'carousel',
label: 'Carousel 走马灯'
}, {
value: 'collapse',
label: 'Collapse 折叠面板'
}]
}]
}, {
value: 'ziyuan',
label: '资源',
children: [{
value: 'axure',
label: 'Axure Components'
}, {
value: 'sketch',
label: 'Sketch Templates'
}, {
value: 'jiaohu',
label: '组件交互文档'
}]
}
],
tableData:[
{name:'测试',legalPerson:'AAAA'}
],
isSkeleton:false,
total:100,
pageSize:50,
pageNum:1,
// table列是否悬浮 // table列是否悬浮
tableColumnFixed: true, tableColumnFixed: true,
fbsvisib:false, fbsvisib:false,
...@@ -333,10 +151,48 @@ ...@@ -333,10 +151,48 @@
} }
}, },
created() { created() {
this.searchList()
}, },
methods:{ methods:{
handleCurrentChange(){ searchList(){
this.isSkeleton = true
let formdata = JSON.parse(JSON.stringify(this.formdata))
if(formdata.times != [] &&formdata.times.length>1){
formdata.limitedStartTime = formdata.times[0]
formdata.limitedEndTime = formdata.times[1]
}else{
formdata.limitedStartTime = ''
formdata.limitedEndTime = ''
}
delete formdata.times
getSupplierLimitedList(formdata).then(res=>{
this.isSkeleton = false
if(res.code == 200) {
this.total = res.total
this.tableData = res.rows
this.formdata.pageNum = res.currentPage
}else{
this.total = 0
this.tableData = []
this.formdata.pageNum = 1
}
})
},
clears(){
this.formdata={
supplierName:'',
isGroupCase:'',
limitedStartTime:'',
limitedEndTime:'',
times:[],
pageSize:50,
pageNum:1,
}
this.searchList()
},
handleCurrentChange(val){
this.formdata.pageNum = val
this.searchList()
}, },
setHeaderRow() { setHeaderRow() {
return "owner-table-list-header"; return "owner-table-list-header";
......
...@@ -70,7 +70,7 @@ ...@@ -70,7 +70,7 @@
</p> </p>
<p> <p>
<label class="label">公司性质</label> <label class="label">公司性质</label>
<span></span> <span>{{custmerInfo.customerProperty || '--'}}</span>
<label class="label">资质等级</label> <label class="label">资质等级</label>
<span>{{custmerInfo.credential || '--'}}</span> <span>{{custmerInfo.credential || '--'}}</span>
</p> </p>
......
...@@ -106,9 +106,19 @@ ...@@ -106,9 +106,19 @@
<template slot-scope="scope"> <template slot-scope="scope">
<div class="renling"> <div class="renling">
<div style="display:flex;align-items:center"> <div style="display:flex;align-items:center">
<router-link v-if="scope.row.companyId" :to="`/enterprise/${encodeStr(scope.row.companyId)}?path=cooperationRecord&companyName=${scope.row.customerName}`" tag="a" <el-tooltip placement="top" v-if="scope.row.customerText.length>20">
class="wordprimary" v-html="scope.row.customerName"></router-link> <div slot="content">{{scope.row.customerText}}</div>
<span v-else v-html="scope.row.customerName"></span> <div class="renling">
<router-link v-if="scope.row.companyId" :to="`/enterprise/${encodeStr(scope.row.companyId)}?path=cooperationRecord&companyName=${scope.row.customerName}`" tag="a"
class="wordprimary" v-html="scope.row.customerName"></router-link>
<span v-else v-html="scope.row.customerName"></span>
</div>
</el-tooltip>
<div class="renling" v-else>
<router-link v-if="scope.row.companyId" :to="`/enterprise/${encodeStr(scope.row.companyId)}?path=cooperationRecord&companyName=${scope.row.customerName}`" tag="a"
class="wordprimary" v-html="scope.row.customerName"></router-link>
<span v-else v-html="scope.row.customerName"></span>
</div>
</div> </div>
</div> </div>
...@@ -138,7 +148,15 @@ ...@@ -138,7 +148,15 @@
</el-table-column> </el-table-column>
<el-table-column label="专业类别" min-width="85" :resizable="false"> <el-table-column label="专业类别" min-width="85" :resizable="false">
<template slot-scope="scope"> <template slot-scope="scope">
{{scope.row.groupSpecialty||"--"}} <el-tooltip placement="top" v-if="scope.row.groupSpecialty.length>35">
<div slot="content">{{scope.row.groupSpecialty}}</div>
<span class="ellipsis">
{{scope.row.groupSpecialty||"--"}}
</span>
</el-tooltip>
<span class="ellipsis" v-else>
{{scope.row.groupSpecialty||"--"}}
</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="法人代表" min-width="85" :resizable="false"> <el-table-column label="法人代表" min-width="85" :resizable="false">
...@@ -158,7 +176,15 @@ ...@@ -158,7 +176,15 @@
</el-table-column> </el-table-column>
<el-table-column label="施工承包范围" min-width="120" :resizable="false"> <el-table-column label="施工承包范围" min-width="120" :resizable="false">
<template slot-scope="scope"> <template slot-scope="scope">
{{scope.row.constructJobScope||"--"}} <el-tooltip placement="top-start" v-if="scope.row.constructJobScope.length>35">
<div slot="content">{{scope.row.constructJobScope}}</div>
<div class="ellipsis">
<span>{{scope.row.constructJobScope||"--"}}</span>
</div>
</el-tooltip>
<div class="ellipsis" v-else>
<span>{{scope.row.constructJobScope||"--"}}</span>
</div>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="资质等级" min-width="85" :resizable="false"> <el-table-column label="资质等级" min-width="85" :resizable="false">
...@@ -181,7 +207,7 @@ ...@@ -181,7 +207,7 @@
{{scope.row.contactPhone||"--"}} {{scope.row.contactPhone||"--"}}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="准入时间" min-width="120" :resizable="false"> <el-table-column label="准入时间" min-width="180" :resizable="false">
<template slot-scope="scope"> <template slot-scope="scope">
{{scope.row.approveDate2||"--"}} {{scope.row.approveDate2||"--"}}
</template> </template>
...@@ -419,6 +445,9 @@ ...@@ -419,6 +445,9 @@
this.isSkeleton = false this.isSkeleton = false
this.tableData = res.rows this.tableData = res.rows
this.total = res.total this.total = res.total
this.tableData.forEach(item=>{
item.customerText = item.customerName.replace(/<\/?[^>]+(style=('|")[^'"]*)?>/gi, '')
})
}) })
}, },
handleCurrentChange(val){ handleCurrentChange(val){
......
...@@ -111,9 +111,19 @@ ...@@ -111,9 +111,19 @@
<template slot-scope="scope"> <template slot-scope="scope">
<div class="renling"> <div class="renling">
<div style="display:flex;align-items:center"> <div style="display:flex;align-items:center">
<router-link v-if="scope.row.companyId" :to="`/enterprise/${encodeStr(scope.row.companyId)}?path=cooperationRecord&companyName=${scope.row.customerName}`" tag="a" <el-tooltip placement="top" v-if="scope.row.customerText.length>20">
class="wordprimary" v-html="scope.row.customerName"></router-link> <div slot="content">{{scope.row.customerText}}</div>
<span v-else v-html="scope.row.customerName"></span> <div class="renling">
<router-link v-if="scope.row.companyId" :to="`/enterprise/${encodeStr(scope.row.companyId)}?path=cooperationRecord&companyName=${scope.row.customerName}`" tag="a"
class="wordprimary" v-html="scope.row.customerName"></router-link>
<span v-else v-html="scope.row.customerName"></span>
</div>
</el-tooltip>
<div class="renling" v-else>
<router-link v-if="scope.row.companyId" :to="`/enterprise/${encodeStr(scope.row.companyId)}?path=cooperationRecord&companyName=${scope.row.customerName}`" tag="a"
class="wordprimary" v-html="scope.row.customerName"></router-link>
<span v-else v-html="scope.row.customerName"></span>
</div>
</div> </div>
</div> </div>
...@@ -216,7 +226,7 @@ ...@@ -216,7 +226,7 @@
{{scope.row.serviceTeamSpeciality||"--"}} {{scope.row.serviceTeamSpeciality||"--"}}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="准入时间" min-width="120" :resizable="false"> <el-table-column label="准入时间" min-width="180" :resizable="false">
<template slot-scope="scope"> <template slot-scope="scope">
{{scope.row.approveDate2||"--"}} {{scope.row.approveDate2||"--"}}
</template> </template>
...@@ -456,6 +466,9 @@ ...@@ -456,6 +466,9 @@
this.isSkeleton = false this.isSkeleton = false
this.tableData = res.rows this.tableData = res.rows
this.total = res.total this.total = res.total
this.tableData.forEach(item=>{
item.customerText = item.customerName.replace(/<\/?[^>]+(style=('|")[^'"]*)?>/gi, '')
})
}) })
}, },
handleCurrentChange(val){ handleCurrentChange(val){
......
...@@ -96,10 +96,18 @@ ...@@ -96,10 +96,18 @@
<el-table-column label="供应商编号" prop="customerCode" :fixed="tableColumnFixed" width="120" :resizable="false"> <el-table-column label="供应商编号" prop="customerCode" :fixed="tableColumnFixed" width="120" :resizable="false">
</el-table-column> </el-table-column>
<el-table-column label="供应商名称" :fixed="tableColumnFixed" width="380" :resizable="false"> <el-table-column label="供应商名称" :fixed="tableColumnFixed" width="305" :resizable="false">
<template slot-scope="scope"> <template slot-scope="scope">
<div class="renling"> <div style="display:flex;align-items:center">
<div style="display:flex;align-items:center"> <el-tooltip placement="top" v-if="scope.row.customerText.length>20">
<div slot="content">{{scope.row.customerText}}</div>
<div class="renling">
<router-link v-if="scope.row.companyId" :to="`/enterprise/${encodeStr(scope.row.companyId)}?path=cooperationRecord&companyName=${scope.row.customerName}`" tag="a"
class="wordprimary" v-html="scope.row.customerName"></router-link>
<span v-else v-html="scope.row.customerName"></span>
</div>
</el-tooltip>
<div class="renling" v-else>
<router-link v-if="scope.row.companyId" :to="`/enterprise/${encodeStr(scope.row.companyId)}?path=cooperationRecord&companyName=${scope.row.customerName}`" tag="a" <router-link v-if="scope.row.companyId" :to="`/enterprise/${encodeStr(scope.row.companyId)}?path=cooperationRecord&companyName=${scope.row.customerName}`" tag="a"
class="wordprimary" v-html="scope.row.customerName"></router-link> class="wordprimary" v-html="scope.row.customerName"></router-link>
<span v-else v-html="scope.row.customerName"></span> <span v-else v-html="scope.row.customerName"></span>
...@@ -135,9 +143,17 @@ ...@@ -135,9 +143,17 @@
{{scope.row.customerClass||"--"}} {{scope.row.customerClass||"--"}}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="专业类别" min-width="185" :resizable="false"> <el-table-column label="专业类别" min-width="520" :resizable="false">
<template slot-scope="scope"> <template slot-scope="scope">
{{scope.row.groupSpecialty||"--"}} <el-tooltip placement="top" v-if="scope.row.groupSpecialty.length>35">
<div slot="content">{{scope.row.groupSpecialty}}</div>
<span class="ellipsis">
{{scope.row.groupSpecialty||"--"}}
</span>
</el-tooltip>
<span class="ellipsis" v-else>
{{scope.row.groupSpecialty||"--"}}
</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="纳税人身份" min-width="120" :resizable="false"> <el-table-column label="纳税人身份" min-width="120" :resizable="false">
...@@ -183,9 +199,17 @@ ...@@ -183,9 +199,17 @@
{{scope.row.serviceTeamSpeciality||"--"}} {{scope.row.serviceTeamSpeciality||"--"}}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="施工承包范围" min-width="200" :resizable="false"> <el-table-column label="施工承包范围" min-width="520" :resizable="false">
<template slot-scope="scope"> <template slot-scope="scope">
{{scope.row.constructJobScope||"--"}} <el-tooltip placement="top-start" v-if="scope.row.constructJobScope.length>35">
<div slot="content">{{scope.row.constructJobScope}}</div>
<div class="ellipsis">
<span>{{scope.row.constructJobScope||"--"}}</span>
</div>
</el-tooltip>
<div class="ellipsis" v-else>
<span>{{scope.row.constructJobScope||"--"}}</span>
</div>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="资质等级" min-width="120" :resizable="false"> <el-table-column label="资质等级" min-width="120" :resizable="false">
...@@ -208,7 +232,7 @@ ...@@ -208,7 +232,7 @@
{{scope.row.contactPhone||"--"}} {{scope.row.contactPhone||"--"}}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="准入时间" min-width="120" :resizable="false"> <el-table-column label="准入时间" min-width="180" :resizable="false">
<template slot-scope="scope"> <template slot-scope="scope">
{{scope.row.approveDate2||"--"}} {{scope.row.approveDate2||"--"}}
</template> </template>
...@@ -454,6 +478,9 @@ ...@@ -454,6 +478,9 @@
this.tableData = res.rows this.tableData = res.rows
this.total = res.total this.total = res.total
this.isSkeleton = false this.isSkeleton = false
this.tableData.forEach(item=>{
item.customerText = item.customerName.replace(/<\/?[^>]+(style=('|")[^'"]*)?>/gi, '')
})
}) })
}, },
handleCurrentChange(val){ handleCurrentChange(val){
......
...@@ -100,7 +100,15 @@ ...@@ -100,7 +100,15 @@
<el-table-column label="供应商名称" :fixed="tableColumnFixed" width="380" :resizable="false"> <el-table-column label="供应商名称" :fixed="tableColumnFixed" width="380" :resizable="false">
<template slot-scope="scope"> <template slot-scope="scope">
<div class="renling"> <div class="renling">
<div style="display:flex;align-items:center"> <el-tooltip placement="top" v-if="scope.row.customerText.length>20">
<div slot="content">{{scope.row.customerText}}</div>
<div class="renling">
<router-link v-if="scope.row.companyId" :to="`/enterprise/${encodeStr(scope.row.companyId)}?path=cooperationRecord&companyName=${scope.row.customerName}`" tag="a"
class="wordprimary" v-html="scope.row.customerName"></router-link>
<span v-else v-html="scope.row.customerName"></span>
</div>
</el-tooltip>
<div class="renling" v-else>
<router-link v-if="scope.row.companyId" :to="`/enterprise/${encodeStr(scope.row.companyId)}?path=cooperationRecord&companyName=${scope.row.customerName}`" tag="a" <router-link v-if="scope.row.companyId" :to="`/enterprise/${encodeStr(scope.row.companyId)}?path=cooperationRecord&companyName=${scope.row.customerName}`" tag="a"
class="wordprimary" v-html="scope.row.customerName"></router-link> class="wordprimary" v-html="scope.row.customerName"></router-link>
<span v-else v-html="scope.row.customerName"></span> <span v-else v-html="scope.row.customerName"></span>
...@@ -133,7 +141,15 @@ ...@@ -133,7 +141,15 @@
</el-table-column> </el-table-column>
<el-table-column label="专业类别" min-width="85" :resizable="false"> <el-table-column label="专业类别" min-width="85" :resizable="false">
<template slot-scope="scope"> <template slot-scope="scope">
{{scope.row.groupSpecialty||"--"}} <el-tooltip placement="top" v-if="scope.row.groupSpecialty.length>35">
<div slot="content">{{scope.row.groupSpecialty}}</div>
<span class="ellipsis">
{{scope.row.groupSpecialty||"--"}}
</span>
</el-tooltip>
<span class="ellipsis" v-else>
{{scope.row.groupSpecialty||"--"}}
</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="法人代表" min-width="85" :resizable="false"> <el-table-column label="法人代表" min-width="85" :resizable="false">
...@@ -153,7 +169,15 @@ ...@@ -153,7 +169,15 @@
</el-table-column> </el-table-column>
<el-table-column label="施工承包范围" min-width="120" :resizable="false"> <el-table-column label="施工承包范围" min-width="120" :resizable="false">
<template slot-scope="scope"> <template slot-scope="scope">
{{scope.row.constructJobScope||"--"}} <el-tooltip placement="top-start" v-if="scope.row.constructJobScope.length>35">
<div slot="content">{{scope.row.constructJobScope}}</div>
<div class="ellipsis">
<span>{{scope.row.constructJobScope||"--"}}</span>
</div>
</el-tooltip>
<div class="ellipsis" v-else>
<span>{{scope.row.constructJobScope||"--"}}</span>
</div>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="资质等级" min-width="85" :resizable="false"> <el-table-column label="资质等级" min-width="85" :resizable="false">
...@@ -176,7 +200,7 @@ ...@@ -176,7 +200,7 @@
{{scope.row.contactPhone||"--"}} {{scope.row.contactPhone||"--"}}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="准入时间" min-width="120" :resizable="false"> <el-table-column label="准入时间" min-width="180" :resizable="false">
<template slot-scope="scope"> <template slot-scope="scope">
{{scope.row.approveDate2||"--"}} {{scope.row.approveDate2||"--"}}
</template> </template>
...@@ -415,6 +439,9 @@ ...@@ -415,6 +439,9 @@
this.isSkeleton = false this.isSkeleton = false
this.tableData = res.rows this.tableData = res.rows
this.total = res.total this.total = res.total
this.tableData.forEach(item=>{
item.customerText = item.customerName.replace(/<\/?[^>]+(style=('|")[^'"]*)?>/gi, '')
})
}) })
}, },
handleCurrentChange(val){ handleCurrentChange(val){
......
...@@ -101,9 +101,19 @@ ...@@ -101,9 +101,19 @@
<template slot-scope="scope"> <template slot-scope="scope">
<div class="renling"> <div class="renling">
<div style="display:flex;align-items:center"> <div style="display:flex;align-items:center">
<router-link v-if="scope.row.companyId" :to="`/enterprise/${encodeStr(scope.row.companyId)}?path=cooperationRecord&companyName=${scope.row.customerName}`" tag="a" <el-tooltip placement="top" v-if="scope.row.customerText.length>20">
class="wordprimary" v-html="scope.row.customerName"></router-link> <div slot="content">{{scope.row.customerText}}</div>
<span v-else v-html="scope.row.customerName"></span> <div class="renling">
<router-link v-if="scope.row.companyId" :to="`/enterprise/${encodeStr(scope.row.companyId)}?path=cooperationRecord&companyName=${scope.row.customerName}`" tag="a"
class="wordprimary" v-html="scope.row.customerName"></router-link>
<span v-else v-html="scope.row.customerName"></span>
</div>
</el-tooltip>
<div class="renling" v-else>
<router-link v-if="scope.row.companyId" :to="`/enterprise/${encodeStr(scope.row.companyId)}?path=cooperationRecord&companyName=${scope.row.customerName}`" tag="a"
class="wordprimary" v-html="scope.row.customerName"></router-link>
<span v-else v-html="scope.row.customerName"></span>
</div>
</div> </div>
</div> </div>
...@@ -133,7 +143,15 @@ ...@@ -133,7 +143,15 @@
</el-table-column> </el-table-column>
<el-table-column label="专业类别" min-width="85" :resizable="false"> <el-table-column label="专业类别" min-width="85" :resizable="false">
<template slot-scope="scope"> <template slot-scope="scope">
{{scope.row.groupSpecialty||"--"}} <el-tooltip placement="top" v-if="scope.row.groupSpecialty.length>35">
<div slot="content">{{scope.row.groupSpecialty}}</div>
<span class="ellipsis">
{{scope.row.groupSpecialty||"--"}}
</span>
</el-tooltip>
<span class="ellipsis" v-else>
{{scope.row.groupSpecialty||"--"}}
</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="法人代表" min-width="85" :resizable="false"> <el-table-column label="法人代表" min-width="85" :resizable="false">
...@@ -171,7 +189,7 @@ ...@@ -171,7 +189,7 @@
{{scope.row.contactPhone||"--"}} {{scope.row.contactPhone||"--"}}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="准入时间" min-width="120" :resizable="false"> <el-table-column label="准入时间" min-width="180" :resizable="false">
<template slot-scope="scope"> <template slot-scope="scope">
{{scope.row.approveDate2||"--"}} {{scope.row.approveDate2||"--"}}
</template> </template>
...@@ -409,6 +427,9 @@ ...@@ -409,6 +427,9 @@
this.isSkeleton = false this.isSkeleton = false
this.tableData = res.rows this.tableData = res.rows
this.total = res.total this.total = res.total
this.tableData.forEach(item=>{
item.customerText = item.customerName.replace(/<\/?[^>]+(style=('|")[^'"]*)?>/gi, '')
})
}) })
}, },
handleCurrentChange(val){ handleCurrentChange(val){
......
...@@ -101,9 +101,19 @@ ...@@ -101,9 +101,19 @@
<template slot-scope="scope"> <template slot-scope="scope">
<div class="renling"> <div class="renling">
<div style="display:flex;align-items:center"> <div style="display:flex;align-items:center">
<router-link v-if="scope.row.companyId" :to="`/enterprise/${encodeStr(scope.row.companyId)}?path=cooperationRecord&companyName=${scope.row.customerName}`" tag="a" <el-tooltip placement="top" v-if="scope.row.customerText.length>20">
class="wordprimary" v-html="scope.row.customerName"></router-link> <div slot="content">{{scope.row.customerText}}</div>
<span v-else v-html="scope.row.customerName"></span> <div class="renling">
<router-link v-if="scope.row.companyId" :to="`/enterprise/${encodeStr(scope.row.companyId)}?path=cooperationRecord&companyName=${scope.row.customerName}`" tag="a"
class="wordprimary" v-html="scope.row.customerName"></router-link>
<span v-else v-html="scope.row.customerName"></span>
</div>
</el-tooltip>
<div class="renling" v-else>
<router-link v-if="scope.row.companyId" :to="`/enterprise/${encodeStr(scope.row.companyId)}?path=cooperationRecord&companyName=${scope.row.customerName}`" tag="a"
class="wordprimary" v-html="scope.row.customerName"></router-link>
<span v-else v-html="scope.row.customerName"></span>
</div>
</div> </div>
</div> </div>
...@@ -171,7 +181,7 @@ ...@@ -171,7 +181,7 @@
{{scope.row.contactPhone||"--"}} {{scope.row.contactPhone||"--"}}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="准入时间" min-width="120" :resizable="false"> <el-table-column label="准入时间" min-width="180" :resizable="false">
<template slot-scope="scope"> <template slot-scope="scope">
{{scope.row.approveDate2||"--"}} {{scope.row.approveDate2||"--"}}
</template> </template>
...@@ -409,6 +419,9 @@ ...@@ -409,6 +419,9 @@
this.isSkeleton = false this.isSkeleton = false
this.tableData = res.rows this.tableData = res.rows
this.total = res.total this.total = res.total
this.tableData.forEach(item=>{
item.customerText = item.customerName.replace(/<\/?[^>]+(style=('|")[^'"]*)?>/gi, '')
})
}) })
}, },
handleCurrentChange(val){ handleCurrentChange(val){
......
...@@ -18,8 +18,6 @@ ...@@ -18,8 +18,6 @@
<el-table-column <el-table-column
label="操作" label="操作"
align="left" align="left"
class-name="small-padding fixed-width"
fixed="right"
> >
<template slot-scope="scope"> <template slot-scope="scope">
<span v-if="scope.row.status===0" style="cursor: pointer;margin-right: 16px;color: #0081FF;" @click="handleClick(scope.row,1)">停用</span> <span v-if="scope.row.status===0" style="cursor: pointer;margin-right: 16px;color: #0081FF;" @click="handleClick(scope.row,1)">停用</span>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment