zhanbo.xu

feat: 新增功能

...@@ -55,9 +55,69 @@ export function getPvgWaybillList(data) { ...@@ -55,9 +55,69 @@ export function getPvgWaybillList(data) {
55 // GET 55 // GET
56 // /exportWaybill/pvg/receipt​/{id} 56 // /exportWaybill/pvg/receipt​/{id}
57 // 获取PVG订单回执信息 57 // 获取PVG订单回执信息
58 -export function getPvgWaybillReceiptInfo(id) { 58 +export function getPvgWaybillReceiptInfo({ id }) {
59 return request({ 59 return request({
60 url: `/bus-customer/exportWaybill/pvg/receipt/${id}`, 60 url: `/bus-customer/exportWaybill/pvg/receipt/${id}`,
61 method: "get", 61 method: "get",
62 }); 62 });
63 } 63 }
64 +
65 +// GET
66 +// /exportList/pvg/info/{listId}
67 +// 获取pvg出口清单详情
68 +export function getPvgListInfo({ listId }) {
69 + return request({
70 + url: `/bus-customer/exportList/pvg/info/${listId}`,
71 + method: "get",
72 + });
73 +}
74 +
75 +// GET
76 +// /exportList/pvg/receipt/{listId}
77 +// 获取pvg出口清单回执
78 +export function getPvgListReceipt({ listId }) {
79 + return request({
80 + url: `/bus-customer/exportList/pvg/receipt/${listId}`,
81 + method: "get",
82 + });
83 +}
84 +// POST
85 +// /exportList/pvg/search
86 +// 根据条件搜索pvg出口清单
87 +export function getPvgListSearch(data) {
88 + return request({
89 + url: "/bus-customer/exportList/pvg/search",
90 + method: "post",
91 + data: data,
92 + });
93 +}
94 +
95 +// GET
96 +// /exportArrivalIn/pvg/info/{arrivalInId}
97 +// 查询pvg运抵单详情
98 +export function getPvgArrivalInInfo(arrivalInId) {
99 + return request({
100 + url: `/bus-customer/exportArrivalIn/pvg/info/${arrivalInId}`,
101 + method: "get",
102 + });
103 +}
104 +
105 +// GET
106 +// /exportArrivalIn/pvg/receipt/arrivalInId
107 +// 获取运抵单回执
108 +export function getPvgArrivalInReceipt(arrivalInId) {
109 + return request({
110 + url: `/bus-customer/exportArrivalIn/pvg/receipt/${arrivalInId}`,
111 + method: "get",
112 + });
113 +}
114 +// POST
115 +// /exportArrivalIn/pvg/search
116 +// 查询pvg运抵单列表
117 +export function getPvgArrivalInList(data) {
118 + return request({
119 + url: "/bus-customer/exportArrivalIn/pvg/search",
120 + method: "post",
121 + data: data,
122 + });
123 +}
......
...@@ -214,6 +214,22 @@ export const constantRoutes = [ ...@@ -214,6 +214,22 @@ export const constantRoutes = [
214 name: "PvgOrderDetail", 214 name: "PvgOrderDetail",
215 meta: { title: "PVG订单详情", icon: "" }, 215 meta: { title: "PVG订单详情", icon: "" },
216 }, 216 },
217 + {
218 + path: "/pvg-list-detail",
219 + component: (resolve) =>
220 + require(["@/views/pvgList/detail.vue"], resolve),
221 + hidden: true,
222 + name: "PvgListDetail",
223 + meta: { title: "PVG清单详情", icon: "" },
224 + },
225 + {
226 + path: "/pvg-waybill-detail",
227 + component: (resolve) =>
228 + require(["@/views/pvgWaybill/detail.vue"], resolve),
229 + hidden: true,
230 + name: "PvgWaybillDetail",
231 + meta: { title: "PVG运单详情", icon: "" },
232 + },
217 ], 233 ],
218 }, 234 },
219 { 235 {
......
...@@ -257,7 +257,6 @@ ...@@ -257,7 +257,6 @@
257 ></el-input> 257 ></el-input>
258 </Formitem> 258 </Formitem>
259 </el-col> 259 </el-col>
260 - <!-- 申报类型 -->
261 <el-col :span="3"> 260 <el-col :span="3">
262 <Formitem label="贸易方式" prop="appType"> 261 <Formitem label="贸易方式" prop="appType">
263 <el-input 262 <el-input
......
...@@ -411,12 +411,6 @@ ...@@ -411,12 +411,6 @@
411 clearable 411 clearable
412 placeholder="" 412 placeholder=""
413 > 413 >
414 - <!-- <el-option
415 - v-for="(item, index) in dictData.currency"
416 - :key="index"
417 - :label="item.name"
418 - :value="item.value"
419 - ></el-option> -->
420 </el-select> 414 </el-select>
421 </Formitem> 415 </Formitem>
422 </el-col> 416 </el-col>
...@@ -430,12 +424,6 @@ ...@@ -430,12 +424,6 @@
430 clearable 424 clearable
431 placeholder="" 425 placeholder=""
432 > 426 >
433 - <!-- <el-option
434 - v-for="(item, index) in dictData.currency"
435 - :key="index"
436 - :label="item.name"
437 - :value="item.value"
438 - ></el-option> -->
439 </el-select> 427 </el-select>
440 </Formitem> 428 </Formitem>
441 </el-col> 429 </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 @@ ...@@ -143,7 +143,7 @@
143 <template v-slot:rspCode="scope"> 143 <template v-slot:rspCode="scope">
144 <TablePopover 144 <TablePopover
145 ref="returnStatusPopover" 145 ref="returnStatusPopover"
146 - dataKey="rspCode" 146 + dataKey="returnStatus"
147 :parentDom="$refs.entryTable" 147 :parentDom="$refs.entryTable"
148 :receiptDataHead="receiptDataHead" 148 :receiptDataHead="receiptDataHead"
149 :rowData="scope.row" 149 :rowData="scope.row"
...@@ -219,19 +219,19 @@ export default { ...@@ -219,19 +219,19 @@ export default {
219 }, 219 },
220 { 220 {
221 name: "电商企业代码", 221 name: "电商企业代码",
222 - value: "ebccode", 222 + value: "ebcCode",
223 width: "", 223 width: "",
224 align: "left", 224 align: "left",
225 }, 225 },
226 { 226 {
227 name: "电商企业名称", 227 name: "电商企业名称",
228 - value: "ebcname", 228 + value: "ebcName",
229 width: "", 229 width: "",
230 align: "left", 230 align: "left",
231 }, 231 },
232 { 232 {
233 name: "物流申报企业平台代码", 233 name: "物流申报企业平台代码",
234 - value: "agentName", 234 + value: "logisticsSenderCode",
235 width: "", 235 width: "",
236 align: "left", 236 align: "left",
237 }, 237 },
...@@ -252,13 +252,13 @@ export default { ...@@ -252,13 +252,13 @@ export default {
252 }, 252 },
253 { 253 {
254 name: "状态时间", 254 name: "状态时间",
255 - value: "returnTime", 255 + value: "rspTime",
256 width: "", 256 width: "",
257 align: "left", 257 align: "left",
258 }, 258 },
259 { 259 {
260 name: "回执描述", 260 name: "回执描述",
261 - value: "returnInfo", 261 + value: "rspMsg",
262 width: "", 262 width: "",
263 align: "left", 263 align: "left",
264 }, 264 },
......
This diff is collapsed. Click to expand it.
...@@ -143,7 +143,7 @@ ...@@ -143,7 +143,7 @@
143 <template v-slot:rspCode="scope"> 143 <template v-slot:rspCode="scope">
144 <TablePopover 144 <TablePopover
145 ref="returnStatusPopover" 145 ref="returnStatusPopover"
146 - dataKey="rspCode" 146 + dataKey="returnStatus"
147 :parentDom="$refs.entryTable" 147 :parentDom="$refs.entryTable"
148 :receiptDataHead="receiptDataHead" 148 :receiptDataHead="receiptDataHead"
149 :rowData="scope.row" 149 :rowData="scope.row"
...@@ -252,13 +252,13 @@ export default { ...@@ -252,13 +252,13 @@ export default {
252 }, 252 },
253 { 253 {
254 name: "状态时间", 254 name: "状态时间",
255 - value: "returnTime", 255 + value: "rspTime",
256 width: "", 256 width: "",
257 align: "left", 257 align: "left",
258 }, 258 },
259 { 259 {
260 name: "回执描述", 260 name: "回执描述",
261 - value: "returnInfo", 261 + value: "rspMsg",
262 width: "", 262 width: "",
263 align: "left", 263 align: "left",
264 }, 264 },
...@@ -344,7 +344,7 @@ export default { ...@@ -344,7 +344,7 @@ export default {
344 //查询详情 344 //查询详情
345 view(val) { 345 view(val) {
346 this.$router.push({ 346 this.$router.push({
347 - name: "PvgOrderDetail", 347 + name: "PvgWaybillDetail",
348 params: { data: val }, 348 params: { data: val },
349 }); 349 });
350 }, 350 },
......