会员级别与会员权益修改
This commit is contained in:
@@ -32,4 +32,28 @@ class Rights extends Backend
|
|||||||
$this->view->assign('join_config', $this->join_config_model->getSimpleByStatus());
|
$this->view->assign('join_config', $this->join_config_model->getSimpleByStatus());
|
||||||
$this->searchFields = ['title'];
|
$this->searchFields = ['title'];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function index()
|
||||||
|
{
|
||||||
|
$this->request->filter(['strip_tags', 'trim']);
|
||||||
|
$level_id = $this->request->get('level_id');
|
||||||
|
if (false === $this->request->isAjax()) {
|
||||||
|
return $this->view->fetch();
|
||||||
|
}
|
||||||
|
//如果发送的来源是 Selectpage,则转发到 Selectpage
|
||||||
|
if ($this->request->request('keyField')) {
|
||||||
|
return $this->selectpage();
|
||||||
|
}
|
||||||
|
|
||||||
|
[$where, $sort, $order, $offset, $limit] = $this->buildparams();
|
||||||
|
$list = $this->model
|
||||||
|
->where(function($query) use($level_id) {
|
||||||
|
$query->where('level_id', $level_id);
|
||||||
|
})
|
||||||
|
->where($where)
|
||||||
|
->order($sort, $order)
|
||||||
|
->paginate($limit);
|
||||||
|
$result = ['total' => $list->total(), 'rows' => $list->items()];
|
||||||
|
return json($result);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -65,6 +65,7 @@
|
|||||||
<div class="form-group layer-footer">
|
<div class="form-group layer-footer">
|
||||||
<label class="control-label col-xs-12 col-sm-2"></label>
|
<label class="control-label col-xs-12 col-sm-2"></label>
|
||||||
<div class="col-xs-12 col-sm-8">
|
<div class="col-xs-12 col-sm-8">
|
||||||
|
<input type="hidden" name="row[level_id]" value="{$Think.get.level_id}">
|
||||||
<button type="submit" class="btn btn-primary btn-embossed disabled">确认</button>
|
<button type="submit" class="btn btn-primary btn-embossed disabled">确认</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -64,6 +64,7 @@
|
|||||||
<div class="form-group layer-footer">
|
<div class="form-group layer-footer">
|
||||||
<label class="control-label col-xs-12 col-sm-2"></label>
|
<label class="control-label col-xs-12 col-sm-2"></label>
|
||||||
<div class="col-xs-12 col-sm-8">
|
<div class="col-xs-12 col-sm-8">
|
||||||
|
<input type="hidden" name="row[level_id]" value="{$Think.get.level_id|htmlentities}">
|
||||||
<button type="submit" class="btn btn-primary btn-embossed disabled">确认</button>
|
<button type="submit" class="btn btn-primary btn-embossed disabled">确认</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -39,12 +39,12 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin
|
|||||||
|
|
||||||
// 为表格绑定事件
|
// 为表格绑定事件
|
||||||
Table.api.bindevent(table);
|
Table.api.bindevent(table);
|
||||||
|
|
||||||
// 添加跳转按钮函数
|
// 添加跳转按钮函数
|
||||||
function addJumpButtons() {
|
function addJumpButtons() {
|
||||||
var tbody = document.querySelector('table tbody');
|
var tbody = document.querySelector('table tbody');
|
||||||
if (!tbody) return;
|
if (!tbody) return;
|
||||||
|
|
||||||
var rows = tbody.querySelectorAll('tr');
|
var rows = tbody.querySelectorAll('tr');
|
||||||
for (var i = 0; i < rows.length; i++) {
|
for (var i = 0; i < rows.length; i++) {
|
||||||
var row = rows[i];
|
var row = rows[i];
|
||||||
@@ -59,23 +59,23 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin
|
|||||||
jumpBtn.setAttribute('data-id', rowData.id);
|
jumpBtn.setAttribute('data-id', rowData.id);
|
||||||
jumpBtn.style.marginLeft = '5px';
|
jumpBtn.style.marginLeft = '5px';
|
||||||
jumpBtn.innerHTML = '<i class="fa fa-external-link"></i> 权益';
|
jumpBtn.innerHTML = '<i class="fa fa-external-link"></i> 权益';
|
||||||
|
|
||||||
// 绑定点击事件
|
// 绑定点击事件
|
||||||
jumpBtn.onclick = (function(id) {
|
jumpBtn.onclick = (function(id) {
|
||||||
return function() {
|
return function() {
|
||||||
window.location.href = 'rights?id=' + id;
|
window.location.href = 'rights?level_id=' + id;
|
||||||
};
|
};
|
||||||
})(rowData.id);
|
})(rowData.id);
|
||||||
|
|
||||||
lastTd.appendChild(jumpBtn);
|
lastTd.appendChild(jumpBtn);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// 延迟执行确保表格已加载
|
// 延迟执行确保表格已加载
|
||||||
setTimeout(addJumpButtons, 500);
|
setTimeout(addJumpButtons, 500);
|
||||||
|
|
||||||
// 监听表格刷新完成事件
|
// 监听表格刷新完成事件
|
||||||
table.on('load-success.bs.table', function() {
|
table.on('load-success.bs.table', function() {
|
||||||
setTimeout(addJumpButtons, 100);
|
setTimeout(addJumpButtons, 100);
|
||||||
@@ -94,4 +94,4 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
return Controller;
|
return Controller;
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -11,8 +11,8 @@ define(["jquery", "bootstrap", "backend", "table", "form"], function (
|
|||||||
Table.api.init({
|
Table.api.init({
|
||||||
extend: {
|
extend: {
|
||||||
index_url: "wdsxh/member/rights/index" + location.search,
|
index_url: "wdsxh/member/rights/index" + location.search,
|
||||||
add_url: "wdsxh/member/rights/add",
|
add_url: "wdsxh/member/rights/add" + location.search,
|
||||||
edit_url: "wdsxh/member/rights/edit",
|
edit_url: "wdsxh/member/rights/edit" + location.search,
|
||||||
del_url: "wdsxh/member/rights/del",
|
del_url: "wdsxh/member/rights/del",
|
||||||
table: "wdsxh_member_rights",
|
table: "wdsxh_member_rights",
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user