Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
Z
zxtb_to_ssfwpt
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Bugzilla
Bugzilla
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
卢世豪
zxtb_to_ssfwpt
Commits
c4f3ed0d
Commit
c4f3ed0d
authored
Dec 29, 2020
by
刘明珠
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加综合申报
parent
5ac1a48f
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
476 additions
and
14 deletions
+476
-14
index.html
jsp/syntheticalReport/index.html
+74
-0
syntheticalReport_grid.js
static/biz/syntheticalReport_grid.js
+387
-0
config.js
static/config.js
+15
-14
No files found.
jsp/syntheticalReport/index.html
0 → 100644
View file @
c4f3ed0d
<!doctype html>
<html>
<head>
<meta
charset=
'UTF-8'
>
<!-- 让360双核浏览器用webkit内核渲染页面-->
<meta
name=
"renderer"
content=
"webkit"
>
<meta
name=
renderer
content=
webkit
>
<!-- 让IE浏览器用最高级内核渲染页面 还有用 Chrome 框架的页面用webkit 内核 -->
<meta
http-equiv=
"X-UA-Compatible"
content=
"IE=edge,chrome=1"
>
<!-- IOS6全屏 Chrome高版本全屏 -->
<meta
http-equiv=
"X-UA-Compatible"
content=
"edge"
>
<link
href=
"/web/onlineReport/static/tools/css/bootstrap.css?v=1.1"
rel=
"stylesheet"
>
<!--滚动条-->
<link
rel=
"stylesheet"
href=
"/web/onlineReport/static/tools/css/scroll.css"
/>
<!--table样式-->
<link
rel=
"stylesheet"
href=
"/web/onlineReport/static/tools/css/table.css"
/>
<!--样式-->
<link
rel=
"stylesheet"
href=
"/web/onlineReport/static/tools/css/encapsulation.css"
/>
<!--时间插件-->
<link
rel=
"stylesheet"
href=
"/web/onlineReport/static/tools/js/My97DatePicker/skin/WdatePicker.css"
/>
<!--declare-->
<link
rel=
"stylesheet"
href=
"/web/onlineReport/static/css/declare/declare.css"
/>
<!-- 页面自定义样式 -->
<title>
在线填报
</title>
</head>
<script>
document
.
write
(
"<script type='text/javascript' src='/web/onlineReport/static/config.js?time="
+
Math
.
random
()
+
"'></"
+
"script"
+
">"
)
</script>
<body>
<div>
<div
style=
"background-color:#FFFFFF;"
>
<div
style=
"padding: 25px;"
>
<div
class=
"div-border"
style=
"padding-bottom: 20px;height: 60px;"
>
<img
style=
"float:left;display:block"
src=
"/web/onlineReport/static/tools/images/zxtb.png"
>
<span
style=
"float:left;display:block;margin-left: 10px;margin-top: 9px;top: 10px;"
class=
"span-title"
>
综合申报
</span>
</div>
<div>
<div
class=
"div-float"
style=
"padding-bottom: 8px; width: 100%;position :relative"
>
<span>
申报月份:
</span>
<input
readonly
id=
"getInputValue"
name=
"birth_date"
style=
"width: 10%; display: inline;min-width: 150px"
type=
"text"
class=
"Wdate checkId-input check-items-birthday form-control"
>
<input
id=
"reset"
class=
"btn btn-primary tdDong-btn"
style=
"margin-right: 10%;margin-right: 10px;height: 32px;margin-top: 5px;position:absolute;right: 120px;"
type=
"button"
value=
"重置申报清册"
/>
</div>
</div>
</br>
<div
class=
"div-clear-folat"
>
<strong>
税费申报
</strong>
</div>
<hr
class=
"hr-margin"
/>
<div
id=
"taxGrid"
></div>
</div>
</div>
</div>
<input
type=
'hidden'
name=
'data'
value=
"${token}"
id=
"token"
>
<input
type=
'hidden'
name=
'data'
value=
"${djxh}"
id=
"djxh"
>
</body>
<script
src=
"/web/onlineReport/static/tools/js/jquery-1.11.3.js?v=1.1"
></script>
<script
src=
"/web/onlineReport/static/js/tax/tool.js"
></script>
<script
src=
"/web/onlineReport/static/tools/js/jquery.nicescroll.js?v=1.1"
></script>
<script
src=
"/web/onlineReport/static/tools/js/bootstrap.js?v=1.1"
></script>
<script
src=
"/web/onlineReport/static/tools/js/encapsulation.js?v=1.3"
></script>
<script
src=
"/web/onlineReport/static/tools/js/minScroll.js?v=1.1"
></script>
<script
src=
"/web/onlineReport/static/tools/js/My97DatePicker/WdatePicker.js?v=1.1"
></script>
<script
src=
"/web/onlineReport/static/biz/syntheticalReport_grid.js?v=1.0"
></script>
</html>
static/biz/syntheticalReport_grid.js
0 → 100644
View file @
c4f3ed0d
This diff is collapsed.
Click to expand it.
static/config.js
View file @
c4f3ed0d
...
...
@@ -5,7 +5,7 @@
* @Param
* @return
**/
function
getUrlParam
(
name
)
{
function
getUrlParam
(
name
)
{
var
reg
=
new
RegExp
(
'(^|&)'
+
name
+
'=([^&]*)(&|$)'
);
var
r
=
window
.
location
.
search
.
substr
(
1
).
match
(
reg
);
if
(
r
!=
null
)
return
decodeURIComponent
(
r
[
2
]);
...
...
@@ -13,14 +13,15 @@ function getUrlParam (name) {
}
// 公共配置 生产环境
var
config
=
{
environmental
:
"test"
,
//production 生产 test 测试
webUrl
:
"/web/onlineReport/jsp/"
,
// 预生产环境解开
url
:
""
,
// 开发环境配置跨域设置 // 开发环境
spreadUrl
:
"http://sbjs.tjsat.gov.cn"
,
// 局端生产 值为空 其余全部指向在线的域名
ssfwptPage
:
"/web/online/taxservicedesk/index.html#/taxTableList"
,
// 涉税服务平台填报页面地址
taxFormComponent
:
"/web/taxFormComponent/index.html?param="
,
// 涉税服务平台填报页面地址
value
:
''
,
//加密token
nsrsbq
:
''
,
environmental
:
"test"
,
//production 生产 test 测试
webUrl
:
"/web/onlineReport/jsp/"
,
// 预生产环境解开
url
:
""
,
// 开发环境配置跨域设置 // 开发环境
spreadUrl
:
"http://sbjs.tjsat.gov.cn"
,
// 局端生产 值为空 其余全部指向在线的域名
ssfwptPage
:
"/web/taxservicedesk/index.html#/taxTableList"
,
// 涉税服务平台填报页面地址
zhsbPage
:
"/web/taxservicedesk/index.html#/syntheticalReport"
,
// 涉税 综合申报页面
taxFormComponent
:
"/web/taxFormComponent/index.html?param="
,
// 涉税服务平台填报页面地址
value
:
''
,
//加密token
nsrsbq
:
''
,
}
//公共配置 本地环境,测试环境
/*var config = {
...
...
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