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
e4c815c6
authored
Nov 02, 2018
by
朱继来
Browse files
Options
_('Browse Files')
Download
Plain Diff
Merge branch 'zjl_self_express_20181030'
parents
c6c79448
ddc7c496
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
54 additions
and
13 deletions
resources/views/changeShipping/content.blade.php
resources/views/changeShipping/content.blade.php
View file @
e4c815c6
...
...
@@ -19,30 +19,41 @@
<div
class=
"tabs-box shipping-info"
>
<form
action=
"{{URL('changeShipping')}}"
method=
"POST"
>
<input
type=
"hidden"
name=
"order_id"
value=
"{{$detail['order_id']}}"
>
<table
class=
"table"
>
<table
class=
"table
table-hover table-bordered
"
>
<caption><h3>
订单物流信息
</h3></caption>
<tr>
<td>
收货人
</td>
<th
width=
"10%"
>
配送方式
</th>
<td
colspan=
"3"
>
<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>
<t
d>
联系电话
</td
>
<t
h
width=
"10%"
>
联系电话
</th
>
<td><input
type=
"text"
name=
"mobile"
value=
"{{$detail['mobile']}}"
></td>
</tr>
<tr
class=
"address-info"
>
<td>
收货地址
</td>
<td><select
class=
"address s_province"
name=
"province"
default=
"{{$detail['province']}}"
></select></td>
<td><select
class=
"address s_city"
name=
"city"
default=
"{{$detail['city']}}"
></select></td>
<td><select
class=
"address s_county"
name=
"district"
default=
"{{$detail['district']}}"
></select></td>
<th
width=
"10%"
>
收货地址
</th>
<td
colspan=
"3"
>
<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>
<t
d>
详细地址
</td
>
<td
colspan=
"3"
><textarea
name=
"address"
placeholder=
"请输入详细地址"
>
{{$detail['address']}}
</textarea></td>
<t
h
width=
"10%"
>
详细地址
</th
>
<td
colspan=
"3"
><textarea
class=
"form-control"
name=
"address"
placeholder=
"请输入详细地址"
>
{{$detail['address']}}
</textarea></td>
</tr>
<tr>
<td><input
type=
"submit"
value=
"保存"
class=
"btn btn-success"
></td>
<td></td>
<td></td>
<td></td>
<td
colspan=
"4"
><input
type=
"submit"
value=
"保存"
class=
"btn btn-success"
></td>
</tr>
</table>
</form>
...
...
@@ -52,6 +63,35 @@
<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
=
'深圳市光明新区新湖街道楼村社区荔都路32号A栋三楼'
;
}
else
{
var
self_addr
=
'深圳市龙岗区坂田五和大道南2号万科星火online六栋三楼猎芯科技'
;
}
$
(
'.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