zhanbo.xu

feat: 新增PDD

import request from "@/utils/request";
// GET
// /customerDeclareData/info/{customerDeclareDataId}
// 查询客户申报数据信息
export function getCustomerDeclareDataId({ customerDeclareDataId }) {
return request({
url: `/bus-customer/customerDeclareData/info/${customerDeclareDataId}`,
method: "get",
});
}
// POST
// /customerDeclareData/search
// 查询客户申报数据列表
export function getPddInfo(data) {
return request({
url: "/bus-customer/customerDeclareData/search",
method: "post",
data: data,
});
}
......@@ -5,7 +5,6 @@ Vue.use(Router);
/* Layout */
import Layout from "@/layout";
import ParentView from "@/components/ParentView";
/**
* Note: 路由配置项
......@@ -198,6 +197,14 @@ export const constantRoutes = [
hidden: true,
meta: { title: "运抵详情", icon: "" },
},
{
path: "/pdd-detail",
component: (resolve) =>
require(["@/views/pdd-info/detail.vue"], resolve),
name: "PddListDetail",
hidden: true,
meta: { title: "PDD数据详情", icon: "" },
},
],
},
{
......
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.