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 @@ + + + diff --git a/src/views/order/beforehand_order/editProduct.vue b/src/views/order/beforehand_order/editProduct.vue new file mode 100644 index 000000000..e844d9667 --- /dev/null +++ b/src/views/order/beforehand_order/editProduct.vue @@ -0,0 +1,139 @@ + + + diff --git a/src/views/order/beforehand_order/index.vue b/src/views/order/beforehand_order/index.vue index 6cbf3b049..e7075c83e 100644 --- a/src/views/order/beforehand_order/index.vue +++ b/src/views/order/beforehand_order/index.vue @@ -2,34 +2,14 @@
- + - - - - - 重置 @@ -60,21 +40,17 @@ }" class="ml-4" > - 入库 + 添加
- - - + - - @@ -83,14 +59,6 @@ 详情 - - 编辑 - + /> --> --> + />
@@ -131,12 +99,12 @@ import { apiWarehouseOrderLists, apiWarehouseOrderDelete } from '@/api/warehouse import { timeFormat } from '@/utils/util' import feedback from '@/utils/feedback' // import EditPopup from './edit.vue' -// import DetailsPopup from './details.vue' +import DetailsPopup from './details.vue' import { apiSystemStoreLists } from '@/api/system_store' import moment from 'moment' -import { apiSupplierLists } from '@/api/supplier' +import { apiBeforehandOrderLists } from '@/api/beforehand_order' // const editRef = shallowRef>() -// const detailsRef = shallowRef>() +const detailsRef = shallowRef>() // 是否显示编辑框 const showEdit = ref(false) @@ -144,7 +112,7 @@ const showDetails = ref(false) // 查询条件 const queryParams = reactive({ - warehouse_id: '', + order_id: '', product_name: '', financial_pm: 1, store_id: '', @@ -166,7 +134,7 @@ const { dictData } = useDictData('') // 分页相关 const { pager, getLists, resetParams, resetPage } = usePaging({ - fetchFun: apiWarehouseOrderLists, + fetchFun: apiBeforehandOrderLists, params: queryParams }) @@ -235,7 +203,7 @@ const userloading = ref(false) const userList = ref([]) const remoteMethodUser = (e = '') => { userloading.value = true - apiSupplierLists({ mer_name: e }) + apiBeforehandOrderLists({ mer_name: e }) .then((res) => { userList.value = res.lists setTimeout(() => {