diff --git a/.env.development b/.env.development
index 2eb6f3946..522e48fce 100644
--- a/.env.development
+++ b/.env.development
@@ -6,6 +6,6 @@ VITE_NOW_TYPE = 'dist'
# VITE_APP_BASE_URL='http://192.168.1.10:8546'
# VITE_APP_BASE_URL='https://test-multi-store.lihaink.cn'
# VITE_APP_BASE_URL='https://multi-store.lihaink.cn'
-VITE_APP_BASE_URL='http://192.168.1.6:8545'
+VITE_APP_BASE_URL='http://192.168.1.22:8545'
# VITE_APP_BASE_URL='https://ceshi-multi-store.lihaink.cn'
diff --git a/src/api/beforehand_order.ts b/src/api/beforehand_order.ts
new file mode 100644
index 000000000..78104d0ff
--- /dev/null
+++ b/src/api/beforehand_order.ts
@@ -0,0 +1,26 @@
+import request from '@/utils/request'
+
+// 预订单表列表
+export function apiBeforehandOrderLists(params: any) {
+ return request.get({ url: '/beforehand_order/beforehandorder/lists', params })
+}
+
+// 添加预订单表
+export function apiBeforehandOrderAdd(params: any) {
+ return request.post({ url: '/beforehand_order/beforehandorder/add', params })
+}
+
+// 编辑预订单表
+export function apiBeforehandOrderEdit(params: any) {
+ return request.post({ url: '/beforehand_order/beforehandorder/edit', params })
+}
+
+// 删除预订单表
+export function apiBeforehandOrderDelete(params: any) {
+ return request.post({ url: '/beforehand_order/beforehandorder/delete', params })
+}
+
+// 预订单表详情
+export function apiBeforehandOrderDetail(params: any) {
+ return request.get({ url: '/beforehand_order/beforehandorder/detail', params })
+}
diff --git a/src/api/beforehand_order_cart_info.ts b/src/api/beforehand_order_cart_info.ts
new file mode 100644
index 000000000..fd7218e37
--- /dev/null
+++ b/src/api/beforehand_order_cart_info.ts
@@ -0,0 +1,38 @@
+import request from '@/utils/request'
+
+// 预订单购物详情表列表
+export function apiBeforehandOrderCartInfoLists(params: any) {
+ return request.get({ url: '/beforehand_order_cart_info/beforehandordercartinfo/lists', params })
+}
+
+// 添加预订单购物详情表
+export function apiBeforehandOrderCartInfoAdd(params: any) {
+ return request.post({ url: '/beforehand_order_cart_info/beforehandordercartinfo/add', params })
+}
+
+// 编辑预订单购物详情表
+export function apiBeforehandOrderCartInfoEdit(params: any) {
+ return request.post({ url: '/beforehand_order_cart_info/beforehandordercartinfo/edit', params })
+}
+export function apiBeforehandOrderCartInfoAppendAdd(params: any) {
+ return request.post({
+ url: '/beforehand_order_cart_info/beforehandordercartinfo/append_add',
+ params
+ })
+}
+
+// 删除预订单购物详情表
+export function apiBeforehandOrderCartInfoDelete(params: any) {
+ return request.post({
+ url: '/beforehand_order_cart_info/beforehandordercartinfo/delete',
+ params
+ })
+}
+
+// 预订单购物详情表详情
+export function apiBeforehandOrderCartInfoDetail(params: any) {
+ return request.get({
+ url: '/beforehand_order_cart_info/beforehandordercartinfo/detail',
+ params
+ })
+}
diff --git a/src/views/order/beforehand_order/add.vue b/src/views/order/beforehand_order/add.vue
index 8cb144673..06141d57f 100644
--- a/src/views/order/beforehand_order/add.vue
+++ b/src/views/order/beforehand_order/add.vue
@@ -93,7 +93,7 @@ import { timeFormat } from '@/utils/util'
import type { PropType } from 'vue'
import { onMounted } from 'vue'
import { useRouter, useRoute } from 'vue-router'
-import { apiWarehouseOrderAdd } from '@/api/warehouse_order'
+import { apiBeforehandOrderAdd } from '@/api/beforehand_order'
import { apiWarehouseLists } from '@/api/warehouse'
import { apiSupplierLists } from '@/api/supplier'
@@ -122,12 +122,6 @@ const formData = reactive({
completed_amount: 0
})
-const warehouse = () => {
- apiWarehouseLists({}).then((res) => {
- warehouseList.value = res.lists
- })
-}
-
const showProduct = ref(false) // 选择商品列表是否显示
// 商品列表
const productList = ref([])
@@ -183,7 +177,7 @@ const handleSubmit = async () => {
expiration_date: item.expiration_date
}
})
- apiWarehouseOrderAdd({
+ apiBeforehandOrderAdd({
product_arr,
...formData
}).then((res) => {
@@ -192,7 +186,7 @@ const handleSubmit = async () => {
// ElMessage.success(res.msg)
setTimeout(() => {
router.push({
- path: '/warehouse/warehouse_order'
+ path: '/order/beforehand_order'
})
}, 2000)
// } else {
@@ -200,5 +194,4 @@ const handleSubmit = async () => {
// }
})
}
-warehouse()
diff --git a/src/views/order/beforehand_order/details.vue b/src/views/order/beforehand_order/details.vue
new file mode 100644
index 000000000..bac145594
--- /dev/null
+++ b/src/views/order/beforehand_order/details.vue
@@ -0,0 +1,363 @@
+
+