fix: 配置
This commit is contained in:
parent
4a70bc82ce
commit
1921dda860
@ -88,4 +88,12 @@ public class PxClientArticleController extends BaseController {
|
|||||||
public AjaxResult getArticleListGroupByType() {
|
public AjaxResult getArticleListGroupByType() {
|
||||||
return AjaxResult.success(pxArticleService.getArticleListGroupByType());
|
return AjaxResult.success(pxArticleService.getArticleListGroupByType());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 文章按类型分组
|
||||||
|
*/
|
||||||
|
@GetMapping("/getArticleUrls")
|
||||||
|
public String getArticleUrls() {
|
||||||
|
return pxArticleService.getArticleUrls();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -113,4 +113,10 @@ public interface IPxArticleService {
|
|||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
List<String> getLabelList();
|
List<String> getLabelList();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取文章URL列表
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
String getArticleUrls();
|
||||||
}
|
}
|
||||||
|
@ -254,4 +254,14 @@ public class PxArticleServiceImpl implements IPxArticleService {
|
|||||||
});
|
});
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String getArticleUrls() {
|
||||||
|
List<PxArticleVo> pxArticleVos = pxArticleMapper.selectPxArticleNotContent(new PxArticleVo());
|
||||||
|
StringBuilder sb = new StringBuilder();
|
||||||
|
for (PxArticleVo articleVo : pxArticleVos) {
|
||||||
|
sb.append("https://pnkx.top/post/").append(articleVo.getId()).append("\n");
|
||||||
|
}
|
||||||
|
return sb.toString();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -50,7 +50,7 @@ public class FtpTool {
|
|||||||
/**
|
/**
|
||||||
* ftp 密码
|
* ftp 密码
|
||||||
*/
|
*/
|
||||||
private static final String PWD = "pnkx0501.";
|
private static final String PWD = "admin";
|
||||||
/**
|
/**
|
||||||
* 端口 ftp 默认 21 ,登录端口。20为传输端口,此处使用连接端口
|
* 端口 ftp 默认 21 ,登录端口。20为传输端口,此处使用连接端口
|
||||||
*/
|
*/
|
||||||
|
@ -25,7 +25,7 @@ module.exports = {
|
|||||||
// 部署生产环境和开发环境下的URL。
|
// 部署生产环境和开发环境下的URL。
|
||||||
// 默认情况下,Vue CLI 会假设你的应用是被部署在一个域名的根路径上
|
// 默认情况下,Vue CLI 会假设你的应用是被部署在一个域名的根路径上
|
||||||
// 如果应用被部署在一个子路径上,你就需要用这个选项指定这个子路径。例如,如果你的应用被部署在 https://pnkx.top/admin/,则设置 baseUrl 为 /admin/。
|
// 如果应用被部署在一个子路径上,你就需要用这个选项指定这个子路径。例如,如果你的应用被部署在 https://pnkx.top/admin/,则设置 baseUrl 为 /admin/。
|
||||||
publicPath: process.env.NODE_ENV === "production" ? "./" : "/",
|
publicPath: process.env.NODE_ENV === "production" ? "/" : "/",
|
||||||
// 在npm run build 或 yarn build 时 ,生成文件的目录名称(要和baseUrl的生产环境路径一致)(默认dist)
|
// 在npm run build 或 yarn build 时 ,生成文件的目录名称(要和baseUrl的生产环境路径一致)(默认dist)
|
||||||
outputDir: 'dist',
|
outputDir: 'dist',
|
||||||
// 用于放置生成的静态资源 (js、css、img、fonts) 的;(项目打包之后,静态资源会放在这个文件夹下)
|
// 用于放置生成的静态资源 (js、css、img、fonts) 的;(项目打包之后,静态资源会放在这个文件夹下)
|
||||||
|
Loading…
Reference in New Issue
Block a user