Kaynağa Gözat

新增推送SEO外链功能

Jack 10 ay önce
ebeveyn
işleme
b635161d75
32 değiştirilmiş dosya ile 1863 ekleme ve 50 silme
  1. 35 0
      jeecg-boot/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/api/okki/account/controller/OkkiAccountApiController.java
  2. 162 0
      jeecg-boot/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/api/okki/account/controller/OkkiAccountController.java
  3. 72 0
      jeecg-boot/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/api/okki/account/entity/OkkiAccount.java
  4. 14 0
      jeecg-boot/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/api/okki/account/mapper/OkkiAccountMapper.java
  5. 5 0
      jeecg-boot/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/api/okki/account/mapper/xml/OkkiAccountMapper.xml
  6. 15 0
      jeecg-boot/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/api/okki/account/service/IOkkiAccountService.java
  7. 23 0
      jeecg-boot/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/api/okki/account/service/impl/OkkiAccountServiceImpl.java
  8. 0 6
      jeecg-boot/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/api/okki/blog/entity/OkkiBlog.java
  9. 4 1
      jeecg-boot/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/api/okki/blog/service/impl/OkkiBlogServiceImpl.java
  10. 7 0
      jeecg-boot/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/api/okki/common/controller/UploadController.java
  11. 5 0
      jeecg-boot/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/api/okki/common/service/IUploadService.java
  12. 53 0
      jeecg-boot/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/api/okki/common/service/impl/UploadServiceImpl.java
  13. 180 0
      jeecg-boot/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/api/okki/externallink/controller/OkkiExternalLinkController.java
  14. 95 0
      jeecg-boot/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/api/okki/externallink/entity/OkkiExternalLink.java
  15. 14 0
      jeecg-boot/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/api/okki/externallink/mapper/OkkiExternalLinkMapper.java
  16. 5 0
      jeecg-boot/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/api/okki/externallink/mapper/xml/OkkiExternalLinkMapper.xml
  17. 15 0
      jeecg-boot/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/api/okki/externallink/service/IOkkiExternalLinkService.java
  18. 95 0
      jeecg-boot/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/api/okki/externallink/service/impl/OkkiExternalLinkServiceImpl.java
  19. 0 17
      jeecg-boot/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/api/okki/site/param/BaseParam.java
  20. 0 26
      jeecg-boot/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/api/okki/site/param/UpdateSiteParam.java
  21. 64 0
      jeecgboot-vue3/src/views/okki/account/OkkiAccount.api.ts
  22. 106 0
      jeecgboot-vue3/src/views/okki/account/OkkiAccount.data.ts
  23. 186 0
      jeecgboot-vue3/src/views/okki/account/OkkiAccountList.vue
  24. 26 0
      jeecgboot-vue3/src/views/okki/account/V20240510_1__menu_insert_OkkiAccount.sql
  25. 70 0
      jeecgboot-vue3/src/views/okki/account/components/OkkiAccountForm.vue
  26. 66 0
      jeecgboot-vue3/src/views/okki/account/components/OkkiAccountModal.vue
  27. 64 0
      jeecgboot-vue3/src/views/okki/externallink/OkkiExternalLink.api.ts
  28. 130 0
      jeecgboot-vue3/src/views/okki/externallink/OkkiExternalLink.data.ts
  29. 190 0
      jeecgboot-vue3/src/views/okki/externallink/OkkiExternalLinkList.vue
  30. 26 0
      jeecgboot-vue3/src/views/okki/externallink/V20240509_1__menu_insert_OkkiExternalLink.sql
  31. 70 0
      jeecgboot-vue3/src/views/okki/externallink/components/OkkiExternalLinkForm.vue
  32. 66 0
      jeecgboot-vue3/src/views/okki/externallink/components/OkkiExternalLinkModal.vue

+ 35 - 0
jeecg-boot/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/api/okki/account/controller/OkkiAccountApiController.java

@@ -0,0 +1,35 @@
+package org.jeecg.modules.api.okki.account.controller;
+
+import lombok.extern.slf4j.Slf4j;
+import org.apache.http.HttpHeaders;
+import org.jeecg.common.api.vo.Result;
+import org.jeecg.modules.api.okki.account.entity.OkkiAccount;
+import org.jeecg.modules.api.okki.account.service.IOkkiAccountService;
+import org.springframework.web.bind.annotation.*;
+
+import javax.annotation.Resource;
+
+@RestController
+@Slf4j
+@RequestMapping("/website")
+public class OkkiAccountApiController {
+
+    @Resource
+    private IOkkiAccountService okkiAccountService;
+
+    @PostMapping(value = "/account/store")
+    public Result<String> add(@RequestBody OkkiAccount okkiAccount, @RequestHeader(HttpHeaders.AUTHORIZATION) String authorization) {
+        log.info("请求参数 param" + okkiAccount.toString() + "authorization" + authorization);
+        String Authorization = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VybmFtZSI6ImRlYW4iLCJleHAiOjE3MTQ0NjU5Njl9.QdCBYR8mioXcKGi1n5RdMQ5RbJHCSGbE8dkdwYuOXh4";
+        if (!authorization.equals(Authorization)) {
+            return Result.error("sign 验证不通过");
+        }
+        boolean result = okkiAccountService.insertAccount(okkiAccount);
+        log.info("请求成功,返回结果" + result);
+        if (result) {
+            return Result.OK("添加成功!");
+        }else {
+            return Result.error("添加失败!");
+        }
+    }
+}

+ 162 - 0
jeecg-boot/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/api/okki/account/controller/OkkiAccountController.java

