修复:新建默认账户时sql问题,删除无用文件

master
李春波 1 year ago
parent f6bf5133fc
commit 1136affe51
  1. 54
      front/.github/ISSUE_TEMPLATE/bug_report.md
  2. 20
      front/.github/ISSUE_TEMPLATE/feature_request.md
  3. 17
      front/.github/ISSUE_TEMPLATE/need-help-issue.md
  4. 48
      front/.github/pull_request_template.md
  5. 1
      front/.husky/.gitignore
  6. 4
      front/.husky/commit-msg
  7. 4
      front/.husky/pre-commit
  8. 2
      install.sql

@ -1,54 +0,0 @@
---
name: Bug report
about: Create a report to help us improve(Bug 反馈)
title: ''
labels: ''
assignees: ''
---
**Describe the bug (描述 Bug)**
A clear and concise description of what the bug is.
**To Reproduce (重现步骤)**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error
**Expected behavior(你期待的是什么?)**
A clear and concise description of what you expected to happen.
**Screenshots(截图)**
If applicable, add screenshots to help explain your problem.
**Desktop (please complete the following information):**
- OS: [e.g. iOS]
- Browser [e.g. chrome, safari]
- Version [e.g. 22]
**Smartphone (please complete the following information):**
- Device: [e.g. iPhone6]
- OS: [e.g. iOS8.1]
- Browser [e.g. stock browser, safari]
- Version [e.g. 22]
**Additional context(附加信息)**
Add any other context about the problem here.

@ -1,20 +0,0 @@
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: ''
assignees: ''
---
**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
**Describe the solution you'd like**
A clear and concise description of what you want to happen.
**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.
**Additional context**
Add any other context or screenshots about the feature request here.

@ -1,17 +0,0 @@
---
name: Need help issue
about: Question for use(问题求助)
title: ''
labels: question
assignees: ''
---
**Question (问题描述)**
How to use component `s-table` paging
**Describe the solution you'd like (你期待的是什么?)**
A clear and concise description of what you want to happen.
**Additional context(附加信息)**
Add any other context or screenshots about the feature request here.

@ -1,48 +0,0 @@
First of all, thank you for your contribution! 😄
Pull request will be merged after one of collaborators approve.
Please makes sure that these form are filled before submitting your pull request, thank you!
### 这个变动的性质是
- [ ] 新特性提交
- [ ] 日常 bug 修复
- [ ] 文档改进
- [ ] 组件样式改进
- [ ] 重构
- [ ] 代码风格优化
- [ ] 分支合并
- [ ] 其他改动(是关于什么的改动?)
### 需求背景
> 1. 描述相关需求的来源。
> 2. 要解决的问题。
> 3. 相关的 issue 讨论链接。
### 实现方案和 API(非新功能可选)
> 1. 基本的解决思路和其他可选方案。
> 2. 列出最终的 API 实现和用法。
> 3. 涉及UI/交互变动需要有截图或 GIF。
### 对用户的影响和可能的风险(非新功能可选)
> 1. 这个改动对用户端是否有影响?影响的方面有哪些?
> 2. 是否有可能隐含的 break change 和其他风险?
### Changelog 描述(非新功能可选)
> 1. 英文描述
> 2. 中文描述(可选)
### 请求合并前的自查清单
- [ ] 文档已补充或无须补充
- [ ] 代码演示已提供或无须提供
- [ ] Changelog 已提供或无须提供
### 后续计划(非新功能可选)
> 如果这个提交后面还有相关的其他提交和跟进信息,可以写在这里。

@ -1,4 +0,0 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"
npx --no-install commitlint --edit "$1"

@ -1,4 +0,0 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"
npm run lint

@ -111,5 +111,5 @@ CREATE TABLE `wxcallback_forward`
) ENGINE = InnoDB
DEFAULT CHARSET = utf8 COMMENT ='请求转发日志';
INSERT INTO `wechat_mp`.`user` (`id`, `username`, `password`, `createtime`, `updatetime`)
INSERT INTO `user` (`id`, `username`, `password`, `create_time`, `update_time`)
VALUES (1, 'admin', '21232f297a57a5a743894a0e4a801fc3', '2024-01-18 23:17:23', '2024-01-13 23:50:17');

Loading…
Cancel
Save