diff --git a/src/api/contract_negotiation.ts b/src/api/contract_negotiation.ts new file mode 100644 index 0000000..e8e4e8e --- /dev/null +++ b/src/api/contract_negotiation.ts @@ -0,0 +1,26 @@ +import request from '@/utils/request' + +// 合同洽商列表 +export function apiContractNegotiationLists(params: any) { + return request.get({ url: '/contract.contract_negotiation/lists', params }) +} + +// 添加合同洽商 +export function apiContractNegotiationAdd(params: any) { + return request.post({ url: '/contract.contract_negotiation/add', params }) +} + +// 编辑合同洽商 +export function apiContractNegotiationEdit(params: any) { + return request.post({ url: '/contract.contract_negotiation/edit', params }) +} + +// 删除合同洽商 +export function apiContractNegotiationDelete(params: any) { + return request.post({ url: '/contract.contract_negotiation/delete', params }) +} + +// 合同洽商详情 +export function apiContractNegotiationDetail(params: any) { + return request.get({ url: '/contract.contract_negotiation/detail', params }) +} \ No newline at end of file diff --git a/src/api/procurement_contract.ts b/src/api/procurement_contract.ts new file mode 100644 index 0000000..60e4c08 --- /dev/null +++ b/src/api/procurement_contract.ts @@ -0,0 +1,26 @@ +import request from '@/utils/request' + +// 采购合同列表 +export function apiProcurementContractLists(params: any) { + return request.get({ url: '/contract.procurement_contract/lists', params }) +} + +// 添加采购合同 +export function apiProcurementContractAdd(params: any) { + return request.post({ url: '/contract.procurement_contract/add', params }) +} + +// 编辑采购合同 +export function apiProcurementContractEdit(params: any) { + return request.post({ url: '/contract.procurement_contract/edit', params }) +} + +// 删除采购合同 +export function apiProcurementContractDelete(params: any) { + return request.post({ url: '/contract.procurement_contract/delete', params }) +} + +// 采购合同详情 +export function apiProcurementContractDetail(params: any) { + return request.get({ url: '/contract.procurement_contract/detail', params }) +} \ No newline at end of file diff --git a/src/api/procurement_contract_detail.ts b/src/api/procurement_contract_detail.ts new file mode 100644 index 0000000..9d826fb --- /dev/null +++ b/src/api/procurement_contract_detail.ts @@ -0,0 +1,26 @@ +import request from '@/utils/request' + +// 采购合同-采购明细列表 +export function apiProcurementContractDetailLists(params: any) { + return request.get({ url: '/contract.procurement_contract_detail/lists', params }) +} + +// 添加采购合同-采购明细 +export function apiProcurementContractDetailAdd(params: any) { + return request.post({ url: '/contract.procurement_contract_detail/add', params }) +} + +// 编辑采购合同-采购明细 +export function apiProcurementContractDetailEdit(params: any) { + return request.post({ url: '/contract.procurement_contract_detail/edit', params }) +} + +// 删除采购合同-采购明细 +export function apiProcurementContractDetailDelete(params: any) { + return request.post({ url: '/contract.procurement_contract_detail/delete', params }) +} + +// 采购合同-采购明细详情 +export function apiProcurementContractDetailDetail(params: any) { + return request.get({ url: '/contract.procurement_contract_detail/detail', params }) +} \ No newline at end of file diff --git a/src/views/contract_negotiation/edit.vue b/src/views/contract_negotiation/edit.vue new file mode 100644 index 0000000..f9ec9b7 --- /dev/null +++ b/src/views/contract_negotiation/edit.vue @@ -0,0 +1,182 @@ + + + diff --git a/src/views/contract_negotiation/index.vue b/src/views/contract_negotiation/index.vue new file mode 100644 index 0000000..bb580b7 --- /dev/null +++ b/src/views/contract_negotiation/index.vue @@ -0,0 +1,148 @@ + + + + diff --git a/src/views/procurement_contract/edit.vue b/src/views/procurement_contract/edit.vue new file mode 100644 index 0000000..44fd9fb --- /dev/null +++ b/src/views/procurement_contract/edit.vue @@ -0,0 +1,198 @@ + + + diff --git a/src/views/procurement_contract/index.vue b/src/views/procurement_contract/index.vue new file mode 100644 index 0000000..aa32afa --- /dev/null +++ b/src/views/procurement_contract/index.vue @@ -0,0 +1,158 @@ + + + + diff --git a/src/views/procurement_contract_detail/edit.vue b/src/views/procurement_contract_detail/edit.vue new file mode 100644 index 0000000..1afb479 --- /dev/null +++ b/src/views/procurement_contract_detail/edit.vue @@ -0,0 +1,136 @@ + + + diff --git a/src/views/procurement_contract_detail/index.vue b/src/views/procurement_contract_detail/index.vue new file mode 100644 index 0000000..4f9211d --- /dev/null +++ b/src/views/procurement_contract_detail/index.vue @@ -0,0 +1,139 @@ + + + +