update CRUD list-management

This commit is contained in:
dongpd 2020-12-04 10:11:56 +07:00
parent efb4113001
commit 6030ccd0a5
11 changed files with 428 additions and 43 deletions

View File

@ -0,0 +1,23 @@
<?php
namespace app\assets;
use yii\web\AssetBundle;
class ListManagementAsset extends AssetBundle {
public $basePath = '@webroot';
public $baseUrl = '@web';
public $css = [
];
public $js = [
'js/list-management.js'
];
public $depends = [
'yii\web\YiiAsset',
'app\assets\AppAsset',
'yii\jui\JuiAsset',
'yii\bootstrap\BootstrapAsset',
];
}

View File

@ -7,6 +7,7 @@ use yii\web\Controller;
use yii\filters\VerbFilter; use yii\filters\VerbFilter;
use yii\helpers\FileHelper; use yii\helpers\FileHelper;
use app\models\CaptureLogs; use app\models\CaptureLogs;
use app\models\ListManagement;
/** /**
* CardController implements the CRUD actions for Card model. * CardController implements the CRUD actions for Card model.
@ -76,6 +77,25 @@ class ApiController extends Controller {
} }
} }
public function actionGetAllFeatures() {
$listManagement = ListManagement::find()->all();
$allFeatures = [];
foreach ($listManagement as $key => $value) {
$features = json_decode($value->image, true);
$f = [];
foreach ($features as $k => $v) {
$f[] = $v['features'];
}
$allFeatures[] = [
"id" => $value->id,
"name" => $value->name,
"features" => $f
];
}
Yii::$app->response->format = "json";
return $allFeatures;
}
public function generateRandomString($length = 10) { public function generateRandomString($length = 10) {
$characters = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'; $characters = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
$charactersLength = strlen($characters); $charactersLength = strlen($characters);

View File

@ -8,6 +8,8 @@ use app\models\ListManagementSearch;
use yii\web\Controller; use yii\web\Controller;
use yii\web\NotFoundHttpException; use yii\web\NotFoundHttpException;
use yii\filters\VerbFilter; use yii\filters\VerbFilter;
use app\models\CaptureLogs;
use app\models\common;
/** /**
* ListMamagementController implements the CRUD actions for ListMamagement model. * ListMamagementController implements the CRUD actions for ListMamagement model.
@ -28,7 +30,7 @@ class ListManagementController extends Controller {
]; ];
} }
public function actionIndex($from = "", $to = "") { public function actionIndex($from = "", $to = "", $name = "", $type = "all", $gender = "all") {
$f = date_format(date_create_from_format('H:i d/m/Y', "00:00 " . date("d/m/Y")), 'U'); $f = date_format(date_create_from_format('H:i d/m/Y', "00:00 " . date("d/m/Y")), 'U');
$t = date_format(date_create_from_format('H:i d/m/Y', "23:59 " . date("d/m/Y")), 'U'); $t = date_format(date_create_from_format('H:i d/m/Y', "23:59 " . date("d/m/Y")), 'U');
if ($from !== "" && $to !== "") { if ($from !== "" && $to !== "") {
@ -39,13 +41,20 @@ class ListManagementController extends Controller {
$searchModel = new ListManagementSearch(); $searchModel = new ListManagementSearch();
$dataProvider = $searchModel->search(Yii::$app->request->queryParams); $dataProvider = $searchModel->search(Yii::$app->request->queryParams);
$dataProvider->query->andWhere(["BETWEEN", "time", $f, $t]); $dataProvider->query->andWhere(["BETWEEN", "time", $f, $t]);
if ($name !== "")
$dataProvider->query->andWhere(["LIKE", "name", $name]);
if ($type !== "all")
$dataProvider->query->andWhere(["type" => $type]);
if ($gender !== "all")
$dataProvider->query->andWhere(["gender" => $gender]);
$dataProvider->query->orderBy(["time" => SORT_DESC]); $dataProvider->query->orderBy(["time" => SORT_DESC]);
return $this->render('index', [ return $this->render('index', [
'searchModel' => $searchModel, 'searchModel' => $searchModel,
'dataProvider' => $dataProvider, 'dataProvider' => $dataProvider,
'f' => $f, 'f' => $f,
't' => $t, 't' => $t,
'typeArray' => ListManagement::$typeArray 'typeArray' => ListManagement::$typeArray,
'genderArray' => ListManagement::$genderArray
]); ]);
} }
@ -57,29 +66,95 @@ class ListManagementController extends Controller {
public function actionCreate() { public function actionCreate() {
$model = new ListManagement(); $model = new ListManagement();
Yii::$app->response->format = "json";
if (Yii::$app->request->post()) { if (Yii::$app->request->post()) {
$data = Yii::$app->request->post(); $data = Yii::$app->request->post();
$data['image'] = \app\models\CaptureLogs::findOne($data['id'])->image; $listManagement = ListManagement::findOne(['name' => $data['name']]);
return $model->create($data); $url = CaptureLogs::findOne($data['id'])->image;
if ($listManagement) {
$images = json_decode($listManagement->image, true);
$add = true;
foreach ($images as $key => $value) {
if ($value['url'] === $url)
$add = false;
}
if ($add) {
$features = json_decode(common::requestToEngine("/get-feature", [
"image_paths" => [
["url" => "/home/sonhh/Pictures/10929_HongBI.jpg", "type" => "raw"]
]
]), true);
$images[] = ["url" => $url, "features" => $features['results'][0]['feature']];
$listManagement->image = json_encode($images);
$listManagement->time = time();
return $listManagement->save();
}
} else {
$features = json_decode(common::requestToEngine("/get-feature", [
"image_paths" => [
["url" => "sex.png", "type" => "raw"]
]
]), true);
$data['image'] = json_encode([
["url" => $url, "features" => $features['results'][0]['feature']]
]);
return $model->create($data);
}
} }
} }
public function actionUpdate($id) { public function actionFormUpdate() {
$model = $this->findModel($id); if (Yii::$app->request->post()) {
$data = Yii::$app->request->post();
if ($model->load(Yii::$app->request->post()) && $model->save()) { $ListManagement = $this->findModel($data['id']);
return $this->redirect(['view', 'id' => $model->id]); $images = json_decode($ListManagement->image, true);
Yii::$app->response->format = "json";
return [
"type" => $ListManagement->type,
"name" => $ListManagement->name,
"gender" => $ListManagement->gender,
"birthday" => date("d/m/Y", $ListManagement->birthday),
"telephone" => $ListManagement->telephone,
"address" => $ListManagement->address,
"image" => "/BiFace/data/uploads/face/" . $images[0]['url']
];
} }
return $this->render('update', [
'model' => $model,
]);
} }
public function actionDelete($id) { public function actionUpdate() {
$this->findModel($id)->delete(); if (Yii::$app->request->post()) {
$data = Yii::$app->request->post();
$model = $this->findModel($data['id']);
$model->type = $data['type'];
$model->name = $data['name'];
$model->gender = $data['gender'];
$model->birthday = $data['birthday'] === "" ? 0 : date_format(date_create_from_format('d/m/Y', $data['birthday']), 'U');
$model->telephone = $data['telephone'];
$model->address = $data['address'];
return $model->save();
}
}
return $this->redirect(['index']); public function actionDelete() {
if (Yii::$app->request->post()) {
$data = Yii::$app->request->post();
return $this->findModel($data['id'])->delete();
}
}
public function actionDeleteFeature() {
if (Yii::$app->request->post()) {
$data = Yii::$app->request->post();
$model = $this->findModel($data['id']);
$images = json_decode($model->image, true);
$features = [];
foreach ($images as $key => $value) {
if ($value['url'] !== $data['image'])
$features[] = $value;
}
$model->image = json_encode($features);
return $model->save();
}
} }
protected function findModel($id) { protected function findModel($id) {
@ -90,4 +165,11 @@ class ListManagementController extends Controller {
throw new NotFoundHttpException('The requested page does not exist.'); throw new NotFoundHttpException('The requested page does not exist.');
} }
public function actionBatchDelete() {
if (Yii::$app->request->post()) {
$data = Yii::$app->request->post();
return ListManagement::deleteAll(["IN", "id", $data['lists']]);
}
}
} }

BIN
db/app.db

Binary file not shown.

View File

@ -42,10 +42,23 @@ class ListManagementGrid {
public static function image() { public static function image() {
return function($model) { return function($model) {
return Html::img("/BiFace/data/uploads/face/" . $model->image, [ $images = json_decode($model->image, true);
"class" => "img-thumbnail", $return = [];
"style" => "width: 150px;height:150px;" foreach ($images as $key => $value) {
]); $removeBtn = Html::button("<i class='fa fa-remove'></i>", [
"class" => "btn btn-danger btn-xs",
"style" => "position:absolute;top:0;right:0;visibility: hidden;",
"onclick" => "_deleteFeature(this);",
"data-img" => $value['url'],
"data-id" => $model->id,
"data-href" => Url::to(["/list-management/delete-feature"])
]);
$return[] = "<div class='feature-img'>" . Html::img("/BiFace/data/uploads/face/" . $value['url'], [
"class" => "img-thumbnail",
"style" => "width: 100px;height:100px;"
]) . $removeBtn . "</div>";
}
return implode("&nbsp;", $return);
}; };
} }
@ -58,11 +71,10 @@ class ListManagementGrid {
public static function rows() { public static function rows() {
return function($model, $index, $widget, $grid) { return function($model, $index, $widget, $grid) {
return [ return [
"ondblclick" => "_form(this);", "ondblclick" => "_menu(this);",
"style" => "cursor: pointer;", "style" => "cursor: pointer;",
"data" => [ "data" => [
"id" => $model->id, "id" => $model->id
"img" => "/BiFace/data/uploads/face/" . $model->image
] ]
]; ];
}; };

View File

@ -78,5 +78,9 @@ class ListManagement extends \yii\db\ActiveRecord {
"wl" => "Whitelist", "wl" => "Whitelist",
"bl" => "Blacklist" "bl" => "Blacklist"
]; ];
public static $genderArray = [
"Male" => "Male",
"Female" => "Female"
];
} }

View File

@ -59,7 +59,7 @@ class common extends \yii\db\ActiveRecord {
// $now = time(); // $now = time();
// $range = $now - $time; // $range = $now - $time;
// if ($range > 60 * 60 * 12) { // if ($range > 60 * 60 * 12) {
return date($format, $time); return date($format, $time);
// } else { // } else {
// return Yii::$app->formatter->asRelativeTime($time); // return Yii::$app->formatter->asRelativeTime($time);
// } // }
@ -171,4 +171,14 @@ class common extends \yii\db\ActiveRecord {
return $visible; return $visible;
} }
public static function requestToEngine($path, $data) {
return file_get_contents("http://192.168.2.158:2305" . $path, false, stream_context_create([
'http' => [
'header' => "Content-Type: application/json",
'method' => "POST",
'content' => json_encode($data)
]
]));
}
} }

View File

@ -2,8 +2,6 @@
<project-private xmlns="http://www.netbeans.org/ns/project-private/1"> <project-private xmlns="http://www.netbeans.org/ns/project-private/1">
<editor-bookmarks xmlns="http://www.netbeans.org/ns/editor-bookmarks/2" lastBookmarkId="0"/> <editor-bookmarks xmlns="http://www.netbeans.org/ns/editor-bookmarks/2" lastBookmarkId="0"/>
<open-files xmlns="http://www.netbeans.org/ns/projectui-open-files/2"> <open-files xmlns="http://www.netbeans.org/ns/projectui-open-files/2">
<group> <group/>
<file>file:/E:/BiFace_Server_Lite/controllers/ConfigController.php</file>
</group>
</open-files> </open-files>
</project-private> </project-private>

View File

@ -36,12 +36,12 @@ use yii\widgets\ActiveForm;
<!-- Collect the nav links, forms, and other content for toggling --> <!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse pull-left" id="navbar-collapse"> <div class="collapse navbar-collapse pull-left" id="navbar-collapse">
<ul class="nav navbar-nav"> <ul class="nav navbar-nav">
<li> <li class="<?php if (Yii::$app->controller->id == "config") echo "active"; ?>">
<a href="<?php echo yii\helpers\Url::to(['/config']); ?>"> <a href="<?php echo yii\helpers\Url::to(['/config']); ?>">
<i class="fa fa-cogs"></i> Cấu hình <i class="fa fa-cogs"></i> Cấu hình
</a> </a>
</li> </li>
<li> <li class="<?php if (Yii::$app->controller->id == "dashboard") echo "active"; ?>">
<a href="<?php echo yii\helpers\Url::to(['/dashboard']); ?>"> <a href="<?php echo yii\helpers\Url::to(['/dashboard']); ?>">
<i class="fa fa-database"></i> Dữ liệu <i class="fa fa-database"></i> Dữ liệu
</a> </a>
@ -51,12 +51,12 @@ use yii\widgets\ActiveForm;
<i class="fa fa-refresh"></i> Reset thiết bị <i class="fa fa-refresh"></i> Reset thiết bị
</a> </a>
</li> </li>
<li> <li class="<?php if (Yii::$app->controller->id == "list-management") echo "active"; ?>">
<a href="<?php echo yii\helpers\Url::to(['/list-management']); ?>"> <a href="<?php echo yii\helpers\Url::to(['/list-management']); ?>">
<i class="fa fa-list"></i> List Management <i class="fa fa-list"></i> List Management
</a> </a>
</li> </li>
<li> <li class="<?php if (Yii::$app->controller->id == "capture-logs") echo "active"; ?>">
<a href="<?php echo yii\helpers\Url::to(['/capture-logs']); ?>"> <a href="<?php echo yii\helpers\Url::to(['/capture-logs']); ?>">
<i class="fa fa-camera"></i> Capture log <i class="fa fa-camera"></i> Capture log
</a> </a>

View File

@ -1,8 +1,8 @@
{extends file=$smarty.current_dir|cat:'/../extends.tpl'} {extends file=$smarty.current_dir|cat:'/../extends.tpl'}
{use class="yii\helpers\Url"} {use class="yii\helpers\Url"}
{use class="yii\grid\GridView"} {use class="yii\grid\GridView"}
{*use class="app\assets\CaptureLogsAsset"} {use class="app\assets\ListManagementAsset"}
{CaptureLogsAsset::register($this)|void*} {ListManagementAsset::register($this)|void}
{block name='content'} {block name='content'}
<style> <style>
.row{ .row{
@ -14,6 +14,17 @@
.table-striped > tbody > tr:nth-of-type(odd){ .table-striped > tbody > tr:nth-of-type(odd){
background-color: rgb(210, 210, 210); background-color: rgb(210, 210, 210);
} }
.feature-img{
display:inline-block;
position: relative;
}
.feature-img:hover .btn{
visibility: visible !important;
}
.table > tbody > tr.delete-choose > td{
background-color: red;
color: #fff;
}
</style> </style>
<div class="row"> <div class="row">
<div class="col-md-10" style="max-height: 850px;overflow-y: auto;"> <div class="col-md-10" style="max-height: 850px;overflow-y: auto;">
@ -27,7 +38,7 @@
'rowOptions' => \app\helpers\ListManagementGrid::rows(), 'rowOptions' => \app\helpers\ListManagementGrid::rows(),
'columns' => [ 'columns' => [
[ [
'class' => 'yii\grid\SerialColumn', 'attribute' => 'id',
'contentOptions' => ['class' => 'text-center'], 'contentOptions' => ['class' => 'text-center'],
'headerOptions' => ['class' => 'text-center'] 'headerOptions' => ['class' => 'text-center']
], ],
@ -50,8 +61,6 @@
[ [
'attribute' => 'image', 'attribute' => 'image',
'format' => "raw", 'format' => "raw",
'contentOptions' => ['class' => 'text-center'],
'headerOptions' => ['class' => 'text-center'],
'value' => \app\helpers\ListManagementGrid::image() 'value' => \app\helpers\ListManagementGrid::image()
], ],
[ [
@ -89,11 +98,56 @@
<label class="control-label">Đến</label> <label class="control-label">Đến</label>
<input type="text" class="form-control datepicker" value="{$t|date_format:"H:i d/m/Y"}" name="To"> <input type="text" class="form-control datepicker" value="{$t|date_format:"H:i d/m/Y"}" name="To">
</div> </div>
<div class="form-group">
<label class="control-label">Name</label>
<input type="text" class="form-control" value="{Yii::$app->request->get("name")}" name="NameSearch">
</div>
<div class="form-group">
<label class="control-label">Type</label>
<select class="form-control" name="TypeSearch">
<option value="all">All</option>
{html_options options=$typeArray selected=Yii::$app->request->get("type")}
</select>
</div>
<div class="form-group">
<label class="control-label">Gender</label>
<select class="form-control" name="GenderSearch">
<option value="all">All</option>
{html_options options=$genderArray selected=Yii::$app->request->get("gender")}
</select>
</div>
<div class="text-center"> <div class="text-center">
<button class="btn btn-info" onclick="_search(this);" data-href="{Url::to(['/capture-logs'])}"> <button class="btn btn-info" onclick="_search(this);" data-href="{Url::to(['/list-management'])}">
<i class="fa fa-search"></i> Tìm kiếm <i class="fa fa-search"></i> Tìm kiếm
</button> </button>
</div> </div>
<hr style="border-top: 1px solid #000;">
<div>
<input type="checkbox" name="BatchDelete" style="width: inherit;"> Xóa nhiều dữ liệu
<br><br>
<div class="hidden" id="delete-btn-group">
<div class="text-center">
<button onclick="checkAll(true);">Chọn toàn bộ trang</button>
<button onclick="checkAll(false);">Bỏ chọn</button>
</div>
<br>
<div class="text-center">
<button class="btn btn-danger" onclick="batchDelete(this);" data-href="{Url::to(['/list-management/batch-delete'])}">Xác nhận xóa</button>
</div>
</div>
</div>
</div>
</div>
<div style="width: 300px;position: absolute;" id="menu" class="hidden">
<div class="panel panel-info">
<div class="panel-heading text-bold">
Operation menu
<i class="fa fa-remove pull-right" style="cursor: pointer;" onclick="_closeMenu();"></i>
</div>
<div class="panel-body text-center">
<button onclick="_formModified(this);" data-href='{Url::to(["/list-management/form-update"])}'>Modified list</button>
<button onclick="_delete(this);" data-href="{Url::to(["/list-management/delete"])}">Delete list</button>
</div>
</div> </div>
</div> </div>
<div style="width: 500px;position: absolute;right:0;top: 250px;" id='form' class="hidden"> <div style="width: 500px;position: absolute;right:0;top: 250px;" id='form' class="hidden">
@ -112,8 +166,7 @@
<div class="col-md-4 text-right">Type</div> <div class="col-md-4 text-right">Type</div>
<div class="col-md-8"> <div class="col-md-8">
<select style="width: 100%;height: 26px;" name="Type"> <select style="width: 100%;height: 26px;" name="Type">
<option value="wl">White list</option> {html_options options=$typeArray}
<option value="bl">Black list</option>
</select> </select>
</div> </div>
</div> </div>
@ -127,8 +180,7 @@
<div class="col-md-4 text-right">Gender</div> <div class="col-md-4 text-right">Gender</div>
<div class="col-md-8"> <div class="col-md-8">
<select style="width: 100%;height: 26px;" name="Gender"> <select style="width: 100%;height: 26px;" name="Gender">
<option value="Male">Male</option> {html_options options=$genderArray}
<option value="Female">Female</option>
</select> </select>
</div> </div>
</div> </div>
@ -153,8 +205,8 @@
</div> </div>
</div> </div>
<div class="text-center"> <div class="text-center">
<input type="hidden" value="" name="CaptureLogsID"> <input type="hidden" value="" name="ListManagementID">
<button onclick="_save(this);" data-href='{Url::to(["/list-management/create"])}'>Save</button> <button onclick="_update(this);" data-href='{Url::to(["/list-management/update"])}'>Save</button>
<button onclick="_close();">Cancel</button> <button onclick="_close();">Cancel</button>
</div> </div>
</div> </div>

184
web/js/list-management.js Normal file
View File

@ -0,0 +1,184 @@
var x = 0, y = 0;
$(function () {
common.dateTimePickerByClass("datepicker", "HH:mm DD/MM/YYYY");
common.dateTimePickerDay("birthday");
$("tr").bind("click", function (event) {
x = event.pageX;
y = event.pageY;
});
$("input[name='BatchDelete']").change(function () {
if (this.checked) {
$("#delete-btn-group").removeClass("hidden");
} else {
$("tr").removeClass("delete-choose");
$("#delete-btn-group").addClass("hidden");
}
});
});
function _search(e) {
var location = $(e).attr("data-href") + "?from=" + $("input[name='From']").val() + "&to=" + $("input[name='To']").val();
location = location + "&name=" + $("input[name='NameSearch']").val();
location = location + "&type=" + $("select[name='TypeSearch']").val();
location = location + "&gender=" + $("select[name='GenderSearch']").val();
window.location = location;
}
function _close() {
$("#form").addClass("hidden");
}
function _menu(e) {
var isDelete = $("input[name='BatchDelete']").is(':checked');
if (isDelete) {
if ($(e).hasClass("delete-choose"))
$(e).removeClass("delete-choose");
else
$(e).addClass("delete-choose");
$("#menu").addClass("hidden");
} else {
$("input[name='ListManagementID']").val($(e).attr("data-id"));
$("#menu").css({top: y, left: x}).removeClass("hidden");
}
}
function _closeMenu() {
$("#menu").addClass("hidden");
}
function _formModified(e) {
_closeMenu();
$("#form").removeClass("hidden");
common.modalBlock(true);
$.ajax({
url: $(e).attr("data-href"),
type: 'POST',
data: {
id: $("input[name='ListManagementID']").val()
},
success: function (data) {
common.modalBlock(false);
$("select[name='Type']").val(data.type);
$("input[name='Name']").val(data.name);
$("select[name='Gender']").val(data.gender);
$("input[name='Birthday']").val(data.birthday);
$("input[name='Telephone']").val(data.telephone);
$("input[name='Address']").val(data.address);
$("#FaceImage").attr("src", data.image);
},
error: function (jqXHR, textStatus, errorThrown) {
common.modalBlock(false);
common.ajaxError();
}
});
}
function _update(e) {
var name = $("input[name='Name']").val();
if (name === "") {
alert("Hãy nhập tên!");
return;
}
common.modalBlock(true);
$.ajax({
url: $(e).attr("data-href"),
type: 'POST',
data: {
name: name,
type: $("select[name='Type']").val(),
gender: $("select[name='Gender']").val(),
birthday: $("input[name='Birthday']").val(),
telephone: $("input[name='Telephone']").val(),
address: $("input[name='Address']").val(),
id: $("input[name='ListManagementID']").val()
},
success: function (data) {
alert("Cập nhật dữ liệu thành công!");
window.location.reload(true);
},
error: function (jqXHR, textStatus, errorThrown) {
common.modalBlock(false);
common.ajaxError();
}
});
}
function _delete(e) {
if (confirm("Bạn có chắc chắn muốn xóa không?")) {
common.modalBlock(true);
$.ajax({
url: $(e).attr("data-href"),
type: 'POST',
data: {
id: $("input[name='ListManagementID']").val()
},
success: function (data) {
window.location.reload(true);
},
error: function (jqXHR, textStatus, errorThrown) {
common.modalBlock(false);
common.ajaxError();
}
});
}
}
function _deleteFeature(e) {
if (confirm("Bạn có chắc chắn muốn xóa ảnh này không?")) {
common.modalBlock(true);
$.ajax({
url: $(e).attr("data-href"),
type: 'POST',
data: {
image: $(e).attr("data-img"),
id: $(e).attr("data-id")
},
success: function (data) {
common.modalBlock(false);
$(e).closest("div").remove();
},
error: function (jqXHR, textStatus, errorThrown) {
common.modalBlock(false);
common.ajaxError();
}
});
}
}
function checkAll(status) {
if (status)
$("tr").addClass("delete-choose");
else
$("tr").removeClass("delete-choose");
}
function batchDelete(e) {
var check = $(".delete-choose");
if (check.length == 0) {
alert("Hãy chọn dữ liệu để xóa!");
return;
}
var lists = [];
$.each($(".delete-choose"), function () {
if ($(this).attr("data-id") !== "")
lists.push($(this).attr("data-id"));
});
if (confirm("Bạn có chắc chắn muốn xóa không?")) {
common.modalBlock(true);
$.ajax({
url: $(e).attr("data-href"),
type: 'POST',
data: {
lists: lists
},
success: function (data) {
alert("Đã xóa dữ liệu!");
window.location.reload(true);
},
error: function (jqXHR, textStatus, errorThrown) {
common.modalBlock(false);
common.ajaxError();
}
});
}
}