-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
N0ts
committed
Oct 7, 2021
1 parent
128c5c3
commit 7a29fff
Showing
5 changed files
with
45 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
/* | ||
* @Author: N0ts | ||
* @Date: 2021-05-19 02:08:33 | ||
* @LastEditTime: 2021-10-07 16:18:52 | ||
* @LastEditTime: 2021-10-07 16:43:54 | ||
* @Description: 后端配置 | ||
* @FilePath: \heng\api\config\lovexhj.js | ||
* @FilePath: \heng\api\config\config.js | ||
* @Mail:[email protected] | ||
*/ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
* @Author: N0ts | ||
* @Date: 2021-05-18 22:53:40 | ||
* @LastEditTime: 2021-10-07 16:36:18 | ||
* @LastEditTime: 2021-10-07 16:43:51 | ||
* @Description: 前端配置 | ||
* @FilePath: \heng\config\config.js | ||
* @Mail:[email protected] | ||
|
@@ -11,25 +11,43 @@ export default { | |
lovexhj: { | ||
// 后端地址 | ||
ServerBase: "", | ||
// 页面刚加载文字 | ||
loadingText: "正在打开小本本", | ||
// 首页 | ||
lovexhjHeader: { | ||
// 首页标题 | ||
title: "TQY 与 XHJ 的记仇本本", | ||
// 本本标题 | ||
bookTitle: "爱我的猪" | ||
}, | ||
// 目录页标题 | ||
pageTitle: "目录", | ||
// 目录页副标题 | ||
pageSubTitle: "点击就可以查看啦", | ||
// 当前页数 / 一次加载多少条数据 | ||
pageloadNum: [1, 10], | ||
// 没有记仇时提示文字 | ||
pageNone: "这么清静?还不去记仇?", | ||
// 切换按钮文字 | ||
wdnmdTextButton: ["记个仇", "查看小本本"], | ||
// 记仇标题提示文字 | ||
wdnmdPlaceholder: "记仇也要来个标题吧!", | ||
// 记仇内容提示文字 | ||
editText: "这个仇我先记上!", | ||
// 提交记仇按钮文字 | ||
wdnmdSubmit: "记到小本本", | ||
// 记仇成功提醒文字 | ||
wdnmdOk: "小本本又多了一条记仇~", | ||
// 未填写密码提示文字 | ||
passwordTitle: "记仇也是需要密码的!", | ||
// 密码录入成功后提示文字 | ||
passwordSetOk: "现在可以记仇啦!", | ||
// 谁发的 | ||
identity: [ | ||
{ | ||
// 名字 | ||
name: "佩琪", | ||
// 颜色 | ||
color: "#e84393" | ||
}, | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,12 @@ | ||
<!-- | ||
* @Author: N0ts | ||
* @Date: 2021-05-11 19:32:17 | ||
* @LastEditTime: 2021-10-07 16:43:29 | ||
* @Description: 记仇小本本 | ||
* @FilePath: \heng\index.html | ||
* @Mail:[email protected] | ||
--> | ||
|
||
<!DOCTYPE html> | ||
<html lang="zh-CN"> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -68,6 +68,8 @@ new Vue({ | |
this.getLocalConfig(); | ||
// 记仇获取 | ||
this.getWdnmd(); | ||
// 富文本编辑器创建 | ||
this.createEditor(); | ||
}, | ||
|
||
/** | ||
|