zhanbo.xu

feat: 新增功能

......@@ -55,9 +55,69 @@ export function getPvgWaybillList(data) {
// GET
// /exportWaybill/pvg/receipt​/{id}
// 获取PVG订单回执信息
export function getPvgWaybillReceiptInfo(id) {
export function getPvgWaybillReceiptInfo({ id }) {
return request({
url: `/bus-customer/exportWaybill/pvg/receipt/${id}`,
method: "get",
});
}
// GET
// /exportList/pvg/info/{listId}
// 获取pvg出口清单详情
export function getPvgListInfo({ listId }) {
return request({
url: `/bus-customer/exportList/pvg/info/${listId}`,
method: "get",
});
}
// GET
// /exportList/pvg/receipt/{listId}
// 获取pvg出口清单回执
export function getPvgListReceipt({ listId }) {
return request({
url: `/bus-customer/exportList/pvg/receipt/${listId}`,
method: "get",
});
}
// POST
// /exportList/pvg/search
// 根据条件搜索pvg出口清单
export function getPvgListSearch(data) {
return request({
url: "/bus-customer/exportList/pvg/search",
method: "post",
data: data,
});
}
// GET
// /exportArrivalIn/pvg/info/{arrivalInId}
// 查询pvg运抵单详情
export function getPvgArrivalInInfo(arrivalInId) {
return request({
url: `/bus-customer/exportArrivalIn/pvg/info/${arrivalInId}`,
method: "get",
});
}
// GET
// /exportArrivalIn/pvg/receipt/arrivalInId
// 获取运抵单回执
export function getPvgArrivalInReceipt(arrivalInId) {
return request({
url: `/bus-customer/exportArrivalIn/pvg/receipt/${arrivalInId}`,
method: "get",
});
}
// POST
// /exportArrivalIn/pvg/search
// 查询pvg运抵单列表
export function getPvgArrivalInList(data) {
return request({
url: "/bus-customer/exportArrivalIn/pvg/search",
method: "post",
data: data,
});
}
......
......@@ -214,6 +214,22 @@ export const constantRoutes = [
name: "PvgOrderDetail",
meta: { title: "PVG订单详情", icon: "" },
},
{
path: "/pvg-list-detail",
component: (resolve) =>
require(["@/views/pvgList/detail.vue"], resolve),
hidden: true,
name: "PvgListDetail",
meta: { title: "PVG清单详情", icon: "" },
},
{
path: "/pvg-waybill-detail",
component: (resolve) =>
require(["@/views/pvgWaybill/detail.vue"], resolve),
hidden: true,
name: "PvgWaybillDetail",
meta: { title: "PVG运单详情", icon: "" },
},
],
},
{
......
......@@ -257,7 +257,6 @@
></el-input>
</Formitem>
</el-col>
<!-- 申报类型 -->
<el-col :span="3">
<Formitem label="贸易方式" prop="appType">
<el-input
......
......@@ -411,12 +411,6 @@
clearable
placeholder=""
>
<!-- <el-option
v-for="(item, index) in dictData.currency"
:key="index"
:label="item.name"
:value="item.value"
></el-option> -->
</el-select>
</Formitem>
</el-col>
......@@ -430,12 +424,6 @@
clearable
placeholder=""
>
<!-- <el-option
v-for="(item, index) in dictData.currency"
:key="index"
:label="item.name"
:value="item.value"
></el-option> -->
</el-select>
</Formitem>
</el-col>
......
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
......@@ -143,7 +143,7 @@
<template v-slot:rspCode="scope">
<TablePopover
ref="returnStatusPopover"
dataKey="rspCode"
dataKey="returnStatus"
:parentDom="$refs.entryTable"
:receiptDataHead="receiptDataHead"
:rowData="scope.row"
......@@ -219,19 +219,19 @@ export default {
},
{
name: "电商企业代码",
value: "ebccode",
value: "ebcCode",
width: "",
align: "left",
},
{
name: "电商企业名称",
value: "ebcname",
value: "ebcName",
width: "",
align: "left",
},
{
name: "物流申报企业平台代码",
value: "agentName",
value: "logisticsSenderCode",
width: "",
align: "left",
},
......@@ -252,13 +252,13 @@ export default {
},
{
name: "状态时间",
value: "returnTime",
value: "rspTime",
width: "",
align: "left",
},
{
name: "回执描述",
value: "returnInfo",
value: "rspMsg",
width: "",
align: "left",
},
......
This diff is collapsed. Click to expand it.
......@@ -143,7 +143,7 @@
<template v-slot:rspCode="scope">
<TablePopover
ref="returnStatusPopover"
dataKey="rspCode"
dataKey="returnStatus"
:parentDom="$refs.entryTable"
:receiptDataHead="receiptDataHead"
:rowData="scope.row"
......@@ -252,13 +252,13 @@ export default {
},
{
name: "状态时间",
value: "returnTime",
value: "rspTime",
width: "",
align: "left",
},
{
name: "回执描述",
value: "returnInfo",
value: "rspMsg",
width: "",
align: "left",
},
......@@ -344,7 +344,7 @@ export default {
//查询详情
view(val) {
this.$router.push({
name: "PvgOrderDetail",
name: "PvgWaybillDetail",
params: { data: val },
});
},
......