mirror of
https://gitee.com/beijing_hongye_huicheng/lilishop-ui.git
synced 2025-12-18 00:45:54 +08:00
优化店铺段报错问题,后续会配置开发环境以及生产环境动态CDN优化
This commit is contained in:
@@ -40,7 +40,6 @@
|
||||
ref="table"
|
||||
class="mt_10"
|
||||
sortable="custom"
|
||||
@on-sort-change="changeSort"
|
||||
@on-selection-change="changeSelect"
|
||||
>
|
||||
</Table>
|
||||
|
||||
@@ -149,8 +149,8 @@
|
||||
<h4>订退单统计</h4>
|
||||
<div class="breadcrumb" style="margin-bottom:20px;">
|
||||
<RadioGroup v-model="orderOrRefund" type="button" size="small" button-style="solid">
|
||||
<Radio :label="true">订单</Radio>
|
||||
<Radio :label="false">退单</Radio>
|
||||
<Radio :label="1">订单</Radio>
|
||||
<Radio :label="0">退单</Radio>
|
||||
</RadioGroup>
|
||||
</div>
|
||||
<div>
|
||||
@@ -177,7 +177,7 @@ export default {
|
||||
|
||||
data() {
|
||||
return {
|
||||
orderOrRefund: true, // 订单还是单
|
||||
orderOrRefund: 1, // 订单还是单
|
||||
total: "0", // 总数
|
||||
// 订单状态
|
||||
orderStatusList: {
|
||||
@@ -456,7 +456,7 @@ export default {
|
||||
},
|
||||
orderOrRefund:{ // 订单还是退单
|
||||
handler (val) {
|
||||
if (val) {
|
||||
if (val == 1) {
|
||||
this.getOrderList();
|
||||
} else {
|
||||
this.getOrderRefundList();
|
||||
|
||||
Reference in New Issue
Block a user