From 96da0e2be9787bc380a26ab998274d81885048a8 Mon Sep 17 00:00:00 2001 From: mhsnet Date: Tue, 23 May 2023 14:23:39 +0800 Subject: [PATCH] =?UTF-8?q?=E5=90=8E=E5=8F=B0=E6=B7=BB=E5=8A=A0=E6=96=B0?= =?UTF-8?q?=E9=97=BB=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../yxgw/controller/YxgwNewsController.java | 178 ++++++++++++++++ .../modules/demo/yxgw/entity/YxgwNews.java | 84 ++++++++ .../demo/yxgw/mapper/YxgwNewsMapper.java | 17 ++ .../demo/yxgw/mapper/xml/YxgwNewsMapper.xml | 5 + .../demo/yxgw/service/IYxgwNewsService.java | 14 ++ .../service/impl/YxgwNewsServiceImpl.java | 19 ++ .../modules/demo/yxgw/vue3/YxgwCase.data.ts | 7 +- .../demo/yxgw/vue3/YxgwCase_menu_insert.sql | 14 +- .../modules/demo/yxgw/vue3/YxgwNews.api.ts | 64 ++++++ .../modules/demo/yxgw/vue3/YxgwNews.data.ts | 98 +++++++++ .../modules/demo/yxgw/vue3/YxgwNewsList.vue | 191 ++++++++++++++++++ .../demo/yxgw/vue3/YxgwNews_menu_insert.sql | 26 +++ .../demo/yxgw/vue3/YxgwSolution.data.ts | 11 +- .../yxgw/vue3/YxgwSolution_menu_insert.sql | 14 +- .../yxgw/vue3/components/YxgwNewsForm.vue | 70 +++++++ .../yxgw/vue3/components/YxgwNewsModal.vue | 66 ++++++ .../demo/yxgw/mapper/xml/YxgwNewsMapper.xml | 5 + linusboot-vue3/src/views/yxgw/YxgwNews.api.ts | 64 ++++++ .../src/views/yxgw/YxgwNews.data.ts | 98 +++++++++ .../src/views/yxgw/YxgwNewsList.vue | 191 ++++++++++++++++++ .../src/views/yxgw/YxgwNews_menu_insert.sql | 26 +++ .../views/yxgw/components/YxgwNewsForm.vue | 70 +++++++ .../views/yxgw/components/YxgwNewsModal.vue | 66 ++++++ 23 files changed, 1380 insertions(+), 18 deletions(-) create mode 100644 linus-boot/linus-module-demo/src/main/java/org/jeecg/modules/demo/yxgw/controller/YxgwNewsController.java create mode 100644 linus-boot/linus-module-demo/src/main/java/org/jeecg/modules/demo/yxgw/entity/YxgwNews.java create mode 100644 linus-boot/linus-module-demo/src/main/java/org/jeecg/modules/demo/yxgw/mapper/YxgwNewsMapper.java create mode 100644 linus-boot/linus-module-demo/src/main/java/org/jeecg/modules/demo/yxgw/mapper/xml/YxgwNewsMapper.xml create mode 100644 linus-boot/linus-module-demo/src/main/java/org/jeecg/modules/demo/yxgw/service/IYxgwNewsService.java create mode 100644 linus-boot/linus-module-demo/src/main/java/org/jeecg/modules/demo/yxgw/service/impl/YxgwNewsServiceImpl.java create mode 100644 linus-boot/linus-module-demo/src/main/java/org/jeecg/modules/demo/yxgw/vue3/YxgwNews.api.ts create mode 100644 linus-boot/linus-module-demo/src/main/java/org/jeecg/modules/demo/yxgw/vue3/YxgwNews.data.ts create mode 100644 linus-boot/linus-module-demo/src/main/java/org/jeecg/modules/demo/yxgw/vue3/YxgwNewsList.vue create mode 100644 linus-boot/linus-module-demo/src/main/java/org/jeecg/modules/demo/yxgw/vue3/YxgwNews_menu_insert.sql create mode 100644 linus-boot/linus-module-demo/src/main/java/org/jeecg/modules/demo/yxgw/vue3/components/YxgwNewsForm.vue create mode 100644 linus-boot/linus-module-demo/src/main/java/org/jeecg/modules/demo/yxgw/vue3/components/YxgwNewsModal.vue create mode 100644 linus-boot/linus-module-demo/target/classes/org/jeecg/modules/demo/yxgw/mapper/xml/YxgwNewsMapper.xml create mode 100644 linusboot-vue3/src/views/yxgw/YxgwNews.api.ts create mode 100644 linusboot-vue3/src/views/yxgw/YxgwNews.data.ts create mode 100644 linusboot-vue3/src/views/yxgw/YxgwNewsList.vue create mode 100644 linusboot-vue3/src/views/yxgw/YxgwNews_menu_insert.sql create mode 100644 linusboot-vue3/src/views/yxgw/components/YxgwNewsForm.vue create mode 100644 linusboot-vue3/src/views/yxgw/components/YxgwNewsModal.vue diff --git a/linus-boot/linus-module-demo/src/main/java/org/jeecg/modules/demo/yxgw/controller/YxgwNewsController.java b/linus-boot/linus-module-demo/src/main/java/org/jeecg/modules/demo/yxgw/controller/YxgwNewsController.java new file mode 100644 index 0000000..a792aae --- /dev/null +++ b/linus-boot/linus-module-demo/src/main/java/org/jeecg/modules/demo/yxgw/controller/YxgwNewsController.java @@ -0,0 +1,178 @@ +package org.jeecg.modules.demo.yxgw.controller; + +import java.util.Arrays; +import java.util.List; +import java.util.Map; +import java.util.stream.Collectors; +import java.io.IOException; +import java.io.UnsupportedEncodingException; +import java.net.URLDecoder; +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; +import org.jeecg.common.api.vo.Result; +import org.jeecg.common.system.query.QueryGenerator; +import org.jeecg.common.util.oConvertUtils; +import org.jeecg.modules.demo.yxgw.entity.YxgwNews; +import org.jeecg.modules.demo.yxgw.service.IYxgwNewsService; + +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; +import com.baomidou.mybatisplus.core.metadata.IPage; +import com.baomidou.mybatisplus.extension.plugins.pagination.Page; +import lombok.extern.slf4j.Slf4j; + +import org.jeecgframework.poi.excel.ExcelImportUtil; +import org.jeecgframework.poi.excel.def.NormalExcelConstants; +import org.jeecgframework.poi.excel.entity.ExportParams; +import org.jeecgframework.poi.excel.entity.ImportParams; +import org.jeecgframework.poi.excel.view.JeecgEntityExcelView; +import org.jeecg.common.system.base.controller.JeecgController; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.web.bind.annotation.*; +import org.springframework.web.multipart.MultipartFile; +import org.springframework.web.multipart.MultipartHttpServletRequest; +import org.springframework.web.servlet.ModelAndView; +import com.alibaba.fastjson.JSON; +import io.swagger.annotations.Api; +import io.swagger.annotations.ApiOperation; +import org.jeecg.common.aspect.annotation.AutoLog; +import org.apache.shiro.authz.annotation.RequiresPermissions; + + /** + * @Description: 资讯动态 + * @Author: jeecg-boot + * @Date: 2023-05-23 + * @Version: V1.0 + */ +@Api(tags="资讯动态") +@RestController +@RequestMapping("/yxgw/yxgwNews") +@Slf4j +public class YxgwNewsController extends JeecgController { + @Autowired + private IYxgwNewsService yxgwNewsService; + + /** + * 分页列表查询 + * + * @param yxgwNews + * @param pageNo + * @param pageSize + * @param req + * @return + */ + //@AutoLog(value = "资讯动态-分页列表查询") + @ApiOperation(value="资讯动态-分页列表查询", notes="资讯动态-分页列表查询") + @GetMapping(value = "/list") + public Result> queryPageList(YxgwNews yxgwNews, + @RequestParam(name="pageNo", defaultValue="1") Integer pageNo, + @RequestParam(name="pageSize", defaultValue="10") Integer pageSize, + HttpServletRequest req) { + QueryWrapper queryWrapper = QueryGenerator.initQueryWrapper(yxgwNews, req.getParameterMap()); + Page page = new Page(pageNo, pageSize); + IPage pageList = yxgwNewsService.page(page, queryWrapper); + return Result.OK(pageList); + } + + /** + * 添加 + * + * @param yxgwNews + * @return + */ + @AutoLog(value = "资讯动态-添加") + @ApiOperation(value="资讯动态-添加", notes="资讯动态-添加") + @RequiresPermissions("yxgw:yxgw_news:add") + @PostMapping(value = "/add") + public Result add(@RequestBody YxgwNews yxgwNews) { + yxgwNewsService.save(yxgwNews); + return Result.OK("添加成功!"); + } + + /** + * 编辑 + * + * @param yxgwNews + * @return + */ + @AutoLog(value = "资讯动态-编辑") + @ApiOperation(value="资讯动态-编辑", notes="资讯动态-编辑") + @RequiresPermissions("yxgw:yxgw_news:edit") + @RequestMapping(value = "/edit", method = {RequestMethod.PUT,RequestMethod.POST}) + public Result edit(@RequestBody YxgwNews yxgwNews) { + yxgwNewsService.updateById(yxgwNews); + return Result.OK("编辑成功!"); + } + + /** + * 通过id删除 + * + * @param id + * @return + */ + @AutoLog(value = "资讯动态-通过id删除") + @ApiOperation(value="资讯动态-通过id删除", notes="资讯动态-通过id删除") + @RequiresPermissions("yxgw:yxgw_news:delete") + @DeleteMapping(value = "/delete") + public Result delete(@RequestParam(name="id",required=true) String id) { + yxgwNewsService.removeById(id); + return Result.OK("删除成功!"); + } + + /** + * 批量删除 + * + * @param ids + * @return + */ + @AutoLog(value = "资讯动态-批量删除") + @ApiOperation(value="资讯动态-批量删除", notes="资讯动态-批量删除") + @RequiresPermissions("yxgw:yxgw_news:deleteBatch") + @DeleteMapping(value = "/deleteBatch") + public Result deleteBatch(@RequestParam(name="ids",required=true) String ids) { + this.yxgwNewsService.removeByIds(Arrays.asList(ids.split(","))); + return Result.OK("批量删除成功!"); + } + + /** + * 通过id查询 + * + * @param id + * @return + */ + //@AutoLog(value = "资讯动态-通过id查询") + @ApiOperation(value="资讯动态-通过id查询", notes="资讯动态-通过id查询") + @GetMapping(value = "/queryById") + public Result queryById(@RequestParam(name="id",required=true) String id) { + YxgwNews yxgwNews = yxgwNewsService.getById(id); + if(yxgwNews==null) { + return Result.error("未找到对应数据"); + } + return Result.OK(yxgwNews); + } + + /** + * 导出excel + * + * @param request + * @param yxgwNews + */ + @RequiresPermissions("yxgw:yxgw_news:exportXls") + @RequestMapping(value = "/exportXls") + public ModelAndView exportXls(HttpServletRequest request, YxgwNews yxgwNews) { + return super.exportXls(request, yxgwNews, YxgwNews.class, "资讯动态"); + } + + /** + * 通过excel导入数据 + * + * @param request + * @param response + * @return + */ + @RequiresPermissions("yxgw:yxgw_news:importExcel") + @RequestMapping(value = "/importExcel", method = RequestMethod.POST) + public Result importExcel(HttpServletRequest request, HttpServletResponse response) { + return super.importExcel(request, response, YxgwNews.class); + } + +} diff --git a/linus-boot/linus-module-demo/src/main/java/org/jeecg/modules/demo/yxgw/entity/YxgwNews.java b/linus-boot/linus-module-demo/src/main/java/org/jeecg/modules/demo/yxgw/entity/YxgwNews.java new file mode 100644 index 0000000..c662409 --- /dev/null +++ b/linus-boot/linus-module-demo/src/main/java/org/jeecg/modules/demo/yxgw/entity/YxgwNews.java @@ -0,0 +1,84 @@ +package org.jeecg.modules.demo.yxgw.entity; + +import java.io.Serializable; +import java.io.UnsupportedEncodingException; +import java.util.Date; +import java.math.BigDecimal; +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import com.baomidou.mybatisplus.annotation.TableName; +import com.baomidou.mybatisplus.annotation.TableLogic; +import lombok.Data; +import com.fasterxml.jackson.annotation.JsonFormat; +import org.springframework.format.annotation.DateTimeFormat; +import org.jeecgframework.poi.excel.annotation.Excel; +import org.jeecg.common.aspect.annotation.Dict; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.EqualsAndHashCode; +import lombok.experimental.Accessors; + +/** + * @Description: 资讯动态 + * @Author: jeecg-boot + * @Date: 2023-05-23 + * @Version: V1.0 + */ +@Data +@TableName("yxgw_news") +@Accessors(chain = true) +@EqualsAndHashCode(callSuper = false) +@ApiModel(value="yxgw_news对象", description="资讯动态") +public class YxgwNews implements Serializable { + private static final long serialVersionUID = 1L; + + /**主键*/ + @TableId(type = IdType.ASSIGN_ID) + @ApiModelProperty(value = "主键") + private java.lang.String id; + /**创建人*/ + @ApiModelProperty(value = "创建人") + private java.lang.String createBy; + /**创建日期*/ + @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss") + @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss") + @ApiModelProperty(value = "创建日期") + private java.util.Date createTime; + /**更新人*/ + @ApiModelProperty(value = "更新人") + private java.lang.String updateBy; + /**更新日期*/ + @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss") + @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss") + @ApiModelProperty(value = "更新日期") + private java.util.Date updateTime; + /**所属部门*/ + @ApiModelProperty(value = "所属部门") + private java.lang.String sysOrgCode; + /**标题*/ + @Excel(name = "标题", width = 15) + @ApiModelProperty(value = "标题") + private java.lang.String title; + /**类型*/ + @Excel(name = "类型", width = 15) + @ApiModelProperty(value = "类型") + private java.lang.String type; + /**日期*/ + @Excel(name = "日期", width = 15, format = "yyyy-MM-dd") + @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd") + @DateTimeFormat(pattern="yyyy-MM-dd") + @ApiModelProperty(value = "日期") + private java.util.Date date; + /**图片*/ + @Excel(name = "图片", width = 15) + @ApiModelProperty(value = "图片") + private java.lang.String img; + /**描述*/ + @Excel(name = "描述", width = 15) + @ApiModelProperty(value = "描述") + private java.lang.String des; + /**详情*/ + @Excel(name = "详情", width = 15) + @ApiModelProperty(value = "详情") + private java.lang.String info; +} diff --git a/linus-boot/linus-module-demo/src/main/java/org/jeecg/modules/demo/yxgw/mapper/YxgwNewsMapper.java b/linus-boot/linus-module-demo/src/main/java/org/jeecg/modules/demo/yxgw/mapper/YxgwNewsMapper.java new file mode 100644 index 0000000..f03d962 --- /dev/null +++ b/linus-boot/linus-module-demo/src/main/java/org/jeecg/modules/demo/yxgw/mapper/YxgwNewsMapper.java @@ -0,0 +1,17 @@ +package org.jeecg.modules.demo.yxgw.mapper; + +import java.util.List; + +import org.apache.ibatis.annotations.Param; +import org.jeecg.modules.demo.yxgw.entity.YxgwNews; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + * @Description: 资讯动态 + * @Author: jeecg-boot + * @Date: 2023-05-23 + * @Version: V1.0 + */ +public interface YxgwNewsMapper extends BaseMapper { + +} diff --git a/linus-boot/linus-module-demo/src/main/java/org/jeecg/modules/demo/yxgw/mapper/xml/YxgwNewsMapper.xml b/linus-boot/linus-module-demo/src/main/java/org/jeecg/modules/demo/yxgw/mapper/xml/YxgwNewsMapper.xml new file mode 100644 index 0000000..a26bcda --- /dev/null +++ b/linus-boot/linus-module-demo/src/main/java/org/jeecg/modules/demo/yxgw/mapper/xml/YxgwNewsMapper.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/linus-boot/linus-module-demo/src/main/java/org/jeecg/modules/demo/yxgw/service/IYxgwNewsService.java b/linus-boot/linus-module-demo/src/main/java/org/jeecg/modules/demo/yxgw/service/IYxgwNewsService.java new file mode 100644 index 0000000..5d74068 --- /dev/null +++ b/linus-boot/linus-module-demo/src/main/java/org/jeecg/modules/demo/yxgw/service/IYxgwNewsService.java @@ -0,0 +1,14 @@ +package org.jeecg.modules.demo.yxgw.service; + +import org.jeecg.modules.demo.yxgw.entity.YxgwNews; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + * @Description: 资讯动态 + * @Author: jeecg-boot + * @Date: 2023-05-23 + * @Version: V1.0 + */ +public interface IYxgwNewsService extends IService { + +} diff --git a/linus-boot/linus-module-demo/src/main/java/org/jeecg/modules/demo/yxgw/service/impl/YxgwNewsServiceImpl.java b/linus-boot/linus-module-demo/src/main/java/org/jeecg/modules/demo/yxgw/service/impl/YxgwNewsServiceImpl.java new file mode 100644 index 0000000..e7fd83a --- /dev/null +++ b/linus-boot/linus-module-demo/src/main/java/org/jeecg/modules/demo/yxgw/service/impl/YxgwNewsServiceImpl.java @@ -0,0 +1,19 @@ +package org.jeecg.modules.demo.yxgw.service.impl; + +import org.jeecg.modules.demo.yxgw.entity.YxgwNews; +import org.jeecg.modules.demo.yxgw.mapper.YxgwNewsMapper; +import org.jeecg.modules.demo.yxgw.service.IYxgwNewsService; +import org.springframework.stereotype.Service; + +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; + +/** + * @Description: 资讯动态 + * @Author: jeecg-boot + * @Date: 2023-05-23 + * @Version: V1.0 + */ +@Service +public class YxgwNewsServiceImpl extends ServiceImpl implements IYxgwNewsService { + +} diff --git a/linus-boot/linus-module-demo/src/main/java/org/jeecg/modules/demo/yxgw/vue3/YxgwCase.data.ts b/linus-boot/linus-module-demo/src/main/java/org/jeecg/modules/demo/yxgw/vue3/YxgwCase.data.ts index 412df79..2f83cf8 100644 --- a/linus-boot/linus-module-demo/src/main/java/org/jeecg/modules/demo/yxgw/vue3/YxgwCase.data.ts +++ b/linus-boot/linus-module-demo/src/main/java/org/jeecg/modules/demo/yxgw/vue3/YxgwCase.data.ts @@ -7,7 +7,7 @@ export const columns: BasicColumn[] = [ { title: '行业ID', align:"center", - dataIndex: 'industryId' + dataIndex: 'industryId_dictText' }, { title: '客户', @@ -39,7 +39,10 @@ export const formSchema: FormSchema[] = [ { label: '行业ID', field: 'industryId', - component: 'Input', + component: 'JDictSelectTag', + componentProps:{ + dictCode:"yxgw_solution,name,id" + }, }, { label: '客户', diff --git a/linus-boot/linus-module-demo/src/main/java/org/jeecg/modules/demo/yxgw/vue3/YxgwCase_menu_insert.sql b/linus-boot/linus-module-demo/src/main/java/org/jeecg/modules/demo/yxgw/vue3/YxgwCase_menu_insert.sql index 3949c1b..986201b 100644 --- a/linus-boot/linus-module-demo/src/main/java/org/jeecg/modules/demo/yxgw/vue3/YxgwCase_menu_insert.sql +++ b/linus-boot/linus-module-demo/src/main/java/org/jeecg/modules/demo/yxgw/vue3/YxgwCase_menu_insert.sql @@ -3,24 +3,24 @@ INSERT INTO sys_permission(id, parent_id, name, url, component, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_route, is_leaf, keep_alive, hidden, hide_tab, description, status, del_flag, rule_flag, create_by, create_time, update_by, update_time, internal_or_external) -VALUES ('2023051709449870430', NULL, '解决方案客户案例', '/yxgw/yxgwCaseList', 'yxgw/YxgwCaseList', NULL, NULL, 0, NULL, '1', 0.00, 0, NULL, 1, 0, 0, 0, 0, NULL, '1', 0, 0, 'admin', '2023-05-17 09:44:43', NULL, NULL, 0); +VALUES ('2023051702063600160', NULL, '解决方案客户案例', '/yxgw/yxgwCaseList', 'yxgw/YxgwCaseList', NULL, NULL, 0, NULL, '1', 0.00, 0, NULL, 1, 0, 0, 0, 0, NULL, '1', 0, 0, 'admin', '2023-05-17 14:06:16', NULL, NULL, 0); -- 权限控制sql -- 新增 INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external) -VALUES ('2023051709449880431', '2023051709449870430', '添加解决方案客户案例', NULL, NULL, 0, NULL, NULL, 2, 'yxgw:yxgw_case:add', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2023-05-17 09:44:43', NULL, NULL, 0, 0, '1', 0); +VALUES ('2023051702063600161', '2023051702063600160', '添加解决方案客户案例', NULL, NULL, 0, NULL, NULL, 2, 'yxgw:yxgw_case:add', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2023-05-17 14:06:16', NULL, NULL, 0, 0, '1', 0); -- 编辑 INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external) -VALUES ('2023051709449880432', '2023051709449870430', '编辑解决方案客户案例', NULL, NULL, 0, NULL, NULL, 2, 'yxgw:yxgw_case:edit', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2023-05-17 09:44:43', NULL, NULL, 0, 0, '1', 0); +VALUES ('2023051702063600162', '2023051702063600160', '编辑解决方案客户案例', NULL, NULL, 0, NULL, NULL, 2, 'yxgw:yxgw_case:edit', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2023-05-17 14:06:16', NULL, NULL, 0, 0, '1', 0); -- 删除 INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external) -VALUES ('2023051709449880433', '2023051709449870430', '删除解决方案客户案例', NULL, NULL, 0, NULL, NULL, 2, 'yxgw:yxgw_case:delete', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2023-05-17 09:44:43', NULL, NULL, 0, 0, '1', 0); +VALUES ('2023051702063600163', '2023051702063600160', '删除解决方案客户案例', NULL, NULL, 0, NULL, NULL, 2, 'yxgw:yxgw_case:delete', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2023-05-17 14:06:16', NULL, NULL, 0, 0, '1', 0); -- 批量删除 INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external) -VALUES ('2023051709449880434', '2023051709449870430', '批量删除解决方案客户案例', NULL, NULL, 0, NULL, NULL, 2, 'yxgw:yxgw_case:deleteBatch', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2023-05-17 09:44:43', NULL, NULL, 0, 0, '1', 0); +VALUES ('2023051702063600164', '2023051702063600160', '批量删除解决方案客户案例', NULL, NULL, 0, NULL, NULL, 2, 'yxgw:yxgw_case:deleteBatch', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2023-05-17 14:06:16', NULL, NULL, 0, 0, '1', 0); -- 导出excel INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external) -VALUES ('2023051709449880435', '2023051709449870430', '导出excel_解决方案客户案例', NULL, NULL, 0, NULL, NULL, 2, 'yxgw:yxgw_case:exportXls', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2023-05-17 09:44:43', NULL, NULL, 0, 0, '1', 0); +VALUES ('2023051702063600165', '2023051702063600160', '导出excel_解决方案客户案例', NULL, NULL, 0, NULL, NULL, 2, 'yxgw:yxgw_case:exportXls', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2023-05-17 14:06:16', NULL, NULL, 0, 0, '1', 0); -- 导入excel INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external) -VALUES ('2023051709449880436', '2023051709449870430', '导入excel_解决方案客户案例', NULL, NULL, 0, NULL, NULL, 2, 'yxgw:yxgw_case:importExcel', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2023-05-17 09:44:43', NULL, NULL, 0, 0, '1', 0); \ No newline at end of file +VALUES ('2023051702063600166', '2023051702063600160', '导入excel_解决方案客户案例', NULL, NULL, 0, NULL, NULL, 2, 'yxgw:yxgw_case:importExcel', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2023-05-17 14:06:16', NULL, NULL, 0, 0, '1', 0); \ No newline at end of file diff --git a/linus-boot/linus-module-demo/src/main/java/org/jeecg/modules/demo/yxgw/vue3/YxgwNews.api.ts b/linus-boot/linus-module-demo/src/main/java/org/jeecg/modules/demo/yxgw/vue3/YxgwNews.api.ts new file mode 100644 index 0000000..c091a37 --- /dev/null +++ b/linus-boot/linus-module-demo/src/main/java/org/jeecg/modules/demo/yxgw/vue3/YxgwNews.api.ts @@ -0,0 +1,64 @@ +import {defHttp} from '/@/utils/http/axios'; +import { useMessage } from "/@/hooks/web/useMessage"; + +const { createConfirm } = useMessage(); + +enum Api { + list = '/yxgw/yxgwNews/list', + save='/yxgw/yxgwNews/add', + edit='/yxgw/yxgwNews/edit', + deleteOne = '/yxgw/yxgwNews/delete', + deleteBatch = '/yxgw/yxgwNews/deleteBatch', + importExcel = '/yxgw/yxgwNews/importExcel', + exportXls = '/yxgw/yxgwNews/exportXls', +} +/** + * 导出api + * @param params + */ +export const getExportUrl = Api.exportXls; +/** + * 导入api + */ +export const getImportUrl = Api.importExcel; +/** + * 列表接口 + * @param params + */ +export const list = (params) => + defHttp.get({url: Api.list, params}); + +/** + * 删除单个 + */ +export const deleteOne = (params,handleSuccess) => { + return defHttp.delete({url: Api.deleteOne, params}, {joinParamsToUrl: true}).then(() => { + handleSuccess(); + }); +} +/** + * 批量删除 + * @param params + */ +export const batchDelete = (params, handleSuccess) => { + createConfirm({ + iconType: 'warning', + title: '确认删除', + content: '是否删除选中数据', + okText: '确认', + cancelText: '取消', + onOk: () => { + return defHttp.delete({url: Api.deleteBatch, data: params}, {joinParamsToUrl: true}).then(() => { + handleSuccess(); + }); + } + }); +} +/** + * 保存或者更新 + * @param params + */ +export const saveOrUpdate = (params, isUpdate) => { + let url = isUpdate ? Api.edit : Api.save; + return defHttp.post({url: url, params}); +} diff --git a/linus-boot/linus-module-demo/src/main/java/org/jeecg/modules/demo/yxgw/vue3/YxgwNews.data.ts b/linus-boot/linus-module-demo/src/main/java/org/jeecg/modules/demo/yxgw/vue3/YxgwNews.data.ts new file mode 100644 index 0000000..ea7981e --- /dev/null +++ b/linus-boot/linus-module-demo/src/main/java/org/jeecg/modules/demo/yxgw/vue3/YxgwNews.data.ts @@ -0,0 +1,98 @@ +import {BasicColumn} from '/@/components/Table'; +import {FormSchema} from '/@/components/Table'; +import { rules} from '/@/utils/helper/validator'; +import { render } from '/@/utils/common/renderUtils'; +//列表数据 +export const columns: BasicColumn[] = [ + { + title: '标题', + align:"center", + dataIndex: 'title' + }, + { + title: '类型', + align:"center", + dataIndex: 'type', + customRender:({text}) => { + return render.renderCategoryTree(text,'C03A01') + }, + }, + { + title: '日期', + align:"center", + dataIndex: 'date', + customRender:({text}) =>{ + return !text?"":(text.length>10?text.substr(0,10):text) + }, + }, + { + title: '图片', + align:"center", + dataIndex: 'img', + customRender:render.renderImage, + }, + { + title: '描述', + align:"center", + dataIndex: 'des' + }, +]; +//查询数据 +export const searchFormSchema: FormSchema[] = [ +]; +//表单数据 +export const formSchema: FormSchema[] = [ + { + label: '标题', + field: 'title', + component: 'Input', + }, + { + label: '类型', + field: 'type', + component: 'JCategorySelect', + componentProps:{ + pcode:"C03A01", //TODO back和事件未添加,暂时有问题 + }, + }, + { + label: '日期', + field: 'date', + component: 'DatePicker', + }, + { + label: '图片', + field: 'img', + component: 'JImageUpload', + componentProps:{ + }, + }, + { + label: '描述', + field: 'des', + component: 'InputTextArea', + }, + { + label: '详情', + field: 'info', + component: 'JEditor', + }, + // TODO 主键隐藏字段,目前写死为ID + { + label: '', + field: 'id', + component: 'Input', + show: false + }, +]; + + + +/** +* 流程表单调用这个方法获取formSchema +* @param param +*/ +export function getBpmFormSchema(_formData): FormSchema[]{ + // 默认和原始表单保持一致 如果流程中配置了权限数据,这里需要单独处理formSchema + return formSchema; +} \ No newline at end of file diff --git a/linus-boot/linus-module-demo/src/main/java/org/jeecg/modules/demo/yxgw/vue3/YxgwNewsList.vue b/linus-boot/linus-module-demo/src/main/java/org/jeecg/modules/demo/yxgw/vue3/YxgwNewsList.vue new file mode 100644 index 0000000..2a65a3d --- /dev/null +++ b/linus-boot/linus-module-demo/src/main/java/org/jeecg/modules/demo/yxgw/vue3/YxgwNewsList.vue @@ -0,0 +1,191 @@ + + + + + \ No newline at end of file diff --git a/linus-boot/linus-module-demo/src/main/java/org/jeecg/modules/demo/yxgw/vue3/YxgwNews_menu_insert.sql b/linus-boot/linus-module-demo/src/main/java/org/jeecg/modules/demo/yxgw/vue3/YxgwNews_menu_insert.sql new file mode 100644 index 0000000..d4bc61f --- /dev/null +++ b/linus-boot/linus-module-demo/src/main/java/org/jeecg/modules/demo/yxgw/vue3/YxgwNews_menu_insert.sql @@ -0,0 +1,26 @@ +-- 注意:该页面对应的前台目录为views/yxgw文件夹下 +-- 如果你想更改到其他目录,请修改sql中component字段对应的值 + + +INSERT INTO sys_permission(id, parent_id, name, url, component, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_route, is_leaf, keep_alive, hidden, hide_tab, description, status, del_flag, rule_flag, create_by, create_time, update_by, update_time, internal_or_external) +VALUES ('2023052301573510160', NULL, '资讯动态', '/yxgw/yxgwNewsList', 'yxgw/YxgwNewsList', NULL, NULL, 0, NULL, '1', 0.00, 0, NULL, 1, 0, 0, 0, 0, NULL, '1', 0, 0, 'admin', '2023-05-23 13:57:16', NULL, NULL, 0); + +-- 权限控制sql +-- 新增 +INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external) +VALUES ('2023052301573510161', '2023052301573510160', '添加资讯动态', NULL, NULL, 0, NULL, NULL, 2, 'yxgw:yxgw_news:add', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2023-05-23 13:57:16', NULL, NULL, 0, 0, '1', 0); +-- 编辑 +INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external) +VALUES ('2023052301573510162', '2023052301573510160', '编辑资讯动态', NULL, NULL, 0, NULL, NULL, 2, 'yxgw:yxgw_news:edit', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2023-05-23 13:57:16', NULL, NULL, 0, 0, '1', 0); +-- 删除 +INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external) +VALUES ('2023052301573510163', '2023052301573510160', '删除资讯动态', NULL, NULL, 0, NULL, NULL, 2, 'yxgw:yxgw_news:delete', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2023-05-23 13:57:16', NULL, NULL, 0, 0, '1', 0); +-- 批量删除 +INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external) +VALUES ('2023052301573510164', '2023052301573510160', '批量删除资讯动态', NULL, NULL, 0, NULL, NULL, 2, 'yxgw:yxgw_news:deleteBatch', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2023-05-23 13:57:16', NULL, NULL, 0, 0, '1', 0); +-- 导出excel +INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external) +VALUES ('2023052301573510165', '2023052301573510160', '导出excel_资讯动态', NULL, NULL, 0, NULL, NULL, 2, 'yxgw:yxgw_news:exportXls', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2023-05-23 13:57:16', NULL, NULL, 0, 0, '1', 0); +-- 导入excel +INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external) +VALUES ('2023052301573510166', '2023052301573510160', '导入excel_资讯动态', NULL, NULL, 0, NULL, NULL, 2, 'yxgw:yxgw_news:importExcel', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2023-05-23 13:57:16', NULL, NULL, 0, 0, '1', 0); \ No newline at end of file diff --git a/linus-boot/linus-module-demo/src/main/java/org/jeecg/modules/demo/yxgw/vue3/YxgwSolution.data.ts b/linus-boot/linus-module-demo/src/main/java/org/jeecg/modules/demo/yxgw/vue3/YxgwSolution.data.ts index 570955d..d316bf4 100644 --- a/linus-boot/linus-module-demo/src/main/java/org/jeecg/modules/demo/yxgw/vue3/YxgwSolution.data.ts +++ b/linus-boot/linus-module-demo/src/main/java/org/jeecg/modules/demo/yxgw/vue3/YxgwSolution.data.ts @@ -12,11 +12,18 @@ export const columns: BasicColumn[] = [ { title: '方案内容', align:"center", - dataIndex: 'article' + dataIndex: 'article', + slots: { customRender: 'htmlSlot' }, }, ]; //查询数据 export const searchFormSchema: FormSchema[] = [ + { + label: "所属行业", + field: 'name', + component: 'Input', + colProps: {span: 6}, + }, ]; //表单数据 export const formSchema: FormSchema[] = [ @@ -28,7 +35,7 @@ export const formSchema: FormSchema[] = [ { label: '方案内容', field: 'article', - component: 'Input', + component: 'JEditor', }, // TODO 主键隐藏字段,目前写死为ID { diff --git a/linus-boot/linus-module-demo/src/main/java/org/jeecg/modules/demo/yxgw/vue3/YxgwSolution_menu_insert.sql b/linus-boot/linus-module-demo/src/main/java/org/jeecg/modules/demo/yxgw/vue3/YxgwSolution_menu_insert.sql index 36daf4e..f167e58 100644 --- a/linus-boot/linus-module-demo/src/main/java/org/jeecg/modules/demo/yxgw/vue3/YxgwSolution_menu_insert.sql +++ b/linus-boot/linus-module-demo/src/main/java/org/jeecg/modules/demo/yxgw/vue3/YxgwSolution_menu_insert.sql @@ -3,24 +3,24 @@ INSERT INTO sys_permission(id, parent_id, name, url, component, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_route, is_leaf, keep_alive, hidden, hide_tab, description, status, del_flag, rule_flag, create_by, create_time, update_by, update_time, internal_or_external) -VALUES ('2023051604303280510', NULL, '行业解决方案', '/yxgw/yxgwSolutionList', 'yxgw/YxgwSolutionList', NULL, NULL, 0, NULL, '1', 0.00, 0, NULL, 1, 0, 0, 0, 0, NULL, '1', 0, 0, 'admin', '2023-05-16 16:30:51', NULL, NULL, 0); +VALUES ('2023051709004970340', NULL, '行业解决方案', '/yxgw/yxgwSolutionList', 'yxgw/YxgwSolutionList', NULL, NULL, 0, NULL, '1', 0.00, 0, NULL, 1, 0, 0, 0, 0, NULL, '1', 0, 0, 'admin', '2023-05-17 09:00:34', NULL, NULL, 0); -- 权限控制sql -- 新增 INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external) -VALUES ('2023051604303280511', '2023051604303280510', '添加行业解决方案', NULL, NULL, 0, NULL, NULL, 2, 'yxgw:yxgw_solution:add', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2023-05-16 16:30:51', NULL, NULL, 0, 0, '1', 0); +VALUES ('2023051709004980341', '2023051709004970340', '添加行业解决方案', NULL, NULL, 0, NULL, NULL, 2, 'yxgw:yxgw_solution:add', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2023-05-17 09:00:34', NULL, NULL, 0, 0, '1', 0); -- 编辑 INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external) -VALUES ('2023051604303280512', '2023051604303280510', '编辑行业解决方案', NULL, NULL, 0, NULL, NULL, 2, 'yxgw:yxgw_solution:edit', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2023-05-16 16:30:51', NULL, NULL, 0, 0, '1', 0); +VALUES ('2023051709004980342', '2023051709004970340', '编辑行业解决方案', NULL, NULL, 0, NULL, NULL, 2, 'yxgw:yxgw_solution:edit', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2023-05-17 09:00:34', NULL, NULL, 0, 0, '1', 0); -- 删除 INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external) -VALUES ('2023051604303280513', '2023051604303280510', '删除行业解决方案', NULL, NULL, 0, NULL, NULL, 2, 'yxgw:yxgw_solution:delete', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2023-05-16 16:30:51', NULL, NULL, 0, 0, '1', 0); +VALUES ('2023051709004980343', '2023051709004970340', '删除行业解决方案', NULL, NULL, 0, NULL, NULL, 2, 'yxgw:yxgw_solution:delete', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2023-05-17 09:00:34', NULL, NULL, 0, 0, '1', 0); -- 批量删除 INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external) -VALUES ('2023051604303280514', '2023051604303280510', '批量删除行业解决方案', NULL, NULL, 0, NULL, NULL, 2, 'yxgw:yxgw_solution:deleteBatch', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2023-05-16 16:30:51', NULL, NULL, 0, 0, '1', 0); +VALUES ('2023051709004980344', '2023051709004970340', '批量删除行业解决方案', NULL, NULL, 0, NULL, NULL, 2, 'yxgw:yxgw_solution:deleteBatch', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2023-05-17 09:00:34', NULL, NULL, 0, 0, '1', 0); -- 导出excel INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external) -VALUES ('2023051604303280515', '2023051604303280510', '导出excel_行业解决方案', NULL, NULL, 0, NULL, NULL, 2, 'yxgw:yxgw_solution:exportXls', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2023-05-16 16:30:51', NULL, NULL, 0, 0, '1', 0); +VALUES ('2023051709004980345', '2023051709004970340', '导出excel_行业解决方案', NULL, NULL, 0, NULL, NULL, 2, 'yxgw:yxgw_solution:exportXls', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2023-05-17 09:00:34', NULL, NULL, 0, 0, '1', 0); -- 导入excel INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external) -VALUES ('2023051604303280516', '2023051604303280510', '导入excel_行业解决方案', NULL, NULL, 0, NULL, NULL, 2, 'yxgw:yxgw_solution:importExcel', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2023-05-16 16:30:51', NULL, NULL, 0, 0, '1', 0); \ No newline at end of file +VALUES ('2023051709004980346', '2023051709004970340', '导入excel_行业解决方案', NULL, NULL, 0, NULL, NULL, 2, 'yxgw:yxgw_solution:importExcel', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2023-05-17 09:00:34', NULL, NULL, 0, 0, '1', 0); \ No newline at end of file diff --git a/linus-boot/linus-module-demo/src/main/java/org/jeecg/modules/demo/yxgw/vue3/components/YxgwNewsForm.vue b/linus-boot/linus-module-demo/src/main/java/org/jeecg/modules/demo/yxgw/vue3/components/YxgwNewsForm.vue new file mode 100644 index 0000000..9b35b55 --- /dev/null +++ b/linus-boot/linus-module-demo/src/main/java/org/jeecg/modules/demo/yxgw/vue3/components/YxgwNewsForm.vue @@ -0,0 +1,70 @@ + + + \ No newline at end of file diff --git a/linus-boot/linus-module-demo/src/main/java/org/jeecg/modules/demo/yxgw/vue3/components/YxgwNewsModal.vue b/linus-boot/linus-module-demo/src/main/java/org/jeecg/modules/demo/yxgw/vue3/components/YxgwNewsModal.vue new file mode 100644 index 0000000..d6cec77 --- /dev/null +++ b/linus-boot/linus-module-demo/src/main/java/org/jeecg/modules/demo/yxgw/vue3/components/YxgwNewsModal.vue @@ -0,0 +1,66 @@ + + + + + \ No newline at end of file diff --git a/linus-boot/linus-module-demo/target/classes/org/jeecg/modules/demo/yxgw/mapper/xml/YxgwNewsMapper.xml b/linus-boot/linus-module-demo/target/classes/org/jeecg/modules/demo/yxgw/mapper/xml/YxgwNewsMapper.xml new file mode 100644 index 0000000..a26bcda --- /dev/null +++ b/linus-boot/linus-module-demo/target/classes/org/jeecg/modules/demo/yxgw/mapper/xml/YxgwNewsMapper.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/linusboot-vue3/src/views/yxgw/YxgwNews.api.ts b/linusboot-vue3/src/views/yxgw/YxgwNews.api.ts new file mode 100644 index 0000000..c091a37 --- /dev/null +++ b/linusboot-vue3/src/views/yxgw/YxgwNews.api.ts @@ -0,0 +1,64 @@ +import {defHttp} from '/@/utils/http/axios'; +import { useMessage } from "/@/hooks/web/useMessage"; + +const { createConfirm } = useMessage(); + +enum Api { + list = '/yxgw/yxgwNews/list', + save='/yxgw/yxgwNews/add', + edit='/yxgw/yxgwNews/edit', + deleteOne = '/yxgw/yxgwNews/delete', + deleteBatch = '/yxgw/yxgwNews/deleteBatch', + importExcel = '/yxgw/yxgwNews/importExcel', + exportXls = '/yxgw/yxgwNews/exportXls', +} +/** + * 导出api + * @param params + */ +export const getExportUrl = Api.exportXls; +/** + * 导入api + */ +export const getImportUrl = Api.importExcel; +/** + * 列表接口 + * @param params + */ +export const list = (params) => + defHttp.get({url: Api.list, params}); + +/** + * 删除单个 + */ +export const deleteOne = (params,handleSuccess) => { + return defHttp.delete({url: Api.deleteOne, params}, {joinParamsToUrl: true}).then(() => { + handleSuccess(); + }); +} +/** + * 批量删除 + * @param params + */ +export const batchDelete = (params, handleSuccess) => { + createConfirm({ + iconType: 'warning', + title: '确认删除', + content: '是否删除选中数据', + okText: '确认', + cancelText: '取消', + onOk: () => { + return defHttp.delete({url: Api.deleteBatch, data: params}, {joinParamsToUrl: true}).then(() => { + handleSuccess(); + }); + } + }); +} +/** + * 保存或者更新 + * @param params + */ +export const saveOrUpdate = (params, isUpdate) => { + let url = isUpdate ? Api.edit : Api.save; + return defHttp.post({url: url, params}); +} diff --git a/linusboot-vue3/src/views/yxgw/YxgwNews.data.ts b/linusboot-vue3/src/views/yxgw/YxgwNews.data.ts new file mode 100644 index 0000000..ea7981e --- /dev/null +++ b/linusboot-vue3/src/views/yxgw/YxgwNews.data.ts @@ -0,0 +1,98 @@ +import {BasicColumn} from '/@/components/Table'; +import {FormSchema} from '/@/components/Table'; +import { rules} from '/@/utils/helper/validator'; +import { render } from '/@/utils/common/renderUtils'; +//列表数据 +export const columns: BasicColumn[] = [ + { + title: '标题', + align:"center", + dataIndex: 'title' + }, + { + title: '类型', + align:"center", + dataIndex: 'type', + customRender:({text}) => { + return render.renderCategoryTree(text,'C03A01') + }, + }, + { + title: '日期', + align:"center", + dataIndex: 'date', + customRender:({text}) =>{ + return !text?"":(text.length>10?text.substr(0,10):text) + }, + }, + { + title: '图片', + align:"center", + dataIndex: 'img', + customRender:render.renderImage, + }, + { + title: '描述', + align:"center", + dataIndex: 'des' + }, +]; +//查询数据 +export const searchFormSchema: FormSchema[] = [ +]; +//表单数据 +export const formSchema: FormSchema[] = [ + { + label: '标题', + field: 'title', + component: 'Input', + }, + { + label: '类型', + field: 'type', + component: 'JCategorySelect', + componentProps:{ + pcode:"C03A01", //TODO back和事件未添加,暂时有问题 + }, + }, + { + label: '日期', + field: 'date', + component: 'DatePicker', + }, + { + label: '图片', + field: 'img', + component: 'JImageUpload', + componentProps:{ + }, + }, + { + label: '描述', + field: 'des', + component: 'InputTextArea', + }, + { + label: '详情', + field: 'info', + component: 'JEditor', + }, + // TODO 主键隐藏字段,目前写死为ID + { + label: '', + field: 'id', + component: 'Input', + show: false + }, +]; + + + +/** +* 流程表单调用这个方法获取formSchema +* @param param +*/ +export function getBpmFormSchema(_formData): FormSchema[]{ + // 默认和原始表单保持一致 如果流程中配置了权限数据,这里需要单独处理formSchema + return formSchema; +} \ No newline at end of file diff --git a/linusboot-vue3/src/views/yxgw/YxgwNewsList.vue b/linusboot-vue3/src/views/yxgw/YxgwNewsList.vue new file mode 100644 index 0000000..2a65a3d --- /dev/null +++ b/linusboot-vue3/src/views/yxgw/YxgwNewsList.vue @@ -0,0 +1,191 @@ + + + + + \ No newline at end of file diff --git a/linusboot-vue3/src/views/yxgw/YxgwNews_menu_insert.sql b/linusboot-vue3/src/views/yxgw/YxgwNews_menu_insert.sql new file mode 100644 index 0000000..d4bc61f --- /dev/null +++ b/linusboot-vue3/src/views/yxgw/YxgwNews_menu_insert.sql @@ -0,0 +1,26 @@ +-- 注意:该页面对应的前台目录为views/yxgw文件夹下 +-- 如果你想更改到其他目录,请修改sql中component字段对应的值 + + +INSERT INTO sys_permission(id, parent_id, name, url, component, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_route, is_leaf, keep_alive, hidden, hide_tab, description, status, del_flag, rule_flag, create_by, create_time, update_by, update_time, internal_or_external) +VALUES ('2023052301573510160', NULL, '资讯动态', '/yxgw/yxgwNewsList', 'yxgw/YxgwNewsList', NULL, NULL, 0, NULL, '1', 0.00, 0, NULL, 1, 0, 0, 0, 0, NULL, '1', 0, 0, 'admin', '2023-05-23 13:57:16', NULL, NULL, 0); + +-- 权限控制sql +-- 新增 +INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external) +VALUES ('2023052301573510161', '2023052301573510160', '添加资讯动态', NULL, NULL, 0, NULL, NULL, 2, 'yxgw:yxgw_news:add', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2023-05-23 13:57:16', NULL, NULL, 0, 0, '1', 0); +-- 编辑 +INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external) +VALUES ('2023052301573510162', '2023052301573510160', '编辑资讯动态', NULL, NULL, 0, NULL, NULL, 2, 'yxgw:yxgw_news:edit', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2023-05-23 13:57:16', NULL, NULL, 0, 0, '1', 0); +-- 删除 +INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external) +VALUES ('2023052301573510163', '2023052301573510160', '删除资讯动态', NULL, NULL, 0, NULL, NULL, 2, 'yxgw:yxgw_news:delete', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2023-05-23 13:57:16', NULL, NULL, 0, 0, '1', 0); +-- 批量删除 +INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external) +VALUES ('2023052301573510164', '2023052301573510160', '批量删除资讯动态', NULL, NULL, 0, NULL, NULL, 2, 'yxgw:yxgw_news:deleteBatch', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2023-05-23 13:57:16', NULL, NULL, 0, 0, '1', 0); +-- 导出excel +INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external) +VALUES ('2023052301573510165', '2023052301573510160', '导出excel_资讯动态', NULL, NULL, 0, NULL, NULL, 2, 'yxgw:yxgw_news:exportXls', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2023-05-23 13:57:16', NULL, NULL, 0, 0, '1', 0); +-- 导入excel +INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external) +VALUES ('2023052301573510166', '2023052301573510160', '导入excel_资讯动态', NULL, NULL, 0, NULL, NULL, 2, 'yxgw:yxgw_news:importExcel', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2023-05-23 13:57:16', NULL, NULL, 0, 0, '1', 0); \ No newline at end of file diff --git a/linusboot-vue3/src/views/yxgw/components/YxgwNewsForm.vue b/linusboot-vue3/src/views/yxgw/components/YxgwNewsForm.vue new file mode 100644 index 0000000..9b35b55 --- /dev/null +++ b/linusboot-vue3/src/views/yxgw/components/YxgwNewsForm.vue @@ -0,0 +1,70 @@ + + + \ No newline at end of file diff --git a/linusboot-vue3/src/views/yxgw/components/YxgwNewsModal.vue b/linusboot-vue3/src/views/yxgw/components/YxgwNewsModal.vue new file mode 100644 index 0000000..d6cec77 --- /dev/null +++ b/linusboot-vue3/src/views/yxgw/components/YxgwNewsModal.vue @@ -0,0 +1,66 @@ + + + + + \ No newline at end of file