Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
F
fill-system
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
廖旭伟
fill-system
Commits
f5c2ea4d
Commit
f5c2ea4d
authored
Feb 21, 2023
by
赵啸非
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加应用白名单接口
parent
46fe2d62
Pipeline
#2488
failed with stages
Changes
5
Pipelines
1
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
0 additions
and
1210 deletions
+0
-1210
fill-manager/pom.xml
fill-manager/pom.xml
+0
-1
fill-manager/src/main/resources/static/doc/AllInOne.css
fill-manager/src/main/resources/static/doc/AllInOne.css
+0
-13
fill-manager/src/main/resources/static/doc/AllInOne.md.md
fill-manager/src/main/resources/static/doc/AllInOne.md.md
+0
-796
fill-manager/src/main/resources/static/doc/index.html
fill-manager/src/main/resources/static/doc/index.html
+0
-238
fill-manager/src/main/resources/static/doc/search.js
fill-manager/src/main/resources/static/doc/search.js
+0
-162
No files found.
fill-manager/pom.xml
View file @
f5c2ea4d
...
@@ -85,7 +85,6 @@
...
@@ -85,7 +85,6 @@
<profiles.log.path>
/home/mortals/app/logs
</profiles.log.path>
<profiles.log.path>
/home/mortals/app/logs
</profiles.log.path>
<profiles.filepath>
/mortals/app/data
</profiles.filepath>
<profiles.filepath>
/mortals/app/data
</profiles.filepath>
<profiles.log.level>
INFO
</profiles.log.level>
<profiles.log.level>
INFO
</profiles.log.level>
</properties>
</properties>
</profile>
</profile>
...
...
fill-manager/src/main/resources/static/doc/AllInOne.css
deleted
100644 → 0
View file @
46fe2d62
This diff is collapsed.
Click to expand it.
fill-manager/src/main/resources/static/doc/AllInOne.md.md
deleted
100644 → 0
View file @
46fe2d62
This diff is collapsed.
Click to expand it.
fill-manager/src/main/resources/static/doc/index.html
deleted
100644 → 0
View file @
46fe2d62
This source diff could not be displayed because it is too large. You can
view the blob
instead.
fill-manager/src/main/resources/static/doc/search.js
deleted
100644 → 0
View file @
46fe2d62
let
api
=
[];
api
.
push
({
alias
:
'
WxOneThingApiController
'
,
order
:
'
1
'
,
link
:
'
一件事微信对外服务接口
'
,
desc
:
'
一件事微信对外服务接口
'
,
list
:
[]
})
api
[
0
].
list
.
push
({
order
:
'
1
'
,
desc
:
'
一件事主题包列表
'
,
});
api
[
0
].
list
.
push
({
order
:
'
2
'
,
desc
:
'
一件事主题列表(包含主题包)
'
,
});
api
[
0
].
list
.
push
({
order
:
'
3
'
,
desc
:
'
一件事列表
'
,
});
api
[
0
].
list
.
push
({
order
:
'
4
'
,
desc
:
'
问题详细
'
,
});
api
[
0
].
list
.
push
({
order
:
'
5
'
,
desc
:
'
问答答案提交后返回的详细结果
'
,
});
api
[
0
].
list
.
push
({
order
:
'
6
'
,
desc
:
'
上传附件
'
,
});
api
[
0
].
list
.
push
({
order
:
'
7
'
,
desc
:
'
删除附件
'
,
});
api
[
0
].
list
.
push
({
order
:
'
8
'
,
desc
:
'
查询用户信息
'
,
});
api
[
0
].
list
.
push
({
order
:
'
9
'
,
desc
:
'
一件事办理资料提交
'
,
});
api
[
0
].
list
.
push
({
order
:
'
10
'
,
desc
:
'
我的办理
'
,
});
api
.
push
({
alias
:
'
WxWechatApiController
'
,
order
:
'
2
'
,
link
:
'
微信认证
'
,
desc
:
'
微信认证
'
,
list
:
[]
})
api
[
1
].
list
.
push
({
order
:
'
1
'
,
desc
:
'
微信注册认证
'
,
});
api
.
push
({
alias
:
'
error
'
,
order
:
'
3
'
,
link
:
'
error_code_list
'
,
desc
:
'
错误码列表
'
,
list
:
[]
})
api
.
push
({
alias
:
'
dict
'
,
order
:
'
4
'
,
link
:
'
dict_list
'
,
desc
:
'
数据字典
'
,
list
:
[]
})
document
.
onkeydown
=
keyDownSearch
;
function
keyDownSearch
(
e
)
{
const
theEvent
=
e
;
const
code
=
theEvent
.
keyCode
||
theEvent
.
which
||
theEvent
.
charCode
;
if
(
code
==
13
)
{
const
search
=
document
.
getElementById
(
'
search
'
);
const
searchValue
=
search
.
value
;
let
searchArr
=
[];
for
(
let
i
=
0
;
i
<
api
.
length
;
i
++
)
{
let
apiData
=
api
[
i
];
const
desc
=
apiData
.
desc
;
if
(
desc
.
indexOf
(
searchValue
)
>
-
1
)
{
searchArr
.
push
({
order
:
apiData
.
order
,
desc
:
apiData
.
desc
,
link
:
apiData
.
link
,
list
:
apiData
.
list
});
}
else
{
let
methodList
=
apiData
.
list
||
[];
let
methodListTemp
=
[];
for
(
let
j
=
0
;
j
<
methodList
.
length
;
j
++
)
{
const
methodData
=
methodList
[
j
];
const
methodDesc
=
methodData
.
desc
;
if
(
methodDesc
.
indexOf
(
searchValue
)
>
-
1
)
{
methodListTemp
.
push
(
methodData
);
break
;
}
}
if
(
methodListTemp
.
length
>
0
)
{
const
data
=
{
order
:
apiData
.
order
,
desc
:
apiData
.
desc
,
link
:
apiData
.
link
,
list
:
methodListTemp
};
searchArr
.
push
(
data
);
}
}
}
let
html
;
if
(
searchValue
==
''
)
{
const
liClass
=
""
;
const
display
=
"
display: none
"
;
html
=
buildAccordion
(
api
,
liClass
,
display
);
document
.
getElementById
(
'
accordion
'
).
innerHTML
=
html
;
}
else
{
const
liClass
=
"
open
"
;
const
display
=
"
display: block
"
;
html
=
buildAccordion
(
searchArr
,
liClass
,
display
);
document
.
getElementById
(
'
accordion
'
).
innerHTML
=
html
;
}
const
Accordion
=
function
(
el
,
multiple
)
{
this
.
el
=
el
||
{};
this
.
multiple
=
multiple
||
false
;
const
links
=
this
.
el
.
find
(
'
.dd
'
);
links
.
on
(
'
click
'
,
{
el
:
this
.
el
,
multiple
:
this
.
multiple
},
this
.
dropdown
);
};
Accordion
.
prototype
.
dropdown
=
function
(
e
)
{
const
$el
=
e
.
data
.
el
;
$this
=
$
(
this
),
$next
=
$this
.
next
();
$next
.
slideToggle
();
$this
.
parent
().
toggleClass
(
'
open
'
);
if
(
!
e
.
data
.
multiple
)
{
$el
.
find
(
'
.submenu
'
).
not
(
$next
).
slideUp
(
"
20
"
).
parent
().
removeClass
(
'
open
'
);
}
};
new
Accordion
(
$
(
'
#accordion
'
),
false
);
}
}
function
buildAccordion
(
apiData
,
liClass
,
display
)
{
let
html
=
""
;
let
doc
;
if
(
apiData
.
length
>
0
)
{
for
(
let
j
=
0
;
j
<
apiData
.
length
;
j
++
)
{
html
+=
'
<li class="
'
+
liClass
+
'
">
'
;
html
+=
'
<a class="dd" href="#_
'
+
apiData
[
j
].
link
+
'
">
'
+
apiData
[
j
].
order
+
'
.
'
+
apiData
[
j
].
desc
+
'
</a>
'
;
html
+=
'
<ul class="sectlevel2" style="
'
+
display
+
'
">
'
;
doc
=
apiData
[
j
].
list
;
for
(
let
m
=
0
;
m
<
doc
.
length
;
m
++
)
{
html
+=
'
<li><a href="#_
'
+
apiData
[
j
].
order
+
'
_
'
+
doc
[
m
].
order
+
'
_
'
+
doc
[
m
].
desc
+
'
">
'
+
apiData
[
j
].
order
+
'
.
'
+
doc
[
m
].
order
+
'
.
'
+
doc
[
m
].
desc
+
'
</a> </li>
'
;
}
html
+=
'
</ul>
'
;
html
+=
'
</li>
'
;
}
}
return
html
;
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment