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
1fcef14a
Commit
1fcef14a
authored
Jan 29, 2021
by
刘明珠
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
需求4013:税费优惠政通知
parent
e9b61b4d
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
187 additions
and
146 deletions
+187
-146
index.html
jsp/amend/index.html
+0
-47
index.html
jsp/overdue/index.html
+0
-61
amend_grid.js
static/biz/amend_grid.js
+55
-1
cancellation_grid.js
static/biz/cancellation_grid.js
+3
-0
declare_grid.js
static/biz/declare_grid.js
+3
-0
overdue_grid.js
static/biz/overdue_grid.js
+78
-8
syntheticalReport_grid.js
static/biz/syntheticalReport_grid.js
+48
-29
No files found.
jsp/amend/index.html
View file @
1fcef14a
...
...
@@ -101,53 +101,6 @@
// // 弹出错误对话框
// }
// -->
var
initpage
;
$
(
function
()
{
showLoading
();
$
.
ajax
({
type
:
"post"
,
url
:
config
.
url
+
"/online/amend/index"
,
dataType
:
"json"
,
// 请求方式为jsonp
// async: false,
data
:
{
djxh
:
getUrlParam
(
"djxh"
),
token
:
getUrlParam
(
"token"
),
sbsq
:
''
,
pzzlDm
:
getUrlParam
(
"pzzlDm"
)
},
success
:
function
(
data
)
{
//客户端jquery预先定义好的callback函数,成功获取跨域服务器上的json数据后,会动态执行这个callback函数
//el表达式变jq
// $("#token").attr("value","");
hideLoading
();
var
companyInfo
=
data
;
$
(
"#djxh"
).
attr
(
"value"
,
companyInfo
.
djxh
);
if
(
companyInfo
.
success
)
{
config
.
value
=
companyInfo
.
bean
.
value
companyInfo
.
bean
.
config
=
config
initpage
=
initPage
(
companyInfo
.
bean
);
}
else
{
hideLoading
();
if
(
companyInfo
.
errmsg
!=
undefined
)
{
alertWarning
(
companyInfo
.
errmsg
);
}
else
{
alertWarning
(
companyInfo
.
returnMessage
);
}
if
(
!
companyInfo
.
bean
)
{
companyInfo
.
bean
=
{};
companyInfo
.
bean
.
djxh
=
getUrlParam
(
"djxh"
);
companyInfo
.
bean
.
return
=
false
;
}
companyInfo
.
bean
.
config
=
config
initpage
=
initPage
(
companyInfo
.
bean
);
// 弹出错误对话框
}
},
error
:
function
(
xhr
)
{
//jsonp 方式此方法不被触发
console
.
log
(
"=======error======================"
)
}
})
})
</script>
</body>
...
...
jsp/overdue/index.html
View file @
1fcef14a
...
...
@@ -145,67 +145,6 @@
// } else {
// alertWarning("请求失败!");
// }
var
initpage
;
$
(
function
()
{
showLoading
();
$
.
ajax
({
type
:
"GET"
,
url
:
config
.
url
+
"/online/overdue/index"
,
dataType
:
"json"
,
// 请求方式为jsonp
// async: false,
data
:
{
djxh
:
getUrlParam
(
"djxh"
),
token
:
getUrlParam
(
"token"
),
sbsq
:
''
,
pzzlDm
:
getUrlParam
(
"pzzlDm"
)
},
success
:
function
(
data
)
{
//客户端jquery预先定义好的callback函数,成功获取跨域服务器上的json数据后,会动态执行这个callback函数
hideLoading
();
//el表达式变jq
// $("#token").attr("value","");
var
companyInfo
=
data
;
$
(
"#djxh"
).
attr
(
"value"
,
companyInfo
.
djxh
);
config
.
value
=
companyInfo
.
bean
.
value
if
(
companyInfo
.
success
)
{
companyInfo
.
bean
.
config
=
config
companyInfo
.
bean
.
return
=
true
;
initpage
=
initPage
(
companyInfo
.
bean
);
}
else
{
hideLoading
();
if
(
companyInfo
.
errmsg
!=
undefined
)
{
alertWarning
(
companyInfo
.
errmsg
);
}
else
{
alertWarning
(
companyInfo
.
returnMessage
);
}
if
(
!
companyInfo
.
bean
)
{
companyInfo
.
bean
=
{};
companyInfo
.
bean
.
djxh
=
getUrlParam
(
"djxh"
);
companyInfo
.
bean
.
return
=
false
;
}
companyInfo
.
bean
.
config
=
config
initpage
=
initPage
(
companyInfo
.
bean
);
// alertWarning(companyInfo.errmsg);
// companyInfo.bean.config = config
// initpage = initPage(companyInfo.bean);
// 弹出错误对话框
}
$
(
"#getInputValue"
).
on
(
"focus"
,
function
()
{
WdatePicker
({
isShowClear
:
false
,
dateFmt
:
'yyyy-MM'
,
onpicking
:
function
(
dp
)
{
initpage
.
changeDate
(
this
,
dp
);
}
});
});
},
error
:
function
(
xhr
)
{
//jsonp 方式此方法不被触发
console
.
log
(
"=======error======================"
)
}
})
})
</script>
</html>
\ No newline at end of file
static/biz/amend_grid.js
View file @
1fcef14a
...
...
@@ -4,7 +4,60 @@
* @author ygy
* @date 2018/12/16 20:08
*/
var
initpage
;
$
(
function
()
{
showLoading
();
getInitTable
();
})
function
getInitTable
()
{
$
.
ajax
({
type
:
"post"
,
url
:
config
.
url
+
"/online/amend/index"
,
dataType
:
"json"
,
// 请求方式为jsonp
// async: false,
data
:
{
djxh
:
getUrlParam
(
"djxh"
),
token
:
getUrlParam
(
"token"
),
sbsq
:
''
,
pzzlDm
:
getUrlParam
(
"pzzlDm"
)
},
success
:
function
(
data
)
{
//客户端jquery预先定义好的callback函数,成功获取跨域服务器上的json数据后,会动态执行这个callback函数
//el表达式变jq
// $("#token").attr("value","");
hideLoading
();
var
companyInfo
=
data
;
$
(
"#djxh"
).
attr
(
"value"
,
companyInfo
.
djxh
);
if
(
companyInfo
.
success
)
{
if
(
companyInfo
.
bean
.
sfyhzctsBz
==
'Y'
)
{
myAlert
(
"提示"
,
"尊敬的纳税人、缴费人,为进一步巩固拓展减税降费成效,助力市场主体纾困解难,对部分2020年底到期税费优惠政策(不包括社会保险费),您可暂按原政策文件规定申报享受优惠(原减免性质代码可继续使用)。详细情况可咨询主管税务分局、税务所或12366纳税服务热线。感谢您的理解与支持!!"
,
"确定"
);
}
config
.
value
=
companyInfo
.
bean
.
value
companyInfo
.
bean
.
config
=
config
initpage
=
initPage
(
companyInfo
.
bean
);
}
else
{
hideLoading
();
if
(
companyInfo
.
errmsg
!=
undefined
)
{
alertWarning
(
companyInfo
.
errmsg
);
}
else
{
alertWarning
(
companyInfo
.
returnMessage
);
}
if
(
!
companyInfo
.
bean
)
{
companyInfo
.
bean
=
{};
companyInfo
.
bean
.
djxh
=
getUrlParam
(
"djxh"
);
companyInfo
.
bean
.
return
=
false
;
}
companyInfo
.
bean
.
config
=
config
initpage
=
initPage
(
companyInfo
.
bean
);
// 弹出错误对话框
}
},
error
:
function
(
xhr
)
{
//jsonp 方式此方法不被触发
console
.
log
(
"=======error======================"
)
}
})
}
/**
* @Description: 入口
* @param companyInfo
...
...
@@ -14,6 +67,7 @@
* @date 2018/12/16 20:09
*/
var
yearBblxDm
=
[
'10414'
,
'10420'
];
function
initPage
(
companyInfo
)
{
getIEVersion
();
localStorage
.
setItem
(
"cancellation"
,
null
);
...
...
@@ -364,4 +418,4 @@ function initPage(companyInfo) {
pagingDataFun
(
newData
,
1
,
initPagingNum
);
}
return
{}
}
\ No newline at end of file
}
static/biz/cancellation_grid.js
View file @
1fcef14a
...
...
@@ -24,6 +24,9 @@ function getInitTable(){
var
companyInfo
=
data
;
$
(
"#djxh"
).
attr
(
"value"
,
companyInfo
.
djxh
);
if
(
companyInfo
.
returnCode
==
"00"
)
{
if
(
companyInfo
.
content
.
sfyhzctsBz
==
'Y'
){
myAlert
(
"提示"
,
"尊敬的纳税人、缴费人,为进一步巩固拓展减税降费成效,助力市场主体纾困解难,对部分2020年底到期税费优惠政策(不包括社会保险费),您可暂按原政策文件规定申报享受优惠(原减免性质代码可继续使用)。详细情况可咨询主管税务分局、税务所或12366纳税服务热线。感谢您的理解与支持!!"
,
"确定"
);
}
config
.
value
=
companyInfo
.
content
.
value
// 不一定对
companyInfo
.
content
.
config
=
config
initpage
=
initPage
(
companyInfo
.
content
);
...
...
static/biz/declare_grid.js
View file @
1fcef14a
...
...
@@ -35,6 +35,9 @@ function getInitTable() {
// }
var
companyInfo
=
data
;
if
(
companyInfo
.
success
)
{
if
(
companyInfo
.
bean
.
sfyhzctsBz
==
'Y'
){
myAlert
(
"提示"
,
"尊敬的纳税人、缴费人,为进一步巩固拓展减税降费成效,助力市场主体纾困解难,对部分2020年底到期税费优惠政策(不包括社会保险费),您可暂按原政策文件规定申报享受优惠(原减免性质代码可继续使用)。详细情况可咨询主管税务分局、税务所或12366纳税服务热线。感谢您的理解与支持!!"
,
"确定"
);
}
config
.
value
=
companyInfo
.
bean
.
value
companyInfo
.
bean
.
config
=
config
companyInfo
.
bean
.
return
=
true
;
/* @Author ygy @Date 10:12 2020/7/8 @Description 前端判断接口成功返回数据标记用于区分是否执行初始化table方法*/
...
...
static/biz/overdue_grid.js
View file @
1fcef14a
...
...
@@ -5,12 +5,82 @@
* @modify 王雷
*/
// -------------------------------
var
initpage
;
$
(
function
()
{
showLoading
();
getInitTable
();
})
function
getInitTable
()
{
$
.
ajax
({
type
:
"GET"
,
url
:
config
.
url
+
"/online/overdue/index"
,
dataType
:
"json"
,
// 请求方式为jsonp
// async: false,
data
:
{
djxh
:
getUrlParam
(
"djxh"
),
token
:
getUrlParam
(
"token"
),
sbsq
:
''
,
pzzlDm
:
getUrlParam
(
"pzzlDm"
)
},
success
:
function
(
data
)
{
//客户端jquery预先定义好的callback函数,成功获取跨域服务器上的json数据后,会动态执行这个callback函数
hideLoading
();
//el表达式变jq
// $("#token").attr("value","");
var
companyInfo
=
data
;
$
(
"#djxh"
).
attr
(
"value"
,
companyInfo
.
djxh
);
config
.
value
=
companyInfo
.
bean
.
value
if
(
companyInfo
.
success
)
{
if
(
companyInfo
.
bean
.
sfyhzctsBz
==
'Y'
)
{
myAlert
(
"提示"
,
"尊敬的纳税人、缴费人,为进一步巩固拓展减税降费成效,助力市场主体纾困解难,对部分2020年底到期税费优惠政策(不包括社会保险费),您可暂按原政策文件规定申报享受优惠(原减免性质代码可继续使用)。详细情况可咨询主管税务分局、税务所或12366纳税服务热线。感谢您的理解与支持!!"
,
"确定"
);
}
companyInfo
.
bean
.
config
=
config
companyInfo
.
bean
.
return
=
true
;
initpage
=
initPage
(
companyInfo
.
bean
);
}
else
{
hideLoading
();
if
(
companyInfo
.
errmsg
!=
undefined
)
{
alertWarning
(
companyInfo
.
errmsg
);
}
else
{
alertWarning
(
companyInfo
.
returnMessage
);
}
if
(
!
companyInfo
.
bean
)
{
companyInfo
.
bean
=
{};
companyInfo
.
bean
.
djxh
=
getUrlParam
(
"djxh"
);
companyInfo
.
bean
.
return
=
false
;
}
companyInfo
.
bean
.
config
=
config
initpage
=
initPage
(
companyInfo
.
bean
);
// alertWarning(companyInfo.errmsg);
// companyInfo.bean.config = config
// initpage = initPage(companyInfo.bean);
// 弹出错误对话框
}
$
(
"#getInputValue"
).
on
(
"focus"
,
function
()
{
WdatePicker
({
isShowClear
:
false
,
dateFmt
:
'yyyy-MM'
,
onpicking
:
function
(
dp
)
{
initpage
.
changeDate
(
this
,
dp
);
}
});
});
},
error
:
function
(
xhr
)
{
//jsonp 方式此方法不被触发
console
.
log
(
"=======error======================"
)
}
})
}
/**
* 绘制税种填报页面
*
* @param {*} companyInfo
*/
var
yearBblxDm
=
[
'10414'
,
'10420'
];
function
initPage
(
companyInfo
)
{
getIEVersion
();
localStorage
.
setItem
(
"cancellation"
,
null
);
...
...
@@ -37,7 +107,7 @@ function initPage(companyInfo) {
}
var
id
=
"#taxGrid"
;
var
buttonHtml
=
"填写申报表"
;
var
order
=
[
"pzzlMc"
,
"sssqQ"
,
"sssqZ"
,
"sbqx"
,
"sbrq"
,
"do"
];
var
order
=
[
"pzzlMc"
,
"sssqQ"
,
"sssqZ"
,
"sbqx"
,
"sbrq"
,
"do"
];
var
promptStatement
=
""
;
var
headerList
=
[{
name
:
"序号"
,
...
...
@@ -159,7 +229,7 @@ function initPage(companyInfo) {
Object
.
defineProperty
(
mlistener
,
'returnSelectRowData'
,
{
set
:
function
(
val
)
{
setTimeout
(
function
()
{
getTaxOverdue
(
nowDate
,
"N"
,
'2'
);
getTaxOverdue
(
nowDate
,
"N"
,
'2'
);
},
1000
);
}
})
...
...
@@ -236,10 +306,10 @@ function initPage(companyInfo) {
drawGrid
(
data
.
bean
);
companyInfo
=
data
.
bean
;
config
.
value
=
companyInfo
.
value
;
if
(
type
==
'Y'
)
{
if
(
type
==
'Y'
)
{
myAlert
(
"提示"
,
"重置清册成功"
,
"确定"
)
}
}
else
{
}
else
{
if
(
data
.
errmsg
!=
undefined
)
{
alertWarning
(
data
.
errmsg
);
}
else
{
...
...
@@ -290,7 +360,7 @@ function initPage(companyInfo) {
Object
.
defineProperty
(
mlistener
,
'returnSelectRowData'
,
{
set
:
function
(
val
)
{
setTimeout
(
function
()
{
getTaxOverdue
(
nowDate
,
"N"
,
'2'
);
getTaxOverdue
(
nowDate
,
"N"
,
'2'
);
},
1000
);
}
})
...
...
@@ -364,12 +434,12 @@ function initPage(companyInfo) {
var
changeDate
=
function
(
obj
,
dp
)
{
date
=
dp
.
cal
.
getNewDateStr
();
nowDate
=
date
;
getTaxOverdue
(
date
,
"N"
);
getTaxOverdue
(
date
,
"N"
);
};
var
refresh
=
function
()
{
myConfirm
(
"消息"
,
"您确定需要重置申报清册吗?点击确定继续"
,
"确定"
,
"取消"
,
function
()
{
getTaxOverdue
(
nowDate
,
"Y"
);
getTaxOverdue
(
nowDate
,
"Y"
);
});
};
/**
...
...
@@ -392,4 +462,4 @@ function initPage(companyInfo) {
declarationMethod
:
declarationMethod
,
closeModal
:
closeModal
}
}
\ No newline at end of file
}
static/biz/syntheticalReport_grid.js
View file @
1fcef14a
...
...
@@ -35,6 +35,9 @@ function getInitTable() {
return
}
}
if
(
data
.
bean
.
sfyhzctsBz
==
'Y'
)
{
myAlert
(
"提示"
,
"尊敬的纳税人、缴费人,为进一步巩固拓展减税降费成效,助力市场主体纾困解难,对部分2020年底到期税费优惠政策(不包括社会保险费),您可暂按原政策文件规定申报享受优惠(原减免性质代码可继续使用)。详细情况可咨询主管税务分局、税务所或12366纳税服务热线。感谢您的理解与支持!!"
,
"确定"
);
}
djxh
=
data
.
bean
.
djxh
;
sbqDate
=
data
.
bean
.
sbqDate
;
taxInfos
=
data
.
bean
.
taxInfos
;
...
...
@@ -43,7 +46,7 @@ function getInitTable() {
"sssqZ"
:
"--"
,
"sssqQ"
:
"--"
,
"sbrq"
:
"--"
,
"pzzlMc"
:
"综合
申
报表"
,
"pzzlMc"
:
"综合
审
报表"
,
}]
var
companyInfo
=
data
;
if
(
companyInfo
.
success
)
{
...
...
@@ -170,18 +173,18 @@ function initPage(companyInfo) {
callback
:
function
(
data
,
node
)
{
window
.
mlistener
=
{
zhsbData
:
{
token
:
getUrlParam
(
"token"
),
djxh
:
djxh
,
sbsq
:
sbqDate
,
taxInfos
:
taxInfos
,
value
:
config
.
value
,
token
:
getUrlParam
(
"token"
),
djxh
:
djxh
,
sbsq
:
sbqDate
,
taxInfos
:
taxInfos
,
value
:
config
.
value
,
},
};
window
.
open
(
config
.
zhsbPage
,
'_blank'
);
Object
.
defineProperty
(
mlistener
,
'returnSelectRowData'
,
{
set
:
function
(
val
)
{
setTimeout
(
function
()
{
getTaxDeclaration
(
sbqDate
,
"N"
,
'2'
);
getTaxDeclaration
(
sbqDate
,
"N"
,
'2'
,
true
);
},
1000
);
}
})
...
...
@@ -202,7 +205,7 @@ function initPage(companyInfo) {
if
(
companyInfo
)
{
url
=
companyInfo
.
config
.
url
;
}
var
getTaxDeclaration
=
function
(
date
,
type
,
refreshSbzt
)
{
var
getTaxDeclaration
=
function
(
date
,
type
,
refreshSbzt
,
update
)
{
// TODO 开始加载等待动画
showLoading
();
var
param
=
{
...
...
@@ -239,6 +242,24 @@ function initPage(companyInfo) {
drawGrid
(
data
.
bean
);
companyInfo
=
data
.
bean
;
config
.
value
=
companyInfo
.
value
;
if
(
update
)
{
window
.
mlistener
=
{
zhsbData
:
{
token
:
getUrlParam
(
"token"
),
djxh
:
djxh
,
sbsq
:
sbqDate
,
taxInfos
:
taxInfos
,
value
:
config
.
value
,
},
};
Object
.
defineProperty
(
mlistener
,
'returnSelectRowData'
,
{
set
:
function
(
val
)
{
setTimeout
(
function
()
{
getTaxDeclaration
(
sbqDate
,
"N"
,
'2'
,
true
);
},
1000
);
}
})
}
if
(
type
==
'Y'
)
{
myAlert
(
"提示"
,
"重置清册成功"
,
"确定"
)
}
...
...
@@ -288,13 +309,13 @@ function initPage(companyInfo) {
// 加了一个延时,时间改变后时间框没有收起隐藏就加载数据,没有找到好的解决办法,暂时用延时处理
sbqDate
=
date
setTimeout
(
function
()
{
getTaxDeclaration
(
date
,
"N"
,
'1'
);
getTaxDeclaration
(
date
,
"N"
,
'1'
,
false
);
},
50
);
};
var
refresh
=
function
()
{
myConfirm
(
"消息"
,
"您确定需要重置申报清册吗?点击确定继续"
,
"确定"
,
"取消"
,
function
()
{
getTaxDeclaration
(
nowdate
,
"Y"
,
'1'
);
getTaxDeclaration
(
nowdate
,
"Y"
,
'1'
,
false
);
});
};
//申报方式 当iszzsybjc=01同时pzzlDm=010101时,调用改方法
...
...
@@ -313,7 +334,7 @@ function initPage(companyInfo) {
Object
.
defineProperty
(
mlistener
,
'returnSelectRowData'
,
{
set
:
function
(
val
)
{
setTimeout
(
function
()
{
getTaxDeclaration
(
sbqDate
,
"N"
,
'2'
);
getTaxDeclaration
(
sbqDate
,
"N"
,
'2'
,
true
);
},
1000
);
}
})
...
...
@@ -343,26 +364,24 @@ function initPage(companyInfo) {
}
window
.
taxInfo
=
JSON
.
stringify
(
submitData
);
localStorage
.
setItem
(
"data"
,
JSON
.
stringify
(
submitData
));
if
(
data
.
url
==
"edit.jsp"
)
{
submitData
.
flag
=
true
;
submitData
.
encryptKey
=
config
.
value
;
var
url
=
config
.
spreadUrl
+
"/online_report/declare/toPzzl?falg="
+
falg
var
form
=
$
(
"#changeForm"
);
form
.
attr
(
'action'
,
url
);
//通过jquery为action属性赋值
form
.
find
(
"#changeForm_data"
).
val
(
JSON
.
stringify
(
submitData
));
form
.
submit
();
// window.open(config.spreadUrl+"/online_report/declare/toPzzl?falg=" + falg + '&data=' + JSON.stringify(submitData));
// window.open(config.webUrl + "declare/edit.html?falg=" + falg + '¶ms=' + encodeURI(JSON.stringify(submitData)));
var
url
=
""
;
if
(
data
.
url
==
"edit.jsp"
)
{
url
=
config
.
spreadUrl
+
"/online_report/declare/toPzzl?falg="
+
falg
}
else
if
(
data
.
url
==
"yearReport.jsp"
)
{
url
=
config
.
spreadUrl
+
"/online_report/declare/yearReport.html?falg="
+
falg
+
'¶ms='
+
encodeURI
(
JSON
.
stringify
(
submitData
));
}
else
if
(
data
.
url
==
"yearReportGLB.jsp"
)
{
url
=
config
.
spreadUrl
+
"/online_report/declare/yearReportGLB.html?falg="
+
falg
+
'¶ms='
+
encodeURI
(
JSON
.
stringify
(
submitData
));
}
else
{
//因为后台不知道返回路径是什么样的就直接改成了else data.url == "error.jsp"
url
=
config
.
spreadUrl
+
"/online_report/error/index.html?falg="
+
falg
+
'¶ms='
+
encodeURI
(
JSON
.
stringify
(
submitData
))
}
/* else if (data.url == "yearReport.jsp") {
window.open(config.webUrl + "declare/yearReport.html?falg=" + falg + '¶ms=' + encodeURI(JSON.stringify(submitData)));
} else if (data.url == "yearReportGLB.jsp") {
window.open(config.webUrl + "declare/yearReportGLB.html?falg=" + falg + '¶ms=' + encodeURI(JSON.stringify(submitData)));
} else {
//因为后台不知道返回路径是什么样的就直接改成了else data.url == "error.jsp"
window.open(config.webUrl + "error/index.html?falg=" + falg + '¶ms=' + encodeURI(JSON.stringify(submitData)));
}*/
submitData
.
flag
=
true
;
submitData
.
encryptKey
=
config
.
value
;
var
form
=
$
(
"#changeForm"
);
form
.
attr
(
'action'
,
url
);
//通过jquery为action属性赋值
form
.
find
(
"#changeForm_data"
).
val
(
JSON
.
stringify
(
submitData
));
form
.
submit
();
},
error
:
function
(
xhr
)
{
//jsonp 方式此方法不被触发
...
...
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