提交 6c79fec4 编写于 作者: D devil_gong

快递查询

上级 7c68165e
...@@ -205,6 +205,20 @@ ...@@ -205,6 +205,20 @@
{{if in_array($data['status'], [4,5,6])}} {{if in_array($data['status'], [4,5,6])}}
<button type="button" class="am-btn am-btn-danger am-btn-xs am-radius submit-delete" data-url="{{:MyUrl('index/order/delete')}}" data-id="{{$data.id}}" data-view="jump" data-value="{{:MyUrl('index/order/index')}}">删除</button> <button type="button" class="am-btn am-btn-danger am-btn-xs am-radius submit-delete" data-url="{{:MyUrl('index/order/delete')}}" data-id="{{$data.id}}" data-view="jump" data-value="{{:MyUrl('index/order/index')}}">删除</button>
{{/if}} {{/if}}
<!-- 钩子订单操作 -->
{{if isset($shopxo_is_develop) and $shopxo_is_develop eq true}}
<div class="plugins-tag">
<span>plugins_service_order_handle_operation_html</span>
</div>
{{/if}}
{{if !empty($data['plugins_service_order_handle_operation_html']) and is_array($data['plugins_service_order_handle_operation_html'])}}
{{foreach $data.plugins_service_order_handle_operation_html as $hook}}
{{if is_string($hook) or is_int($hook)}}
{{$hook|raw}}
{{/if}}
{{/foreach}}
{{/if}}
</div> </div>
{{if in_array($data['status'], [3,4])}} {{if in_array($data['status'], [3,4])}}
<div class="logistics"> <div class="logistics">
......
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
</div> </div>
<div class="am-form-group"> <div class="am-form-group">
<label>url地址<span class="fs-12 fw-100 cr-ccc">带http://或https://</span></label> <label>url地址<span class="am-form-group-label-tips">带http://或https://</span></label>
<input type="url" placeholder="url地址" name="url" data-validation-message="url格式有误" class="am-radius" {{if !empty($data)}} value="{{$data.url}}"{{/if}} required /> <input type="url" placeholder="url地址" name="url" data-validation-message="url格式有误" class="am-radius" {{if !empty($data)}} value="{{$data.url}}"{{/if}} required />
</div> </div>
......
...@@ -867,7 +867,7 @@ php; ...@@ -867,7 +867,7 @@ php;
} }
// 文件格式化校验 // 文件格式化校验
$type = array('application/zip', 'application/octet-stream'); $type = array('application/zip', 'application/octet-stream', 'application/x-zip-compressed');
if(!in_array($_FILES['file']['type'], $type)) if(!in_array($_FILES['file']['type'], $type))
{ {
return DataReturn('文件格式有误,请上传zip压缩包', -2); return DataReturn('文件格式有误,请上传zip压缩包', -2);
......
...@@ -100,7 +100,7 @@ class ThemeService ...@@ -100,7 +100,7 @@ class ThemeService
} }
// 文件格式化校验 // 文件格式化校验
$type = array('application/zip', 'application/octet-stream'); $type = array('application/zip', 'application/octet-stream', 'application/x-zip-compressed');
if(!in_array($_FILES['theme']['type'], $type)) if(!in_array($_FILES['theme']['type'], $type))
{ {
return DataReturn('文件格式有误,请上传zip压缩包', -2); return DataReturn('文件格式有误,请上传zip压缩包', -2);
......
...@@ -137,6 +137,11 @@ ul.progress li.current .title { ...@@ -137,6 +137,11 @@ ul.progress li.current .title {
.order-base .logistics { .order-base .logistics {
margin-top: 10px; margin-top: 10px;
} }
.order-base .am-btn-block {
width: auto;
padding-left: 1em;
padding-right: 1em;
}
@media only screen and (min-width: 641px) { @media only screen and (min-width: 641px) {
.order-base .base-left, .order-base .base-right { .order-base .base-left, .order-base .base-right {
width: 50%; width: 50%;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册