|
本帖最后由 chh1995 于 2019-3-7 10:52 编辑
代码如下
$('.menu-li').click(function(){
$.ajax({
async : false,
type : 'GET',
url : "../../../system/service/common/bizAction.j",
data : {
process : '/BIZ/TSP/CheckEvaluate/process/CheckEvaluatePlan/checkEvaluatePlanProcess',
activity : 'mainActivity',
action : 'queryTSP_CHECK_RESULTAction'
},
error : function(error, status, text) {
alert(text);
},
success : function(result) {
alert(JSON.stringify(result));
}
});
});
|
|