fix-企业微信跳转

This commit is contained in:
xl
2024-07-15 15:30:36 +08:00
parent 17e16c70d6
commit 5f835e6b9c
3 changed files with 26 additions and 3 deletions

View File

@@ -10,11 +10,24 @@
4. Mybatis Plus 3.3.1 4. Mybatis Plus 3.3.1
# 接口文档链接 # 接口文档链接
http://localhost:8081/jmt_app_api/v2/api-docs?group=front http://localhost:8081/jmt_app_api/v2/api-docs?group=front
线上打包命令: 线上打包命令: mvn clean package -Dmaven.test.skip=true -Pprod
mvn clean package -Dmaven.test.skip=true -Pprod
mkdir /home/env/nginx/html/ 存放静态资源
mkdir /home/env/nginx/html/car_repair_web 存放维修店后台管理的静态资源
mkdir/home/env/nginx/html/car_admin_web 存放后台管理的静态资源
上传jar包到/home/app/api/car-system-app-api 移动端
上传jar包到/home/app/api/car-system-admin-api 后台管理
项目运行 npm run dev
项目启动 npm i/npm install
# 图片规格介绍 # 图片规格介绍
@@ -59,4 +72,4 @@ icon尺寸:45x45
商品详情: 商品详情:
可在后台上传纯图片/文字/图文 三种形式介绍商品 可在后台上传纯图片/文字/图文 三种形式介绍商品
``` ```

View File

@@ -1,5 +1,7 @@
package com.zbkj.common.constants; package com.zbkj.common.constants;
import com.zbkj.common.model.dealer.CarDealerInfo;
/** /**
* @author huahua * @author huahua
* 2023/11/17 * 2023/11/17
@@ -20,4 +22,9 @@ public class CarConstants {
* 拒绝/驳回 * 拒绝/驳回
*/ */
public static final Integer APPLY_STATUS_2 = 2; public static final Integer APPLY_STATUS_2 = 2;
/**
* 企业微信车商跳转链接
*/
public static final String CAR_DEALER_WE_COM_LINK = "we_com_link";
} }

View File

@@ -22,4 +22,7 @@ public class TemplateCardMessageRequest implements Serializable {
//二级标题+文本列表该字段可为空数组但有数据的话需确认对应字段是否必填列表长度不超过6 //二级标题+文本列表该字段可为空数组但有数据的话需确认对应字段是否必填列表长度不超过6
@ApiModelProperty("二级标题+文本列表") @ApiModelProperty("二级标题+文本列表")
private List<HorizontalContent> horizontalContents; private List<HorizontalContent> horizontalContents;
@ApiModelProperty("跳转链接")
private String wxUrl;
} }