| @ -1,21 +0,0 @@ | |||
| .DS_Store | |||
| node_modules | |||
| /dist | |||
| # local env files | |||
| .env.local | |||
| .env.*.local | |||
| # Log files | |||
| npm-debug.log* | |||
| yarn-debug.log* | |||
| yarn-error.log* | |||
| # Editor directories and files | |||
| .idea | |||
| .vscode | |||
| *.suo | |||
| *.ntvs* | |||
| *.njsproj | |||
| *.sln | |||
| *.sw* | |||
| @ -0,0 +1,171 @@ | |||
| package org.jeecg.modules.appletArticle.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.appletArticle.entity.AppletArticle; | |||
| import org.jeecg.modules.appletArticle.service.IAppletArticleService; | |||
| 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; | |||
| /** | |||
| * @Description: 文章 | |||
| * @Author: jeecg-boot | |||
| * @Date: 2025-09-29 | |||
| * @Version: V1.0 | |||
| */ | |||
| @Api(tags="文章") | |||
| @RestController | |||
| @RequestMapping("/appletArticle/appletArticle") | |||
| @Slf4j | |||
| public class AppletArticleController extends JeecgController<AppletArticle, IAppletArticleService> { | |||
| @Autowired | |||
| private IAppletArticleService appletArticleService; | |||
| /** | |||
| * 分页列表查询 | |||
| * | |||
| * @param appletArticle | |||
| * @param pageNo | |||
| * @param pageSize | |||
| * @param req | |||
| * @return | |||
| */ | |||
| //@AutoLog(value = "文章-分页列表查询") | |||
| @ApiOperation(value="文章-分页列表查询", notes="文章-分页列表查询") | |||
| @GetMapping(value = "/list") | |||
| public Result<IPage<AppletArticle>> queryPageList(AppletArticle appletArticle, | |||
| @RequestParam(name="pageNo", defaultValue="1") Integer pageNo, | |||
| @RequestParam(name="pageSize", defaultValue="10") Integer pageSize, | |||
| HttpServletRequest req) { | |||
| QueryWrapper<AppletArticle> queryWrapper = QueryGenerator.initQueryWrapper(appletArticle, req.getParameterMap()); | |||
| Page<AppletArticle> page = new Page<AppletArticle>(pageNo, pageSize); | |||
| IPage<AppletArticle> pageList = appletArticleService.page(page, queryWrapper); | |||
| return Result.OK(pageList); | |||
| } | |||
| /** | |||
| * 添加 | |||
| * | |||
| * @param appletArticle | |||
| * @return | |||
| */ | |||
| @AutoLog(value = "文章-添加") | |||
| @ApiOperation(value="文章-添加", notes="文章-添加") | |||
| @PostMapping(value = "/add") | |||
| public Result<String> add(@RequestBody AppletArticle appletArticle) { | |||
| appletArticleService.save(appletArticle); | |||
| return Result.OK("添加成功!"); | |||
| } | |||
| /** | |||
| * 编辑 | |||
| * | |||
| * @param appletArticle | |||
| * @return | |||
| */ | |||
| @AutoLog(value = "文章-编辑") | |||
| @ApiOperation(value="文章-编辑", notes="文章-编辑") | |||
| @RequestMapping(value = "/edit", method = {RequestMethod.PUT,RequestMethod.POST}) | |||
| public Result<String> edit(@RequestBody AppletArticle appletArticle) { | |||
| appletArticleService.updateById(appletArticle); | |||
| return Result.OK("编辑成功!"); | |||
| } | |||
| /** | |||
| * 通过id删除 | |||
| * | |||
| * @param id | |||
| * @return | |||
| */ | |||
| @AutoLog(value = "文章-通过id删除") | |||
| @ApiOperation(value="文章-通过id删除", notes="文章-通过id删除") | |||
| @DeleteMapping(value = "/delete") | |||
| public Result<String> delete(@RequestParam(name="id",required=true) String id) { | |||
| appletArticleService.removeById(id); | |||
| return Result.OK("删除成功!"); | |||
| } | |||
| /** | |||
| * 批量删除 | |||
| * | |||
| * @param ids | |||
| * @return | |||
| */ | |||
| @AutoLog(value = "文章-批量删除") | |||
| @ApiOperation(value="文章-批量删除", notes="文章-批量删除") | |||
| @DeleteMapping(value = "/deleteBatch") | |||
| public Result<String> deleteBatch(@RequestParam(name="ids",required=true) String ids) { | |||
| this.appletArticleService.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<AppletArticle> queryById(@RequestParam(name="id",required=true) String id) { | |||
| AppletArticle appletArticle = appletArticleService.getById(id); | |||
| if(appletArticle==null) { | |||
| return Result.error("未找到对应数据"); | |||
| } | |||
| return Result.OK(appletArticle); | |||
| } | |||
| /** | |||
| * 导出excel | |||
| * | |||
| * @param request | |||
| * @param appletArticle | |||
| */ | |||
| @RequestMapping(value = "/exportXls") | |||
| public ModelAndView exportXls(HttpServletRequest request, AppletArticle appletArticle) { | |||
| return super.exportXls(request, appletArticle, AppletArticle.class, "文章"); | |||
| } | |||
| /** | |||
| * 通过excel导入数据 | |||
| * | |||
| * @param request | |||
| * @param response | |||
| * @return | |||
| */ | |||
| @RequestMapping(value = "/importExcel", method = RequestMethod.POST) | |||
| public Result<?> importExcel(HttpServletRequest request, HttpServletResponse response) { | |||
| return super.importExcel(request, response, AppletArticle.class); | |||
| } | |||
| } | |||
| @ -0,0 +1,65 @@ | |||
| package org.jeecg.modules.appletArticle.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 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: 2025-09-29 | |||
| * @Version: V1.0 | |||
| */ | |||
| @Data | |||
| @TableName("applet_article") | |||
| @Accessors(chain = true) | |||
| @EqualsAndHashCode(callSuper = false) | |||
| @ApiModel(value="applet_article对象", description="文章") | |||
| public class AppletArticle 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; | |||
| /**创建日期*/ | |||
| @ApiModelProperty(value = "创建日期") | |||
| private java.util.Date createTime; | |||
| /**更新人*/ | |||
| @ApiModelProperty(value = "更新人") | |||
| private java.lang.String updateBy; | |||
| /**更新日期*/ | |||
| @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 content; | |||
| /**封面*/ | |||
| @Excel(name = "封面", width = 15) | |||
| @ApiModelProperty(value = "封面") | |||
| private java.lang.String image; | |||
| } | |||
| @ -0,0 +1,17 @@ | |||
| package org.jeecg.modules.appletArticle.mapper; | |||
| import java.util.List; | |||
| import org.apache.ibatis.annotations.Param; | |||
| import org.jeecg.modules.appletArticle.entity.AppletArticle; | |||
| import com.baomidou.mybatisplus.core.mapper.BaseMapper; | |||
| /** | |||
| * @Description: 文章 | |||
| * @Author: jeecg-boot | |||
| * @Date: 2025-09-29 | |||
| * @Version: V1.0 | |||
| */ | |||
| public interface AppletArticleMapper extends BaseMapper<AppletArticle> { | |||
| } | |||
| @ -0,0 +1,5 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | |||
| <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | |||
| <mapper namespace="org.jeecg.modules.appletArticle.mapper.AppletArticleMapper"> | |||
| </mapper> | |||
| @ -0,0 +1,14 @@ | |||
| package org.jeecg.modules.appletArticle.service; | |||
| import org.jeecg.modules.appletArticle.entity.AppletArticle; | |||
| import com.baomidou.mybatisplus.extension.service.IService; | |||
| /** | |||
| * @Description: 文章 | |||
| * @Author: jeecg-boot | |||
| * @Date: 2025-09-29 | |||
| * @Version: V1.0 | |||
| */ | |||
| public interface IAppletArticleService extends IService<AppletArticle> { | |||
| } | |||
| @ -0,0 +1,19 @@ | |||
| package org.jeecg.modules.appletArticle.service.impl; | |||
| import org.jeecg.modules.appletArticle.entity.AppletArticle; | |||
| import org.jeecg.modules.appletArticle.mapper.AppletArticleMapper; | |||
| import org.jeecg.modules.appletArticle.service.IAppletArticleService; | |||
| import org.springframework.stereotype.Service; | |||
| import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; | |||
| /** | |||
| * @Description: 文章 | |||
| * @Author: jeecg-boot | |||
| * @Date: 2025-09-29 | |||
| * @Version: V1.0 | |||
| */ | |||
| @Service | |||
| public class AppletArticleServiceImpl extends ServiceImpl<AppletArticleMapper, AppletArticle> implements IAppletArticleService { | |||
| } | |||
| @ -0,0 +1,183 @@ | |||
| <template> | |||
| <a-card :bordered="false"> | |||
| <!-- 查询区域 --> | |||
| <div class="table-page-search-wrapper"> | |||
| <a-form layout="inline" @keyup.enter.native="searchQuery"> | |||
| <a-row :gutter="24"> | |||
| </a-row> | |||
| </a-form> | |||
| </div> | |||
| <!-- 查询区域-END --> | |||
| <!-- 操作按钮区域 --> | |||
| <div class="table-operator"> | |||
| <a-button @click="handleAdd" type="primary" icon="plus">新增</a-button> | |||
| <a-button type="primary" icon="download" @click="handleExportXls('文章')">导出</a-button> | |||
| <a-upload name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" :action="importExcelUrl" @change="handleImportExcel"> | |||
| <a-button type="primary" icon="import">导入</a-button> | |||
| </a-upload> | |||
| <!-- 高级查询区域 --> | |||
| <j-super-query :fieldList="superFieldList" ref="superQueryModal" @handleSuperQuery="handleSuperQuery"></j-super-query> | |||
| <a-dropdown v-if="selectedRowKeys.length > 0"> | |||
| <a-menu slot="overlay"> | |||
| <a-menu-item key="1" @click="batchDel"><a-icon type="delete"/>删除</a-menu-item> | |||
| </a-menu> | |||
| <a-button style="margin-left: 8px"> 批量操作 <a-icon type="down" /></a-button> | |||
| </a-dropdown> | |||
| </div> | |||
| <!-- table区域-begin --> | |||
| <div> | |||
| <div class="ant-alert ant-alert-info" style="margin-bottom: 16px;"> | |||
| <i class="anticon anticon-info-circle ant-alert-icon"></i> 已选择 <a style="font-weight: 600">{{ selectedRowKeys.length }}</a>项 | |||
| <a style="margin-left: 24px" @click="onClearSelected">清空</a> | |||
| </div> | |||
| <a-table | |||
| ref="table" | |||
| size="middle" | |||
| :scroll="{x:true}" | |||
| bordered | |||
| rowKey="id" | |||
| :columns="columns" | |||
| :dataSource="dataSource" | |||
| :pagination="ipagination" | |||
| :loading="loading" | |||
| :rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}" | |||
| class="j-table-force-nowrap" | |||
| @change="handleTableChange"> | |||
| <template slot="htmlSlot" slot-scope="text"> | |||
| <div v-html="text"></div> | |||
| </template> | |||
| <template slot="imgSlot" slot-scope="text,record"> | |||
| <span v-if="!text" style="font-size: 12px;font-style: italic;">无图片</span> | |||
| <img v-else :src="getImgView(text)" :preview="record.id" height="25px" alt="" style="max-width:80px;font-size: 12px;font-style: italic;"/> | |||
| </template> | |||
| <template slot="fileSlot" slot-scope="text"> | |||
| <span v-if="!text" style="font-size: 12px;font-style: italic;">无文件</span> | |||
| <a-button | |||
| v-else | |||
| :ghost="true" | |||
| type="primary" | |||
| icon="download" | |||
| size="small" | |||
| @click="downloadFile(text)"> | |||
| 下载 | |||
| </a-button> | |||
| </template> | |||
| <span slot="action" slot-scope="text, record"> | |||
| <a @click="handleEdit(record)">编辑</a> | |||
| <a-divider type="vertical" /> | |||
| <a-dropdown> | |||
| <a class="ant-dropdown-link">更多 <a-icon type="down" /></a> | |||
| <a-menu slot="overlay"> | |||
| <a-menu-item> | |||
| <a @click="handleDetail(record)">详情</a> | |||
| </a-menu-item> | |||
| <a-menu-item> | |||
| <a-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)"> | |||
| <a>删除</a> | |||
| </a-popconfirm> | |||
| </a-menu-item> | |||
| </a-menu> | |||
| </a-dropdown> | |||
| </span> | |||
| </a-table> | |||
| </div> | |||
| <applet-article-modal ref="modalForm" @ok="modalFormOk"></applet-article-modal> | |||
| </a-card> | |||
| </template> | |||
| <script> | |||
| import '@/assets/less/TableExpand.less' | |||
| import { mixinDevice } from '@/utils/mixin' | |||
| import { JeecgListMixin } from '@/mixins/JeecgListMixin' | |||
| import AppletArticleModal from './modules/AppletArticleModal.vue' | |||
| export default { | |||
| name: 'AppletArticleList', | |||
| mixins:[JeecgListMixin, mixinDevice], | |||
| components: { | |||
| AppletArticleModal | |||
| }, | |||
| data () { | |||
| return { | |||
| description: '文章管理页面', | |||
| // 表头 | |||
| columns: [ | |||
| { | |||
| title: '#', | |||
| dataIndex: '', | |||
| key:'rowIndex', | |||
| width:60, | |||
| align:"center", | |||
| customRender:function (t,r,index) { | |||
| return parseInt(index)+1; | |||
| } | |||
| }, | |||
| { | |||
| title:'标题', | |||
| align:"center", | |||
| dataIndex: 'title' | |||
| }, | |||
| { | |||
| title:'内容', | |||
| align:"center", | |||
| dataIndex: 'content' | |||
| }, | |||
| { | |||
| title:'封面', | |||
| align:"center", | |||
| dataIndex: 'image' | |||
| }, | |||
| { | |||
| title: '操作', | |||
| dataIndex: 'action', | |||
| align:"center", | |||
| fixed:"right", | |||
| width:147, | |||
| scopedSlots: { customRender: 'action' } | |||
| } | |||
| ], | |||
| url: { | |||
| list: "/appletArticle/appletArticle/list", | |||
| delete: "/appletArticle/appletArticle/delete", | |||
| deleteBatch: "/appletArticle/appletArticle/deleteBatch", | |||
| exportXlsUrl: "/appletArticle/appletArticle/exportXls", | |||
| importExcelUrl: "appletArticle/appletArticle/importExcel", | |||
| }, | |||
| dictOptions:{}, | |||
| superFieldList:[], | |||
| } | |||
| }, | |||
| created() { | |||
| this.getSuperFieldList(); | |||
| }, | |||
| computed: { | |||
| importExcelUrl: function(){ | |||
| return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`; | |||
| }, | |||
| }, | |||
| methods: { | |||
| initDictConfig(){ | |||
| }, | |||
| getSuperFieldList(){ | |||
| let fieldList=[]; | |||
| fieldList.push({type:'string',value:'title',text:'标题',dictCode:''}) | |||
| fieldList.push({type:'Text',value:'content',text:'内容',dictCode:''}) | |||
| fieldList.push({type:'string',value:'image',text:'封面',dictCode:''}) | |||
| this.superFieldList = fieldList | |||
| } | |||
| } | |||
| } | |||
| </script> | |||
| <style scoped> | |||
| @import '~@assets/less/common.less'; | |||
| </style> | |||
| @ -0,0 +1,114 @@ | |||
| <template> | |||
| <a-spin :spinning="confirmLoading"> | |||
| <j-form-container :disabled="formDisabled"> | |||
| <a-form-model ref="form" :model="model" :rules="validatorRules" slot="detail"> | |||
| <a-row> | |||
| <a-col :span="24"> | |||
| <a-form-model-item label="标题" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="title"> | |||
| <a-input v-model="model.title" placeholder="请输入标题" ></a-input> | |||
| </a-form-model-item> | |||
| </a-col> | |||
| <a-col :span="24"> | |||
| <a-form-model-item label="内容" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="content"> | |||
| <a-input v-model="model.content" placeholder="请输入内容" ></a-input> | |||
| </a-form-model-item> | |||
| </a-col> | |||
| <a-col :span="24"> | |||
| <a-form-model-item label="封面" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="image"> | |||
| <a-input v-model="model.image" placeholder="请输入封面" ></a-input> | |||
| </a-form-model-item> | |||
| </a-col> | |||
| </a-row> | |||
| </a-form-model> | |||
| </j-form-container> | |||
| </a-spin> | |||
| </template> | |||
| <script> | |||
| import { httpAction, getAction } from '@/api/manage' | |||
| import { validateDuplicateValue } from '@/utils/util' | |||
| export default { | |||
| name: 'AppletArticleForm', | |||
| components: { | |||
| }, | |||
| props: { | |||
| //表单禁用 | |||
| disabled: { | |||
| type: Boolean, | |||
| default: false, | |||
| required: false | |||
| } | |||
| }, | |||
| data () { | |||
| return { | |||
| model:{ | |||
| }, | |||
| labelCol: { | |||
| xs: { span: 24 }, | |||
| sm: { span: 5 }, | |||
| }, | |||
| wrapperCol: { | |||
| xs: { span: 24 }, | |||
| sm: { span: 16 }, | |||
| }, | |||
| confirmLoading: false, | |||
| validatorRules: { | |||
| }, | |||
| url: { | |||
| add: "/appletArticle/appletArticle/add", | |||
| edit: "/appletArticle/appletArticle/edit", | |||
| queryById: "/appletArticle/appletArticle/queryById" | |||
| } | |||
| } | |||
| }, | |||
| computed: { | |||
| formDisabled(){ | |||
| return this.disabled | |||
| }, | |||
| }, | |||
| created () { | |||
| //备份model原始值 | |||
| this.modelDefault = JSON.parse(JSON.stringify(this.model)); | |||
| }, | |||
| methods: { | |||
| add () { | |||
| this.edit(this.modelDefault); | |||
| }, | |||
| edit (record) { | |||
| this.model = Object.assign({}, record); | |||
| this.visible = true; | |||
| }, | |||
| submitForm () { | |||
| const that = this; | |||
| // 触发表单验证 | |||
| this.$refs.form.validate(valid => { | |||
| if (valid) { | |||
| that.confirmLoading = true; | |||
| let httpurl = ''; | |||
| let method = ''; | |||
| if(!this.model.id){ | |||
| httpurl+=this.url.add; | |||
| method = 'post'; | |||
| }else{ | |||
| httpurl+=this.url.edit; | |||
| method = 'put'; | |||
| } | |||
| httpAction(httpurl,this.model,method).then((res)=>{ | |||
| if(res.success){ | |||
| that.$message.success(res.message); | |||
| that.$emit('ok'); | |||
| }else{ | |||
| that.$message.warning(res.message); | |||
| } | |||
| }).finally(() => { | |||
| that.confirmLoading = false; | |||
| }) | |||
| } | |||
| }) | |||
| }, | |||
| } | |||
| } | |||
| </script> | |||
| @ -0,0 +1,84 @@ | |||
| <template> | |||
| <a-drawer | |||
| :title="title" | |||
| :width="width" | |||
| placement="right" | |||
| :closable="false" | |||
| @close="close" | |||
| destroyOnClose | |||
| :visible="visible"> | |||
| <applet-article-form ref="realForm" @ok="submitCallback" :disabled="disableSubmit" normal></applet-article-form> | |||
| <div class="drawer-footer"> | |||
| <a-button @click="handleCancel" style="margin-bottom: 0;">关闭</a-button> | |||
| <a-button v-if="!disableSubmit" @click="handleOk" type="primary" style="margin-bottom: 0;">提交</a-button> | |||
| </div> | |||
| </a-drawer> | |||
| </template> | |||
| <script> | |||
| import AppletArticleForm from './AppletArticleForm.vue' | |||
| export default { | |||
| name: 'AppletArticleModal', | |||
| components: { | |||
| AppletArticleForm | |||
| }, | |||
| data () { | |||
| return { | |||
| title:"操作", | |||
| width:800, | |||
| visible: false, | |||
| disableSubmit: false | |||
| } | |||
| }, | |||
| methods: { | |||
| add () { | |||
| this.visible=true | |||
| this.$nextTick(()=>{ | |||
| this.$refs.realForm.add(); | |||
| }) | |||
| }, | |||
| edit (record) { | |||
| this.visible=true | |||
| this.$nextTick(()=>{ | |||
| this.$refs.realForm.edit(record); | |||
| }); | |||
| }, | |||
| close () { | |||
| this.$emit('close'); | |||
| this.visible = false; | |||
| }, | |||
| submitCallback(){ | |||
| this.$emit('ok'); | |||
| this.visible = false; | |||
| }, | |||
| handleOk () { | |||
| this.$refs.realForm.submitForm(); | |||
| }, | |||
| handleCancel () { | |||
| this.close() | |||
| } | |||
| } | |||
| } | |||
| </script> | |||
| <style lang="less" scoped> | |||
| /** Button按钮间距 */ | |||
| .ant-btn { | |||
| margin-left: 30px; | |||
| margin-bottom: 30px; | |||
| float: right; | |||
| } | |||
| .drawer-footer{ | |||
| position: absolute; | |||
| bottom: -8px; | |||
| width: 100%; | |||
| border-top: 1px solid #e8e8e8; | |||
| padding: 10px 16px; | |||
| text-align: right; | |||
| left: 0; | |||
| background: #fff; | |||
| border-radius: 0 0 2px 2px; | |||
| } | |||
| </style> | |||
| @ -0,0 +1,60 @@ | |||
| <template> | |||
| <j-modal | |||
| :title="title" | |||
| :width="width" | |||
| :visible="visible" | |||
| switchFullscreen | |||
| @ok="handleOk" | |||
| :okButtonProps="{ class:{'jee-hidden': disableSubmit} }" | |||
| @cancel="handleCancel" | |||
| cancelText="关闭"> | |||
| <applet-article-form ref="realForm" @ok="submitCallback" :disabled="disableSubmit"></applet-article-form> | |||
| </j-modal> | |||
| </template> | |||
| <script> | |||
| import AppletArticleForm from './AppletArticleForm.vue' | |||
| export default { | |||
| name: 'AppletArticleModal', | |||
| components: { | |||
| AppletArticleForm | |||
| }, | |||
| data () { | |||
| return { | |||
| title:'', | |||
| width:800, | |||
| visible: false, | |||
| disableSubmit: false | |||
| } | |||
| }, | |||
| methods: { | |||
| add () { | |||
| this.visible=true | |||
| this.$nextTick(()=>{ | |||
| this.$refs.realForm.add(); | |||
| }) | |||
| }, | |||
| edit (record) { | |||
| this.visible=true | |||
| this.$nextTick(()=>{ | |||
| this.$refs.realForm.edit(record); | |||
| }) | |||
| }, | |||
| close () { | |||
| this.$emit('close'); | |||
| this.visible = false; | |||
| }, | |||
| handleOk () { | |||
| this.$refs.realForm.submitForm(); | |||
| }, | |||
| submitCallback(){ | |||
| this.$emit('ok'); | |||
| this.visible = false; | |||
| }, | |||
| handleCancel () { | |||
| this.close() | |||
| } | |||
| } | |||
| } | |||
| </script> | |||
| @ -0,0 +1,61 @@ | |||
| import {defHttp} from '/@/utils/http/axios'; | |||
| import {Modal} from 'ant-design-vue'; | |||
| enum Api { | |||
| list = '/appletArticle/appletArticle/list', | |||
| save='/appletArticle/appletArticle/add', | |||
| edit='/appletArticle/appletArticle/edit', | |||
| deleteOne = '/appletArticle/appletArticle/delete', | |||
| deleteBatch = '/appletArticle/appletArticle/deleteBatch', | |||
| importExcel = '/appletArticle/appletArticle/importExcel', | |||
| exportXls = '/appletArticle/appletArticle/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) => { | |||
| Modal.confirm({ | |||
| 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}); | |||
| } | |||
| @ -0,0 +1,43 @@ | |||
| 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: 'content' | |||
| }, | |||
| { | |||
| title: '封面', | |||
| align:"center", | |||
| dataIndex: 'image' | |||
| }, | |||
| ]; | |||
| //查询数据 | |||
| export const searchFormSchema: FormSchema[] = [ | |||
| ]; | |||
| //表单数据 | |||
| export const formSchema: FormSchema[] = [ | |||
| { | |||
| label: '标题', | |||
| field: 'title', | |||
| component: 'Input', | |||
| }, | |||
| { | |||
| label: '内容', | |||
| field: 'content', | |||
| component: 'Input', | |||
| }, | |||
| { | |||
| label: '封面', | |||
| field: 'image', | |||
| component: 'Input', | |||
| }, | |||
| ]; | |||
| @ -0,0 +1,162 @@ | |||
| <template> | |||
| <div> | |||
| <!--引用表格--> | |||
| <BasicTable @register="registerTable" :rowSelection="rowSelection"> | |||
| <!--插槽:table标题--> | |||
| <template #tableTitle> | |||
| <a-button type="primary" @click="handleAdd" preIcon="ant-design:plus-outlined"> 新增</a-button> | |||
| <a-button type="primary" preIcon="ant-design:export-outlined" @click="onExportXls"> 导出</a-button> | |||
| <j-upload-button type="primary" preIcon="ant-design:import-outlined" @click="onImportXls">导入</j-upload-button> | |||
| <a-dropdown v-if="checkedKeys.length > 0"> | |||
| <template #overlay> | |||
| <a-menu> | |||
| <a-menu-item key="1" @click="batchHandleDelete"> | |||
| <Icon icon="ant-design:delete-outlined"></Icon> | |||
| 删除 | |||
| </a-menu-item> | |||
| </a-menu> | |||
| </template> | |||
| <a-button>批量操作 | |||
| <Icon icon="mdi:chevron-down"></Icon> | |||
| </a-button> | |||
| </a-dropdown> | |||
| </template> | |||
| <!--操作栏--> | |||
| <template #action="{ record }"> | |||
| <TableAction :actions="getTableAction(record)" :dropDownActions="getDropDownAction(record)"/> | |||
| </template> | |||
| <!--字段回显插槽--> | |||
| <template #htmlSlot="{text}"> | |||
| <div v-html="text"></div> | |||
| </template> | |||
| <template #fileSlot="{text}"> | |||
| <span v-if="!text" style="font-size: 12px;font-style: italic;">无文件</span> | |||
| <a-button v-else :ghost="true" type="primary" preIcon="ant-design:download-outlined" size="small" @click="downloadFile(text)">下载</a-button> | |||
| </template> | |||
| </BasicTable> | |||
| <!-- 表单区域 --> | |||
| <AppletArticleModal @register="registerModal" @success="handleSuccess"></AppletArticleModal> | |||
| </div> | |||
| </template> | |||
| <script lang="ts" name="appletArticle-appletArticle" setup> | |||
| import {ref, computed, unref} from 'vue'; | |||
| import {BasicTable, useTable, TableAction} from '/@/components/Table'; | |||
| import {useModal} from '/@/components/Modal'; | |||
| import { useListPage } from '/@/hooks/system/useListPage' | |||
| import AppletArticleModal from './components/AppletArticleModal.vue' | |||
| import {columns, searchFormSchema} from './AppletArticle.data'; | |||
| import {list, deleteOne, batchDelete, getImportUrl,getExportUrl} from './AppletArticle.api'; | |||
| const checkedKeys = ref<Array<string | number>>([]); | |||
| //注册model | |||
| const [registerModal, {openModal}] = useModal(); | |||
| //注册table数据 | |||
| const { prefixCls,tableContext,onExportXls,onImportXls } = useListPage({ | |||
| tableProps:{ | |||
| title: '文章', | |||
| api: list, | |||
| columns, | |||
| canResize:false, | |||
| formConfig: { | |||
| labelWidth: 120, | |||
| schemas: searchFormSchema, | |||
| autoSubmitOnEnter:true, | |||
| showAdvancedButton:true, | |||
| fieldMapToTime: [ | |||
| ], | |||
| }, | |||
| actionColumn: { | |||
| width: 120, | |||
| }, | |||
| }, | |||
| exportConfig: { | |||
| name:"文章", | |||
| url: getExportUrl, | |||
| }, | |||
| importConfig: { | |||
| url: getImportUrl | |||
| }, | |||
| }) | |||
| const [registerTable, {reload},{ rowSelection, selectedRowKeys }] = tableContext | |||
| /** | |||
| * 新增事件 | |||
| */ | |||
| function handleAdd() { | |||
| openModal(true, { | |||
| isUpdate: false, | |||
| showFooter: true, | |||
| }); | |||
| } | |||
| /** | |||
| * 编辑事件 | |||
| */ | |||
| function handleEdit(record: Recordable) { | |||
| openModal(true, { | |||
| record, | |||
| isUpdate: true, | |||
| showFooter: true, | |||
| }); | |||
| } | |||
| /** | |||
| * 详情 | |||
| */ | |||
| function handleDetail(record: Recordable) { | |||
| openModal(true, { | |||
| record, | |||
| isUpdate: true, | |||
| showFooter: false, | |||
| }); | |||
| } | |||
| /** | |||
| * 删除事件 | |||
| */ | |||
| async function handleDelete(record) { | |||
| await deleteOne({id: record.id}, reload); | |||
| } | |||
| /** | |||
| * 批量删除事件 | |||
| */ | |||
| async function batchHandleDelete() { | |||
| await batchDelete({ids: checkedKeys.value}, reload); | |||
| } | |||
| /** | |||
| * 成功回调 | |||
| */ | |||
| function handleSuccess() { | |||
| reload(); | |||
| } | |||
| /** | |||
| * 操作栏 | |||
| */ | |||
| function getTableAction(record){ | |||
| return [ | |||
| { | |||
| label: '编辑', | |||
| onClick: handleEdit.bind(null, record), | |||
| } | |||
| ] | |||
| } | |||
| /** | |||
| * 下拉操作栏 | |||
| */ | |||
| function getDropDownAction(record){ | |||
| return [ | |||
| { | |||
| label: '详情', | |||
| onClick: handleDetail.bind(null, record), | |||
| }, { | |||
| label: '删除', | |||
| popConfirm: { | |||
| title: '是否确认删除', | |||
| confirm: handleDelete.bind(null, record), | |||
| } | |||
| } | |||
| ] | |||
| } | |||
| </script> | |||
| <style scoped> | |||
| </style> | |||
| @ -0,0 +1,58 @@ | |||
| <template> | |||
| <BasicModal v-bind="$attrs" @register="registerModal" :title="title" @ok="handleSubmit"> | |||
| <BasicForm @register="registerForm"/> | |||
| </BasicModal> | |||
| </template> | |||
| <script lang="ts" setup> | |||
| import {ref, computed, unref} from 'vue'; | |||
| import {BasicModal, useModalInner} from '/@/components/Modal'; | |||
| import {BasicForm, useForm} from '/@/components/Form/index'; | |||
| import {formSchema} from '../AppletArticle.data'; | |||
| import {saveOrUpdate} from '../AppletArticle.api'; | |||
| // Emits声明 | |||
| const emit = defineEmits(['register','success']); | |||
| const isUpdate = ref(true); | |||
| //表单配置 | |||
| const [registerForm, {setProps,resetFields, setFieldsValue, validate}] = useForm({ | |||
| labelWidth: 150, | |||
| schemas: formSchema, | |||
| showActionButtonGroup: false, | |||
| }); | |||
| //表单赋值 | |||
| const [registerModal, {setModalProps, closeModal}] = useModalInner(async (data) => { | |||
| //重置表单 | |||
| await resetFields(); | |||
| setModalProps({confirmLoading: false,showCancelBtn:!!data?.showFooter,showOkBtn:!!data?.showFooter}); | |||
| isUpdate.value = !!data?.isUpdate; | |||
| if (unref(isUpdate)) { | |||
| //表单赋值 | |||
| await setFieldsValue({ | |||
| ...data.record, | |||
| }); | |||
| } | |||
| // 隐藏底部时禁用整个表单 | |||
| setProps({ disabled: !data?.showFooter }) | |||
| }); | |||
| //设置标题 | |||
| const title = computed(() => (!unref(isUpdate) ? '新增' : '编辑')); | |||
| //表单提交事件 | |||
| async function handleSubmit(v) { | |||
| try { | |||
| let values = await validate(); | |||
| setModalProps({confirmLoading: true}); | |||
| //提交表单 | |||
| await saveOrUpdate(values, isUpdate.value); | |||
| //关闭弹窗 | |||
| closeModal(); | |||
| //刷新列表 | |||
| emit('success'); | |||
| } finally { | |||
| setModalProps({confirmLoading: false}); | |||
| } | |||
| } | |||
| </script> | |||
| <style lang="less" scoped> | |||
| </style> | |||
| @ -0,0 +1,9 @@ | |||
| package org.jeecg.modules.api.service; | |||
| import org.jeecg.common.api.vo.Result; | |||
| public interface YaoDuShopService { | |||
| byte[] shopQrCode(String token, String id) throws Exception; | |||
| } | |||
| @ -0,0 +1,222 @@ | |||
| package org.jeecg.modules.api.service.impl; | |||
| import com.alibaba.fastjson.JSON; | |||
| import lombok.extern.log4j.Log4j2; | |||
| import org.jeecg.common.util.oss.OssBootUtil; | |||
| import org.jeecg.config.shiro.ShiroRealm; | |||
| import org.jeecg.modules.api.service.YaoDuShopService; | |||
| import org.jeecg.modules.api.utils.WxHttpUtils; | |||
| import org.jeecg.modules.hanHaiMember.entity.HanHaiMember; | |||
| import org.springframework.beans.factory.annotation.Autowired; | |||
| import org.springframework.http.HttpEntity; | |||
| import org.springframework.http.HttpMethod; | |||
| import org.springframework.http.ResponseEntity; | |||
| import org.springframework.stereotype.Service; | |||
| import org.springframework.util.LinkedMultiValueMap; | |||
| import org.springframework.util.MultiValueMap; | |||
| import org.springframework.web.client.RestTemplate; | |||
| import javax.annotation.Resource; | |||
| import javax.imageio.ImageIO; | |||
| import java.awt.*; | |||
| import java.awt.image.BufferedImage; | |||
| import java.io.ByteArrayInputStream; | |||
| import java.io.File; | |||
| import java.net.URL; | |||
| import java.nio.file.Files; | |||
| import java.util.HashMap; | |||
| import java.util.Map; | |||
| @Log4j2 | |||
| @Service | |||
| public class YaoDuShopServiceImpl implements YaoDuShopService { | |||
| //权限配置 | |||
| @Resource | |||
| private ShiroRealm shiroRealm; | |||
| @Autowired | |||
| private WxHttpUtils wxHttpUtils; | |||
| @Override | |||
| public byte[] shopQrCode(String token, String id) throws Exception { | |||
| // HanHaiMember member = shiroRealm.checkUserTokenIsEffectHanHaiOpenId(token); | |||
| return generateWxQrCode("1", "pages_order/gourmet/gourmetDetail?id=" + id, "release"); | |||
| } | |||
| // public byte[] getInviteCode(HanHaiMember user){ | |||
| // | |||
| // // 获取环境配置 | |||
| // String trial = "release"; | |||
| // | |||
| // // 获取必要的配置信息 | |||
| // String xcxSharePage = appletConfigService.getContentByCode("xcxSharePage"); | |||
| // String backgroundImageUrl = appletConfigService.getContentByCode("qr_code_bg"); | |||
| // | |||
| // // 获取二维码位置配置参数 | |||
| // int qrCodeX = appletConfigService.getContentByCodeAsInt("qr_code_x"); | |||
| // int qrCodeY = appletConfigService.getContentByCodeAsInt("qr_code_y"); | |||
| // | |||
| // // 优化缓存策略:使用更精确的缓存key,包含所有影响因素(包括背景图片URL和二维码位置配置) | |||
| // String cacheKey = String.format("inviteCode:final:%s:%s:%s:%s:%s:%s", | |||
| // user.getId(), trial, xcxSharePage.hashCode(), backgroundImageUrl.hashCode(), qrCodeX, qrCodeY); | |||
| // | |||
| // // 移除图片数据的Redis缓存,避免类型转换错误 | |||
| // // 直接检查OSS中是否已存在最终图片 | |||
| // | |||
| // // 检查OSS中是否已存在最终图片 | |||
| // String finalPath = String.format("invite/final/%s_%s_%s_%s_%s_%s.jpg", | |||
| // user.getId(), trial, xcxSharePage.hashCode(), backgroundImageUrl.hashCode(), qrCodeX, qrCodeY); | |||
| // try { | |||
| // InputStream ossFile = OssBootUtil.getOssFile(finalPath, null); | |||
| // if (ossFile != null) { | |||
| // try { | |||
| // // 使用ByteArrayOutputStream读取InputStream中的所有字节 | |||
| // java.io.ByteArrayOutputStream buffer = new java.io.ByteArrayOutputStream(); | |||
| // int nRead; | |||
| // byte[] data = new byte[1024]; | |||
| // while ((nRead = ossFile.read(data, 0, data.length)) != -1) { | |||
| // buffer.write(data, 0, nRead); | |||
| // } | |||
| // buffer.flush(); | |||
| // byte[] ossImageBytes = buffer.toByteArray(); | |||
| // | |||
| // // 直接返回OSS中的图片,不再缓存到Redis | |||
| // log.info("从OSS返回邀请码图片,用户ID: {}", user.getId()); | |||
| // return ossImageBytes; | |||
| // } finally { | |||
| // ossFile.close(); | |||
| // } | |||
| // } | |||
| // } catch (Exception e) { | |||
| // log.debug("OSS中未找到最终图片,需要重新生成,用户ID: {}", user.getId()); | |||
| // } | |||
| // | |||
| // try { | |||
| // // 直接生成小程序码,移除Redis缓存避免类型转换错误 | |||
| // log.info("生成小程序码,用户ID: {}", user.getId()); | |||
| // byte[] qrCodeBytes = generateWxQrCode(user, xcxSharePage, trial); | |||
| // | |||
| // // 生成最终合成图片,传递已获取的配置参数避免重复调用 | |||
| // byte[] finalImage = this.generateAndCombineImagesFromUrl2(qrCodeBytes, backgroundImageUrl, qrCodeX, qrCodeY); | |||
| // | |||
| // // 异步上传到OSS(移除Redis缓存) | |||
| // uploadToOssAsync(finalImage, finalPath); | |||
| // | |||
| // return finalImage; | |||
| // } catch (Exception e) { | |||
| // log.error("生成邀请码失败,用户ID: {}", user.getId(), e); | |||
| // return null; | |||
| // } | |||
| // } | |||
| /** | |||
| * 生成微信小程序码 | |||
| */ | |||
| private byte[] generateWxQrCode(String userId, String xcxSharePage, String trial) throws Exception { | |||
| // 准备微信API请求参数 | |||
| Map<String, Object> param = new HashMap<>(); | |||
| param.put("path", xcxSharePage); | |||
| param.put("scene", userId); | |||
| param.put("width", 150); | |||
| param.put("auto_color", false); | |||
| param.put("env_version", trial); | |||
| Map<String, Object> line_color = new HashMap<>(); | |||
| line_color.put("r", 0); | |||
| line_color.put("g", 0); | |||
| line_color.put("b", 0); | |||
| param.put("line_color", line_color); | |||
| // param.put("is_hyaline", true); | |||
| // 获取微信小程序码 | |||
| String accessToken = wxHttpUtils.getAccessToken(); | |||
| String url = "https://api.weixin.qq.com/wxa/getwxacode?access_token=" + accessToken; | |||
| // 请求微信API获取二维码图片数据 | |||
| RestTemplate rest = new RestTemplate(); | |||
| MultiValueMap<String, String> headers = new LinkedMultiValueMap<>(); | |||
| HttpEntity requestEntity = new HttpEntity(JSON.toJSONString(param), headers); | |||
| ResponseEntity<byte[]> entity = rest.exchange(url, HttpMethod.POST, requestEntity, byte[].class, new Object[0]); | |||
| return entity.getBody(); | |||
| } | |||
| // /** | |||
| // * 异步上传到OSS | |||
| // */ | |||
| // private void uploadToOssAsync(byte[] imageBytes, String ossPath) { | |||
| // // 使用线程池异步执行上传操作 | |||
| // CompletableFuture.runAsync(() -> { | |||
| // try { | |||
| // // 上传到OSS | |||
| // OssBootUtil.upload(new ByteArrayInputStream(imageBytes), ossPath); | |||
| // log.info("异步上传OSS完成,路径: {}", ossPath); | |||
| // } catch (Exception e) { | |||
| // log.error("异步上传OSS失败,路径: {}", ossPath, e); | |||
| // } | |||
| // }, asyncExecutor); | |||
| // } | |||
| public byte[] generateAndCombineImagesFromUrl2(byte[] qrCodeImageByte, String backgroundUrl, int qr_code_x, int qr_code_y) { | |||
| File file = null; | |||
| try { | |||
| // 直接从URL加载背景图像,移除Redis缓存避免类型转换问题 | |||
| URL backgroundImageUrl = new URL(backgroundUrl); | |||
| BufferedImage backgroundImage = ImageIO.read(backgroundImageUrl); | |||
| log.debug("从URL加载背景图片: {}", backgroundUrl); | |||
| // 从字节数组加载小程序码图像 | |||
| BufferedImage qrCodeImage = ImageIO.read(new ByteArrayInputStream(qrCodeImageByte)); | |||
| // 使用传入的配置参数,避免重复调用配置服务 | |||
| // 直接使用背景图片作为基础,避免创建新的图像导致黑边 | |||
| BufferedImage combinedImage = new BufferedImage( | |||
| backgroundImage.getWidth(), | |||
| backgroundImage.getHeight(), | |||
| backgroundImage.getType() // 使用背景图片的原始类型,保持透明度 | |||
| ); | |||
| Graphics2D g2d = combinedImage.createGraphics(); | |||
| // 设置高质量渲染 | |||
| g2d.setRenderingHint(RenderingHints.KEY_INTERPOLATION, RenderingHints.VALUE_INTERPOLATION_BILINEAR); | |||
| g2d.setRenderingHint(RenderingHints.KEY_RENDERING, RenderingHints.VALUE_RENDER_QUALITY); | |||
| g2d.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON); | |||
| // 先绘制背景图像,完全覆盖画布 | |||
| g2d.drawImage(backgroundImage, 0, 0, backgroundImage.getWidth(), backgroundImage.getHeight(), null); | |||
| int wh = backgroundImage.getWidth() / 3; | |||
| // 计算小程序码放置的位置(这里以中心位置为例) | |||
| int qrCodeX = (backgroundImage.getWidth() - wh) / 2; | |||
| int qrCodeY = (int) ((backgroundImage.getHeight() - wh) * 0.6); | |||
| // 绘制小程序码图像,使用传入的位置参数 | |||
| g2d.drawImage(qrCodeImage, qrCodeX + qr_code_x, qrCodeY + qr_code_y, wh, wh, null); | |||
| // 释放Graphics2D资源 | |||
| g2d.dispose(); | |||
| // 将合并后的图像保存到临时文件 | |||
| file = File.createTempFile("combined_", ".png"); | |||
| ImageIO.write(combinedImage, "png", file); | |||
| // 读取文件字节并返回 | |||
| return Files.readAllBytes(file.toPath()); | |||
| } catch (Exception e) { | |||
| log.error("生成合并图片失败", e); | |||
| throw new RuntimeException("生成合并图片失败", e); | |||
| } finally { | |||
| // 删除临时文件 | |||
| if (file != null && file.exists()) { | |||
| file.delete(); | |||
| } | |||
| } | |||
| } | |||
| } | |||
| @ -0,0 +1,264 @@ | |||
| package org.jeecg.modules.api.utils; | |||
| import lombok.extern.slf4j.Slf4j; | |||
| import org.apache.http.HttpStatus; | |||
| import org.apache.http.client.config.RequestConfig; | |||
| import org.apache.http.client.methods.CloseableHttpResponse; | |||
| import org.apache.http.client.methods.HttpGet; | |||
| import org.apache.http.client.methods.HttpPost; | |||
| import org.apache.http.client.utils.URIBuilder; | |||
| import org.apache.http.conn.ssl.SSLConnectionSocketFactory; | |||
| import org.apache.http.conn.ssl.SSLContextBuilder; | |||
| import org.apache.http.conn.ssl.TrustStrategy; | |||
| import org.apache.http.entity.StringEntity; | |||
| import org.apache.http.impl.client.CloseableHttpClient; | |||
| import org.apache.http.impl.client.DefaultHttpRequestRetryHandler; | |||
| import org.apache.http.impl.client.HttpClients; | |||
| import org.apache.http.util.EntityUtils; | |||
| import javax.net.ssl.SSLContext; | |||
| import java.io.IOException; | |||
| import java.net.URI; | |||
| import java.security.KeyManagementException; | |||
| import java.security.KeyStoreException; | |||
| import java.security.NoSuchAlgorithmException; | |||
| import java.security.cert.CertificateException; | |||
| import java.security.cert.X509Certificate; | |||
| import java.util.Map; | |||
| /** | |||
| * 微信API专用HTTP客户端工具类 | |||
| * 具有超时配置、重试机制和异常处理 | |||
| * | |||
| * @author system | |||
| * @date 2025-01-25 | |||
| */ | |||
| @Slf4j | |||
| public class WxHttpClientUtil { | |||
| // 超时配置常量 | |||
| private static final int CONNECTION_REQUEST_TIMEOUT = 10000; // 10秒 | |||
| private static final int CONNECT_TIMEOUT = 15000; // 15秒 | |||
| private static final int SOCKET_TIMEOUT = 30000; // 30秒 | |||
| private static final int MAX_RETRY_COUNT = 3; // 最大重试次数 | |||
| /** | |||
| * 创建带超时配置的SSL客户端 | |||
| */ | |||
| private static CloseableHttpClient createWxHttpClient() { | |||
| try { | |||
| // SSL配置 - 信任所有证书 | |||
| SSLContext sslContext = new SSLContextBuilder() | |||
| .loadTrustMaterial(null, new TrustStrategy() { | |||
| @Override | |||
| public boolean isTrusted(X509Certificate[] chain, String authType) throws CertificateException { | |||
| return true; | |||
| } | |||
| }).build(); | |||
| SSLConnectionSocketFactory sslsf = new SSLConnectionSocketFactory( | |||
| sslContext, | |||
| SSLConnectionSocketFactory.ALLOW_ALL_HOSTNAME_VERIFIER | |||
| ); | |||
| // 请求配置 | |||
| RequestConfig requestConfig = RequestConfig.custom() | |||
| .setConnectionRequestTimeout(CONNECTION_REQUEST_TIMEOUT) | |||
| .setConnectTimeout(CONNECT_TIMEOUT) | |||
| .setSocketTimeout(SOCKET_TIMEOUT) | |||
| .build(); | |||
| // 重试处理器 | |||
| DefaultHttpRequestRetryHandler retryHandler = new DefaultHttpRequestRetryHandler(MAX_RETRY_COUNT, true); | |||
| return HttpClients.custom() | |||
| .setSSLSocketFactory(sslsf) | |||
| .setDefaultRequestConfig(requestConfig) | |||
| .setRetryHandler(retryHandler) | |||
| .build(); | |||
| } catch (KeyManagementException | NoSuchAlgorithmException | KeyStoreException e) { | |||
| log.error("创建SSL客户端失败: {}", e.getMessage(), e); | |||
| // 返回默认客户端作为后备 | |||
| return HttpClients.createDefault(); | |||
| } | |||
| } | |||
| /** | |||
| * 执行GET请求(微信API专用) | |||
| * @param url 请求URL | |||
| * @param params 请求参数 | |||
| * @return 响应字符串 | |||
| */ | |||
| public static String doGet(String url, Map<String, String> params) { | |||
| return doGetWithRetry(url, params, 0); | |||
| } | |||
| /** | |||
| * 执行GET请求(微信API专用) | |||
| * @param url 请求URL | |||
| * @return 响应字符串 | |||
| */ | |||
| public static String doGet(String url) { | |||
| return doGet(url, null); | |||
| } | |||
| /** | |||
| * 带重试机制的GET请求 | |||
| */ | |||
| private static String doGetWithRetry(String url, Map<String, String> params, int retryCount) { | |||
| CloseableHttpClient httpClient = null; | |||
| CloseableHttpResponse response = null; | |||
| try { | |||
| log.info("开始请求微信API: {}, 重试次数: {}", url, retryCount); | |||
| httpClient = createWxHttpClient(); | |||
| // 构建URI | |||
| URIBuilder builder = new URIBuilder(url); | |||
| if (params != null) { | |||
| for (Map.Entry<String, String> entry : params.entrySet()) { | |||
| builder.addParameter(entry.getKey(), entry.getValue()); | |||
| } | |||
| } | |||
| URI uri = builder.build(); | |||
| // 创建GET请求 | |||
| HttpGet httpGet = new HttpGet(uri); | |||
| httpGet.setHeader("User-Agent", "WxHttpClient/1.0"); | |||
| httpGet.setHeader("Accept", "application/json, text/plain, */*"); | |||
| // 执行请求 | |||
| response = httpClient.execute(httpGet); | |||
| // 检查响应状态 | |||
| int statusCode = response.getStatusLine().getStatusCode(); | |||
| if (statusCode == HttpStatus.SC_OK) { | |||
| String result = EntityUtils.toString(response.getEntity(), "UTF-8"); | |||
| log.info("微信API请求成功: {}", url); | |||
| return result; | |||
| } else { | |||
| log.warn("微信API返回非200状态码: {}, URL: {}", statusCode, url); | |||
| throw new RuntimeException("HTTP状态码异常: " + statusCode); | |||
| } | |||
| } catch (Exception e) { | |||
| log.error("微信API请求失败: {}, 错误: {}, 重试次数: {}", url, e.getMessage(), retryCount); | |||
| // 如果还有重试机会,进行重试 | |||
| if (retryCount < MAX_RETRY_COUNT) { | |||
| log.info("准备进行第{}次重试...", retryCount + 1); | |||
| try { | |||
| Thread.sleep(1000 * (retryCount + 1)); // 递增延迟 | |||
| } catch (InterruptedException ie) { | |||
| Thread.currentThread().interrupt(); | |||
| } | |||
| return doGetWithRetry(url, params, retryCount + 1); | |||
| } | |||
| // 重试次数用尽,抛出异常 | |||
| throw new RuntimeException("微信API请求失败,已重试" + MAX_RETRY_COUNT + "次: " + e.getMessage(), e); | |||
| } finally { | |||
| // 关闭资源 | |||
| if (response != null) { | |||
| try { | |||
| response.close(); | |||
| } catch (IOException e) { | |||
| log.error("关闭响应失败: {}", e.getMessage()); | |||
| } | |||
| } | |||
| if (httpClient != null) { | |||
| try { | |||
| httpClient.close(); | |||
| } catch (IOException e) { | |||
| log.error("关闭客户端失败: {}", e.getMessage()); | |||
| } | |||
| } | |||
| } | |||
| } | |||
| /** | |||
| * 执行POST请求(微信API专用) | |||
| * @param url 请求URL | |||
| * @param jsonBody JSON请求体 | |||
| * @return 响应字符串 | |||
| */ | |||
| public static String doPost(String url, String jsonBody) { | |||
| return doPostWithRetry(url, jsonBody, 0); | |||
| } | |||
| /** | |||
| * 带重试机制的POST请求 | |||
| */ | |||
| private static String doPostWithRetry(String url, String jsonBody, int retryCount) { | |||
| CloseableHttpClient httpClient = null; | |||
| CloseableHttpResponse response = null; | |||
| try { | |||
| log.info("开始POST请求微信API: {}, 重试次数: {}", url, retryCount); | |||
| httpClient = createWxHttpClient(); | |||
| // 创建POST请求 | |||
| HttpPost httpPost = new HttpPost(url); | |||
| httpPost.setHeader("Content-Type", "application/json; charset=UTF-8"); | |||
| httpPost.setHeader("User-Agent", "WxHttpClient/1.0"); | |||
| // 设置请求体 | |||
| if (jsonBody != null) { | |||
| StringEntity entity = new StringEntity(jsonBody, "UTF-8"); | |||
| httpPost.setEntity(entity); | |||
| } | |||
| // 执行请求 | |||
| response = httpClient.execute(httpPost); | |||
| // 检查响应状态 | |||
| int statusCode = response.getStatusLine().getStatusCode(); | |||
| if (statusCode == HttpStatus.SC_OK) { | |||
| String result = EntityUtils.toString(response.getEntity(), "UTF-8"); | |||
| log.info("微信API POST请求成功: {}", url); | |||
| return result; | |||
| } else { | |||
| log.warn("微信API POST返回非200状态码: {}, URL: {}", statusCode, url); | |||
| throw new RuntimeException("HTTP状态码异常: " + statusCode); | |||
| } | |||
| } catch (Exception e) { | |||
| log.error("微信API POST请求失败: {}, 错误: {}, 重试次数: {}", url, e.getMessage(), retryCount); | |||
| // 如果还有重试机会,进行重试 | |||
| if (retryCount < MAX_RETRY_COUNT) { | |||
| log.info("准备进行第{}次重试...", retryCount + 1); | |||
| try { | |||
| Thread.sleep(1000 * (retryCount + 1)); // 递增延迟 | |||
| } catch (InterruptedException ie) { | |||
| Thread.currentThread().interrupt(); | |||
| } | |||
| return doPostWithRetry(url, jsonBody, retryCount + 1); | |||
| } | |||
| // 重试次数用尽,抛出异常 | |||
| throw new RuntimeException("微信API POST请求失败,已重试" + MAX_RETRY_COUNT + "次: " + e.getMessage(), e); | |||
| } finally { | |||
| // 关闭资源 | |||
| if (response != null) { | |||
| try { | |||
| response.close(); | |||
| } catch (IOException e) { | |||
| log.error("关闭响应失败: {}", e.getMessage()); | |||
| } | |||
| } | |||
| if (httpClient != null) { | |||
| try { | |||
| httpClient.close(); | |||
| } catch (IOException e) { | |||
| log.error("关闭客户端失败: {}", e.getMessage()); | |||
| } | |||
| } | |||
| } | |||
| } | |||
| } | |||
| @ -0,0 +1,179 @@ | |||
| package org.jeecg.modules.api.utils; | |||
| import com.alibaba.fastjson.JSON; | |||
| import com.alibaba.fastjson.JSONObject; | |||
| import com.alibaba.fastjson.TypeReference; | |||
| import lombok.Getter; | |||
| import org.springframework.beans.factory.annotation.Value; | |||
| import org.springframework.stereotype.Component; | |||
| import java.io.BufferedReader; | |||
| import java.io.DataOutputStream; | |||
| import java.io.InputStreamReader; | |||
| import java.io.UnsupportedEncodingException; | |||
| import java.net.HttpURLConnection; | |||
| import java.net.URL; | |||
| import java.nio.charset.StandardCharsets; | |||
| import java.security.MessageDigest; | |||
| import java.security.NoSuchAlgorithmException; | |||
| import java.util.Map; | |||
| import java.util.TreeMap; | |||
| @Getter | |||
| @Component | |||
| public class WxHttpUtils { | |||
| @Value("${wechat.mpAppId}") | |||
| private String appid; | |||
| @Value("${wechat.mpAppSecret}") | |||
| private String secret;// | |||
| // @Value("${wechat.merchantId}") | |||
| // private String mchId;// | |||
| // @Value("${wechat.official.appid}") | |||
| // private String officialAppid; | |||
| // @Value("${wechat.official.appsecret}") | |||
| // private String officialSecret;// | |||
| private static String shipmentUrl = "https://api.weixin.qq.com/wxa/sec/order/upload_shipping_info?access_token="; | |||
| private static final String GET_USER_PHONE_NUMBER = "https://api.weixin.qq.com/wxa/business/getuserphonenumber"; | |||
| private static String jsapiTicket = null; // 用于缓存jsapi_ticket | |||
| /** | |||
| * 获取令牌 | |||
| * | |||
| * @return | |||
| */ | |||
| public String getAccessToken(String mAppId, String mSecret) { | |||
| String requestUrl = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=" + mAppId + "&secret=" + mSecret; | |||
| try { | |||
| // 使用增强版HTTP客户端,具有超时配置和重试机制 | |||
| String response = WxHttpClientUtil.doGet(requestUrl); | |||
| Map<String, String> map = JSON.parseObject(response, new TypeReference<Map<String, String>>() {}); | |||
| String accessToken = map.get("access_token"); | |||
| if (accessToken == null || accessToken.isEmpty()) { | |||
| throw new RuntimeException("获取access_token失败,响应: " + response); | |||
| } | |||
| return accessToken; | |||
| } catch (Exception e) { | |||
| throw new RuntimeException("获取微信access_token失败: " + e.getMessage(), e); | |||
| } | |||
| } | |||
| public String getAccessToken() { | |||
| return getAccessToken(appid, secret); | |||
| } | |||
| public String getPhoneNumber(String code) throws Exception { | |||
| URL url = new URL(GET_USER_PHONE_NUMBER + "?access_token=" + this.getAccessToken()); | |||
| HttpURLConnection conn = (HttpURLConnection) url.openConnection(); | |||
| conn.setRequestMethod("POST"); | |||
| conn.setRequestProperty("Content-Type", "application/json; utf-8"); | |||
| conn.setRequestProperty("Accept", "application/json"); | |||
| conn.setDoOutput(true); | |||
| JSONObject jsonInput = new JSONObject(); | |||
| jsonInput.put("code", code); | |||
| try (DataOutputStream os = new DataOutputStream(conn.getOutputStream())) { | |||
| byte[] input = jsonInput.toString().getBytes(StandardCharsets.UTF_8); | |||
| os.write(input, 0, input.length); | |||
| } | |||
| try (BufferedReader br = new BufferedReader( | |||
| new InputStreamReader(conn.getInputStream(), StandardCharsets.UTF_8))) { | |||
| StringBuilder response = new StringBuilder(); | |||
| String responseLine; | |||
| while ((responseLine = br.readLine()) != null) { | |||
| response.append(responseLine.trim()); | |||
| } | |||
| //获取手机号码 | |||
| return response.toString(); | |||
| } | |||
| } | |||
| // 获取jsapi_ticket | |||
| private String getJsApiTicket() throws Exception { | |||
| String accessToken = getAccessToken("officialAppid", "officialSecret"); | |||
| String url = "https://api.weixin.qq.com/cgi-bin/ticket/getticket?access_token=" + accessToken + "&type=jsapi"; | |||
| jsapiTicket = sendGet(url, "UTF-8"); | |||
| System.out.println("jsapiTicket=========="+jsapiTicket); | |||
| return jsapiTicket; | |||
| } | |||
| // 发送GET请求并获取响应 | |||
| private String sendGet(String url, String encoding) throws Exception { | |||
| HttpURLConnection connection = (HttpURLConnection) new URL(url).openConnection(); | |||
| connection.setRequestMethod("GET"); | |||
| connection.connect(); | |||
| BufferedReader in = new BufferedReader(new InputStreamReader(connection.getInputStream(), encoding)); | |||
| String inputLine; | |||
| StringBuilder content = new StringBuilder(); | |||
| while ((inputLine = in.readLine()) != null) { | |||
| content.append(inputLine); | |||
| } | |||
| in.close(); | |||
| connection.disconnect(); | |||
| return content.toString(); | |||
| } | |||
| /** | |||
| * 获取公众号签名 | |||
| * | |||
| * @param url URL | |||
| * @return 结果 | |||
| */ | |||
| public Map<String, Object> getSignPackage(String url) throws Exception { | |||
| String jsapiTicket = getJsApiTicket(); | |||
| JSONObject jsonObject = JSONObject.parseObject(jsapiTicket); // 解析JSON字符串 | |||
| jsapiTicket = jsonObject.getString("ticket"); // 提取access_token | |||
| String nonceStr = createNonceStr(); | |||
| long timestamp = System.currentTimeMillis() / 1000; | |||
| String string1 = "jsapi_ticket=" + jsapiTicket + | |||
| "&noncestr=" + nonceStr + | |||
| "×tamp=" + timestamp + | |||
| "&url=" + url; // 确保URL是编码过的 | |||
| String signature = sha1(string1); | |||
| Map<String, Object> ret = new TreeMap<>(); | |||
| ret.put("appId", "officialAppid"); | |||
| ret.put("timestamp", timestamp); | |||
| ret.put("nonceStr", nonceStr); | |||
| ret.put("signature", signature); | |||
| ret.put("jsapi_ticket", jsapiTicket); | |||
| ret.put("url",url); | |||
| return ret; | |||
| } | |||
| // 生成随机字符串 | |||
| private String createNonceStr() { | |||
| return String.valueOf((long) (Math.random() * 100000000)); | |||
| } | |||
| // SHA1加密 | |||
| private String sha1(String input) throws NoSuchAlgorithmException, UnsupportedEncodingException { | |||
| MessageDigest md = MessageDigest.getInstance("SHA-1"); | |||
| byte[] messageDigest = md.digest(input.getBytes("UTF-8")); | |||
| StringBuilder hexString = new StringBuilder(); | |||
| for (byte b : messageDigest) { | |||
| String hex = Integer.toHexString(0xff & b); | |||
| if (hex.length() == 1) hexString.append('0'); | |||
| hexString.append(hex); | |||
| } | |||
| return hexString.toString(); | |||
| } | |||
| } | |||
| @ -0,0 +1,35 @@ | |||
| package org.jeecg.modules.api.yaoduapi; | |||
| import org.apache.commons.lang.StringUtils; | |||
| import org.jeecg.common.api.vo.Result; | |||
| import org.jeecg.modules.api.bean.YaoDuOrderBean; | |||
| import org.jeecg.modules.appletArticle.entity.AppletArticle; | |||
| import org.jeecg.modules.appletArticle.service.IAppletArticleService; | |||
| import org.springframework.beans.factory.annotation.Autowired; | |||
| import org.springframework.web.bind.annotation.GetMapping; | |||
| import org.springframework.web.bind.annotation.RequestMapping; | |||
| import org.springframework.web.bind.annotation.RestController; | |||
| @RestController | |||
| @RequestMapping("/city/article") | |||
| public class YaoDuArticleController { | |||
| @Autowired | |||
| private IAppletArticleService appletArticleService; | |||
| @GetMapping(value = "/list") | |||
| public Result<?> list(String title, YaoDuOrderBean bean) { | |||
| return Result.OK(appletArticleService | |||
| .lambdaQuery() | |||
| .eq(StringUtils.isNotEmpty(title), AppletArticle::getTitle, title) | |||
| .select(AppletArticle::getId, AppletArticle::getTitle, AppletArticle::getImage) | |||
| .orderByDesc(AppletArticle::getCreateTime) | |||
| .page(bean.getPage())); | |||
| } | |||
| @GetMapping(value = "/queryById") | |||
| public Result<?> queryById(String id) { | |||
| return Result.OK(appletArticleService.getById(id)); | |||
| } | |||
| } | |||
| @ -0,0 +1,31 @@ | |||
| package org.jeecg.modules.api.yaoduapi; | |||
| import io.swagger.annotations.Api; | |||
| import io.swagger.annotations.ApiOperation; | |||
| import lombok.extern.slf4j.Slf4j; | |||
| import org.jeecg.common.api.vo.Result; | |||
| import org.jeecg.modules.api.service.YaoDuShopService; | |||
| import org.springframework.beans.factory.annotation.Autowired; | |||
| import org.springframework.http.MediaType; | |||
| import org.springframework.web.bind.annotation.GetMapping; | |||
| import org.springframework.web.bind.annotation.RequestHeader; | |||
| import org.springframework.web.bind.annotation.RequestMapping; | |||
| import org.springframework.web.bind.annotation.RestController; | |||
| @Api(tags="店铺模块相关接口") | |||
| @RestController | |||
| @RequestMapping("/city/shop") | |||
| @Slf4j | |||
| public class YaoDuShopController { | |||
| @Autowired | |||
| private YaoDuShopService yaoDuShopService; | |||
| // 获取店铺二维码 | |||
| @ApiOperation(value="获取店铺二维码", notes="获取店铺二维码") | |||
| @GetMapping(value = "/shopQrCode", produces = MediaType.IMAGE_PNG_VALUE) | |||
| public byte[] shopQrCode(@RequestHeader(value = "X-Access-Token", required = false) String token, String id) throws Exception { | |||
| return yaoDuShopService.shopQrCode(token, id); | |||
| } | |||
| } | |||