mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-26 08:16:47 +08:00
147 lines
9.3 KiB
HTML
Executable File
147 lines
9.3 KiB
HTML
Executable File
<div class="animated fadeInRight ecommerce">
|
||
<div class="row" >
|
||
<div class="col-lg-12">
|
||
<div class="ibox ">
|
||
<div class="ibox-title">
|
||
<h5><span><vc:i18n name="查询条件" namespace="storeOrderCartManage"></vc:i18n></span></h5>
|
||
<div class="ibox-tools" style="top:10px;">
|
||
</div>
|
||
</div>
|
||
<div class="ibox-content">
|
||
<div class="row">
|
||
<div class="col-sm-4">
|
||
<div class="form-group">
|
||
<input type="text" :placeholder="vc.i18n('订单编号','storeOrderCartManage')"
|
||
v-model="storeOrderCartManageInfo.conditions.cartId" class=" form-control">
|
||
</div>
|
||
</div>
|
||
<div class="col-sm-3">
|
||
<div class="form-group">
|
||
<select class="custom-select" v-model="storeOrderCartManageInfo.conditions.state">
|
||
<option value="">{{vc.i18n('请选择状态','storeOrderCartManage')}}</option>
|
||
<option value="1001">{{vc.i18n('未购买','storeOrderCartManage')}}</option>
|
||
<option value="2002">{{vc.i18n('待发货','storeOrderCartManage')}}</option>
|
||
<option value="3003">{{vc.i18n('待收货','storeOrderCartManage')}}</option>
|
||
<option value="4004">{{vc.i18n('待评价','storeOrderCartManage')}}</option>
|
||
<option value="5005">{{vc.i18n('申请退款','storeOrderCartManage')}}</option>
|
||
<option value="6006">{{vc.i18n('退货成功','storeOrderCartManage')}}</option>
|
||
<option value="7007">{{vc.i18n('已退款','storeOrderCartManage')}}</option>
|
||
</select>
|
||
</div>
|
||
</div>
|
||
<div class="col-sm-3">
|
||
<div class="form-group">
|
||
<input type="text" :placeholder="vc.i18n('请输入商品名称','storeOrderCartManage')"
|
||
v-model="storeOrderCartManageInfo.conditions.prodName" class=" form-control">
|
||
</div>
|
||
</div>
|
||
<div class="col-sm-4">
|
||
<div class="form-group">
|
||
<select class="custom-select" v-model="storeOrderCartManageInfo.conditions.shopId">
|
||
<option selected disabled value="">{{vc.i18n('请选择商铺','storeOrderCartManage')}}</option>
|
||
<option :value="item.shopId" v-for="(item,index) in storeOrderCartManageInfo.shops">
|
||
{{item.shopName}}
|
||
</option>
|
||
</select>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="col-sm-2">
|
||
<button type="button" class="btn btn-primary btn-sm"
|
||
v-on:click="_queryOrdersMethod()">
|
||
<i class="fa fa-search"></i> <span><vc:i18n name="查询" namespace="storeOrderCartManage"></vc:i18n></span>
|
||
</button>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="row" >
|
||
<div class="col-lg-12">
|
||
<div class="ibox">
|
||
<div class="ibox-title">
|
||
<h5><span><vc:i18n name="订单信息" namespace="storeOrderCartManage"></vc:i18n></span></h5>
|
||
<div class="ibox-tools" style="top:10px;"></div>
|
||
</div>
|
||
<div class="ibox-content">
|
||
|
||
<table class="footable table table-stripped toggle-arrow-tiny"
|
||
data-page-size="15"
|
||
>
|
||
<thead>
|
||
<tr>
|
||
<th class="text-center"><span><vc:i18n name="订单号" namespace="storeOrderCartManage"></vc:i18n></span></th>
|
||
<th class="text-center"><span><vc:i18n name="平台" namespace="storeOrderCartManage"></vc:i18n></span></th>
|
||
<th class="text-center"><span><vc:i18n name="商铺" namespace="storeOrderCartManage"></vc:i18n></span></th>
|
||
<th class="text-center"><span><vc:i18n name="类型" namespace="storeOrderCartManage"></vc:i18n></span></th>
|
||
<th class="text-center"><span><vc:i18n name="名称" namespace="storeOrderCartManage"></vc:i18n></span></th>
|
||
<th class="text-center"><span><vc:i18n name="数量" namespace="storeOrderCartManage"></vc:i18n></span></th>
|
||
<th class="text-center"><span><vc:i18n name="用户名称" namespace="storeOrderCartManage"></vc:i18n></span></th>
|
||
<th class="text-center"><span><vc:i18n name="支付金额" namespace="storeOrderCartManage"></vc:i18n></span></th>
|
||
<th class="text-center"><span><vc:i18n name="订单状态" namespace="storeOrderCartManage"></vc:i18n></span></th>
|
||
<th class="text-center"><span><vc:i18n name="创建时间" namespace="storeOrderCartManage"></vc:i18n></span></th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<tr v-for="order in storeOrderCartManageInfo.orderCarts">
|
||
<td class="text-center">{{order.cartId}}</td>
|
||
<td class="text-center">{{order.appName}}</td>
|
||
<td class="text-center">{{order.shopName}}</td>
|
||
<td class="text-center">{{order.cartType == '3307'?'服务':'商品'}}</td>
|
||
<td class="text-center" v-if="order.cartType == '3307'">{{order.prodName}}</td>
|
||
<td class="text-center" v-else>{{order.prodName}}({{order.specValue}})</td>
|
||
<td class="text-center">{{order.cartNum}}</td>
|
||
<td class="text-center">{{order.personName}}</td>
|
||
<td class="text-center">{{order.payPrice}}</td>
|
||
<td class="text-center">{{order.stateName}}</td>
|
||
<td class="text-center">{{order.createTime}}</td>
|
||
</tr>
|
||
</tbody>
|
||
<tfoot>
|
||
<tr>
|
||
<td colspan="7">
|
||
<ul class="pagination float-right"></ul>
|
||
</td>
|
||
</tr>
|
||
</tfoot>
|
||
</table>
|
||
<!-- 分页 -->
|
||
<vc:create path="frame/pagination"></vc:create>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<!--<div id="storeOrderCartModal" class="modal" tabindex="-1" role="dialog">
|
||
<div class="modal-dialog" role="document">
|
||
<div class="modal-content">
|
||
<div class="modal-header">
|
||
<h5 class="modal-title"><span><vc:i18n name="发货确认" namespace="storeOrderCartManage"></vc:i18n></span></h5>
|
||
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
||
<span aria-hidden="true">×</span>
|
||
</button>
|
||
</div>
|
||
<div class="modal-body">
|
||
<div class="row" >
|
||
<label class="col-sm-3 col-form-label"><span><vc:i18n name="收货人" namespace="storeOrderCartManage"></vc:i18n></span>:</label>
|
||
<label class="col-sm-8 col-form-label">{{storeOrderCartManageInfo.address.username}}</label>
|
||
</div>
|
||
<div class="row">
|
||
<label class="col-sm-3 col-form-label" ><span><vc:i18n name="收货时间" namespace="storeOrderCartManage"></vc:i18n></span>:</label>
|
||
<label class="col-sm-8 col-form-label">{{storeOrderCartManageInfo.address.tel}}</label>
|
||
</div>
|
||
<div class="row" >
|
||
<label class="col-sm-3 col-form-label"><span><vc:i18n name="收货地点" namespace="storeOrderCartManage"></vc:i18n></span>:</label>
|
||
<label class="col-sm-8 col-form-label">{{storeOrderCartManageInfo.address.address}}</label>
|
||
</div>
|
||
</div>
|
||
<div class="modal-footer">
|
||
<button type="button" class="btn btn-secondary" @click="_closeStoreOrderCartModal()"><span><vc:i18n name="关闭" namespace="storeOrderCartManage"></vc:i18n></span></button>
|
||
<button type="button" class="btn btn-primary" @click="_sendOrderCart()"><span><vc:i18n name="确定发货" namespace="storeOrderCartManage"></vc:i18n></span></button>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>-->
|
||
|
||
</div>
|