申请入驻删除功能优化
This commit is contained in:
parent
2eb9e64ef3
commit
22bcf9a4ed
@ -125,53 +125,10 @@ class MerchantIntention extends BaseController
|
||||
|
||||
$rows = $this->intention->Edit($id, ['mark' => $mark]);
|
||||
|
||||
return $rows>0?to_assign(1, '修改成功'):to_assign(0, '修改失败');
|
||||
return $rows>0?to_assign(0, '修改成功'):to_assign(0, '修改失败');
|
||||
}
|
||||
|
||||
/**
|
||||
* 保存新建的资源
|
||||
*
|
||||
* @param \think\Request $request
|
||||
* @return \think\Response
|
||||
*/
|
||||
public function save(Request $request)
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
/**
|
||||
* 显示指定的资源
|
||||
*
|
||||
* @param int $id
|
||||
* @return \think\Response
|
||||
*/
|
||||
public function read($id)
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
/**
|
||||
* 显示编辑资源表单页.
|
||||
*
|
||||
* @param int $id
|
||||
* @return \think\Response
|
||||
*/
|
||||
public function edit($id)
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
/**
|
||||
* 保存更新的资源
|
||||
*
|
||||
* @param \think\Request $request
|
||||
* @param int $id
|
||||
* @return \think\Response
|
||||
*/
|
||||
public function update(Request $request, $id)
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 删除指定资源
|
||||
@ -179,9 +136,13 @@ class MerchantIntention extends BaseController
|
||||
* @param int $id
|
||||
* @return \think\Response
|
||||
*/
|
||||
public function delete($id)
|
||||
public function del()
|
||||
{
|
||||
//
|
||||
$id = get_params('id');
|
||||
if (!$this->intention->getWhereCount(['mer_intention_id' => $id, 'is_del' => 0]))
|
||||
return to_assign(1,'数据不存在');
|
||||
$this->intention->Edit($id, ['is_del' => 1]);
|
||||
|
||||
return to_assign(0,'删除成功');
|
||||
}
|
||||
}
|
||||
|
@ -56,7 +56,7 @@ Route::group(function(){
|
||||
Route::post('status', '/switchStatus')->name('systemMerchantIntentionStatus')->option([
|
||||
'_alias' => '审核',
|
||||
]);
|
||||
Route::delete('delete', '/delete')->name('systemMerchantIntentionDelete')->option([
|
||||
Route::delete('del', '/del')->name('systemMerchantIntentionDelete')->option([
|
||||
'_alias' => '删除',
|
||||
]);
|
||||
Route::get('markform', '/markform')->name('systemMerchantIntentionMarkForm')->option([
|
||||
|
Loading…
x
Reference in New Issue
Block a user