xiaoxian521 před 2 roky
rodič
revize
3984ab19c9

+ 1 - 1
CHANGELOG.en_US.md

@@ -121,7 +121,7 @@
 
 - Secondary encapsulation of `Table` of `element-plus` into [@pureadmin/table](https://github.com/xiaoxian521/pure-admin-table), providing flexible configuration items and integrating into the platform
 - Secondary encapsulation of `Descriptions` of `element-plus` into [@pureadmin/descriptions](https://github.com/xiaoxian521/pure-admin-descriptions), providing flexible configuration items and integrating into the platform
-- Centralize most of the tools and hooks of the platform to [@pureadmin/utils](https://pure-admin-utils-docs.vercel.app/), and delete the code concentrated in this library to reduce the size of the platform
+- Centralize most of the tools and hooks of the platform to [@pureadmin/utils](https://pure-admin-utils.netlify.app), and delete the code concentrated in this library to reduce the size of the platform
 - Add [unplugin-vue-define-options](https://www.npmjs.com/package/unplugin-vue-define-options) plugin, the page can directly write `defineOptions({name: custom name})`
 - Add project files, language analysis tool [cloc](https://www.npmjs.com/package/cloc)
 - Added landing page internationalization

+ 1 - 1
CHANGELOG.md

@@ -121,7 +121,7 @@
 
 - Secondary encapsulation of `Table` of `element-plus` into [@pureadmin/table](https://github.com/xiaoxian521/pure-admin-table), providing flexible configuration items and integrating into the platform
 - Secondary encapsulation of `Descriptions` of `element-plus` into [@pureadmin/descriptions](https://github.com/xiaoxian521/pure-admin-descriptions), providing flexible configuration items and integrating into the platform
-- Centralize most of the tools and hooks of the platform to [@pureadmin/utils](https://pure-admin-utils-docs.vercel.app/), and delete the code concentrated in this library to reduce the size of the platform
+- Centralize most of the tools and hooks of the platform to [@pureadmin/utils](https://pure-admin-utils.netlify.app), and delete the code concentrated in this library to reduce the size of the platform
 - Add [unplugin-vue-define-options](https://www.npmjs.com/package/unplugin-vue-define-options) plugin, the page can directly write `defineOptions({name: custom name})`
 - Add project files, language analysis tool [cloc](https://www.npmjs.com/package/cloc)
 - Added landing page internationalization

+ 2 - 2
CHANGELOG.zh_CN.md

@@ -83,7 +83,7 @@
 
 ### ✔️ refactor
 
-- 使用 `tailwindcss` 替换 `unocss`,新增 `tailwindcss` [使用文档](http://yiming_chang.gitee.io/pure-admin-doc/pages/39156f/)
+- 使用 `tailwindcss` 替换 `unocss`,新增 `tailwindcss` [使用文档](https://yiming_chang.gitee.io/pure-admin-doc/pages/tailwindcss/)
 
 ### 🐞 Bug fixes
 
@@ -121,7 +121,7 @@
 
 - 将 `element-plus` 的 `Table` 二次封装到[@pureadmin/table](https://github.com/xiaoxian521/pure-admin-table),提供灵活的配置项并集成到平台里
 - 将 `element-plus` 的 `Descriptions` 二次封装到[@pureadmin/descriptions](https://github.com/xiaoxian521/pure-admin-descriptions),提供灵活的配置项并集成到平台里
-- 将平台的大部分工具以及 hooks 都集中到[@pureadmin/utils](https://pure-admin-utils-docs.vercel.app/),并删除集中到这个库里的代码,减少平台体积
+- 将平台的大部分工具以及 `hooks` 都集中到[@pureadmin/utils](https://pure-admin-utils.netlify.app),并删除集中到这个库里的代码,减少平台体积
 - 添加[unplugin-vue-define-options](https://www.npmjs.com/package/unplugin-vue-define-options)插件,页面可直接写 `defineOptions({name: 自定义名称})`
 - 添加项目文件、语言分析工具 [cloc](https://www.npmjs.com/package/cloc)
 - 添加登录页国际化

+ 1 - 1
README.md

@@ -148,7 +148,7 @@ pnpm build
 
 一群已满,下面是二群,群里严禁`黄`、`赌`、`毒`、`vpn`等违法行为!
 
-<img src="http://yiming_chang.gitee.io/pure-admin-doc/img/support/qq.png" width="150px" height="225px" />
+<img src="https://yiming_chang.gitee.io/pure-admin-doc/img/support/qq.png" width="150px" height="225px" />
 
 ## 许可证
 

+ 2 - 2
mock/asyncRoutes.ts

@@ -97,13 +97,13 @@ const frameRouter = {
       name: "FramePure",
       meta: {
         title: "menus.hsPureDocument",
-        frameSrc: "http://yiming_chang.gitee.io/pure-admin-doc",
+        frameSrc: "https://yiming_chang.gitee.io/pure-admin-doc",
         roles: ["admin", "common"]
       }
     },
     {
       path: "/external",
-      name: "http://yiming_chang.gitee.io/pure-admin-doc",
+      name: "https://yiming_chang.gitee.io/pure-admin-doc",
       meta: {
         title: "menus.externalLink",
         roles: ["admin", "common"]

+ 1 - 1
src/utils/README.md

@@ -1,5 +1,5 @@
 ### 注意
 
-- `vue-pure-admin` 从 `3.3.0` 版本之后(不包括 `3.3.0` 版本),大部分工具和 `hooks` 都集成到了[@pureadmin/utils](https://xiaoxian521.github.io/pure-admin-utils-docs/)
+- `vue-pure-admin` 从 `3.3.0` 版本之后(不包括 `3.3.0` 版本),大部分工具和 `hooks` 都集成到了 [@pureadmin/utils](https://pure-admin-utils.netlify.app/)
 - [npm](https://www.npmjs.com/package/@pureadmin/utils)
 - [文档代码地址](https://github.com/xiaoxian521/pure-admin-utils-docs)

+ 2 - 2
src/views/able/download.vue

@@ -16,7 +16,7 @@ const base64 =
 
 function down() {
   axios
-    .get("https://xiaoxian521.github.io/pure-admin-utils-docs/logo.png", {
+    .get("https://xiaoxian521.github.io/pure-admin-doc/img/pure.png", {
       responseType: "blob"
     })
     .then(({ data }) => {
@@ -34,7 +34,7 @@ function down() {
       <el-button
         @click="
           downloadByOnlineUrl(
-            'https://xiaoxian521.github.io/pure-admin-utils-docs/logo.png',
+            'https://xiaoxian521.github.io/pure-admin-doc/img/pure.png',
             'test-url.png'
           )
         "

+ 8 - 2
src/views/about/columns.tsx

@@ -18,7 +18,10 @@ export function useColumns() {
       label: "文档地址",
       cellRenderer: () => {
         return (
-          <a href="http://yiming_chang.gitee.io/pure-admin-doc" target="_blank">
+          <a
+            href="https://yiming_chang.gitee.io/pure-admin-doc"
+            target="_blank"
+          >
             <span style="color: var(--el-color-primary)">文档地址</span>
           </a>
         );
@@ -28,7 +31,10 @@ export function useColumns() {
       label: "预览地址",
       cellRenderer: () => {
         return (
-          <a href="http://yiming_chang.gitee.io/vue-pure-admin" target="_blank">
+          <a
+            href="https://yiming_chang.gitee.io/vue-pure-admin"
+            target="_blank"
+          >
             <span style="color: var(--el-color-primary)">预览地址</span>
           </a>
         );