Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
公瑾
/
lucky-draw
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
464a3c77
authored
2019-12-30 17:22:09 +0800
by
zhangyongfeng
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
README
1 parent
b5a6a2b7
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
4 deletions
.eslintrc.js
README.md
.eslintrc.js
View file @
464a3c7
...
...
@@ -3,12 +3,12 @@ module.exports = {
env
:
{
node
:
true
},
extends
:
[
"plugin:vue/essential"
,
"@vue/prettier"
],
extends
:
[
'plugin:vue/essential'
,
'@vue/prettier'
],
rules
:
{
"no-console"
:
process
.
env
.
NODE_ENV
===
"production"
?
"error"
:
"off"
,
"no-debugger"
:
process
.
env
.
NODE_ENV
===
"production"
?
"error"
:
"off"
'no-console'
:
process
.
env
.
NODE_ENV
===
'production'
?
'off'
:
'off'
,
'no-debugger'
:
process
.
env
.
NODE_ENV
===
'production'
?
'error'
:
'off'
},
parserOptions
:
{
parser
:
"babel-eslint"
parser
:
'babel-eslint'
}
};
...
...
README.md
View file @
464a3c7
...
...
@@ -25,3 +25,15 @@
## 导入名单
-
按照格式导入名单,可以多次输入。若号码有对应的姓名,则在抽取过程及结果中会显示号码及姓名,若没有对应的姓名,则只显示号码。
## 导入相册
-
按照 抽奖号-照片的一对一导入,(可在现场将号码发出签到后,每发一个号码,导一个照片)。抽奖结果将已照片形式展示。
# 温馨提示
-
本抽奖程序无暗箱操作,无后台,无后门。
# License
[
MIT
](
https://choosealicense.com/licenses/mit/
)
...
...
Please
register
or
sign in
to post a comment