@@ -0,0 +1,162 @@
+package org.jeecg.modules.api.okki.account.controller;
+
+import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
+import io.swagger.annotations.Api;
+import io.swagger.annotations.ApiOperation;
+import lombok.extern.slf4j.Slf4j;
+import org.apache.shiro.authz.annotation.RequiresPermissions;
+import org.jeecg.common.api.vo.Result;
+import org.jeecg.common.aspect.annotation.AutoLog;
+import org.jeecg.common.system.base.controller.JeecgController;
+import org.jeecg.common.system.query.QueryGenerator;
+import org.jeecg.modules.api.okki.account.entity.OkkiAccount;
+import org.jeecg.modules.api.okki.account.service.IOkkiAccountService;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.web.bind.annotation.*;
+import org.springframework.web.servlet.ModelAndView;
+
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
+import java.util.Arrays;
+
+ /**
+ * @Description: 小二账号
+ * @Author: jeecg-boot
+ * @Date:   2024-05-10
+ * @Version: V1.0
+ */
+@Api(tags="小二账号")
+@RestController
+@RequestMapping("/account/okkiAccount")
+@Slf4j
+public class OkkiAccountController extends JeecgController<OkkiAccount, IOkkiAccountService> {
+	@Autowired
+	private IOkkiAccountService okkiAccountService;
+	
+	/**
+	 * 分页列表查询
+	 *
+	 * @param okkiAccount
+	 * @param pageNo
+	 * @param pageSize
+	 * @param req
+	 * @return
+	 */
+	//@AutoLog(value = "小二账号-分页列表查询")
+	@ApiOperation(value="小二账号-分页列表查询", notes="小二账号-分页列表查询")
+	@GetMapping(value = "/list")
+	public Result<IPage<OkkiAccount>> queryPageList(OkkiAccount okkiAccount,
+								   @RequestParam(name="pageNo", defaultValue="1") Integer pageNo,
+								   @RequestParam(name="pageSize", defaultValue="10") Integer pageSize,
+								   HttpServletRequest req) {
+		QueryWrapper<OkkiAccount> queryWrapper = QueryGenerator.initQueryWrapper(okkiAccount, req.getParameterMap());
+		Page<OkkiAccount> page = new Page<OkkiAccount>(pageNo, pageSize);
+		IPage<OkkiAccount> pageList = okkiAccountService.page(page, queryWrapper);
+		return Result.OK(pageList);
+	}
+	
+	/**
+	 *   添加
+	 *
+	 * @param okkiAccount
+	 * @return
+	 */
+	@AutoLog(value = "小二账号-添加")
+	@ApiOperation(value="小二账号-添加", notes="小二账号-添加")
+	@RequiresPermissions("account:okki_account:add")
+	@PostMapping(value = "/add")
+	public Result<String> add(@RequestBody OkkiAccount okkiAccount) {
+		okkiAccountService.save(okkiAccount);
+		return Result.OK("添加成功!");
+	}
+	
+	/**
+	 *  编辑
+	 *
+	 * @param okkiAccount
+	 * @return
+	 */
+	@AutoLog(value = "小二账号-编辑")
+	@ApiOperation(value="小二账号-编辑", notes="小二账号-编辑")
+	@RequiresPermissions("account:okki_account:edit")
+	@RequestMapping(value = "/edit", method = {RequestMethod.PUT,RequestMethod.POST})
+	public Result<String> edit(@RequestBody OkkiAccount okkiAccount) {
+		okkiAccountService.updateById(okkiAccount);
+		return Result.OK("编辑成功!");
+	}
+	
+	/**
+	 *   通过id删除
+	 *
+	 * @param id
+	 * @return
+	 */
+	@AutoLog(value = "小二账号-通过id删除")
+	@ApiOperation(value="小二账号-通过id删除", notes="小二账号-通过id删除")
+	@RequiresPermissions("account:okki_account:delete")
+	@DeleteMapping(value = "/delete")
+	public Result<String> delete(@RequestParam(name="id",required=true) String id) {
+		okkiAccountService.removeById(id);
+		return Result.OK("删除成功!");
+	}
+	
+	/**
+	 *  批量删除
+	 *
+	 * @param ids
+	 * @return
+	 */
+	@AutoLog(value = "小二账号-批量删除")
+	@ApiOperation(value="小二账号-批量删除", notes="小二账号-批量删除")
+	@RequiresPermissions("account:okki_account:deleteBatch")
+	@DeleteMapping(value = "/deleteBatch")
+	public Result<String> deleteBatch(@RequestParam(name="ids",required=true) String ids) {
+		this.okkiAccountService.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<OkkiAccount> queryById(@RequestParam(name="id",required=true) String id) {
+		OkkiAccount okkiAccount = okkiAccountService.getById(id);
+		if(okkiAccount==null) {
+			return Result.error("未找到对应数据");
+		}
+		return Result.OK(okkiAccount);
+	}
+
+    /**
+    * 导出excel
+    *
+    * @param request
+    * @param okkiAccount
+    */
+    @RequiresPermissions("account:okki_account:exportXls")
+    @RequestMapping(value = "/exportXls")
+    public ModelAndView exportXls(HttpServletRequest request, OkkiAccount okkiAccount) {
+        return super.exportXls(request, okkiAccount, OkkiAccount.class, "小二账号");
+    }
+
+    /**
+      * 通过excel导入数据
+    *
+    * @param request
+    * @param response
+    * @return
+    */
+    @RequiresPermissions("account:okki_account:importExcel")
+    @RequestMapping(value = "/importExcel", method = RequestMethod.POST)
+    public Result<?> importExcel(HttpServletRequest request, HttpServletResponse response) {
+        return super.importExcel(request, response, OkkiAccount.class);
+    }
+
+}

+ 72 - 0
jeecg-boot/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/api/okki/account/entity/OkkiAccount.java

@@ -0,0 +1,72 @@
+package org.jeecg.modules.api.okki.account.entity;
+
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableId;
+import com.baomidou.mybatisplus.annotation.TableName;
+import com.fasterxml.jackson.annotation.JsonFormat;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+import lombok.experimental.Accessors;
+import org.jeecgframework.poi.excel.annotation.Excel;
+import org.springframework.format.annotation.DateTimeFormat;
+
+import java.io.Serializable;
+import java.util.Date;
+
+/**
+ * @Description: 小二账号
+ * @Author: jeecg-boot
+ * @Date:   2024-05-10
+ * @Version: V1.0
+ */
+@Data
+@TableName("okki_account")
+@Accessors(chain = true)
+@EqualsAndHashCode(callSuper = false)
+@ApiModel(value="okki_account对象", description="小二账号")
+public class OkkiAccount implements Serializable {
+    private static final long serialVersionUID = 1L;
+
+	/**主键*/
+	@TableId(type = IdType.ASSIGN_ID)
+    @ApiModelProperty(value = "主键")
+    private String id;
+	/**创建人*/
+    @ApiModelProperty(value = "创建人")
+    private String createBy;
+	/**更新人*/
+    @ApiModelProperty(value = "更新人")
+    private String updateBy;
+	/**站点ID*/
+	@Excel(name = "站点ID", width = 15)
+    @ApiModelProperty(value = "站点ID")
+    private Integer siteId;
+	/**账号*/
+	@Excel(name = "账号", width = 15)
+    @ApiModelProperty(value = "账号")
+    private String account;
+	/**密码*/
+	@Excel(name = "密码", width = 15)
+    @ApiModelProperty(value = "密码")
+    private String password;
+	/**公司名称*/
+	@Excel(name = "公司名称", width = 15)
+    @ApiModelProperty(value = "公司名称")
+    private String companyName;
+	/**套餐名称*/
+	@Excel(name = "套餐名称", width = 15)
+    @ApiModelProperty(value = "套餐名称")
+    private String tcName;
+	/**创建日期*/
+	@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
+    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
+    @ApiModelProperty(value = "创建日期")
+    private Date createTime;
+	/**更新日期*/
+	@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
+    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
+    @ApiModelProperty(value = "更新日期")
+    private Date updateTime;
+}

+ 14 - 0
jeecg-boot/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/api/okki/account/mapper/OkkiAccountMapper.java

@@ -0,0 +1,14 @@
+package org.jeecg.modules.api.okki.account.mapper;
+
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+import org.jeecg.modules.api.okki.account.entity.OkkiAccount;
+
+/**
+ * @Description: 小二账号
+ * @Author: jeecg-boot
+ * @Date:   2024-05-10
+ * @Version: V1.0
+ */
+public interface OkkiAccountMapper extends BaseMapper<OkkiAccount> {
+
+}

+ 5 - 0
jeecg-boot/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/api/okki/account/mapper/xml/OkkiAccountMapper.xml

@@ -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.demo.account.mapper.OkkiAccountMapper">
+
+</mapper>

+ 15 - 0
jeecg-boot/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/api/okki/account/service/IOkkiAccountService.java

@@ -0,0 +1,15 @@
+package org.jeecg.modules.api.okki.account.service;
+
+import org.jeecg.modules.api.okki.account.entity.OkkiAccount;
+import com.baomidou.mybatisplus.extension.service.IService;
+
+/**
+ * @Description: 小二账号
+ * @Author: jeecg-boot
+ * @Date:   2024-05-10
+ * @Version: V1.0
+ */
+public interface IOkkiAccountService extends IService<OkkiAccount> {
+
+    boolean insertAccount(OkkiAccount okkiAccount);
+}

+ 23 - 0
jeecg-boot/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/api/okki/account/service/impl/OkkiAccountServiceImpl.java

@@ -0,0 +1,23 @@
+package org.jeecg.modules.api.okki.account.service.impl;
+
+import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
+import org.jeecg.modules.api.okki.account.entity.OkkiAccount;
+import org.jeecg.modules.api.okki.account.mapper.OkkiAccountMapper;
+import org.jeecg.modules.api.okki.account.service.IOkkiAccountService;
+import org.springframework.stereotype.Service;
+
+
+/**
+ * @Description: 小二账号
+ * @Author: jeecg-boot
+ * @Date:   2024-05-10
+ * @Version: V1.0
+ */
+@Service
+public class OkkiAccountServiceImpl extends ServiceImpl<OkkiAccountMapper, OkkiAccount> implements IOkkiAccountService {
+
+    @Override
+    public boolean insertAccount(OkkiAccount okkiAccount) {
+        return super.save(okkiAccount);
+    }
+}

+ 0 - 6
jeecg-boot/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/api/okki/blog/entity/OkkiBlog.java

@@ -64,12 +64,6 @@ public class OkkiBlog implements Serializable {
 	@Excel(name = "博客内容", width = 15)
     @ApiModelProperty(value = "博客内容")
     private String content;
-	/**添加时间*/
-	@Excel(name = "添加时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
-	@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
-    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
-    @ApiModelProperty(value = "添加时间")
-    private Date addtime;
 	/**服务商的blog主键id*/
 	@Excel(name = "服务商的blog主键id", width = 15)
     @ApiModelProperty(value = "服务商的blog主键id")

+ 4 - 1
jeecg-boot/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/api/okki/blog/service/impl/OkkiBlogServiceImpl.java

@@ -34,6 +34,7 @@ public class OkkiBlogServiceImpl extends ServiceImpl<OkkiBlogMapper, OkkiBlog> i
 
     @Resource
     private OkkiBlogMapper okkiBlogMapper;
+
     @Override
     public boolean changeStatus(OkkiBlog okkiBlog) {
         OkkiBlog okkiBlog1 = okkiBlogMapper.selectById(okkiBlog.getId());
@@ -49,11 +50,13 @@ public class OkkiBlogServiceImpl extends ServiceImpl<OkkiBlogMapper, OkkiBlog> i
             String queryStr = HttpClientUtils.buildQueryString(query);
             postData.put("title", okkiBlog1.getTitle());
             postData.put("pic", okkiBlog1.getPic());
+            // 图片处理
+
             postData.put("url", okkiBlog1.getUrl());
             postData.put("content", okkiBlog1.getContent());
             // 时间转换
             SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
-            postData.put("addtime", sdf.format(okkiBlog1.getAddtime()));
+            postData.put("addtime", sdf.format(okkiBlog1.getCreateTime()));
             postData.put("uid", okkiBlog1.getUid());
             if (okkiBlog.getReportScore() != null) {
                 postData.put("report_score", okkiBlog1.getReportScore());

+ 7 - 0
jeecg-boot/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/api/okki/common/controller/UploadController.java

@@ -0,0 +1,7 @@
+package org.jeecg.modules.api.okki.common.controller;
+
+import org.jeecg.common.system.base.controller.JeecgController;
+
+public class UploadController extends JeecgController {
+
+}

+ 5 - 0
jeecg-boot/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/api/okki/common/service/IUploadService.java

@@ -0,0 +1,5 @@
+package org.jeecg.modules.api.okki.common.service;
+
+public interface IUploadService {
+
+}

+ 53 - 0
jeecg-boot/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/api/okki/common/service/impl/UploadServiceImpl.java

@@ -0,0 +1,53 @@
+package org.jeecg.modules.api.okki.common.service.impl;
+
+import com.alibaba.fastjson.JSONObject;
+import lombok.extern.slf4j.Slf4j;
+import org.jeecg.common.api.vo.Result;
+import org.jeecg.modules.api.okki.common.service.IUploadService;
+import org.jeecg.modules.api.okki.utils.HttpClientUtils;
+import org.springframework.beans.factory.annotation.Value;
+import org.springframework.stereotype.Service;
+import org.springframework.web.multipart.MultipartFile;
+
+import java.util.HashMap;
+import java.util.Map;
+import java.util.TreeMap;
+
+@Slf4j
+@Service
+public class UploadServiceImpl implements IUploadService {
+
+    @Value("${OKKI.BASE_URL}")
+    private String URL;
+
+    @Value("${OKKI.CLIENT_SECRET}")
+    private String CLIENT_SECRET;
+
+    public Result upload(Integer siteId, MultipartFile file) {
+        // 请求okki平台接口
+        Map<String, String> query = new TreeMap<>();
+        query.put("sign_method", "hmac-md5");
+        query.put("timestamp", String.valueOf(System.currentTimeMillis()));
+        query.put("site_id", String.valueOf(siteId));
+        query.put("method", "upload_file");
+        Map<String, Object> postData = new HashMap<>();
+        try {
+            String queryStr = HttpClientUtils.buildQueryString(query);
+            String body = HttpClientUtils.toJsonString(postData);
+            String signStr = queryStr + body;
+            query.put("signature", HttpClientUtils.generateHmacMD5(signStr, CLIENT_SECRET));
+            String okkiUrl = URL + "?" + HttpClientUtils.buildQueryString(query);
+            log.info("url:" + okkiUrl + ",body:" + body);
+            String res = HttpClientUtils.doPost(okkiUrl, body);
+            log.info(res);
+            JSONObject jsonObject= JSONObject.parseObject(res);
+            if (jsonObject.get("code").equals(0)) {
+                return Result.ok(jsonObject.get("msg"));
+            }else {
+                throw new RuntimeException(jsonObject.get("msg").toString());
+            }
+        } catch (Exception e) {
+            throw new RuntimeException(e);
+        }
+    }
+}

+ 180 - 0
jeecg-boot/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/api/okki/externallink/controller/OkkiExternalLinkController.java

@@ -0,0 +1,180 @@
+package org.jeecg.modules.api.okki.externallink.controller;
+
+import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
+import io.swagger.annotations.Api;
+import io.swagger.annotations.ApiOperation;
+import lombok.extern.slf4j.Slf4j;
+import org.apache.shiro.authz.annotation.RequiresPermissions;
+import org.jeecg.common.api.vo.Result;
+import org.jeecg.common.aspect.annotation.AutoLog;
+import org.jeecg.common.system.base.controller.JeecgController;
+import org.jeecg.common.system.query.QueryGenerator;
+import org.jeecg.modules.api.okki.externallink.entity.OkkiExternalLink;
+import org.jeecg.modules.api.okki.externallink.service.IOkkiExternalLinkService;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.web.bind.annotation.*;
+import org.springframework.web.servlet.ModelAndView;
+
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
+import java.util.Arrays;
+
+ /**
+ * @Description: SEO数据外链
+ * @Author: jeecg-boot
+ * @Date:   2024-05-09
+ * @Version: V1.0
+ */
+@Api(tags="SEO数据外链")
+@RestController
+@RequestMapping("/externallink/okkiExternalLink")
+@Slf4j
+public class OkkiExternalLinkController extends JeecgController<OkkiExternalLink, IOkkiExternalLinkService> {
+	@Autowired
+	private IOkkiExternalLinkService okkiExternalLinkService;
+	
+	/**
+	 * 分页列表查询
+	 *
+	 * @param okkiExternalLink
+	 * @param pageNo
+	 * @param pageSize
+	 * @param req
+	 * @return
+	 */
+	//@AutoLog(value = "SEO数据外链-分页列表查询")
+	@ApiOperation(value="SEO数据外链-分页列表查询", notes="SEO数据外链-分页列表查询")
+	@GetMapping(value = "/list")
+	public Result<IPage<OkkiExternalLink>> queryPageList(OkkiExternalLink okkiExternalLink,
+								   @RequestParam(name="pageNo", defaultValue="1") Integer pageNo,
+								   @RequestParam(name="pageSize", defaultValue="10") Integer pageSize,
+								   HttpServletRequest req) {
+		QueryWrapper<OkkiExternalLink> queryWrapper = QueryGenerator.initQueryWrapper(okkiExternalLink, req.getParameterMap());
+		Page<OkkiExternalLink> page = new Page<OkkiExternalLink>(pageNo, pageSize);
+		IPage<OkkiExternalLink> pageList = okkiExternalLinkService.page(page, queryWrapper);
+		return Result.OK(pageList);
+	}
+	
+	/**
+	 *   添加
+	 *
+	 * @param okkiExternalLink
+	 * @return
+	 */
+	@AutoLog(value = "SEO数据外链-添加")
+	@ApiOperation(value="SEO数据外链-添加", notes="SEO数据外链-添加")
+	@RequiresPermissions("externallink:okki_external_link:add")
+	@PostMapping(value = "/add")
+	public Result<String> add(@RequestBody OkkiExternalLink okkiExternalLink) {
+		okkiExternalLinkService.save(okkiExternalLink);
+		return Result.OK("添加成功!");
+	}
+	
+	/**
+	 *  编辑
+	 *
+	 * @param okkiExternalLink
+	 * @return
+	 */
+	@AutoLog(value = "SEO数据外链-编辑")
+	@ApiOperation(value="SEO数据外链-编辑", notes="SEO数据外链-编辑")
+	@RequiresPermissions("externallink:okki_external_link:edit")
+	@RequestMapping(value = "/edit", method = {RequestMethod.PUT,RequestMethod.POST})
+	public Result<String> edit(@RequestBody OkkiExternalLink okkiExternalLink) {
+		okkiExternalLink.setStatus(0);
+		okkiExternalLinkService.updateById(okkiExternalLink);
+		return Result.OK("编辑成功!");
+	}
+	
+	/**
+	 *   通过id删除
+	 *
+	 * @param id
+	 * @return
+	 *
+	 *
+	 *
+	 */
+	@AutoLog(value = "SEO数据外链-通过id删除")
+	@ApiOperation(value="SEO数据外链-通过id删除", notes="SEO数据外链-通过id删除")
+	@RequiresPermissions("externallink:okki_external_link:delete")
+	@DeleteMapping(value = "/delete")
+	public Result<String> delete(@RequestParam(name="id",required=true) String id) {
+		okkiExternalLinkService.removeById(id);
+		return Result.OK("删除成功!");
+	}
+	
+	/**
+	 *  批量删除
+	 *
+	 * @param ids
+	 * @return
+	 */
+	@AutoLog(value = "SEO数据外链-批量删除")
+	@ApiOperation(value="SEO数据外链-批量删除", notes="SEO数据外链-批量删除")
+	@RequiresPermissions("externallink:okki_external_link:deleteBatch")
+	@DeleteMapping(value = "/deleteBatch")
+	public Result<String> deleteBatch(@RequestParam(name="ids",required=true) String ids) {
+		this.okkiExternalLinkService.removeByIds(Arrays.asList(ids.split(",")));
+		return Result.OK("批量删除成功!");
+	}
+	
+	/**
+	 * 通过id查询
+	 *
+	 * @param id
+	 * @return
+	 */
+	//@AutoLog(value = "SEO数据外链-通过id查询")
+	@ApiOperation(value="SEO数据外链-通过id查询", notes="SEO数据外链-通过id查询")
+	@GetMapping(value = "/queryById")
+	public Result<OkkiExternalLink> queryById(@RequestParam(name="id",required=true) String id) {
+		OkkiExternalLink okkiExternalLink = okkiExternalLinkService.getById(id);
+		if(okkiExternalLink==null) {
+			return Result.error("未找到对应数据");
+		}
+		return Result.OK(okkiExternalLink);
+	}
+
+    /**
+    * 导出excel
+    *
+    * @param request
+    * @param okkiExternalLink
+    */
+    @RequiresPermissions("externallink:okki_external_link:exportXls")
+    @RequestMapping(value = "/exportXls")
+    public ModelAndView exportXls(HttpServletRequest request, OkkiExternalLink okkiExternalLink) {
+        return super.exportXls(request, okkiExternalLink, OkkiExternalLink.class, "SEO数据外链");
+    }
+
+    /**
+      * 通过excel导入数据
+    *
+    * @param request
+    * @param response
+    * @return
+    */
+    @RequiresPermissions("externallink:okki_external_link:importExcel")
+    @RequestMapping(value = "/importExcel", method = RequestMethod.POST)
+    public Result<?> importExcel(HttpServletRequest request, HttpServletResponse response) {
+        return super.importExcel(request, response, OkkiExternalLink.class);
+    }
+
+	 /**
+	  * 变更状态
+	  * @param okkiExternalLink
+	  * @return
+	  */
+	 @PostMapping(value = "/status")
+	 public Result<String> changeStatus(@RequestBody OkkiExternalLink okkiExternalLink) throws Exception {
+		 boolean result = okkiExternalLinkService.changeStatus(okkiExternalLink);
+		 if (result) {
+			 return Result.OK("操作成功");
+		 }else {
+			 return Result.error("操作失败");
+		 }
+	 }
+}

+ 95 - 0
jeecg-boot/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/api/okki/externallink/entity/OkkiExternalLink.java

@@ -0,0 +1,95 @@
+package org.jeecg.modules.api.okki.externallink.entity;
+
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableId;
+import com.baomidou.mybatisplus.annotation.TableName;
+import com.fasterxml.jackson.annotation.JsonFormat;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+import lombok.experimental.Accessors;
+import org.jeecg.common.aspect.annotation.Dict;
+import org.jeecgframework.poi.excel.annotation.Excel;
+import org.springframework.format.annotation.DateTimeFormat;
+
+import java.io.Serializable;
+import java.util.Date;
+
+/**
+ * @Description: SEO数据外链
+ * @Author: jeecg-boot
+ * @Date:   2024-05-09
+ * @Version: V1.0
+ */
+@Data
+@TableName("okki_external_link")
+@Accessors(chain = true)
+@EqualsAndHashCode(callSuper = false)
+@ApiModel(value="okki_external_link对象", description="SEO数据外链")
+public class OkkiExternalLink implements Serializable {
+    private static final long serialVersionUID = 1L;
+
+	/**主键*/
+	@TableId(type = IdType.ASSIGN_ID)
+    @ApiModelProperty(value = "主键")
+    private String id;
+	/**创建人*/
+    @ApiModelProperty(value = "创建人")
+    private String createBy;
+	/**更新人*/
+    @ApiModelProperty(value = "更新人")
+    private String updateBy;
+    /**站点id*/
+    @Excel(name = "站点id", width = 15)
+    @ApiModelProperty(value = "站点id")
+    private Integer siteId;
+	/**外链id*/
+	@Excel(name = "外链id", width = 15)
+    @ApiModelProperty(value = "外链id")
+    private Integer externalLinkId;
+	/**标题*/
+	@Excel(name = "标题", width = 15)
+    @ApiModelProperty(value = "标题")
+    private String title;
+	/**文章发布的链接地址*/
+	@Excel(name = "文章发布的链接地址", width = 15)
+    @ApiModelProperty(value = "文章发布的链接地址")
+    private String url;
+	/**图片地址*/
+	@Excel(name = "图片地址", width = 15)
+    @ApiModelProperty(value = "图片地址")
+    private String pic;
+	/**文章内容*/
+	@Excel(name = "文章内容", width = 15)
+    @ApiModelProperty(value = "文章内容")
+    private String content;
+	/**文章ai检测分数*/
+	@Excel(name = "文章ai检测分数", width = 15)
+    @ApiModelProperty(value = "文章ai检测分数")
+    private Integer reportScore;
+	/**检测报告地址*/
+	@Excel(name = "检测报告地址", width = 15)
+    @ApiModelProperty(value = "检测报告地址")
+    private String reportLink;
+	/**启用标志*/
+	@Excel(name = "启用标志", width = 15, dicCode = "enable_flag")
+	@Dict(dicCode = "enable_flag")
+    @ApiModelProperty(value = "启用标志")
+    private Integer enableFlag;
+    /**同步状态*/
+    @Excel(name = "同步状态", width = 15, dicCode = "blog_status")
+    @Dict(dicCode = "blog_status")
+    @ApiModelProperty(value = "同步状态")
+    private Integer status;
+	/**创建日期*/
+	@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
+    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
+    @ApiModelProperty(value = "创建日期")
+    private Date createTime;
+	/**更新日期*/
+	@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
+    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
+    @ApiModelProperty(value = "更新日期")
+    private Date updateTime;
+}

+ 14 - 0
jeecg-boot/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/api/okki/externallink/mapper/OkkiExternalLinkMapper.java

@@ -0,0 +1,14 @@
+package org.jeecg.modules.api.okki.externallink.mapper;
+
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+import org.jeecg.modules.api.okki.externallink.entity.OkkiExternalLink;
+
+/**
+ * @Description: SEO数据外链
+ * @Author: jeecg-boot
+ * @Date:   2024-05-09
+ * @Version: V1.0
+ */
+public interface OkkiExternalLinkMapper extends BaseMapper<OkkiExternalLink> {
+
+}

+ 5 - 0
jeecg-boot/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/api/okki/externallink/mapper/xml/OkkiExternalLinkMapper.xml

@@ -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.demo.externallink.mapper.OkkiExternalLinkMapper">
+
+</mapper>

+ 15 - 0
jeecg-boot/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/api/okki/externallink/service/IOkkiExternalLinkService.java

@@ -0,0 +1,15 @@
+package org.jeecg.modules.api.okki.externallink.service;
+
+import org.jeecg.modules.api.okki.externallink.entity.OkkiExternalLink;
+import com.baomidou.mybatisplus.extension.service.IService;
+
+/**
+ * @Description: SEO数据外链
+ * @Author: jeecg-boot
+ * @Date:   2024-05-09
+ * @Version: V1.0
+ */
+public interface IOkkiExternalLinkService extends IService<OkkiExternalLink> {
+
+    boolean changeStatus(OkkiExternalLink okkiExternalLink);
+}

+ 95 - 0
jeecg-boot/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/api/okki/externallink/service/impl/OkkiExternalLinkServiceImpl.java

@@ -0,0 +1,95 @@
+package org.jeecg.modules.api.okki.externallink.service.impl;
+
+import com.alibaba.fastjson.JSONObject;
+import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
+import lombok.extern.slf4j.Slf4j;
+import org.jeecg.modules.api.okki.externallink.entity.OkkiExternalLink;
+import org.jeecg.modules.api.okki.externallink.mapper.OkkiExternalLinkMapper;
+import org.jeecg.modules.api.okki.externallink.service.IOkkiExternalLinkService;
+import org.jeecg.modules.api.okki.utils.HttpClientUtils;
+import org.springframework.beans.factory.annotation.Value;
+import org.springframework.stereotype.Service;
+
+import javax.annotation.Resource;
+import java.text.SimpleDateFormat;
+import java.util.HashMap;
+import java.util.Map;
+import java.util.TreeMap;
+
+/**
+ * @Description: SEO数据外链
+ * @Author: jeecg-boot
+ * @Date:   2024-05-09
+ * @Version: V1.0
+ */
+@Slf4j
+@Service
+public class OkkiExternalLinkServiceImpl extends ServiceImpl<OkkiExternalLinkMapper, OkkiExternalLink> implements IOkkiExternalLinkService {
+
+    @Value("${OKKI.BASE_URL}")
+    private String URL;
+
+    @Value("${OKKI.CLIENT_SECRET}")
+    private String CLIENT_SECRET;
+
+    @Resource
+    private OkkiExternalLinkMapper okkiExternalLinkMapper;
+
+    @Override
+    public boolean changeStatus(OkkiExternalLink okkiExternalLink) {
+        OkkiExternalLink okkiExternalLink1 = okkiExternalLinkMapper.selectById(okkiExternalLink.getId());
+        // 请求okki平台接口
+        Map<String, String> query = new TreeMap<>();
+        query.put("sign_method", "hmac-md5");
+        query.put("timestamp", String.valueOf(System.currentTimeMillis()));
+        query.put("site_id", String.valueOf(okkiExternalLink1.getSiteId()));
+        query.put("method", "external_link");
+        okkiExternalLink.setStatus(1);
+        Map<String, Object> postData = new HashMap<>();
+        try {
+            String queryStr = HttpClientUtils.buildQueryString(query);
+            postData.put("id", okkiExternalLink1.getExternalLinkId());
+            postData.put("title", okkiExternalLink1.getTitle());
+            postData.put("url", okkiExternalLink1.getUrl());
+            if (okkiExternalLink1.getUrl() != null) {
+                postData.put("pic", okkiExternalLink1.getPic());
+            }
+            if (okkiExternalLink1.getContent() != null) {
+                postData.put("content", okkiExternalLink1.getContent());
+            }
+            if (okkiExternalLink1.getReportScore() != null) {
+                postData.put("report_score", okkiExternalLink1.getReportScore());
+            }
+            if (okkiExternalLink1.getReportLink() != null) {
+                postData.put("report_link", okkiExternalLink1.getReportLink());
+            }
+            postData.put("enable_flag", okkiExternalLink1.getEnableFlag());
+            // 时间转换
+            SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
+            postData.put("addtime", sdf.format(okkiExternalLink1.getCreateTime()));
+            postData.put("edittime", sdf.format(okkiExternalLink1.getUpdateTime()));
+
+            String body = HttpClientUtils.toJsonString(postData);
+            String signStr = queryStr + body;
+            query.put("signature", HttpClientUtils.generateHmacMD5(signStr, CLIENT_SECRET));
+            String okkiUrl = URL + "?" + HttpClientUtils.buildQueryString(query);
+            log.info("url:" + okkiUrl + ",body:" + body);
+            String res = HttpClientUtils.doPost(okkiUrl, body);
+            log.info(res);
+            // {"code":0,"msg":"success","now":"2024-05-06 15:34:54","data":[]}
+            JSONObject jsonObject= JSONObject.parseObject(res);
+            if (jsonObject.get("code").equals(0)) {
+                int result = okkiExternalLinkMapper.updateById(okkiExternalLink);
+                if (result == 0) {
+                    return false;
+                }else {
+                    return true;
+                }
+            }else {
+                throw new RuntimeException(jsonObject.get("msg").toString());
+            }
+        } catch (Exception e) {
+            throw new RuntimeException(e);
+        }
+    }
+}

+ 0 - 17
jeecg-boot/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/api/okki/site/param/BaseParam.java

@@ -1,17 +0,0 @@
-package org.jeecg.modules.api.okki.site.param;
-
-import lombok.Data;
-
-@Data
-public class BaseParam {
-
-    private String mothod;
-
-    private String timestamp;
-
-    private Integer site_id;
-
-    private String sign_method;
-
-    private String signature;
-}

+ 0 - 26
jeecg-boot/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/api/okki/site/param/UpdateSiteParam.java

@@ -1,26 +0,0 @@
-package org.jeecg.modules.api.okki.site.param;
-
-public class UpdateSiteParam extends BaseParam{
-
-    private Integer site_id;
-
-    private String company_name = "";
-
-    private String domain = "";
-
-    private String tel = "";
-
-    private String contact = "";
-
-    private String email = "";
-
-    private String enname = "";
-
-    private String tc_name = "";
-
-    private String tc_period = "";
-
-    private String tc_language = "";
-
-    private String remark = "";
-}

+ 64 - 0
jeecgboot-vue3/src/views/okki/account/OkkiAccount.api.ts

@@ -0,0 +1,64 @@
+import {defHttp} from '/@/utils/http/axios';
+import { useMessage } from "/@/hooks/web/useMessage";
+
+const { createConfirm } = useMessage();
+
+enum Api {
+  list = '/account/okkiAccount/list',
+  save='/account/okkiAccount/add',
+  edit='/account/okkiAccount/edit',
+  deleteOne = '/account/okkiAccount/delete',
+  deleteBatch = '/account/okkiAccount/deleteBatch',
+  importExcel = '/account/okkiAccount/importExcel',
+  exportXls = '/account/okkiAccount/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});
+}

+ 106 - 0
jeecgboot-vue3/src/views/okki/account/OkkiAccount.data.ts

@@ -0,0 +1,106 @@
+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: '站点ID',
+    align:"center",
+    dataIndex: 'siteId'
+   },
+   {
+    title: '账号',
+    align:"center",
+    dataIndex: 'account'
+   },
+   {
+    title: '密码',
+    align:"center",
+    dataIndex: 'password'
+   },
+   {
+    title: '公司名称',
+    align:"center",
+    dataIndex: 'companyName'
+   },
+   {
+    title: '套餐名称',
+    align:"center",
+    dataIndex: 'tcName'
+   },
+];
+//查询数据
+export const searchFormSchema: FormSchema[] = [
+];
+//表单数据
+export const formSchema: FormSchema[] = [
+  {
+    label: '站点ID',
+    field: 'siteId',
+    component: 'InputNumber',
+  },
+  {
+    label: '账号',
+    field: 'account',
+    component: 'Input',
+  },
+  {
+    label: '密码',
+    field: 'password',
+    component: 'Input',
+  },
+  {
+    label: '公司名称',
+    field: 'companyName',
+    component: 'Input',
+  },
+  {
+    label: '套餐名称',
+    field: 'tcName',
+    component: 'Input',
+  },
+  {
+    label: '创建日期',
+    field: 'createTime',
+    component: 'DatePicker',
+    componentProps: {
+       showTime: true,
+       valueFormat: 'YYYY-MM-DD HH:mm:ss'
+     },
+  },
+  {
+    label: '更新日期',
+    field: 'updateTime',
+    component: 'DatePicker',
+    componentProps: {
+       showTime: true,
+       valueFormat: 'YYYY-MM-DD HH:mm:ss'
+     },
+  },
+	// TODO 主键隐藏字段,目前写死为ID
+	{
+	  label: '',
+	  field: 'id',
+	  component: 'Input',
+	  show: false
+	},
+];
+
+// 高级查询数据
+export const superQuerySchema = {
+  siteId: {title: '站点ID',order: 0,view: 'number', type: 'number',},
+  account: {title: '账号',order: 1,view: 'text', type: 'string',},
+  password: {title: '密码',order: 2,view: 'text', type: 'string',},
+  companyName: {title: '公司名称',order: 3,view: 'text', type: 'string',},
+  tcName: {title: '套餐名称',order: 4,view: 'text', type: 'string',},
+};
+
+/**
+* 流程表单调用这个方法获取formSchema
+* @param param
+*/
+export function getBpmFormSchema(_formData): FormSchema[]{
+  // 默认和原始表单保持一致 如果流程中配置了权限数据,这里需要单独处理formSchema
+  return formSchema;
+}

+ 186 - 0
jeecgboot-vue3/src/views/okki/account/OkkiAccountList.vue

@@ -0,0 +1,186 @@
+<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="selectedRowKeys.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>
+        <!-- 高级查询 -->
+        <super-query :config="superQueryConfig" @search="handleSuperQuery" />
+      </template>
+       <!--操作栏-->
+      <template #action="{ record }">
+        <TableAction :actions="getTableAction(record)" :dropDownActions="getDropDownAction(record)"/>
+      </template>
+      <!--字段回显插槽-->
+      <template v-slot:bodyCell="{ column, record, index, text }">
+      </template>
+    </BasicTable>
+    <!-- 表单区域 -->
+    <OkkiAccountModal @register="registerModal" @success="handleSuccess"></OkkiAccountModal>
+  </div>
+</template>
+
+<script lang="ts" name="account-okkiAccount" setup>
+  import {ref, reactive, computed, unref} from 'vue';
+  import {BasicTable, useTable, TableAction} from '/@/components/Table';
+  import {useModal} from '/@/components/Modal';
+  import { useListPage } from '/@/hooks/system/useListPage'
+  import OkkiAccountModal from './components/OkkiAccountModal.vue'
+  import {columns, searchFormSchema, superQuerySchema} from './OkkiAccount.data';
+  import {list, deleteOne, batchDelete, getImportUrl,getExportUrl} from './OkkiAccount.api';
+  import { downloadFile } from '/@/utils/common/renderUtils';
+  import { useUserStore } from '/@/store/modules/user';
+  const queryParam = reactive<any>({});
+  const checkedKeys = ref<Array<string | number>>([]);
+  const userStore = useUserStore();
+  //注册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,
+              fieldMapToNumber: [
+              ],
+              fieldMapToTime: [
+              ],
+            },
+           actionColumn: {
+               width: 120,
+               fixed:'right'
+            },
+            beforeFetch: (params) => {
+              return Object.assign(params, queryParam);
+            },
+      },
+       exportConfig: {
+            name:"小二账号",
+            url: getExportUrl,
+            params: queryParam,
+          },
+          importConfig: {
+            url: getImportUrl,
+            success: handleSuccess
+          },
+  })
+
+  const [registerTable, {reload},{ rowSelection, selectedRowKeys }] = tableContext
+
+  // 高级查询配置
+  const superQueryConfig = reactive(superQuerySchema);
+
+  /**
+   * 高级查询事件
+   */
+  function handleSuperQuery(params) {
+    Object.keys(params).map((k) => {
+      queryParam[k] = params[k];
+    });
+    reload();
+  }
+   /**
+    * 新增事件
+    */
+  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}, handleSuccess);
+   }
+   /**
+    * 批量删除事件
+    */
+  async function batchHandleDelete() {
+     await batchDelete({ids: selectedRowKeys.value}, handleSuccess);
+   }
+   /**
+    * 成功回调
+    */
+  function handleSuccess() {
+      (selectedRowKeys.value = []) && 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),
+             placement: 'topLeft',
+           }
+         }
+       ]
+   }
+
+
+</script>
+
+<style scoped>
+
+</style>

