qihang-ecom-erp-open/vue/src/views/jd/order/index.vue

255 lines
8.5 KiB
Vue
Raw Normal View History

2024-03-24 17:03:24 +08:00
<template>
<div class="app-container">
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="88px">
<el-form-item label="订单号" prop="id">
<el-input
v-model="queryParams.orderId"
placeholder="请输入订单号"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="店铺" prop="shopId">
<el-select v-model="queryParams.shopId" placeholder="请选择店铺" clearable @change="handleQuery">
<el-option
v-for="item in shopList"
:key="item.id"
:label="item.name"
:value="item.id">
</el-option>
</el-select>
</el-form-item>
2024-04-08 17:19:59 +08:00
<el-form-item label="订单状态" prop="orderState">
<el-select v-model="queryParams.orderState" placeholder="请选择状态" clearable @change="handleQuery">
<el-option label="等待出库" value="WAIT_SELLER_STOCK_OUT" ></el-option>
<el-option label="等待确认收货" value="WAIT_GOODS_RECEIVE_CONFIRM"></el-option>
<el-option label="等待发货" value="WAIT_SELLER_DELIVERY"> </el-option>
<el-option label="POP暂停" value="POP_ORDER_PAUSE"></el-option>
<el-option label="完成" value="FINISHED_L"></el-option>
<el-option label="取消" value="TRADE_CANCELED"></el-option>
<el-option label="已锁定" value="LOCKED"></el-option>
</el-select>
</el-form-item>
2024-03-24 17:03:24 +08:00
<el-form-item>
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
</el-form-item>
</el-form>
<el-row :gutter="10" class="mb8">
<el-col :span="1.5">
<el-button
:loading="pullLoading"
type="success"
plain
icon="el-icon-edit"
size="mini"
@click="handlePull"
>API拉取订单</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="primary"
plain
icon="el-icon-refresh"
size="mini"
:disabled="multiple"
@click="handlePushOms"
>手动将选中订单推送到OMS</el-button>
</el-col>
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
<el-table v-loading="loading" :data="lists" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" />
<el-table-column label="订单ID" align="center" prop="orderId" />
<el-table-column label="店铺" align="center" prop="shopId" >
<template slot-scope="scope">
<el-tag size="small">{{shopList.find(x=>x.id === scope.row.shopId).name}}</el-tag>
</template>
</el-table-column>
<el-table-column label="商品" width="350">
<template slot-scope="scope">
<el-row v-for="item in scope.row.items" :key="item.id" :gutter="20">
<div style="float: left;display: flex;align-items: center;" >
<!-- <el-image style="width: 70px; height: 70px;" :src="item.picPath"></el-image>-->
<div style="margin-left:10px">
<p>{{item.skuName}}</p>
<p>{{item.outerSkuId}}&nbsp;
<el-tag size="small">x {{item.itemTotal}}</el-tag>
</p>
<p v-if="scope.row.refundStatus === 0">
<el-button type="text" size="mini" round @click="handleRefund(scope.row,item)">售后</el-button>
</p>
</div>
</div>
</el-row>
</template>
</el-table-column>
<el-table-column label="订单总金额" align="center" prop="orderTotalPrice" />
<el-table-column label="收件人" align="center" prop="fullname" />
<el-table-column label="手机号" align="center" prop="mobile" />
<el-table-column label="商家备注" align="center" prop="venderRemark" />
<el-table-column label="状态" align="center" prop="orderStateRemark" />
<el-table-column label="下单时间" align="center" prop="orderStartTime" />
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
<template slot-scope="scope">
<el-button
size="mini"
2024-04-08 17:19:59 +08:00
:loading="pullLoading"
icon="el-icon-refresh"
2024-03-24 17:03:24 +08:00
@click="handlePullUpdate(scope.row)"
>更新订单</el-button>
</template>
</el-table-column>
</el-table>
<pagination
v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
</div>
</template>
<script>
2024-04-08 17:19:59 +08:00
import {listOrder, pullOrder, getOrder, pushOms, pullOrderDetail} from "@/api/jd/order";
2024-03-24 17:03:24 +08:00
import { listShop } from "@/api/shop/shop";
import {MessageBox} from "element-ui";
import {isRelogin} from "@/utils/request";
export default {
name: "OrderJd",
data() {
return {
// 遮罩层
loading: true,
pullLoading: false,
// 选中数组
ids: [],
// 非单个禁用
single: true,
// 非多个禁用
multiple: true,
// 显示搜索条件
showSearch: true,
// 总条数
total: 0,
// 商品管理表格数据
lists: [],
// 弹出层标题
title: "",
// 是否显示弹出层
open: false,
// 查询参数
queryParams: {
pageNum: 1,
pageSize: 10,
name: null,
image: null
},
// 表单参数
form: {},
shopList: [],
// 表单校验
rules: {}
};
},
created() {
listShop({type:2}).then(response => {
this.shopList = response.rows;
});
this.getList();
},
methods: {
/** 查询商品管理列表 */
getList() {
this.loading = true;
listOrder(this.queryParams).then(response => {
this.lists = response.rows;
this.total = response.total;
this.loading = false;
});
},
// 取消按钮
cancel() {
this.open = false;
this.reset();
},
// 表单重置
reset() {
this.form = {
id: null,
name: null,
image: null,
number: null
};
this.resetForm("form");
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.resetForm("queryForm");
this.handleQuery();
},
// 多选框选中数据
handleSelectionChange(selection) {
this.ids = selection.map(item => item.orderId)
this.single = selection.length!==1
this.multiple = !selection.length
},
handlePushOms(row) {
const ids = row.id || this.ids;
this.$modal.confirm('是否手动推送到OMS').then(function() {
return pushOms({ids:ids});
}).then(() => {
// this.getList();
this.$modal.msgSuccess("推送成功");
}).catch(() => {});
},
handlePull(){
if(this.queryParams.shopId){
this.pullLoading = true
pullOrder({shopId:this.queryParams.shopId,updType:0}).then(response => {
console.log('拉取JD订单接口返回=====',response)
if(response.code === 1401) {
MessageBox.confirm('Token已过期需要重新授权', '系统提示', { confirmButtonText: '重新授权', cancelButtonText: '取消', type: 'warning' }).then(() => {
isRelogin.show = false;
// store.dispatch('LogOut').then(() => {
location.href = response.data.tokenRequestUrl+'?shopId='+this.queryParams.shopId
// })
}).catch(() => {
isRelogin.show = false;
});
// return Promise.reject('无效的会话,或者会话已过期,请重新登录。')
}else{
this.$modal.msgSuccess(JSON.stringify(response));
this.pullLoading = false
}
})
}else{
this.$modal.msgSuccess("请先选择店铺");
}
2024-04-08 17:19:59 +08:00
},
handlePullUpdate(row) {
// 接口拉取订单并更新
this.pullLoading = true
pullOrderDetail({shopId:row.shopId,orderId:row.orderId}).then(response => {
console.log('拉取JD订单接口返回=====',response)
this.$modal.msgSuccess(JSON.stringify(response));
this.pullLoading = false
})
2024-03-24 17:03:24 +08:00
}
}
};
</script>