diff --git a/src/api/business/outbound.js b/src/api/business/outbound.js
index 07494cea..b6b61770 100644
--- a/src/api/business/outbound.js
+++ b/src/api/business/outbound.js
@@ -18,6 +18,15 @@ export const getApplyDetailsApi = (data = {}) => {
})
}
+// 共享出库-列表
+export const getOrderByIdApi = (data = {}) => {
+ return request({
+ url: '/material-mall/decChange/getOrderById',
+ method: 'get',
+ params: data
+ })
+}
+
export const out = (data = {}) => {
return request({
url: '/material-mall/decChange/out',
diff --git a/src/views/EquipmentRetireApply/index.vue b/src/views/EquipmentRetireApply/index.vue
index 31b96ecf..1757c55c 100644
--- a/src/views/EquipmentRetireApply/index.vue
+++ b/src/views/EquipmentRetireApply/index.vue
@@ -27,6 +27,7 @@
range-separator="至"
start-placeholder="开始日期"
end-placeholder="结束日期"
+ value-format="yyyy-MM-dd"
style="width: 100%"
/>
@@ -114,6 +115,7 @@ export default {
methods: {
// 获取退役申请列表
async getRetireApplyList() {
+ console.log('🚀 ~ this.queryParams.dateRange:', this.queryParams.dateRange)
const params = {
...this.queryParams,
startDate: this.queryParams.dateRange ? this.queryParams.dateRange[0] : undefined,
diff --git a/src/views/EquipmentSharedLease/order/index.vue b/src/views/EquipmentSharedLease/order/index.vue
index 19735412..0a983eb8 100644
--- a/src/views/EquipmentSharedLease/order/index.vue
+++ b/src/views/EquipmentSharedLease/order/index.vue
@@ -780,7 +780,8 @@ export default {
})
},
handleOut(item) {
- this.$router.push({ path: '/equipment/euq-out', query: { maIds: item.maIds } })
+ console.log('🚀 ~ item:', item)
+ this.$router.push({ path: '/equipmentShared/order/sharedOutList', query: { id: item.orderId } })
},
//订单详情
handleViewOrder(row) {
diff --git a/src/views/EquipmentSharedLease/order/sharedOutList.vue b/src/views/EquipmentSharedLease/order/sharedOutList.vue
new file mode 100644
index 00000000..b8d370c8
--- /dev/null
+++ b/src/views/EquipmentSharedLease/order/sharedOutList.vue
@@ -0,0 +1,409 @@
+
+
+