+ 26 - 0
jeecgboot-vue3/src/views/okki/account/V20240510_1__menu_insert_OkkiAccount.sql

@@ -0,0 +1,26 @@
+-- 注意:该页面对应的前台目录为views/account文件夹下
+-- 如果你想更改到其他目录,请修改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 ('2024051010005030330', NULL, '小二账号', '/account/okkiAccountList', 'account/OkkiAccountList', NULL, NULL, 0, NULL, '1', 0.00, 0, NULL, 1, 0, 0, 0, 0, NULL, '1', 0, 0, 'admin', '2024-05-10 10:00:33', 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 ('2024051010005030331', '2024051010005030330', '添加小二账号', NULL, NULL, 0, NULL, NULL, 2, 'account:okki_account:add', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2024-05-10 10:00:33', 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 ('2024051010005030332', '2024051010005030330', '编辑小二账号', NULL, NULL, 0, NULL, NULL, 2, 'account:okki_account:edit', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2024-05-10 10:00:33', 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 ('2024051010005030333', '2024051010005030330', '删除小二账号', NULL, NULL, 0, NULL, NULL, 2, 'account:okki_account:delete', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2024-05-10 10:00:33', 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 ('2024051010005030334', '2024051010005030330', '批量删除小二账号', NULL, NULL, 0, NULL, NULL, 2, 'account:okki_account:deleteBatch', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2024-05-10 10:00:33', 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 ('2024051010005030335', '2024051010005030330', '导出excel_小二账号', NULL, NULL, 0, NULL, NULL, 2, 'account:okki_account:exportXls', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2024-05-10 10:00:33', 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 ('2024051010005030336', '2024051010005030330', '导入excel_小二账号', NULL, NULL, 0, NULL, NULL, 2, 'account:okki_account:importExcel', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2024-05-10 10:00:33', NULL, NULL, 0, 0, '1', 0);

+ 70 - 0
jeecgboot-vue3/src/views/okki/account/components/OkkiAccountForm.vue

@@ -0,0 +1,70 @@
+<template>
+    <div style="min-height: 400px">
+        <BasicForm @register="registerForm"></BasicForm>
+        <div style="width: 100%;text-align: center" v-if="!formDisabled">
+            <a-button @click="submitForm" pre-icon="ant-design:check" type="primary">提 交</a-button>
+        </div>
+    </div>
+</template>
+
+<script lang="ts">
+    import {BasicForm, useForm} from '/@/components/Form/index';
+    import {computed, defineComponent} from 'vue';
+    import {defHttp} from '/@/utils/http/axios';
+    import { propTypes } from '/@/utils/propTypes';
+    import {getBpmFormSchema} from '../OkkiAccount.data';
+    import {saveOrUpdate} from '../OkkiAccount.api';
+    
+    export default defineComponent({
+        name: "OkkiAccountForm",
+        components:{
+            BasicForm
+        },
+        props:{
+            formData: propTypes.object.def({}),
+            formBpm: propTypes.bool.def(true),
+        },
+        setup(props){
+            const [registerForm, { setFieldsValue, setProps, getFieldsValue }] = useForm({
+                labelWidth: 150,
+                schemas: getBpmFormSchema(props.formData),
+                showActionButtonGroup: false,
+                baseColProps: {span: 24}
+            });
+
+            const formDisabled = computed(()=>{
+                if(props.formData.disabled === false){
+                    return false;
+                }
+                return true;
+            });
+
+            let formData = {};
+            const queryByIdUrl = '/account/okkiAccount/queryById';
+            async function initFormData(){
+                let params = {id: props.formData.dataId};
+                const data = await defHttp.get({url: queryByIdUrl, params});
+                formData = {...data}
+                //设置表单的值
+                await setFieldsValue(formData);
+                //默认是禁用
+                await setProps({disabled: formDisabled.value})
+            }
+
+            async function submitForm() {
+                let data = getFieldsValue();
+                let params = Object.assign({}, formData, data);
+                console.log('表单数据', params)
+                await saveOrUpdate(params, true)
+            }
+
+            initFormData();
+            
+            return {
+                registerForm,
+                formDisabled,
+                submitForm,
+            }
+        }
+    });
+</script>

+ 66 - 0
jeecgboot-vue3/src/views/okki/account/components/OkkiAccountModal.vue

@@ -0,0 +1,66 @@
+<template>
+  <BasicModal v-bind="$attrs" @register="registerModal" destroyOnClose :title="title" :width="800" @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 '../OkkiAccount.data';
+    import {saveOrUpdate} from '../OkkiAccount.api';
+    // Emits声明
+    const emit = defineEmits(['register','success']);
+    const isUpdate = ref(true);
+    //表单配置
+    const [registerForm, {setProps,resetFields, setFieldsValue, validate}] = useForm({
+        //labelWidth: 150,
+        schemas: formSchema,
+        showActionButtonGroup: false,
+        baseColProps: {span: 24}
+    });
+    //表单赋值
+    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>
+	/** 时间和数字输入框样式 */
+  :deep(.ant-input-number){
+		width: 100%
+	}
+
+	:deep(.ant-calendar-picker){
+		width: 100%
+	}
+</style>

+ 64 - 0
jeecgboot-vue3/src/views/okki/externallink/OkkiExternalLink.api.ts

@@ -0,0 +1,64 @@
+import {defHttp} from '/@/utils/http/axios';
+import { useMessage } from "/@/hooks/web/useMessage";
+
+const { createConfirm } = useMessage();
+
+enum Api {
+  list = '/externallink/okkiExternalLink/list',
+  save='/externallink/okkiExternalLink/add',
+  edit='/externallink/okkiExternalLink/edit',
+  deleteOne = '/externallink/okkiExternalLink/delete',
+  deleteBatch = '/externallink/okkiExternalLink/deleteBatch',
+  importExcel = '/externallink/okkiExternalLink/importExcel',
+  exportXls = '/externallink/okkiExternalLink/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});
+}

+ 130 - 0
jeecgboot-vue3/src/views/okki/externallink/OkkiExternalLink.data.ts

@@ -0,0 +1,130 @@
+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: '外链id',
+    align:"center",
+    dataIndex: 'externalLinkId'
+   },
+   {
+    title: '标题',
+    align:"center",
+    dataIndex: 'title'
+   },
+   {
+    title: '文章发布的链接地址',
+    align:"center",
+    dataIndex: 'url'
+   },
+   {
+    title: '图片地址',
+    align:"center",
+    dataIndex: 'pic'
+   },
+   {
+    title: '文章ai检测分数',
+    align:"center",
+    dataIndex: 'reportScore'
+   },
+   {
+    title: '检测报告地址',
+    align:"center",
+    dataIndex: 'reportLink'
+   },
+   {
+    title: '启用标志',
+    align:"center",
+    dataIndex: 'enableFlag_dictText'
+   },
+   {
+    title: '创建日期',
+    align:"center",
+    dataIndex: 'createTime'
+   },
+   {
+    title: '更新日期',
+    align:"center",
+    dataIndex: 'updateTime'
+   },
+];
+//查询数据
+export const searchFormSchema: FormSchema[] = [
+];
+//表单数据
+export const formSchema: FormSchema[] = [
+  {
+    label: '外链id',
+    field: 'externalLinkId',
+    component: 'InputNumber',
+  },
+  {
+    label: '标题',
+    field: 'title',
+    component: 'Input',
+  },
+  {
+    label: '文章发布的链接地址',
+    field: 'url',
+    component: 'Input',
+  },
+  {
+    label: '图片地址',
+    field: 'pic',
+    component: 'Input',
+  },
+  {
+    label: '文章内容',
+    field: 'content',
+    component: 'JEditor',
+  },
+  {
+    label: '文章ai检测分数',
+    field: 'reportScore',
+    component: 'InputNumber',
+  },
+  {
+    label: '检测报告地址',
+    field: 'reportLink',
+    component: 'Input',
+  },
+  {
+    label: '启用标志',
+    field: 'enableFlag',
+    component: 'JDictSelectTag',
+    componentProps:{
+        dictCode:"enable_flag"
+     },
+  },
+	// TODO 主键隐藏字段,目前写死为ID
+	{
+	  label: '',
+	  field: 'id',
+	  component: 'Input',
+	  show: false
+	},
+];
+
+// 高级查询数据
+export const superQuerySchema = {
+  externalLinkId: {title: '外链id',order: 0,view: 'number', type: 'number',},
+  title: {title: '标题',order: 1,view: 'text', type: 'string',},
+  url: {title: '文章发布的链接地址',order: 2,view: 'text', type: 'string',},
+  pic: {title: '图片地址',order: 3,view: 'text', type: 'string',},
+  reportScore: {title: '文章ai检测分数',order: 5,view: 'number', type: 'number',},
+  reportLink: {title: '检测报告地址',order: 6,view: 'text', type: 'string',},
+  enableFlag: {title: '启用标志',order: 7,view: 'number', type: 'number',},
+  createTime: {title: '创建日期',order: 8,view: 'datetime', type: 'string',},
+  updateTime: {title: '更新日期',order: 9,view: 'datetime', type: 'string',},
+};
+
+/**
+* 流程表单调用这个方法获取formSchema
+* @param param
+*/
+export function getBpmFormSchema(_formData): FormSchema[]{
+  // 默认和原始表单保持一致 如果流程中配置了权限数据,这里需要单独处理formSchema
+  return formSchema;
+}

+ 190 - 0
jeecgboot-vue3/src/views/okki/externallink/OkkiExternalLinkList.vue

@@ -0,0 +1,190 @@
+<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="selectedRowKeys.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>
+        <!-- 高级查询 -->
+        <super-query :config="superQueryConfig" @search="handleSuperQuery" />
+      </template>
+       <!--操作栏-->
+      <template #action="{ record }">
+        <TableAction :actions="getTableAction(record)" :dropDownActions="getDropDownAction(record)"/>
+      </template>
+      <!--字段回显插槽-->
+      <template v-slot:bodyCell="{ column, record, index, text }">
+        <template v-if="column.dataIndex==='content'">
+          <!--富文本件字段回显插槽-->
+          <div v-html="text"></div>
+        </template>
+      </template>
+    </BasicTable>
+    <!-- 表单区域 -->
+    <OkkiExternalLinkModal @register="registerModal" @success="handleSuccess"></OkkiExternalLinkModal>
+  </div>
+</template>
+
+<script lang="ts" name="externallink-okkiExternalLink" setup>
+  import {ref, reactive, computed, unref} from 'vue';
+  import {BasicTable, useTable, TableAction} from '/@/components/Table';
+  import {useModal} from '/@/components/Modal';
+  import { useListPage } from '/@/hooks/system/useListPage'
+  import OkkiExternalLinkModal from './components/OkkiExternalLinkModal.vue'
+  import {columns, searchFormSchema, superQuerySchema} from './OkkiExternalLink.data';
+  import {list, deleteOne, batchDelete, getImportUrl,getExportUrl} from './OkkiExternalLink.api';
+  import { downloadFile } from '/@/utils/common/renderUtils';
+  import { useUserStore } from '/@/store/modules/user';
+  const queryParam = reactive<any>({});
+  const checkedKeys = ref<Array<string | number>>([]);
+  const userStore = useUserStore();
+  //注册model
+  const [registerModal, {openModal}] = useModal();
+  //注册table数据
+  const { prefixCls,tableContext,onExportXls,onImportXls } = useListPage({
+      tableProps:{
+           title: 'SEO数据外链',
+           api: list,
+           columns,
+           canResize:false,
+           formConfig: {
+              //labelWidth: 120,
+              schemas: searchFormSchema,
+              autoSubmitOnEnter:true,
+              showAdvancedButton:true,
+              fieldMapToNumber: [
+              ],
+              fieldMapToTime: [
+              ],
+            },
+           actionColumn: {
+               width: 120,
+               fixed:'right'
+            },
+            beforeFetch: (params) => {
+              return Object.assign(params, queryParam);
+            },
+      },
+       exportConfig: {
+            name:"SEO数据外链",
+            url: getExportUrl,
+            params: queryParam,
+          },
+          importConfig: {
+            url: getImportUrl,
+            success: handleSuccess
+          },
+  })
+
+  const [registerTable, {reload},{ rowSelection, selectedRowKeys }] = tableContext
+
+  // 高级查询配置
+  const superQueryConfig = reactive(superQuerySchema);
+
+  /**
+   * 高级查询事件
+   */
+  function handleSuperQuery(params) {
+    Object.keys(params).map((k) => {
+      queryParam[k] = params[k];
+    });
+    reload();
+  }
+   /**
+    * 新增事件
+    */
+  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}, handleSuccess);
+   }
+   /**
+    * 批量删除事件
+    */
+  async function batchHandleDelete() {
+     await batchDelete({ids: selectedRowKeys.value}, handleSuccess);
+   }
+   /**
+    * 成功回调
+    */
+  function handleSuccess() {
+      (selectedRowKeys.value = []) && 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),
+             placement: 'topLeft',
+           }
+         }
+       ]
+   }
+
+
+</script>
+
+<style scoped>
+
+</style>

+ 26 - 0
jeecgboot-vue3/src/views/okki/externallink/V20240509_1__menu_insert_OkkiExternalLink.sql

@@ -0,0 +1,26 @@
+-- 注意:该页面对应的前台目录为views/externallink文件夹下
+-- 如果你想更改到其他目录,请修改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 ('2024050905228320470', NULL, 'SEO数据外链', '/externallink/okkiExternalLinkList', 'externallink/OkkiExternalLinkList', NULL, NULL, 0, NULL, '1', 0.00, 0, NULL, 1, 0, 0, 0, 0, NULL, '1', 0, 0, 'admin', '2024-05-09 17:22:47', 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 ('2024050905228330471', '2024050905228320470', '添加SEO数据外链', NULL, NULL, 0, NULL, NULL, 2, 'externallink:okki_external_link:add', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2024-05-09 17:22:47', 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 ('2024050905228330472', '2024050905228320470', '编辑SEO数据外链', NULL, NULL, 0, NULL, NULL, 2, 'externallink:okki_external_link:edit', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2024-05-09 17:22:47', 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 ('2024050905228330473', '2024050905228320470', '删除SEO数据外链', NULL, NULL, 0, NULL, NULL, 2, 'externallink:okki_external_link:delete', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2024-05-09 17:22:47', 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 ('2024050905228330474', '2024050905228320470', '批量删除SEO数据外链', NULL, NULL, 0, NULL, NULL, 2, 'externallink:okki_external_link:deleteBatch', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2024-05-09 17:22:47', 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 ('2024050905228330475', '2024050905228320470', '导出excel_SEO数据外链', NULL, NULL, 0, NULL, NULL, 2, 'externallink:okki_external_link:exportXls', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2024-05-09 17:22:47', 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 ('2024050905228330476', '2024050905228320470', '导入excel_SEO数据外链', NULL, NULL, 0, NULL, NULL, 2, 'externallink:okki_external_link:importExcel', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2024-05-09 17:22:47', NULL, NULL, 0, 0, '1', 0);

+ 70 - 0
jeecgboot-vue3/src/views/okki/externallink/components/OkkiExternalLinkForm.vue

@@ -0,0 +1,70 @@
+<template>
+    <div style="min-height: 400px">
+        <BasicForm @register="registerForm"></BasicForm>
+        <div style="width: 100%;text-align: center" v-if="!formDisabled">
+            <a-button @click="submitForm" pre-icon="ant-design:check" type="primary">提 交</a-button>
+        </div>
+    </div>
+</template>
+
+<script lang="ts">
+    import {BasicForm, useForm} from '/@/components/Form/index';
+    import {computed, defineComponent} from 'vue';
+    import {defHttp} from '/@/utils/http/axios';
+    import { propTypes } from '/@/utils/propTypes';
+    import {getBpmFormSchema} from '../OkkiExternalLink.data';
+    import {saveOrUpdate} from '../OkkiExternalLink.api';
+    
+    export default defineComponent({
+        name: "OkkiExternalLinkForm",
+        components:{
+            BasicForm
+        },
+        props:{
+            formData: propTypes.object.def({}),
+            formBpm: propTypes.bool.def(true),
+        },
+        setup(props){
+            const [registerForm, { setFieldsValue, setProps, getFieldsValue }] = useForm({
+                labelWidth: 150,
+                schemas: getBpmFormSchema(props.formData),
+                showActionButtonGroup: false,
+                baseColProps: {span: 24}
+            });
+
+            const formDisabled = computed(()=>{
+                if(props.formData.disabled === false){
+                    return false;
+                }
+                return true;
+            });
+
+            let formData = {};
+            const queryByIdUrl = '/externallink/okkiExternalLink/queryById';
+            async function initFormData(){
+                let params = {id: props.formData.dataId};
+                const data = await defHttp.get({url: queryByIdUrl, params});
+                formData = {...data}
+                //设置表单的值
+                await setFieldsValue(formData);
+                //默认是禁用
+                await setProps({disabled: formDisabled.value})
+            }
+
+            async function submitForm() {
+                let data = getFieldsValue();
+                let params = Object.assign({}, formData, data);
+                console.log('表单数据', params)
+                await saveOrUpdate(params, true)
+            }
+
+            initFormData();
+            
+            return {
+                registerForm,
+                formDisabled,
+                submitForm,
+            }
+        }
+    });
+</script>

+ 66 - 0
jeecgboot-vue3/src/views/okki/externallink/components/OkkiExternalLinkModal.vue

@@ -0,0 +1,66 @@
+<template>
+  <BasicModal v-bind="$attrs" @register="registerModal" destroyOnClose :title="title" :width="800" @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 '../OkkiExternalLink.data';
+    import {saveOrUpdate} from '../OkkiExternalLink.api';
+    // Emits声明
+    const emit = defineEmits(['register','success']);
+    const isUpdate = ref(true);
+    //表单配置
+    const [registerForm, {setProps,resetFields, setFieldsValue, validate}] = useForm({
+        //labelWidth: 150,
+        schemas: formSchema,
+        showActionButtonGroup: false,
+        baseColProps: {span: 24}
+    });
+    //表单赋值
+    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>
+	/** 时间和数字输入框样式 */
+  :deep(.ant-input-number){
+		width: 100%
+	}
+
+	:deep(.ant-calendar-picker){
+		width: 100%
+	}
+</style>