完善店铺售后
This commit is contained in:
parent
1f61a40aac
commit
eddc4b0516
|
|
@ -216,7 +216,7 @@ import { listShop } from "@/api/shop/shop";
|
||||||
import {MessageBox} from "element-ui";
|
import {MessageBox} from "element-ui";
|
||||||
import {isRelogin} from "@/utils/request";
|
import {isRelogin} from "@/utils/request";
|
||||||
export default {
|
export default {
|
||||||
name: "JdRefund",
|
name: "RefundJd",
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
// 遮罩层
|
// 遮罩层
|
||||||
|
|
|
||||||
|
|
@ -222,7 +222,7 @@ import {list} from "@/api/offline/refund";
|
||||||
import {listShop} from "@/api/shop/shop";
|
import {listShop} from "@/api/shop/shop";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "AfterSaleOffline",
|
name: "RefundOffline",
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
// 遮罩层
|
// 遮罩层
|
||||||
|
|
|
||||||
|
|
@ -2,13 +2,13 @@
|
||||||
<div class="app-container">
|
<div class="app-container">
|
||||||
<el-tabs v-model="activeName" @tab-click="handleClick">
|
<el-tabs v-model="activeName" @tab-click="handleClick">
|
||||||
<el-tab-pane v-for="item in typeList" :label="item.name" :name="item.code" lazy>
|
<el-tab-pane v-for="item in typeList" :label="item.name" :name="item.code" lazy>
|
||||||
<order-tao v-if="item.id === 100"></order-tao>
|
<refund-offline v-if="item.id === 999"></refund-offline>
|
||||||
<order-jd v-if="item.id === 200"></order-jd>
|
<refund-tao v-if="item.id === 100"></refund-tao>
|
||||||
<!-- <order-jd-vc v-if="item.id === 280"></order-jd-vc>-->
|
<refund-jd v-if="item.id === 200"></refund-jd>
|
||||||
<order-pdd v-if="item.id === 300"></order-pdd>
|
<refund-pdd v-if="item.id === 300"></refund-pdd>
|
||||||
<order-dou v-if="item.id === 400"></order-dou>
|
<refund-dou v-if="item.id === 400"></refund-dou>
|
||||||
<order-wei v-if="item.id === 500"></order-wei>
|
<refund-wei v-if="item.id === 500"></refund-wei>
|
||||||
<!-- <order-offline v-if="item.id === 999"></order-offline>-->
|
|
||||||
</el-tab-pane>
|
</el-tab-pane>
|
||||||
|
|
||||||
</el-tabs>
|
</el-tabs>
|
||||||
|
|
@ -16,23 +16,21 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import TaoRefund from "@/views/tao/refund/index";
|
import RefundOffline from "@/views/refund/private/index";
|
||||||
import JdRefund from "@/views/jd/refund/index";
|
import RefundTao from "@/views/tao/refund/index";
|
||||||
import DouRefund from "@/views/dou/refund/index.vue";
|
import RefundJd from "@/views/jd/refund/index";
|
||||||
import PddRefund from "@/views/pdd/refund/index.vue";
|
import RefundDou from "@/views/dou/refund/index.vue";
|
||||||
import OrderTao from "@/views/tao/order/index.vue";
|
import RefundPdd from "@/views/pdd/refund/index.vue";
|
||||||
import OrderPdd from "@/views/pdd/order/index.vue";
|
import RefundWei from "@/views/wei/refund/index.vue";
|
||||||
import OrderDou from "@/views/dou/order/index.vue";
|
|
||||||
import OrderWei from "@/views/wei/order/index.vue";
|
|
||||||
import OrderJd from "@/views/jd/order/index.vue";
|
|
||||||
import {listPlatform} from "@/api/shop/shop";
|
import {listPlatform} from "@/api/shop/shop";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "refund",
|
name: "refund",
|
||||||
components:{OrderJd, OrderWei, OrderDou, OrderPdd, OrderTao, PddRefund, DouRefund, TaoRefund,JdRefund},
|
components:{RefundPdd, RefundDou, RefundTao,RefundJd,RefundOffline,RefundWei},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
activeName: 'taoOrder',
|
activeName: 'OFFLINE',
|
||||||
typeList: [],
|
typeList: [],
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
|
@ -42,7 +40,7 @@ export default {
|
||||||
mounted() {
|
mounted() {
|
||||||
listPlatform({status:0}).then(res => {
|
listPlatform({status:0}).then(res => {
|
||||||
this.typeList = res.rows;
|
this.typeList = res.rows;
|
||||||
this.activeName = this.typeList[0].code
|
this.activeName = this.typeList[res.rows.length-1].code
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
|
|
||||||
|
|
@ -213,7 +213,7 @@ import {pullOrder} from "@/api/tao/order";
|
||||||
import {MessageBox} from "element-ui";
|
import {MessageBox} from "element-ui";
|
||||||
import {isRelogin} from "@/utils/request";
|
import {isRelogin} from "@/utils/request";
|
||||||
export default {
|
export default {
|
||||||
name: "TaoRefund",
|
name: "RefundTao",
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
// 遮罩层
|
// 遮罩层
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue