Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
朱继来
/
后台订单管理
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
7fb57c7a
authored
Sep 17, 2020
by
朱继来
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
调整
parent
439d5c1d
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
159 additions
and
158 deletions
resources/views/changeInvoice.blade.php
resources/views/changeShipping.blade.php
resources/views/changeShipping/content.blade.php
resources/views/changeInvoice.blade.php
View file @
7fb57c7a
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"utf-8"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0"
>
<title>
订单管理后台 | 更改发票
</title>
<script>
document
.
domain
=
"{{ Config::get('website.domain') }}"
;
</script>
@include('
orderlist.css')
@include('
orderlist.js')
</head>
<body
class=
""
>
<div
id=
"wrapper"
>
<!-- layouts.navigation -->
@include('layouts.navigation')
<div
id=
"page-wrapper"
class=
"gray-bg"
>
<div
class=
"row"
>
@include('changeInvoice.content')
</div>
</div>
</div>
</body>
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"utf-8"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0"
>
<title>
订单管理后台 | 更改发票
</title>
<script>
document
.
domain
=
"{{ Config::get('website.domain') }}"
;
</script>
@include('
detail.css')
@include('
detail.js')
</head>
<body
class=
""
>
<div
id=
"wrapper"
>
<!-- layouts.navigation -->
@include('layouts.navigation')
<div
id=
"page-wrapper"
class=
"gray-bg"
>
<div
class=
"row"
>
@include('changeInvoice.content')
</div>
</div>
</div>
</body>
resources/views/changeShipping.blade.php
View file @
7fb57c7a
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"utf-8"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0"
>
<title>
订单管理后台 | 更改收货地址
</title>
<script>
document
.
domain
=
"{{ Config::get('website.domain') }}"
;
</script>
@include('
orderlist.css')
@include('
orderlist.js')
</head>
<body
class=
""
>
<div
id=
"wrapper"
>
<!-- layouts.navigation -->
@include('layouts.navigation')
<div
id=
"page-wrapper"
class=
"gray-bg"
>
<div
class=
"row"
>
@include('changeShipping.content')
</div>
</div>
</div>
</body>
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"utf-8"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0"
>
<title>
订单管理后台 | 更改收货地址
</title>
<script>
document
.
domain
=
"{{ Config::get('website.domain') }}"
;
</script>
@include('
detail.css')
@include('
detail.js')
</head>
<body
class=
""
>
<div
id=
"wrapper"
>
<!-- layouts.navigation -->
@include('layouts.navigation')
<div
id=
"page-wrapper"
class=
"gray-bg"
>
<div
class=
"row"
>
@include('changeShipping.content')
</div>
</div>
</div>
</body>
resources/views/changeShipping/content.blade.php
View file @
7fb57c7a
<div
class=
"wrapper"
>
@include('layouts.header')
<div
class=
"page-content order-details"
>
<!-- <ul class="nav nav-tabs">
@if (isset($_REQUEST['tags']))
<li><a href="{{URL('erp_order')}}">ERP订单</a></li>
<li><a href="/details/{{$detail['order_id']}}?tags={{$_REQUEST['tags']}}">订单详情</a></li>
@else
<li><a href="{{URL('list')}}">平台订单</a></li>
<li><a href="{{URL('details', ['order_id'=>$detail['order_id']])}}">订单详情</a></li>
@endif
<li class="active"><a href="javascript:;">订单收货信息</a></li>
</ul> -->
<?php
$route
=
\Route
::
current
()
->
getActionName
();
$action_name
=
explode
(
'@'
,
$route
)[
1
];
?>
<input
type=
"hidden"
class=
"action_type"
value=
"{{$action_name}}"
>
<div
class=
"tabs-box shipping-info"
>
<form
action=
"{{URL('changeShipping')}}"
method=
"POST"
class=
"table-responsive"
>
<input
type=
"hidden"
name=
"order_id"
value=
"{{$detail['order_id']}}"
>
<table
class=
"table table-hover table-bordered"
>
<caption><h3>
订单物流信息
</h3></caption>
<tr>
<th
width=
"10%"
>
配送方式
</th>
<td>
<label
class=
"radio-inline"
>
<input
type=
"radio"
name=
"shipping_type"
class=
"shipping_type"
value=
"1"
>
快递配送
</label>
<label
class=
"radio-inline"
>
<input
type=
"radio"
name=
"shipping_type"
class=
"shipping_type"
value=
"2"
>
上门自提
</label>
</td>
</tr>
<tr>
<th
width=
"10%"
>
收货人
</th>
<td><input
type=
"text"
name=
"consignee"
value=
"{{$detail['consignee']}}"
></td>
</tr>
<tr>
<th
width=
"10%"
>
联系电话
</th>
<td><input
type=
"text"
name=
"mobile"
value=
"{{$detail['mobile']}}"
></td>
</tr>
<tr
class=
"address-info"
>
<th
width=
"10%"
>
收货地址
</th>
<td>
<select
class=
"address s_province"
name=
"province"
default=
"{{$detail['province']}}"
></select>
<select
class=
"address s_city"
name=
"city"
default=
"{{$detail['city']}}"
></select>
<select
class=
"address s_county"
name=
"district"
default=
"{{$detail['district']}}"
></select>
</td>
</tr>
<tr>
<th
width=
"10%"
>
详细地址
</th>
<td><textarea
class=
"form-control"
name=
"address"
placeholder=
"请输入详细地址"
>
{{$detail['address']}}
</textarea></td>
</tr>
<tr>
<td
colspan=
"2"
><input
type=
"submit"
value=
"保存"
class=
"btn btn-success"
></td>
</tr>
</table>
</form>
</div>
</div>
</div>
<script>
var
tags
=
"{{isset($_REQUEST['tags']) ? $_REQUEST['tags'] : ''}}"
;
var
shipping_type
=
"{{isset($order_info) ? $order_info['order_shipping_type'] : 1}}"
;
var
goods_type
=
"{{isset($order_info) ? $order_info['order_goods_type'] : 1}}"
;
$
(
'.shipping_type'
).
each
(
function
()
{
if
(
$
(
this
).
val
()
==
shipping_type
)
{
$
(
this
).
attr
(
'checked'
,
true
);
}
})
// 自提时隐藏省市区
if
(
shipping_type
==
2
)
{
$
(
'.address-info'
).
hide
();
}
if
(
goods_type
==
2
)
{
var
self_addr
=
"{{ Config('params.self_addr') }}"
;
}
else
{
var
self_addr
=
"{{ Config('params.joint_addr') }}"
;
}
$
(
'.shipping_type'
).
change
(
function
()
{
if
(
$
(
this
).
val
()
==
2
)
{
$
(
'.address-info'
).
hide
();
$
(
'textarea[name=address]'
).
val
(
self_addr
).
attr
(
'disabled'
,
true
);
}
else
{
$
(
'.address-info'
).
show
();
$
(
'textarea[name=address]'
).
val
(
''
).
attr
(
'disabled'
,
false
);
}
})
$
.
lie
.
order
.
details
();
<div
class=
"wrapper"
>
@include('layouts.header')
<div
class=
"page-content order-details"
>
<!-- <ul class="nav nav-tabs">
@if (isset($_REQUEST['tags']))
<li><a href="{{URL('erp_order')}}">ERP订单</a></li>
<li><a href="/details/{{$detail['order_id']}}?tags={{$_REQUEST['tags']}}">订单详情</a></li>
@else
<li><a href="{{URL('list')}}">平台订单</a></li>
<li><a href="{{URL('details', ['order_id'=>$detail['order_id']])}}">订单详情</a></li>
@endif
<li class="active"><a href="javascript:;">订单收货信息</a></li>
</ul> -->
<?php
$route
=
\Route
::
current
()
->
getActionName
();
$action_name
=
explode
(
'@'
,
$route
)[
1
];
?>
<input
type=
"hidden"
class=
"action_type"
value=
"{{$action_name}}"
>
<div
class=
"tabs-box shipping-info"
>
<form
action=
"{{URL('changeShipping')}}"
method=
"POST"
class=
"table-responsive"
>
<input
type=
"hidden"
name=
"order_id"
value=
"{{$detail['order_id']}}"
>
<table
class=
"table table-hover table-bordered"
>
<caption><h3>
订单物流信息
</h3></caption>
<tr>
<th
width=
"10%"
>
配送方式
</th>
<td>
<label
class=
"radio-inline"
>
<input
type=
"radio"
name=
"shipping_type"
class=
"shipping_type"
value=
"1"
>
快递配送
</label>
<label
class=
"radio-inline"
>
<input
type=
"radio"
name=
"shipping_type"
class=
"shipping_type"
value=
"2"
>
上门自提
</label>
</td>
</tr>
<tr>
<th
width=
"10%"
>
收货人
</th>
<td><input
type=
"text"
name=
"consignee"
value=
"{{$detail['consignee']}}"
></td>
</tr>
<tr>
<th
width=
"10%"
>
联系电话
</th>
<td><input
type=
"text"
name=
"mobile"
value=
"{{$detail['mobile']}}"
></td>
</tr>
<tr
class=
"address-info"
>
<th
width=
"10%"
>
收货地址
</th>
<td>
<select
class=
"address s_province"
name=
"province"
default=
"{{$detail['province']}}"
></select>
<select
class=
"address s_city"
name=
"city"
default=
"{{$detail['city']}}"
></select>
<select
class=
"address s_county"
name=
"district"
default=
"{{$detail['district']}}"
></select>
</td>
</tr>
<tr>
<th
width=
"10%"
>
详细地址
</th>
<td><textarea
class=
"form-control"
name=
"address"
placeholder=
"请输入详细地址"
>
{{$detail['address']}}
</textarea></td>
</tr>
<tr>
<td
colspan=
"2"
><input
type=
"submit"
value=
"保存"
class=
"btn btn-success"
></td>
</tr>
</table>
</form>
</div>
</div>
</div>
<script>
var
tags
=
"{{isset($_REQUEST['tags']) ? $_REQUEST['tags'] : ''}}"
;
var
shipping_type
=
"{{isset($order_info) ? $order_info['order_shipping_type'] : 1}}"
;
var
goods_type
=
"{{isset($order_info) ? $order_info['order_goods_type'] : 1}}"
;
$
(
'.shipping_type'
).
each
(
function
()
{
if
(
$
(
this
).
val
()
==
shipping_type
)
{
$
(
this
).
attr
(
'checked'
,
true
);
}
})
// 自提时隐藏省市区
if
(
shipping_type
==
2
)
{
$
(
'.address-info'
).
hide
();
}
if
(
goods_type
==
2
)
{
var
self_addr
=
"{{ Config('params.self_addr') }}"
;
}
else
{
var
self_addr
=
"{{ Config('params.joint_addr') }}"
;
}
$
(
'.shipping_type'
).
change
(
function
()
{
if
(
$
(
this
).
val
()
==
2
)
{
$
(
'.address-info'
).
hide
();
$
(
'textarea[name=address]'
).
val
(
self_addr
).
attr
(
'disabled'
,
true
);
}
else
{
$
(
'.address-info'
).
show
();
$
(
'textarea[name=address]'
).
val
(
''
).
attr
(
'disabled'
,
false
);
}
})
$
.
lie
.
order
.
details
();
</script>
\ 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