|
@@ -2,11 +2,12 @@
|
|
|
* 筛选-统一请求--刷新用户列表
|
|
|
* @returns
|
|
|
*/
|
|
|
-function refreshCuringPage(compilation,latestCompilation,sortField,sort){
|
|
|
+function refreshCuringPage(compilation,latestCompilation,sortField,sort,wd){
|
|
|
$.ajax({
|
|
|
cache :false,
|
|
|
type: 'get',
|
|
|
- url: '/cloud/curing/ajax/refreshCuringPage?sortField='+sortField+'&sort='+sort+'&compilation='+compilation+'&latestCompilation='+latestCompilation,
|
|
|
+ url: '/cloud/curing/ajax/refreshCuringPage?sortField='+sortField+'&sort='+sort+'&compilation='+compilation+'&latestCompilation='+latestCompilation+
|
|
|
+ '&wd='+wd,
|
|
|
dataType: 'json',
|
|
|
success: function(data) {
|
|
|
if (data.status == 1) {
|
|
@@ -28,7 +29,10 @@ function refreshCuringPage(compilation,latestCompilation,sortField,sort){
|
|
|
function fnMobile2Info(){
|
|
|
mobile2InfoTimeout = null;
|
|
|
if((/^1[34578]\d{9}$/.test(mobile))) {
|
|
|
- $.ajax({
|
|
|
+
|
|
|
+ refreshCuringPage('','','','',mobile);
|
|
|
+
|
|
|
+ /*$.ajax({
|
|
|
cache :false,
|
|
|
type: 'GET',
|
|
|
url: '/cloud/curing/ajax/curingInfo/' + mobile,
|
|
@@ -39,6 +43,7 @@ function fnMobile2Info(){
|
|
|
success: function (data) {
|
|
|
if (data.status == 1) {
|
|
|
fnStructureCuringUser([data.detail]);
|
|
|
+ fnPage(data.pageData);
|
|
|
$('div[pageDetail]').hide();
|
|
|
}
|
|
|
// else if (data.status == 2) {
|
|
@@ -53,7 +58,7 @@ function fnMobile2Info(){
|
|
|
error: function (xhr, type) {
|
|
|
console.log('Ajax error!')
|
|
|
}
|
|
|
- })
|
|
|
+ })*/
|
|
|
}
|
|
|
}
|
|
|
|