Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
杨树贤
/
ic_server_welfare
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
60771229
authored
Aug 20, 2019
by
杨树贤
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
修改服务请求为POST
parent
d2e2cfe7
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
54 additions
and
40 deletions
app/Http/Controllers/ExchangeSettingsController.php
app/Http/Controllers/IntegralBillsController.php
app/Http/Controllers/IntegralTypesController.php
app/Http/Controllers/IntegralsController.php
app/Http/Controllers/UserExchangesController.php
app/Http/Controllers/UserIntegralsController.php
routes/web.php
storage/laravels.json
storage/laravels.pid
app/Http/Controllers/ExchangeSettingsController.php
View file @
60771229
...
...
@@ -14,8 +14,9 @@ use Illuminate\Support\Facades\Log;
class
ExchangeSettingsController
extends
Controller
{
public
function
show
(
$id
)
public
function
show
(
Request
$request
)
{
$id
=
$request
->
id
;
$exchangeSetting
=
ExchangeSetting
::
find
(
$id
)
->
toArray
();
return
$this
->
Export
(
0
,
'ok'
,
[
'data'
=>
$exchangeSetting
]);
...
...
@@ -54,8 +55,9 @@ class ExchangeSettingsController extends Controller
}
}
public
function
update
(
Request
$request
,
$id
)
public
function
update
(
Request
$request
)
{
$id
=
$request
->
id
;
$data
=
array_merge
(
$request
->
all
(),
[
'update_time'
=>
time
()]);
$res
=
DB
::
table
(
'exchange_settings'
)
->
where
(
'id'
,
$id
)
->
update
(
$data
);
...
...
@@ -63,8 +65,9 @@ class ExchangeSettingsController extends Controller
return
$this
->
Export
(
0
,
'ok'
);
}
public
function
destroy
(
$ids
)
public
function
destroy
(
Request
$request
)
{
$ids
=
$request
->
ids
;
$ids
=
explode
(
','
,
trim
(
$ids
));
$res
=
DB
::
table
(
'exchange_settings'
)
->
whereIn
(
'id'
,
$ids
)
->
delete
();
if
(
$res
)
{
...
...
app/Http/Controllers/IntegralBillsController.php
View file @
60771229
...
...
@@ -43,8 +43,9 @@ class IntegralBillsController extends Controller
}
}
public
function
update
(
Request
$request
,
$id
)
public
function
update
(
Request
$request
)
{
$id
=
$request
->
id
;
$res
=
DB
::
table
(
'integral_bills'
)
->
where
(
'id'
,
$id
)
->
update
([
'user_id'
=>
$request
->
user_id
,
...
...
@@ -60,8 +61,9 @@ class IntegralBillsController extends Controller
}
}
public
function
destroy
(
$ids
)
public
function
destroy
(
Request
$request
)
{
$ids
=
$request
->
ids
;
$ids
=
explode
(
','
,
trim
(
$ids
));
$res
=
DB
::
table
(
'integral_bills'
)
->
whereIn
(
'id'
,
$ids
)
->
delete
();
if
(
$res
)
{
...
...
app/Http/Controllers/IntegralTypesController.php
View file @
60771229
...
...
@@ -32,8 +32,9 @@ class IntegralTypesController extends Controller
}
}
public
function
update
(
Request
$request
,
$id
)
public
function
update
(
Request
$request
)
{
$id
=
$request
->
id
;
$res
=
DB
::
table
(
'integral_types'
)
->
where
(
'id'
,
$id
)
->
update
([
'name'
=>
$request
->
name
,
...
...
@@ -46,8 +47,9 @@ class IntegralTypesController extends Controller
}
}
public
function
destroy
(
$ids
)
public
function
destroy
(
Request
$request
)
{
$ids
=
$request
->
ids
;
$ids
=
explode
(
','
,
trim
(
$ids
));
$res
=
DB
::
table
(
'integral_types'
)
->
whereIn
(
'id'
,
$ids
)
->
delete
();
if
(
$res
)
{
...
...
app/Http/Controllers/IntegralsController.php
View file @
60771229
...
...
@@ -12,8 +12,9 @@ use Illuminate\Support\Facades\Log;
class
IntegralsController
extends
Controller
{
public
function
show
(
$id
)
public
function
show
(
Request
$request
)
{
$id
=
$request
->
id
;
$integral
=
Integral
::
find
(
$id
)
->
toArray
();
return
$this
->
Export
(
0
,
'ok'
,
[
'data'
=>
$integral
]);
...
...
@@ -51,8 +52,9 @@ class IntegralsController extends Controller
}
}
public
function
update
(
Request
$request
,
$id
)
public
function
update
(
Request
$request
)
{
$id
=
$request
->
id
;
$data
=
array_merge
(
$request
->
all
(),
[
'update_time'
=>
time
()]);
$res
=
DB
::
table
(
'integrals'
)
->
where
(
'id'
,
$id
)
->
update
(
$data
);
...
...
@@ -75,8 +77,9 @@ class IntegralsController extends Controller
// return $this->Export(033, '批量修改用户积分失败');
}
public
function
destroy
(
$ids
)
public
function
destroy
(
Request
$request
)
{
$ids
=
$request
->
ids
;
$ids
=
explode
(
','
,
trim
(
$ids
));
$res
=
DB
::
table
(
'integrals'
)
->
whereIn
(
'id'
,
$ids
)
->
delete
();
if
(
$res
)
{
...
...
app/Http/Controllers/UserExchangesController.php
View file @
60771229
...
...
@@ -12,8 +12,9 @@ use Illuminate\Support\Facades\Log;
class
UserExchangesController
extends
Controller
{
public
function
show
(
$id
)
public
function
show
(
Request
$request
)
{
$id
=
$request
->
id
;
$userExchange
=
UserExchange
::
where
(
'user_id'
,
$id
)
->
first
()
->
toArray
();
return
$this
->
Export
(
0
,
'ok'
,
[
'data'
=>
$userExchange
]);
...
...
@@ -32,8 +33,9 @@ class UserExchangesController extends Controller
return
$this
->
Export
(
0
,
'ok'
,
[
'data'
=>
$userExchanges
,
'count'
=>
$count
]);
}
public
function
update
(
Request
$request
,
$id
)
public
function
update
(
Request
$request
)
{
$id
=
$request
->
id
;
$data
=
array_merge
(
$request
->
all
(),
[
'update_time'
=>
time
()]);
$res
=
DB
::
table
(
'user_exchanges'
)
->
where
(
'id'
,
$id
)
->
update
(
$data
);
...
...
app/Http/Controllers/UserIntegralsController.php
View file @
60771229
...
...
@@ -13,8 +13,9 @@ use Illuminate\Support\Facades\Log;
class
UserIntegralsController
extends
Controller
{
public
function
show
(
$id
)
public
function
show
(
Request
$request
)
{
$id
=
$request
->
id
;
$integral
=
UserIntegral
::
where
(
'user_id'
,
$id
)
->
first
();
$integral
=
$integral
?:
[];
...
...
@@ -33,8 +34,9 @@ class UserIntegralsController extends Controller
return
$this
->
Export
(
0
,
'ok'
,
[
'data'
=>
$integrals
,
'count'
=>
$count
]);
}
public
function
update
(
Request
$request
,
$id
)
public
function
update
(
Request
$request
)
{
$id
=
$request
->
id
;
$data
=
array_merge
(
$request
->
all
(),
[
'update_time'
=>
time
()]);
$res
=
DB
::
table
(
'user_integrals'
)
->
where
(
'id'
,
$id
)
->
update
(
$data
);
...
...
routes/web.php
View file @
60771229
...
...
@@ -20,43 +20,43 @@ $router->get('/key', function () {
});
//积分信息
$router
->
get
(
'/integrals
'
,
'IntegralsController@index'
);
$router
->
get
(
'/integrals/{id}
'
,
'IntegralsController@show'
);
$router
->
post
(
'/integrals'
,
'IntegralsController@create'
);
$router
->
p
atch
(
'/integrals/{id}
'
,
'IntegralsController@update'
);
$router
->
delete
(
'/integrals/{id}
'
,
'IntegralsController@destroy'
);
$router
->
post
(
'/integrals/list
'
,
'IntegralsController@index'
);
$router
->
post
(
'/integrals/info
'
,
'IntegralsController@show'
);
$router
->
post
(
'/integrals
/add
'
,
'IntegralsController@create'
);
$router
->
p
ost
(
'/integrals/update
'
,
'IntegralsController@update'
);
$router
->
post
(
'/integrals/delete
'
,
'IntegralsController@destroy'
);
$router
->
post
(
'/integrals/batchUpdateStatus'
,
'IntegralsController@batchUpdateStatus'
);
//积分类型
$router
->
get
(
'/integral_types
'
,
'IntegralTypesController@index'
);
$router
->
post
(
'/integral_types'
,
'IntegralTypesController@create'
);
$router
->
p
atch
(
'/integral_types/{id}
'
,
'IntegralTypesController@update'
);
$router
->
delete
(
'/integral_types/{id}
'
,
'IntegralTypesController@destroy'
);
$router
->
post
(
'/integral_types/list
'
,
'IntegralTypesController@index'
);
$router
->
post
(
'/integral_types
/add
'
,
'IntegralTypesController@create'
);
$router
->
p
ost
(
'/integral_types/update
'
,
'IntegralTypesController@update'
);
$router
->
post
(
'/integral_types/delete
'
,
'IntegralTypesController@destroy'
);
//用户积分账单
$router
->
get
(
'/integral_bills
'
,
'IntegralBillsController@index'
);
$router
->
post
(
'/integral_bills'
,
'IntegralBillsController@create'
);
$router
->
p
atch
(
'/integral_bills/{id}
'
,
'IntegralBillsController@update'
);
$router
->
delete
(
'/integral_bills/{id}
'
,
'IntegralBillsController@destroy'
);
$router
->
post
(
'/integral_bills/list
'
,
'IntegralBillsController@index'
);
$router
->
post
(
'/integral_bills
/add
'
,
'IntegralBillsController@create'
);
$router
->
p
ost
(
'/integral_bills/update
'
,
'IntegralBillsController@update'
);
$router
->
post
(
'/integral_bills/delete
'
,
'IntegralBillsController@destroy'
);
//用户积分信息
$router
->
get
(
'/user_integrals/{id}
'
,
'UserIntegralsController@show'
);
$router
->
get
(
'/user_integrals
'
,
'UserIntegralsController@index'
);
$router
->
p
atch
(
'/user_integrals/{id}
'
,
'UserIntegralsController@update'
);
$router
->
post
(
'/user_integrals/info
'
,
'UserIntegralsController@show'
);
$router
->
post
(
'/user_integrals/list
'
,
'UserIntegralsController@index'
);
$router
->
p
ost
(
'/user_integrals/update
'
,
'UserIntegralsController@update'
);
$router
->
post
(
'/user_integrals/batchUpdateStatus'
,
'UserIntegralsController@batchUpdateStatus'
);
//兑换配置
$router
->
get
(
'/exchange_settings/{id}
'
,
'ExchangeSettingsController@show'
);
$router
->
get
(
'/exchange_settings
'
,
'ExchangeSettingsController@index'
);
$router
->
post
(
'/exchange_settings'
,
'ExchangeSettingsController@store'
);
$router
->
p
atch
(
'/exchange_settings/{id}
'
,
'ExchangeSettingsController@update'
);
$router
->
delete
(
'/exchange_settings/{id}
'
,
'ExchangeSettingsController@destroy'
);
$router
->
post
(
'/exchange_settings/info
'
,
'ExchangeSettingsController@show'
);
$router
->
post
(
'/exchange_settings/list
'
,
'ExchangeSettingsController@index'
);
$router
->
post
(
'/exchange_settings
/add
'
,
'ExchangeSettingsController@store'
);
$router
->
p
ost
(
'/exchange_settings/update
'
,
'ExchangeSettingsController@update'
);
$router
->
post
(
'/exchange_settings/delete
'
,
'ExchangeSettingsController@destroy'
);
$router
->
post
(
'/exchange_settings/batchUpdateStatus'
,
'ExchangeSettingsController@batchUpdateStatus'
);
//用户兑换记录
$router
->
get
(
'/user_exchanges/{id}
'
,
'UserExchangesController@show'
);
$router
->
get
(
'/user_exchanges
'
,
'UserExchangesController@index'
);
$router
->
p
atch
(
'/user_exchanges/{id}
'
,
'UserExchangesController@update'
);
$router
->
post
(
'/user_exchanges/info
'
,
'UserExchangesController@show'
);
$router
->
post
(
'/user_exchanges/list
'
,
'UserExchangesController@index'
);
$router
->
p
ost
(
'/user_exchanges/update
'
,
'UserExchangesController@update'
);
$router
->
post
(
'/user_exchanges/batchUpdateStatus'
,
'UserExchangesController@batchUpdateStatus'
);
storage/laravels.json
View file @
60771229
This diff is collapsed.
Click to expand it.
storage/laravels.pid
View file @
60771229
28382
\ No newline at end of file
5983
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment