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
11a896c7
Commit
11a896c7
authored
Jun 11, 2020
by
yangyuxin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
更正税种列表“
git commit -m 更正税种列表“
parent
2b662e71
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
6 deletions
+13
-6
index.html
index.html
+7
-4
index.html
jsp/amend/index.html
+6
-2
No files found.
index.html
View file @
11a896c7
...
@@ -21,6 +21,7 @@
...
@@ -21,6 +21,7 @@
<ul>
<ul>
<li>
<li>
<lable>
测试纳税人登记序号:
</lable><input
type=
"text"
name=
"djxh"
id=
"form_djxh_amend"
/></li>
<lable>
测试纳税人登记序号:
</lable><input
type=
"text"
name=
"djxh"
id=
"form_djxh_amend"
/></li>
<li><label>
纳税人识别号
</label><input
type=
"text"
name=
"pzzlDm"
id=
"form_pzzlDm_amend"
/></li>
<li><label>
申报期:
</label><input
type=
"text"
name=
"sbq"
id=
"form_sbq_amend"
/></li>
<li><label>
申报期:
</label><input
type=
"text"
name=
"sbq"
id=
"form_sbq_amend"
/></li>
</ul>
</ul>
</form>
</form>
...
@@ -71,19 +72,21 @@
...
@@ -71,19 +72,21 @@
// localStorage.setItem("url", "http://localhost:7070");
// localStorage.setItem("url", "http://localhost:7070");
// localStorage.setItem("url", "http://sbjs.tjsat.gov.cn:18090");
// localStorage.setItem("url", "http://sbjs.tjsat.gov.cn:18090");
//涉税
//涉税
localStorage
.
setItem
(
"url"
,
"http://192.168.101.1
46
:8091"
);
localStorage
.
setItem
(
"url"
,
"http://192.168.101.1
54
:8091"
);
// localStorage.setItem("url", "http://192.168.101.201:8091");
// localStorage.setItem("url", "http://192.168.101.201:8091");
var
url
=
localStorage
.
getItem
(
"url"
);
var
url
=
localStorage
.
getItem
(
"url"
);
$
(
function
(){
$
(
function
(){
//按期申报
//按期申报
var
btnObj1
=
$
(
"#delcareBtn"
);
var
btnObj1
=
$
(
"#delcareBtn"
);
var
djxhNumber1
=
$
(
"#form_djxh"
)
var
djxhNumber1
=
$
(
"#form_djxh"
)
var
sbh
=
$
(
"#form_pzzlDm"
);
var
sbh
1
=
$
(
"#form_pzzlDm"
);
declareFun
(
btnObj1
,
djxhNumber1
,
sbh
,
"declare"
);
declareFun
(
btnObj1
,
djxhNumber1
,
sbh
1
,
"declare"
);
//更正申报
//更正申报
var
btnObj2
=
$
(
"#amendBtn"
);
var
btnObj2
=
$
(
"#amendBtn"
);
var
djxhNumber2
=
$
(
"#form_djxh_amend"
);
var
djxhNumber2
=
$
(
"#form_djxh_amend"
);
declareFun
(
btnObj2
,
djxhNumber2
,
"amend"
);
var
sbh2
=
$
(
"form_pzzlDm_amend"
);
declareFun
(
btnObj2
,
djxhNumber2
,
sbh2
,
"amend"
);
//逾期申报
//逾期申报
var
btnObj3
=
$
(
"#overdueBtn"
);
var
btnObj3
=
$
(
"#overdueBtn"
);
var
djxhNumber3
=
$
(
"#form_djxh_overdue"
);
var
djxhNumber3
=
$
(
"#form_djxh_overdue"
);
...
...
jsp/amend/index.html
View file @
11a896c7
...
@@ -97,11 +97,15 @@
...
@@ -97,11 +97,15 @@
var
url
=
localStorage
.
getItem
(
"url"
);
var
url
=
localStorage
.
getItem
(
"url"
);
$
.
ajax
({
$
.
ajax
({
type
:
"GET"
,
type
:
"GET"
,
url
:
url
+
"/
online_report/amend
"
,
url
:
url
+
"/
ssfwpt/amend/index
"
,
dataType
:
"json"
,
// 请求方式为jsonp
dataType
:
"json"
,
// 请求方式为jsonp
// async: false,
// async: false,
data
:
{
data
:
{
djxh
:
localStorage
.
getItem
(
"djxh"
)
djxh
:
localStorage
.
getItem
(
"djxh"
),
nsrsbh
:
localStorage
.
getItem
(
"nsrsbh"
),
token
:
''
,
sbsq
:
''
,
pzzlDm
:
''
},
},
success
:
function
(
data
)
{
//客户端jquery预先定义好的callback函数,成功获取跨域服务器上的json数据后,会动态执行这个callback函数
success
:
function
(
data
)
{
//客户端jquery预先定义好的callback函数,成功获取跨域服务器上的json数据后,会动态执行这个callback函数
//el表达式变jq
//el表达式变jq
...
...
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