diff --git a/.gitignore b/.gitignore index 453c5bd..7376b52 100644 --- a/.gitignore +++ b/.gitignore @@ -29,5 +29,5 @@ components.d.ts *.njsproj *.sln *.sw? - +.zip .env.development diff --git a/dist.zip b/dist.zip deleted file mode 100644 index 5e4dc43..0000000 Binary files a/dist.zip and /dev/null differ diff --git a/src/components/flowDetail/index.vue b/src/components/flowDetail/index.vue index 5fe65f3..ff3bd18 100644 --- a/src/components/flowDetail/index.vue +++ b/src/components/flowDetail/index.vue @@ -96,37 +96,20 @@ const formData = reactive({ }, "step": [ { - "flow_step": 0, + "flow_step": '', "flow_user": "", - "is_active": 0, + "is_active": '', "flow_step_text": "" }, - { - "flow_step": 2, - "flow_user": "测试添加管理,测试", - "is_active": 1, - "flow_step_text": "指定用户(任意一人)" - }, - { - "flow_step": 2, - "flow_user": "测试添加管理,测试", - "is_active": 0, - "flow_step_text": "指定用户(任意一人)" - }, - { - "flow_step": 3, - "flow_user": "究极张伟,赵明军", - "is_active": 0, - "flow_step_text": "指定用户(多人会签)" - } + ], "record": [ { - "title": "admin提交了此申请", - "content": "提交申请", - "check_time": "2024-02-03", + "title": "", + "content": "", + "check_time": "", "status": 0, - "status_text": "发起申请" + "status_text": "" } ] }) @@ -143,21 +126,11 @@ const setFormData = async (data: Record) => { } -// 提交按钮 -const handleSubmit = async () => { - popupRef.value?.close() - emit('success') -} - //打开弹窗 const open = () => { popupRef.value?.open() } -// 关闭回调 -const handleClose = () => { - emit('close') -} // 撤销申请 const revokeFn = () => { @@ -168,7 +141,7 @@ const revokeFn = () => { } // 审核操作 -const checkFn = (i) => { +const checkFn = (i: Number) => { flowapproveCheck({ id: props.approve_id, check_status: i, @@ -176,13 +149,13 @@ const checkFn = (i) => { }) } -const getStep = (item, index) => { +const getStep = (item: Object, index: Number) => { if (index == 0) { return formData.create_user_name + '创建' } - else { return item.flow_step_text } + else { return item?.flow_step_text } } flowapproveDetail({ id: props.approve_id }).then(res => { - activeStep.value = res.step.findIndex(item => item.is_active == 1) + activeStep.value = res.step.findIndex((item: Object) => item?.is_active == 1) setFormData(res) }) diff --git a/src/views/InvoicingRequests/edit.vue b/src/views/InvoicingRequests/edit.vue index 54f240e..aa84783 100644 --- a/src/views/InvoicingRequests/edit.vue +++ b/src/views/InvoicingRequests/edit.vue @@ -1,7 +1,6 @@ @@ -56,21 +59,25 @@ + + + diff --git a/src/views/project_cost_budget/edit.vue b/src/views/project_cost_budget/edit.vue index 73af8f3..b4a0c62 100644 --- a/src/views/project_cost_budget/edit.vue +++ b/src/views/project_cost_budget/edit.vue @@ -90,11 +90,7 @@ - - - + @@ -167,9 +163,7 @@ const formData = reactive({ approve_detail: {}, approve_id: 0, }) -const flowFn = (e: any) => { - formData.approve_detail = e -} + const customEvent = (e: any) => { formData.project_id = e.id formData.project_code = e.project_code diff --git a/src/views/project_cost_budget/index.vue b/src/views/project_cost_budget/index.vue index d330435..9bbdbc3 100644 --- a/src/views/project_cost_budget/index.vue +++ b/src/views/project_cost_budget/index.vue @@ -50,6 +50,9 @@ @click="handleDelete(row.id)"> 删除 + + 详情 + @@ -59,20 +62,23 @@ + + + diff --git a/src/views/project_equipment_budget/edit.vue b/src/views/project_equipment_budget/edit.vue index 8c614e2..3f90ea1 100644 --- a/src/views/project_equipment_budget/edit.vue +++ b/src/views/project_equipment_budget/edit.vue @@ -94,12 +94,6 @@ - - - - @@ -177,9 +171,7 @@ const formData = reactive({ approve_detail: {}, approve_id: 0 }) -const flowFn = (e: any) => { - formData.approve_detail = e -} + const customEvent = (e) => { formData.project_id = e.id formData.project_code = e.project_code diff --git a/src/views/project_equipment_budget/index.vue b/src/views/project_equipment_budget/index.vue index fad291f..2d9a0c4 100644 --- a/src/views/project_equipment_budget/index.vue +++ b/src/views/project_equipment_budget/index.vue @@ -50,6 +50,10 @@ @click="handleDelete(row.id)"> 删除 + + 详情 + @@ -59,21 +63,24 @@ + + + diff --git a/src/views/project_expense_reimbursement/edit.vue b/src/views/project_expense_reimbursement/edit.vue index ee0ed53..2379ff9 100644 --- a/src/views/project_expense_reimbursement/edit.vue +++ b/src/views/project_expense_reimbursement/edit.vue @@ -187,10 +187,6 @@ - - @@ -330,11 +326,13 @@ const formData = reactive({ "account_name": "", "account": "" }, - approve_detail: {} + // approve_detail: { + // flow_type: 1, + // flow_path: 1, + // path: "asa/ssa" + // }, }) -const flowFn = (e: any) => { - formData.approve_detail = e -} + // 上传文件 const handleAvatarSuccess_four = (response: any) => { // @ts-ignore diff --git a/src/views/project_expense_reimbursement/index.vue b/src/views/project_expense_reimbursement/index.vue index 42545b8..f7e0ea4 100644 --- a/src/views/project_expense_reimbursement/index.vue +++ b/src/views/project_expense_reimbursement/index.vue @@ -51,6 +51,10 @@ @click="handleDelete(row.id)"> 删除 + + 详情 + @@ -60,6 +64,8 @@ + + @@ -67,13 +73,16 @@ import { usePaging } from '@/hooks/usePaging' import { useDictData } from '@/hooks/useDictOptions' import { apiProjectExpenseReimbursementLists, apiProjectExpenseReimbursementDelete, apiProjectExpenseReimbursementDetail } from '@/api/project_expense_reimbursement' -import { timeFormat } from '@/utils/util' import feedback from '@/utils/feedback' import EditPopup from './edit.vue' +import DetailPopup from './detail.vue' +const detailRef = shallowRef>() const editRef = shallowRef>() // 是否显示编辑框 const showEdit = ref(false) +const showDtail = ref(false) + // 查询条件 @@ -123,6 +132,15 @@ const handleDelete = async (id: number | any[]) => { await apiProjectExpenseReimbursementDelete({ id }) getLists() } +// 详情 +const handledetail = async (data: any) => { + let res = await apiProjectExpenseReimbursementDetail({ id: data.id }) + showDtail.value = true + await nextTick() + detailRef.value?.open() + detailRef.value?.setFormData(res) +} + import { useRoute } from "vue-router"; const route = useRoute() if (route.query?.listId) { diff --git a/src/views/project_expense_reimbursement_detail/edit.vue b/src/views/project_expense_reimbursement_detail/edit.vue index 410e886..7f2de67 100644 --- a/src/views/project_expense_reimbursement_detail/edit.vue +++ b/src/views/project_expense_reimbursement_detail/edit.vue @@ -65,6 +65,7 @@ const formData = reactive({ first_level_subject: "", amount: '', remark: '', + }) diff --git a/src/views/project_expense_reimbursement_detail/index.vue b/src/views/project_expense_reimbursement_detail/index.vue index 9bd00e1..7bacf0e 100644 --- a/src/views/project_expense_reimbursement_detail/index.vue +++ b/src/views/project_expense_reimbursement_detail/index.vue @@ -47,11 +47,12 @@ -
+
+
@@ -59,13 +60,14 @@ import { usePaging } from '@/hooks/usePaging' import { useDictData } from '@/hooks/useDictOptions' import { apiProjectExpenseReimbursementDetailLists, apiProjectExpenseReimbursementDetailDelete, apiProjectExpenseReimbursementDetailDetail } from '@/api/project_expense_reimbursement_detail' -import { timeFormat } from '@/utils/util' import feedback from '@/utils/feedback' import EditPopup from './edit.vue' +const detailRef = shallowRef>() const editRef = shallowRef>() // 是否显示编辑框 const showEdit = ref(false) +const showDtail = ref(false) // 查询条件 diff --git a/src/views/project_labor_budget/detail.vue b/src/views/project_labor_budget/detail.vue index 5655a6d..fd5059a 100644 --- a/src/views/project_labor_budget/detail.vue +++ b/src/views/project_labor_budget/detail.vue @@ -1,24 +1,23 @@ diff --git a/src/views/project_loan_apply/detail.vue b/src/views/project_loan_apply/detail.vue new file mode 100644 index 0000000..b44c06a --- /dev/null +++ b/src/views/project_loan_apply/detail.vue @@ -0,0 +1,124 @@ + + + + + diff --git a/src/views/project_loan_apply/edit.vue b/src/views/project_loan_apply/edit.vue index 8ee40f8..eeb307a 100644 --- a/src/views/project_loan_apply/edit.vue +++ b/src/views/project_loan_apply/edit.vue @@ -70,10 +70,7 @@ - - + @@ -139,12 +136,13 @@ const formData = reactive({ "account_name": "", "account": "" }, - approve_detail: {} - + // approve_detail: { + // flow_type: 1, + // flow_path: 1, + // path: "asa/ssa" + // } }) -const flowFn = (e: any) => { - formData.approve_detail = e -} + // 上传文件 const handleAvatarSuccess_four = (response: any) => { // @ts-ignore @@ -175,7 +173,7 @@ const formRules = reactive({ }], project_id: [{ required: true, - message: '请输入项目id', + message: '请选择项目', trigger: ['blur'] }], apply_user: [{ diff --git a/src/views/project_loan_apply/index.vue b/src/views/project_loan_apply/index.vue index a2aab0e..0dca7b9 100644 --- a/src/views/project_loan_apply/index.vue +++ b/src/views/project_loan_apply/index.vue @@ -49,6 +49,9 @@ @click="handleDelete(row.id)"> 删除 + + 详情 + @@ -58,6 +61,8 @@ + + @@ -68,11 +73,13 @@ import { apiProjectLoanApplyLists, apiProjectLoanApplyDelete, apiProjectLoanAppl import { timeFormat } from '@/utils/util' import feedback from '@/utils/feedback' import EditPopup from './edit.vue' +import DetailPopup from './detail.vue' +const detailRef = shallowRef>() const editRef = shallowRef>() // 是否显示编辑框 const showEdit = ref(false) - +const showDtail = ref(false) // 查询条件 const queryParams = reactive({ @@ -128,10 +135,22 @@ const handleDelete = async (id: number | any[]) => { await apiProjectLoanApplyDelete({ id }) getLists() } + +// 详情 +const handledetail = async (data: any) => { + let res = await apiProjectLoanApplyDetail({ id: data.id }) + showDtail.value = true + await nextTick() + detailRef.value?.open() + detailRef.value?.setFormData(res) +} + + + import { useRoute } from "vue-router"; const route = useRoute() if (route.query?.listId) { - // handledetail({ id: route.query.listId }) + handledetail({ id: route.query.listId }) } getLists() diff --git a/src/views/project_material_budget/edit.vue b/src/views/project_material_budget/edit.vue index 6129da0..3c7e21a 100644 --- a/src/views/project_material_budget/edit.vue +++ b/src/views/project_material_budget/edit.vue @@ -121,10 +121,7 @@ - - + @@ -179,9 +176,7 @@ const formData = reactive({ annex: [], approve_detail: {} }) -const flowFn = (e: any) => { - formData.approve_detail = e -} + //获取值 const customEvent = (e) => { diff --git a/src/views/project_settlement/edit.vue b/src/views/project_settlement/edit.vue index e5f8277..e9058d8 100644 --- a/src/views/project_settlement/edit.vue +++ b/src/views/project_settlement/edit.vue @@ -53,10 +53,7 @@ - - + @@ -189,9 +186,7 @@ const formData = reactive({ annex: [], approve_detail: {} }) -const flowFn = (e: any) => { - formData.approve_detail = e -} + const checkPhone = (rule: any, value: any, callback: (arg0: Error) => any) => { const phoneReg = /^1[3|4|5|7|8][0-9]{9}$/ // if (!value) { diff --git a/src/views/project_subcontract_settlement/edit.vue b/src/views/project_subcontract_settlement/edit.vue index 42a3e52..d3e277d 100644 --- a/src/views/project_subcontract_settlement/edit.vue +++ b/src/views/project_subcontract_settlement/edit.vue @@ -43,10 +43,7 @@ - - + @@ -165,12 +162,14 @@ const formData = reactive({ settlement_date: '', remark: '', annex: [], - approve_detail: {} + approve_detail: { + flow_type: 1, + flow_path: 1, + path: "asa/ssa" + } }) -const flowFn = (e: any) => { - formData.approve_detail = e -} + //监听输入 const amountinput = (e) => { diff --git a/src/views/project_subpackage_budget/edit.vue b/src/views/project_subpackage_budget/edit.vue index d717238..9141ce3 100644 --- a/src/views/project_subpackage_budget/edit.vue +++ b/src/views/project_subpackage_budget/edit.vue @@ -105,10 +105,7 @@ - - + @@ -166,9 +163,7 @@ const formData = reactive({ annex: [], approve_detail: {} }) -const flowFn = (e: any) => { - formData.approve_detail = e -} + //获取值 const customEvent = (e) => { diff --git a/src/views/project_total_budget/edit.vue b/src/views/project_total_budget/edit.vue index 744eb85..05a86e7 100644 --- a/src/views/project_total_budget/edit.vue +++ b/src/views/project_total_budget/edit.vue @@ -136,13 +136,7 @@ - - - + @@ -446,9 +440,7 @@ const formData = reactive({ approve_detail: {} }) -const flowFn = (e: any) => { - formData.approve_detail = e -} + // 表单验证 const formRules = reactive({ diff --git a/src/views/project_travel_reimbursement/detail.vue b/src/views/project_travel_reimbursement/detail.vue new file mode 100644 index 0000000..d168193 --- /dev/null +++ b/src/views/project_travel_reimbursement/detail.vue @@ -0,0 +1,163 @@ + + + + + diff --git a/src/views/project_travel_reimbursement/edit.vue b/src/views/project_travel_reimbursement/edit.vue index 1e38448..64d1ab9 100644 --- a/src/views/project_travel_reimbursement/edit.vue +++ b/src/views/project_travel_reimbursement/edit.vue @@ -194,10 +194,7 @@ - - + @@ -352,11 +349,13 @@ const formData = reactive({ "account_name": "", "account": "" }, - approve_detail: {} + // approve_detail: { + // flow_type: 1, + // flow_path: 1, + // path: "asa/ssa" + // }, }) -const flowFn = (e: any) => { - formData.approve_detail = e -} + // 上传文件 const handleAvatarSuccess_four = (response: any) => { // @ts-ignore @@ -377,12 +376,12 @@ const handleAvatarSuccess_four1 = (response: any) => { const formRules = reactive({ trip_apply_id: [{ required: true, - message: '请输入出差申请单id', + message: '不能为空', trigger: ['blur'] }], project_id: [{ required: true, - message: '请输入项目id', + message: '不能为空', trigger: ['blur'] }], reimbursement_type: [{ @@ -392,7 +391,7 @@ const formRules = reactive({ }], loan_apply_id: [{ required: true, - message: '请输入借款单id', + message: '不能为空', trigger: ['blur'] }], reimbursement_amount: [{ @@ -437,7 +436,7 @@ const formRules = reactive({ }], bank_account_id: [{ required: true, - message: '请输入付款银行账户id', + message: '不能为空', trigger: ['blur'] }] }) diff --git a/src/views/project_travel_reimbursement/index.vue b/src/views/project_travel_reimbursement/index.vue index fdbbd37..964ef24 100644 --- a/src/views/project_travel_reimbursement/index.vue +++ b/src/views/project_travel_reimbursement/index.vue @@ -2,18 +2,11 @@
- - - - - - + - - - + @@ -58,6 +51,10 @@ @click="handleDelete(row.id)"> 删除 + + 详情 + @@ -67,6 +64,8 @@
+ + @@ -74,14 +73,16 @@ import { usePaging } from '@/hooks/usePaging' import { useDictData } from '@/hooks/useDictOptions' import { apiProjectTravelReimbursementLists, apiProjectTravelReimbursementDelete, apiProjectTravelReimbursementDetail } from '@/api/project_travel_reimbursement' -import { timeFormat } from '@/utils/util' import feedback from '@/utils/feedback' import EditPopup from './edit.vue' +import DetailPopup from './detail.vue' + +const detailRef = shallowRef>() const editRef = shallowRef>() // 是否显示编辑框 const showEdit = ref(false) - +const showDtail = ref(false) // 查询条件 const queryParams = reactive({ @@ -132,6 +133,14 @@ const handleDelete = async (id: number | any[]) => { getLists() } +// 详情 +const handledetail = async (data: any) => { + let res = await apiProjectTravelReimbursementDetail({ id: data.id }) + showDtail.value = true + await nextTick() + detailRef.value?.open() + detailRef.value?.setFormData(res) +} import { useRoute } from "vue-router"; const route = useRoute() if (route.query?.listId) { diff --git a/src/views/project_trip_apply/detail.vue b/src/views/project_trip_apply/detail.vue new file mode 100644 index 0000000..b6afb2d --- /dev/null +++ b/src/views/project_trip_apply/detail.vue @@ -0,0 +1,129 @@ + + + + + diff --git a/src/views/project_trip_apply/edit.vue b/src/views/project_trip_apply/edit.vue index 82379e1..f9c0b47 100644 --- a/src/views/project_trip_apply/edit.vue +++ b/src/views/project_trip_apply/edit.vue @@ -60,10 +60,7 @@ - - + @@ -78,13 +75,10 @@ import type { FormInstance } from 'element-plus' import Popup from '@/components/popup/index.vue' import { apiProjectTripApplyAdd, apiProjectTripApplyEdit, apiProjectTripApplyDetail } from '@/api/project_trip_apply' -import { timeFormat } from '@/utils/util' import type { PropType } from 'vue' import projectDialog from '@/components/project/index.vue' import configs from "@/config" import useUserStore from "@/stores/modules/user"; -import { deptAll } from '@/api/org/department' -import { getAll } from '@/api/org/organization' const base_url = configs.baseUrl + configs.urlPrefix @@ -122,11 +116,13 @@ const formData = reactive({ "remark": "", "annex": [], days: "", - approve_detail: {} + // approve_detail: { + // flow_type: 1, + // flow_path: 1, + // path: "asas/asa" + // } }) -const flowFn = (e: any) => { - formData.approve_detail = e -} + // 上传文件 const handleAvatarSuccess_four = (response: any) => { // @ts-ignore @@ -188,6 +184,7 @@ const setFormData = async (data: Record) => { } } formData.traffic = String(formData.traffic) + formData.annex = [] } const getDetail = async (row: Record) => { diff --git a/src/views/project_trip_apply/index.vue b/src/views/project_trip_apply/index.vue index 95f5bda..c44864b 100644 --- a/src/views/project_trip_apply/index.vue +++ b/src/views/project_trip_apply/index.vue @@ -63,6 +63,9 @@ @click="handleDelete(row.id)"> 删除 + + 详情 + @@ -72,6 +75,8 @@ + + @@ -83,9 +88,15 @@ import { timeFormat } from '@/utils/util' import feedback from '@/utils/feedback' import EditPopup from './edit.vue' import { nextTick, reactive, ref } from "vue" +import DetailPopup from './detail.vue' + +const detailRef = shallowRef>() const editRef = shallowRef>() // 是否显示编辑框 const showEdit = ref(false) +const showDtail = ref(false) + + // 查询条件 @@ -136,6 +147,15 @@ const handleDelete = async (id: number | any[]) => { await apiProjectTripApplyDelete({ id }) getLists() } + +// 详情 +const handledetail = async (data: any) => { + let res = await apiProjectTripApplyDetail({ id: data.id }) + showDtail.value = true + await nextTick() + detailRef.value?.open() + detailRef.value?.setFormData(res) +} import { useRoute } from "vue-router"; const route = useRoute() if (route.query?.listId) { diff --git a/src/views/recordsPayment/edit.vue b/src/views/recordsPayment/edit.vue index b354e44..6e651ac 100644 --- a/src/views/recordsPayment/edit.vue +++ b/src/views/recordsPayment/edit.vue @@ -156,10 +156,7 @@ - - + @@ -304,15 +301,11 @@ const formData = reactive({ return_desc: "", receiver: "", bank_account_id: "", - remark: "", annex: [], - approve_detail: {} }) -const flowFn = (e: any) => { - formData.approve_detail = e -} + // 表单验证 const formRules = reactive({ diff --git a/src/views/refund/edit.vue b/src/views/refund/edit.vue index cb6c2ad..0e3605b 100644 --- a/src/views/refund/edit.vue +++ b/src/views/refund/edit.vue @@ -149,10 +149,7 @@ - - + @@ -284,13 +281,8 @@ const formData = reactive({ "account_name": "", "account": "" }, - approve_detail: {} - - }) -const flowFn = (e: any) => { - formData.approve_detail = e -} + // 表单验证 const formRules = reactive({ diff --git a/src/views/refundbidDeposit/edit.vue b/src/views/refundbidDeposit/edit.vue index 70e341d..f43702b 100644 --- a/src/views/refundbidDeposit/edit.vue +++ b/src/views/refundbidDeposit/edit.vue @@ -118,10 +118,7 @@ - - + @@ -250,9 +247,7 @@ const formData = reactive({ approve_detail: {} }) -const flowFn = (e: any) => { - formData.approve_detail = e -} + // 表单验证 const formRules = reactive({ diff --git a/src/views/remittance/edit.vue b/src/views/remittance/edit.vue index 86a5b1d..b6d85ee 100644 --- a/src/views/remittance/edit.vue +++ b/src/views/remittance/edit.vue @@ -99,10 +99,7 @@ - - + @@ -207,12 +204,9 @@ const formData = reactive({ return_duty_id: '', remark: "", annex: [], - approve_detail: {} }) -const flowFn = (e: any) => { - formData.approve_detail = e -} + // 表单验证 const formRules = reactive({ diff --git a/src/views/subcontracting_contract_negotiation/edit.vue b/src/views/subcontracting_contract_negotiation/edit.vue index f90f01e..4d9a866 100644 --- a/src/views/subcontracting_contract_negotiation/edit.vue +++ b/src/views/subcontracting_contract_negotiation/edit.vue @@ -143,10 +143,7 @@ - - + @@ -279,15 +276,9 @@ const formData = reactive({ negotiation_quotation: [], negotiation_basis: [], negotiation_detail: "", - "sign_date": "string", - approve_detail: { - - } - + "sign_date": "", }) -const flowFn = (e: any) => { - formData.approve_detail = e -} + const customEvent = (e: any) => { contract_no.value = e.contract_no; supplier_name.value = e.supplier_name;