diff --git a/src/api/emis/emisWaybillOperLog.js b/src/api/emis/emisWaybillOperLog.js new file mode 100644 index 00000000..afcc8244 --- /dev/null +++ b/src/api/emis/emisWaybillOperLog.js @@ -0,0 +1,53 @@ +import request from '@/utils/request' + +// 查询运单操作日志列表 +export function listEmisWaybillOperLog(query) { + return request({ + url: '/emis/emisWaybillOperLog/list', + method: 'get', + params: query + }) +} + + +export function getWaybillOperLogList(billCode) { + return request({ + url: '/emis/emisWaybillOperLog/getWaybillOperLogList', + method: 'get', + params: {billCode:billCode} + }) +} + +// 查询运单操作日志详细 +export function getEmisWaybillOperLog(id) { + return request({ + url: '/emis/emisWaybillOperLog/' + id, + method: 'get' + }) +} + +// 新增运单操作日志 +export function addEmisWaybillOperLog(data) { + return request({ + url: '/emis/emisWaybillOperLog', + method: 'post', + data: data + }) +} + +// 修改运单操作日志 +export function updateEmisWaybillOperLog(data) { + return request({ + url: '/emis/emisWaybillOperLog', + method: 'put', + data: data + }) +} + +// 删除运单操作日志 +export function delEmisWaybillOperLog(id) { + return request({ + url: '/emis/emisWaybillOperLog/' + id, + method: 'delete' + }) +} diff --git a/src/views/emis/customerService/operLogList.vue b/src/views/emis/customerService/operLogList.vue new file mode 100644 index 00000000..2d637f04 --- /dev/null +++ b/src/views/emis/customerService/operLogList.vue @@ -0,0 +1,121 @@ + + + + + + + + + + + + {{ (scope.row.opDate) }} + + + + + {{scope.row.opDesc}} + + + + + + + + + + + + + diff --git a/src/views/emis/customerService/traceWaybillDetailView.vue b/src/views/emis/customerService/traceWaybillDetailView.vue index 86943faa..ef261c3d 100644 --- a/src/views/emis/customerService/traceWaybillDetailView.vue +++ b/src/views/emis/customerService/traceWaybillDetailView.vue @@ -60,10 +60,10 @@ - + - + @@ -73,6 +73,8 @@ import TraceRecordList from './traceRecordList.vue'; import ProblemList from './problemList.vue'; import BillPicList from './billPicList.vue'; +import OperLogList from './operLogList.vue'; + import WaybillDetailReadOnly from '@/views/emis/emisWaybill/waybillDetailReadOnly.vue'; import { getWaybillDetail,checkIsCanViewBillDetail } from "@/api/emis/emisWaybill"; @@ -94,7 +96,8 @@ export default { TraceRecordList, WaybillDetailReadOnly, ProblemList, - BillPicList + BillPicList, + OperLogList }, dicts: [], data() { diff --git a/src/views/emis/emisWaybillOperLog/emisWaybillOperLogForm.vue b/src/views/emis/emisWaybillOperLog/emisWaybillOperLogForm.vue new file mode 100644 index 00000000..0287c208 --- /dev/null +++ b/src/views/emis/emisWaybillOperLog/emisWaybillOperLogForm.vue @@ -0,0 +1,200 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 确 定 + 取 消 + + + + + + diff --git a/src/views/emis/emisWaybillOperLog/index.vue b/src/views/emis/emisWaybillOperLog/index.vue new file mode 100644 index 00000000..ba1b6cc8 --- /dev/null +++ b/src/views/emis/emisWaybillOperLog/index.vue @@ -0,0 +1,488 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 新增 + + + + 删除 + + + + + + + + + + + + + + + + + + + + + + + + + 修改 + + + + + + + + + + + + + + + + + +