Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
shenDianYun
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
node_server
shenDianYun
Commits
1bf0ed4c
Commit
1bf0ed4c
authored
Nov 28, 2022
by
lixinming
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug
parent
30b152ed
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
29 deletions
+13
-29
.gitignore
.gitignore
+9
-25
jhjd.ts
src/biz/jhjd.ts
+4
-4
No files found.
.gitignore
View file @
1bf0ed4c
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
# dependencies
.idea
/out
/node_modules
/.pnp
.pnp.js
# testing
/coverage
# production
/build
/素材
/idea
.idea/workspace.xml
# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local
npm-debug.log*
yarn-debug.log*
yarn-error.log*
/test
/public
/logs
/video
*test*
*.log
\ No newline at end of file
src/biz/jhjd.ts
View file @
1bf0ed4c
...
...
@@ -2,7 +2,7 @@
import
{
jhjdTableData
,
jhjdTableDataV
}
from
'../data/table/jhjdData'
;
import
{
doubleYBarCharPackage
,
keyValuePackage
,
onceYBarChartPackage
,
rankPackage
,
tablePackage
}
from
'../dataPackage/inFrontOut'
;
import
{
getDoubleYBarChartOut
,
getKeyValueOut
,
getOnceYBarChartOut
,
getTableOut
}
from
'../dataPackage/out'
;
import
*
as
jhjdBiz
from
'../biz/jhjd'
;
/* 计划进度 */
export
function
getData
(
req
,
res
)
{
...
...
@@ -41,7 +41,7 @@ export function getData(req, res) {
}
export
function
getJHJD
(
req
,
res
)
{
let
line
=
req
.
query
.
line
||
-
1
;
let
line
=
req
.
query
.
line
||
"全部"
;
let
excelData
=
jhjdTableDataV
();
let
ret
:
any
=
{};
...
...
@@ -112,7 +112,7 @@ export function getJHJD(req, res) {
移交详细
.
push
(
{
key
:
C
,
value
:
D
}
);
break
;
}
}
else
if
(
line
==
-
1
)
{
}
else
if
(
line
==
"全部"
)
{
switch
(
B
)
{
case
'证件办理'
:
证件办理详细
.
push
(
{
key
:
C
,
value
:
D
}
);
...
...
@@ -128,7 +128,7 @@ export function getJHJD(req, res) {
})
let
zjblxxPackageData
=
keyValuePackage
(
证件办理详细
);
ret
[
'zjblxx
'
]
=
getKeyValueOut
(
'证件办理详细
'
,
zjblxxPackageData
);
ret
[
'zjblxx
xl'
]
=
getKeyValueOut
(
'证件办理详细线路
'
,
zjblxxPackageData
);
let
dqxxxlPackageData
=
keyValuePackage
(
动迁详细
);
ret
[
'dqxxxl'
]
=
getKeyValueOut
(
'动迁详细线路'
,
dqxxxlPackageData
);
...
...
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