删除多余模块
This commit is contained in:
parent
ab81592423
commit
3ccd3341da
@ -1,26 +0,0 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 银行账户列表
|
||||
export function bankaccountLists(params: any) {
|
||||
return request.get({ url: '/bank.bank_account/lists', params })
|
||||
}
|
||||
|
||||
// 添加银行账户
|
||||
export function bankaccountAdd(params: any) {
|
||||
return request.post({ url: '/bank.bank_account/add', params })
|
||||
}
|
||||
|
||||
// 编辑银行账户
|
||||
export function bankaccountEdit(params: any) {
|
||||
return request.post({ url: '/bank.bank_account/edit', params })
|
||||
}
|
||||
|
||||
// 删除银行账户
|
||||
export function bankaccountDelete(params: any) {
|
||||
return request.post({ url: '/bank.bank_account/delete', params })
|
||||
}
|
||||
|
||||
//银行账户详情
|
||||
export function bankaccountDetail(params: any) {
|
||||
return request.get({ url: '/bank.bank_account/detail', params })
|
||||
}
|
@ -1,31 +0,0 @@
|
||||
import request from "@/utils/request";
|
||||
|
||||
// 项目咨询--基本信息列表
|
||||
export function apiConsultProjectLists(params: any) {
|
||||
return request.get({ url: "/consult_basic.consult_project/lists", params });
|
||||
}
|
||||
|
||||
// 添加项目咨询--基本信息
|
||||
export function apiConsultProjectAdd(params: any) {
|
||||
return request.post({ url: "/consult_basic.consult_project/add", params });
|
||||
}
|
||||
|
||||
// 编辑项目咨询--基本信息
|
||||
export function apiConsultProjectEdit(params: any) {
|
||||
return request.post({ url: "/consult_basic.consult_project/edit", params });
|
||||
}
|
||||
|
||||
// 删除项目咨询--基本信息
|
||||
export function apiConsultProjectDelete(params: any) {
|
||||
return request.post({ url: "/consult_basic.consult_project/delete", params });
|
||||
}
|
||||
|
||||
// 项目咨询--基本信息详情
|
||||
export function apiConsultProjectDetail(params: any) {
|
||||
return request.get({ url: "/consult_basic.consult_project/detail", params });
|
||||
}
|
||||
|
||||
//apiConsultProjectSearch
|
||||
export function apiConsultProjectSearch(params: any) {
|
||||
return request.get({ url: "/consult_basic.consult_project/datas", params });
|
||||
}
|
@ -1,49 +0,0 @@
|
||||
import request from "@/utils/request";
|
||||
|
||||
// 待立项造价项目列表
|
||||
export function apiCostApprovedProjectLists(params: any) {
|
||||
return request.get({
|
||||
url: "/cost_project.cost_approved_project/lists",
|
||||
params,
|
||||
});
|
||||
}
|
||||
|
||||
// 添加待立项造价项目
|
||||
export function apiCostApprovedProjectAdd(params: any) {
|
||||
return request.post({
|
||||
url: "/cost_project.cost_approved_project/add",
|
||||
params,
|
||||
});
|
||||
}
|
||||
|
||||
// 编辑待立项造价项目
|
||||
export function apiCostApprovedProjectEdit(params: any) {
|
||||
return request.post({
|
||||
url: "/cost_project.cost_approved_project/edit",
|
||||
params,
|
||||
});
|
||||
}
|
||||
|
||||
// 删除待立项造价项目
|
||||
export function apiCostApprovedProjectDelete(params: any) {
|
||||
return request.post({
|
||||
url: "/cost_project.cost_approved_project/delete",
|
||||
params,
|
||||
});
|
||||
}
|
||||
|
||||
// 待立项造价项目详情
|
||||
export function apiCostApprovedProjectDetail(params: any) {
|
||||
return request.get({
|
||||
url: "/cost_project.cost_approved_project/detail",
|
||||
params,
|
||||
});
|
||||
}
|
||||
|
||||
// 待立项造价项目列表
|
||||
export function apiCostApprovedProjectSerch(params: any) {
|
||||
return request.get({
|
||||
url: "/cost_project.cost_approved_project/datas",
|
||||
params,
|
||||
});
|
||||
}
|
@ -1,32 +0,0 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 费用预算表列表
|
||||
export function apiCustomLists(params: any) {
|
||||
return request.get({ url: '/cost.cost_budget/lists', params })
|
||||
}
|
||||
|
||||
// 添加费用预算表
|
||||
export function apiCustomAdd(params: any) {
|
||||
return request.post({ url: '/cost.cost_budget/add', params })
|
||||
}
|
||||
|
||||
// 编辑费用预算表
|
||||
export function apiCustomEdit(params: any) {
|
||||
return request.post({ url: '/cost.cost_budget/edit', params })
|
||||
}
|
||||
|
||||
// 删除费用预算表
|
||||
export function apiCustomDelete(params: any) {
|
||||
return request.post({ url: '/cost.cost_budget/delete', params })
|
||||
}
|
||||
|
||||
// 费用预算表详情
|
||||
export function apiCustomDetail(params: any) {
|
||||
return request.get({ url: '/cost.cost_budget/detail', params })
|
||||
}
|
||||
|
||||
|
||||
//费用预算表详情列表
|
||||
export function apiCustomdetailDetail(params: any) {
|
||||
return request.get({ url: '/cost.cost_budget_detail/lists', params })
|
||||
}
|
@ -1,31 +0,0 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 预算调整表列表
|
||||
export function apiadjustLists(params: any) {
|
||||
return request.get({ url: '/cost.cost_budget_adjust/lists', params })
|
||||
}
|
||||
|
||||
// 添加预算调整表
|
||||
export function apiadjustAdd(params: any) {
|
||||
return request.post({ url: '/cost.cost_budget_adjust/add', params })
|
||||
}
|
||||
|
||||
// 编辑预算调整表
|
||||
export function apiadjustEdit(params: any) {
|
||||
return request.post({ url: '/cost.cost_budget_adjust/edit', params })
|
||||
}
|
||||
|
||||
// 删除预算调整表
|
||||
export function apiadjustDelete(params: any) {
|
||||
return request.post({ url: '/cost.cost_budget_adjust/delete', params })
|
||||
}
|
||||
|
||||
// 预算调整表详情
|
||||
export function apiadjustDetail(params: any) {
|
||||
return request.get({ url: '/cost.cost_budget_adjust/detail', params })
|
||||
}
|
||||
|
||||
// 预算调整表详情列表
|
||||
export function apiadjustdetailDetail(params: any) {
|
||||
return request.get({ url: '/cost.cost_budget_adjust_detail/lists', params })
|
||||
}
|
@ -1,26 +0,0 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 预算明细列表
|
||||
export function apiCostBudgetDetailLists(params: any) {
|
||||
return request.get({ url: '/cost.cost_budget_detail/lists', params })
|
||||
}
|
||||
|
||||
// 添加预算明细
|
||||
export function apiCostBudgetDetailAdd(params: any) {
|
||||
return request.post({ url: '/cost.cost_budget_detail/add', params })
|
||||
}
|
||||
|
||||
// 编辑预算明细
|
||||
export function apiCostBudgetDetailEdit(params: any) {
|
||||
return request.post({ url: '/cost.cost_budget_detail/edit', params })
|
||||
}
|
||||
|
||||
// 删除预算明细
|
||||
export function apiCostBudgetDetailDelete(params: any) {
|
||||
return request.post({ url: '/cost.cost_budget_detail/delete', params })
|
||||
}
|
||||
|
||||
// 预算明细详情
|
||||
export function apiCostBudgetDetailDetail(params: any) {
|
||||
return request.get({ url: '/cost.cost_budget_detail/detail', params })
|
||||
}
|
@ -1,31 +0,0 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 造价项目台账列表
|
||||
export function apiCostProjectLists(params: any) {
|
||||
return request.get({ url: '/cost_project.cost_project/lists', params })
|
||||
}
|
||||
|
||||
// 添加造价项目台账
|
||||
export function apiCostProjectAdd(params: any) {
|
||||
return request.post({ url: '/cost_project.cost_project/add', params })
|
||||
}
|
||||
|
||||
// 编辑造价项目台账
|
||||
export function apiCostProjectEdit(params: any) {
|
||||
return request.post({ url: '/cost_project.cost_project/edit', params })
|
||||
}
|
||||
|
||||
// 删除造价项目台账
|
||||
export function apiCostProjectDelete(params: any) {
|
||||
return request.post({ url: '/cost_project.cost_project/delete', params })
|
||||
}
|
||||
|
||||
// 造价项目台账详情
|
||||
export function apiCostProjectDetail(params: any) {
|
||||
return request.get({ url: '/cost_project.cost_project/detail', params })
|
||||
}
|
||||
|
||||
// 造价项目台账下拉列表
|
||||
export function apiCostProjectDatas(params: any) {
|
||||
return request.get({ url: '/cost_project.cost_project/datas', params })
|
||||
}
|
@ -1,27 +0,0 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 费用科目表列表
|
||||
export function apisubjectLists(params: any) {
|
||||
return request.get({ url: '/cost.cost_subject/lists', params })
|
||||
}
|
||||
|
||||
|
||||
// 添加费用科目表
|
||||
export function apisubjectAdd(params: any) {
|
||||
return request.post({ url: '/cost.cost_subject/add', params })
|
||||
}
|
||||
|
||||
// 编辑费用科目表
|
||||
export function apisubjectEdit(params: any) {
|
||||
return request.post({ url: '/cost.cost_subject/edit', params })
|
||||
}
|
||||
|
||||
// 删除费用科目表
|
||||
export function apisubjectDelete(params: any) {
|
||||
return request.post({ url: '/cost.cost_subject/delete', params })
|
||||
}
|
||||
|
||||
// 费用科目表详情
|
||||
export function apisubjectDetail(params: any) {
|
||||
return request.get({ url: '/cost.cost_subject/detail', params })
|
||||
}
|
@ -1,32 +0,0 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 财务管理--借款单列表
|
||||
export function apiFinancialBorrowMoneyLists(params: any) {
|
||||
return request.get({ url: '/financial.financial_borrow_money/lists', params })
|
||||
}
|
||||
|
||||
// 添加财务管理--借款单
|
||||
export function apiFinancialBorrowMoneyAdd(params: any) {
|
||||
return request.post({ url: '/financial.financial_borrow_money/add', params })
|
||||
}
|
||||
|
||||
// 编辑财务管理--借款单
|
||||
export function apiFinancialBorrowMoneyEdit(params: any) {
|
||||
return request.post({ url: '/financial.financial_borrow_money/edit', params })
|
||||
}
|
||||
|
||||
// 删除财务管理--借款单
|
||||
export function apiFinancialBorrowMoneyDelete(params: any) {
|
||||
return request.post({ url: '/financial.financial_borrow_money/delete', params })
|
||||
}
|
||||
|
||||
// 财务管理--借款单详情
|
||||
export function apiFinancialBorrowMoneyDetail(params: any) {
|
||||
return request.get({ url: '/financial.financial_borrow_money/detail', params })
|
||||
}
|
||||
|
||||
|
||||
// 财务管理--借款单列表
|
||||
export function apiFinancialBorrowMoneySearch(params: any) {
|
||||
return request.get({ url: '/financial.financial_borrow_money/datas', params })
|
||||
}
|
@ -1,34 +0,0 @@
|
||||
import request from "@/utils/request";
|
||||
|
||||
// 财务管理--项目预算书列表
|
||||
export function apiFinancialBudgetDocLists(params: any) {
|
||||
return request.get({ url: "/financial.financial_budget_doc/lists", params });
|
||||
}
|
||||
|
||||
// 添加财务管理--项目预算书
|
||||
export function apiFinancialBudgetDocAdd(params: any) {
|
||||
return request.post({ url: "/financial.financial_budget_doc/add", params });
|
||||
}
|
||||
|
||||
// 编辑财务管理--项目预算书
|
||||
export function apiFinancialBudgetDocEdit(params: any) {
|
||||
return request.post({ url: "/financial.financial_budget_doc/edit", params });
|
||||
}
|
||||
|
||||
// 删除财务管理--项目预算书
|
||||
export function apiFinancialBudgetDocDelete(params: any) {
|
||||
return request.post({
|
||||
url: "/financial.financial_budget_doc/delete",
|
||||
params,
|
||||
});
|
||||
}
|
||||
|
||||
// 财务管理--项目预算书详情
|
||||
export function apiFinancialBudgetDocDetail(params: any) {
|
||||
return request.get({ url: "/financial.financial_budget_doc/detail", params });
|
||||
}
|
||||
|
||||
// 财务管理--项目预算书
|
||||
export function apiFinancialBudgetDocSearch(params: any) {
|
||||
return request.get({ url: "/financial.financial_budget_doc/datas", params });
|
||||
}
|
@ -1,36 +0,0 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 财务管理--费用申请列表
|
||||
export function apiFinancialFeeApplicationLists(params: any) {
|
||||
return request.get({ url: '/financial.financial_fee_applications/lists', params })
|
||||
}
|
||||
|
||||
// 添加财务管理--费用申请
|
||||
export function apiFinancialFeeApplicationAdd(params: any) {
|
||||
return request.post({ url: '/financial.financial_fee_applications/add', params })
|
||||
}
|
||||
|
||||
// 编辑财务管理--费用申请
|
||||
export function apiFinancialFeeApplicationEdit(params: any) {
|
||||
return request.post({ url: '/financial.financial_fee_applications/edit', params })
|
||||
}
|
||||
|
||||
// 删除财务管理--费用申请
|
||||
export function apiFinancialFeeApplicationDelete(params: any) {
|
||||
return request.post({ url: '/financial.financial_fee_applications/delete', params })
|
||||
}
|
||||
|
||||
// 财务管理--费用申请详情
|
||||
export function apiFinancialFeeApplicationDetail(params: any) {
|
||||
return request.get({ url: '/financial.financial_fee_applications/detail', params })
|
||||
}
|
||||
|
||||
// 财务管理--费用申请列表
|
||||
export function apiFinancialFeeApplicationDetailLists(params: any) {
|
||||
return request.get({ url: '/financial.financial_fee_application_detail/lists', params })
|
||||
}
|
||||
|
||||
// 删除财务管理--费用申请
|
||||
export function apiFinancialFeeApplicationDetailDelete(params: any) {
|
||||
return request.post({ url: '/financial.financial_fee_application_detail/delete', params })
|
||||
}
|
@ -1,39 +0,0 @@
|
||||
import request from "@/utils/request";
|
||||
|
||||
// 财务管理--开票台账列表
|
||||
export function apiFinancialInvoiceLists(params: any) {
|
||||
return request.get({ url: "/financial.financial_invoice/lists", params });
|
||||
}
|
||||
|
||||
// 添加财务管理--开票台账
|
||||
export function apiFinancialInvoiceAdd(params: any) {
|
||||
return request.post({ url: "/financial.financial_invoice/add", params });
|
||||
}
|
||||
|
||||
// 编辑财务管理--开票台账
|
||||
export function apiFinancialInvoiceEdit(params: any) {
|
||||
return request.post({ url: "/financial.financial_invoice/edit", params });
|
||||
}
|
||||
|
||||
// 删除财务管理--开票台账
|
||||
export function apiFinancialInvoiceDelete(params: any) {
|
||||
return request.post({ url: "/financial.financial_invoice/delete", params });
|
||||
}
|
||||
|
||||
// 财务管理--开票台账详情
|
||||
export function apiFinancialInvoiceDetail(params: any) {
|
||||
return request.get({ url: "/financial.financial_invoice/detail", params });
|
||||
}
|
||||
|
||||
// 财务管理--开票台账列表
|
||||
export function apiFinancialInvoiceSearch(params: any) {
|
||||
return request.get({ url: "/financial.financial_invoice/datas", params });
|
||||
}
|
||||
|
||||
// 财务管理--下载开票台账列表
|
||||
export function apiFinancialInvoiceDown(params: any) {
|
||||
return request.post({
|
||||
url: "/financial.financial_invoice/download",
|
||||
params,
|
||||
});
|
||||
}
|
@ -1,30 +0,0 @@
|
||||
import request from "@/utils/request";
|
||||
|
||||
// 项目管理--项目信息列表
|
||||
export function apiManageProjectLists(params: any) {
|
||||
return request.get({ url: "/manage_basic.manage_project/lists", params });
|
||||
}
|
||||
|
||||
// 添加项目管理--项目信息
|
||||
export function apiManageProjectAdd(params: any) {
|
||||
return request.post({ url: "/manage_basic.manage_project/add", params });
|
||||
}
|
||||
|
||||
// 编辑项目管理--项目信息
|
||||
export function apiManageProjectEdit(params: any) {
|
||||
return request.post({ url: "/manage_basic.manage_project/edit", params });
|
||||
}
|
||||
|
||||
// 删除项目管理--项目信息
|
||||
export function apiManageProjectDelete(params: any) {
|
||||
return request.post({ url: "/manage_basic.manage_project/delete", params });
|
||||
}
|
||||
|
||||
// 项目管理--项目信息详情
|
||||
export function apiManageProjectDetail(params: any) {
|
||||
return request.get({ url: "/manage_basic.manage_project/detail", params });
|
||||
}
|
||||
|
||||
export function apiManageProjectSearch(params: any) {
|
||||
return request.get({ url: "/manage_basic.manage_project/datas", params });
|
||||
}
|
@ -1,50 +0,0 @@
|
||||
import request from "@/utils/request";
|
||||
|
||||
// 市场经营--投标管理--投标评审列表
|
||||
export function apiMarketingBidEvaluationLists(params: any) {
|
||||
return request.get({
|
||||
url: "/marketing.marketing_bid_evaluation/lists",
|
||||
params,
|
||||
});
|
||||
}
|
||||
|
||||
// 添加市场经营--投标管理--投标评审
|
||||
export function apiMarketingBidEvaluationAdd(params: any) {
|
||||
return request.post({
|
||||
url: "/marketing.marketing_bid_evaluation/add",
|
||||
params,
|
||||
});
|
||||
}
|
||||
|
||||
// 编辑市场经营--投标管理--投标评审
|
||||
export function apiMarketingBidEvaluationEdit(params: any) {
|
||||
return request.post({
|
||||
url: "/marketing.marketing_bid_evaluation/edit",
|
||||
params,
|
||||
});
|
||||
}
|
||||
|
||||
// 删除市场经营--投标管理--投标评审
|
||||
export function apiMarketingBidEvaluationDelete(params: any) {
|
||||
return request.post({
|
||||
url: "/marketing.marketing_bid_evaluation/delete",
|
||||
params,
|
||||
});
|
||||
}
|
||||
|
||||
// 市场经营--投标管理--投标评审详情
|
||||
export function apiMarketingBidEvaluationDetail(params: any) {
|
||||
return request.get({
|
||||
url: "/marketing.marketing_bid_evaluation/detail",
|
||||
params,
|
||||
});
|
||||
}
|
||||
|
||||
// 报名登记
|
||||
|
||||
export function apiMarketingBidEvaluationReg(params: any) {
|
||||
return request.post({
|
||||
url: "/marketing.marketing_bid_evaluation/reg",
|
||||
params,
|
||||
});
|
||||
}
|
@ -1,26 +0,0 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 市场经营--投标管理--投标信息列表
|
||||
export function apiMarketingBidInfoLists(params: any) {
|
||||
return request.get({ url: '/marketing.marketing_bid_info/lists', params })
|
||||
}
|
||||
|
||||
// 添加市场经营--投标管理--投标信息
|
||||
export function apiMarketingBidInfoAdd(params: any) {
|
||||
return request.post({ url: '/marketing.marketing_bid_info/add', params })
|
||||
}
|
||||
|
||||
// 编辑市场经营--投标管理--投标信息
|
||||
export function apiMarketingBidInfoEdit(params: any) {
|
||||
return request.post({ url: '/marketing.marketing_bid_info/edit', params })
|
||||
}
|
||||
|
||||
// 删除市场经营--投标管理--投标信息
|
||||
export function apiMarketingBidInfoDelete(params: any) {
|
||||
return request.post({ url: '/marketing.marketing_bid_info/delete', params })
|
||||
}
|
||||
|
||||
// 市场经营--投标管理--投标信息详情
|
||||
export function apiMarketingBidInfoDetail(params: any) {
|
||||
return request.get({ url: '/marketing.marketing_bid_info/detail', params })
|
||||
}
|
@ -1,45 +0,0 @@
|
||||
import request from "@/utils/request";
|
||||
|
||||
// 市场经营--投标管理--投标结果列表
|
||||
export function apiMarketingBidResultLists(params: any) {
|
||||
return request.get({ url: "/marketing.marketing_bid_result/lists", params });
|
||||
}
|
||||
|
||||
// 添加市场经营--投标管理--投标结果
|
||||
export function apiMarketingBidResultAdd(params: any) {
|
||||
return request.post({ url: "/marketing.marketing_bid_result/add", params });
|
||||
}
|
||||
|
||||
// 编辑市场经营--投标管理--投标结果
|
||||
export function apiMarketingBidResultEdit(params: any) {
|
||||
return request.post({ url: "/marketing.marketing_bid_result/edit", params });
|
||||
}
|
||||
|
||||
// 删除市场经营--投标管理--投标结果
|
||||
export function apiMarketingBidResultDelete(params: any) {
|
||||
return request.post({
|
||||
url: "/marketing.marketing_bid_result/delete",
|
||||
params,
|
||||
});
|
||||
}
|
||||
|
||||
// 市场经营--投标管理--投标结果详情
|
||||
export function apiMarketingBidResultDetail(params: any) {
|
||||
return request.get({ url: "/marketing.marketing_bid_result/detail", params });
|
||||
}
|
||||
|
||||
// 市场经营--投标管理--投标结果列表
|
||||
export function apiMarketingBidResultDetailLists(params: any) {
|
||||
return request.get({
|
||||
url: "/marketing.marketing_bid_result_detail/lists",
|
||||
params,
|
||||
});
|
||||
}
|
||||
|
||||
// 删除市场经营--投标管理--投标结果
|
||||
export function apiMarketingBidResultDetailDelete(params: any) {
|
||||
return request.post({
|
||||
url: "/marketing.marketing_bid_result_detail/delete",
|
||||
params,
|
||||
});
|
||||
}
|
@ -1,36 +0,0 @@
|
||||
import request from "@/utils/request";
|
||||
|
||||
export function apiwinning_project(params: any) {
|
||||
return request.get({
|
||||
url: "/marketing.marketing_bid_statistics/winning_project",
|
||||
params,
|
||||
});
|
||||
}
|
||||
|
||||
export function apibid_project_status(params: any) {
|
||||
return request.get({
|
||||
url: "/marketing.marketing_bid_statistics/bid_project_status",
|
||||
params,
|
||||
});
|
||||
}
|
||||
|
||||
export function apibid_project_number(params: any) {
|
||||
return request.get({
|
||||
url: "/marketing.marketing_bid_statistics/bid_project_number",
|
||||
params,
|
||||
});
|
||||
}
|
||||
|
||||
export function apibid_project_analysis(params: any) {
|
||||
return request.get({
|
||||
url: "/marketing.marketing_bid_statistics/bid_project_analysis",
|
||||
params,
|
||||
});
|
||||
}
|
||||
|
||||
export function apibid_industry_analysis(params: any) {
|
||||
return request.get({
|
||||
url: "/marketing.marketing_bid_statistics/bid_industry_analysis",
|
||||
params,
|
||||
});
|
||||
}
|
@ -1,26 +0,0 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 市场经营--分支机构备案列表
|
||||
export function apiMarketingBranchFilingLists(params: any) {
|
||||
return request.get({ url: '/marketing.marketing_branch_filing/lists', params })
|
||||
}
|
||||
|
||||
// 添加市场经营--分支机构备案
|
||||
export function apiMarketingBranchFilingAdd(params: any) {
|
||||
return request.post({ url: '/marketing.marketing_branch_filing/add', params })
|
||||
}
|
||||
|
||||
// 编辑市场经营--分支机构备案
|
||||
export function apiMarketingBranchFilingEdit(params: any) {
|
||||
return request.post({ url: '/marketing.marketing_branch_filing/edit', params })
|
||||
}
|
||||
|
||||
// 删除市场经营--分支机构备案
|
||||
export function apiMarketingBranchFilingDelete(params: any) {
|
||||
return request.post({ url: '/marketing.marketing_branch_filing/delete', params })
|
||||
}
|
||||
|
||||
// 市场经营--分支机构备案详情
|
||||
export function apiMarketingBranchFilingDetail(params: any) {
|
||||
return request.get({ url: '/marketing.marketing_branch_filing/detail', params })
|
||||
}
|
@ -1,26 +0,0 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 市场经营--投标管理--业务机会列表
|
||||
export function apiMarketingBusinessOpportunityLists(params: any) {
|
||||
return request.get({ url: '/marketing.marketing_business_opportunity/lists', params })
|
||||
}
|
||||
|
||||
// 添加市场经营--投标管理--业务机会
|
||||
export function apiMarketingBusinessOpportunityAdd(params: any) {
|
||||
return request.post({ url: '/marketing.marketing_business_opportunity/add', params })
|
||||
}
|
||||
|
||||
// 编辑市场经营--投标管理--业务机会
|
||||
export function apiMarketingBusinessOpportunityEdit(params: any) {
|
||||
return request.post({ url: '/marketing.marketing_business_opportunity/edit', params })
|
||||
}
|
||||
|
||||
// 删除市场经营--投标管理--业务机会
|
||||
export function apiMarketingBusinessOpportunityDelete(params: any) {
|
||||
return request.post({ url: '/marketing.marketing_business_opportunity/delete', params })
|
||||
}
|
||||
|
||||
// 市场经营--投标管理--业务机会详情
|
||||
export function apiMarketingBusinessOpportunityDetail(params: any) {
|
||||
return request.get({ url: '/marketing.marketing_business_opportunity/detail', params })
|
||||
}
|
@ -1,26 +0,0 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 市场经营--投标管理--竞争对手列表
|
||||
export function apiMarketingCompetitorLists(params: any) {
|
||||
return request.get({ url: '/marketing.marketing_competitor/lists', params })
|
||||
}
|
||||
|
||||
// 添加市场经营--投标管理--竞争对手
|
||||
export function apiMarketingCompetitorAdd(params: any) {
|
||||
return request.post({ url: '/marketing.marketing_competitor/add', params })
|
||||
}
|
||||
|
||||
// 编辑市场经营--投标管理--竞争对手
|
||||
export function apiMarketingCompetitorEdit(params: any) {
|
||||
return request.post({ url: '/marketing.marketing_competitor/edit', params })
|
||||
}
|
||||
|
||||
// 删除市场经营--投标管理--竞争对手
|
||||
export function apiMarketingCompetitorDelete(params: any) {
|
||||
return request.post({ url: '/marketing.marketing_competitor/delete', params })
|
||||
}
|
||||
|
||||
// 市场经营--投标管理--竞争对手详情
|
||||
export function apiMarketingCompetitorDetail(params: any) {
|
||||
return request.get({ url: '/marketing.marketing_competitor/detail', params })
|
||||
}
|
@ -1,31 +0,0 @@
|
||||
import request from "@/utils/request";
|
||||
|
||||
// 市场经营--合同信息列表
|
||||
export function apiMarketingContractLists(params: any) {
|
||||
return request.get({ url: "/marketing.marketing_contract/lists", params });
|
||||
}
|
||||
|
||||
// 添加市场经营--合同信息
|
||||
export function apiMarketingContractAdd(params: any) {
|
||||
return request.post({ url: "/marketing.marketing_contract/add", params });
|
||||
}
|
||||
|
||||
// 编辑市场经营--合同信息
|
||||
export function apiMarketingContractEdit(params: any) {
|
||||
return request.post({ url: "/marketing.marketing_contract/edit", params });
|
||||
}
|
||||
|
||||
// 删除市场经营--合同信息
|
||||
export function apiMarketingContractDelete(params: any) {
|
||||
return request.post({ url: "/marketing.marketing_contract/delete", params });
|
||||
}
|
||||
|
||||
// 市场经营--合同信息详情
|
||||
export function apiMarketingContractDetail(params: any) {
|
||||
return request.get({ url: "/marketing.marketing_contract/detail", params });
|
||||
}
|
||||
|
||||
// 市场经营--合同信息列表
|
||||
export function apiMarketingContractSearch(params: any) {
|
||||
return request.get({ url: "/marketing.marketing_contract/datas", params });
|
||||
}
|
@ -1,26 +0,0 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 市场经营--合同信息--合同变更列表
|
||||
export function apiMarketingContractChangeLists(params: any) {
|
||||
return request.get({ url: '/marketing.marketing_contract_change/lists', params })
|
||||
}
|
||||
|
||||
// 添加市场经营--合同信息--合同变更
|
||||
export function apiMarketingContractChangeAdd(params: any) {
|
||||
return request.post({ url: '/marketing.marketing_contract_change/add', params })
|
||||
}
|
||||
|
||||
// 编辑市场经营--合同信息--合同变更
|
||||
export function apiMarketingContractChangeEdit(params: any) {
|
||||
return request.post({ url: '/marketing.marketing_contract_change/edit', params })
|
||||
}
|
||||
|
||||
// 删除市场经营--合同信息--合同变更
|
||||
export function apiMarketingContractChangeDelete(params: any) {
|
||||
return request.post({ url: '/marketing.marketing_contract_change/delete', params })
|
||||
}
|
||||
|
||||
// 市场经营--合同信息--合同变更详情
|
||||
export function apiMarketingContractChangeDetail(params: any) {
|
||||
return request.get({ url: '/marketing.marketing_contract_change/detail', params })
|
||||
}
|
@ -1,37 +0,0 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 市场经营--客户信息列表
|
||||
export function apiMarketingCustomLists(params: any) {
|
||||
return request.get({ url: '/marketing.marketing_custom/lists', params })
|
||||
}
|
||||
|
||||
// 添加市场经营--客户信息
|
||||
export function apiMarketingCustomAdd(params: any) {
|
||||
return request.post({ url: '/marketing.marketing_custom/add', params })
|
||||
}
|
||||
|
||||
// 编辑市场经营--客户信息
|
||||
export function apiMarketingCustomEdit(params: any) {
|
||||
return request.post({ url: '/marketing.marketing_custom/edit', params })
|
||||
}
|
||||
|
||||
// 删除市场经营--客户信息
|
||||
export function apiMarketingCustomDelete(params: any) {
|
||||
return request.post({ url: '/marketing.marketing_custom/delete', params })
|
||||
}
|
||||
|
||||
// 市场经营--客户信息详情
|
||||
export function apiMarketingCustomDetail(params: any) {
|
||||
return request.get({ url: '/marketing.marketing_custom/detail', params })
|
||||
}
|
||||
|
||||
// 删除市场经营--客户联系人
|
||||
export function apiMarketingCustomContactsDelete(params: any) {
|
||||
return request.post({ url: '/marketing.marketing_custom_contacts/delete', params })
|
||||
}
|
||||
|
||||
|
||||
// 市场经营--客户联系人列表
|
||||
export function apiMarketingCustomContactsLists(params: any) {
|
||||
return request.get({ url: '/marketing.marketing_custom_contacts/lists', params })
|
||||
}
|
@ -1,50 +0,0 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 市场经营--客户回访列表列表
|
||||
export function apiMarketingCustomReturnVisitLists(params: any) {
|
||||
return request.get({ url: '/marketing.marketing_custom_return_visit/lists', params })
|
||||
}
|
||||
|
||||
// 添加市场经营--客户回访列表
|
||||
export function apiMarketingCustomReturnVisitAdd(params: any) {
|
||||
return request.post({ url: '/marketing.marketing_custom_return_visit/add', params })
|
||||
}
|
||||
|
||||
// 编辑市场经营--客户回访列表
|
||||
export function apiMarketingCustomReturnVisitEdit(params: any) {
|
||||
return request.post({ url: '/marketing.marketing_custom_return_visit/edit', params })
|
||||
}
|
||||
|
||||
// 删除市场经营--客户回访列表
|
||||
export function apiMarketingCustomReturnVisitDelete(params: any) {
|
||||
return request.post({ url: '/marketing.marketing_custom_return_visit/delete', params })
|
||||
}
|
||||
|
||||
// 市场经营--客户回访列表详情
|
||||
export function apiMarketingCustomReturnVisitDetail(params: any) {
|
||||
return request.get({ url: '/marketing.marketing_custom_return_visit/detail', params })
|
||||
}
|
||||
|
||||
|
||||
export function apimarketing_custom_return_visit_surveyLists(params: any) {
|
||||
return request.get({ url: '/marketing.marketing_custom_return_visit_survey/lists', params })
|
||||
}
|
||||
|
||||
// 删除市场经营--客户回访列表
|
||||
export function apimarketing_custom_return_visit_surveytDelete(params: any) {
|
||||
return request.post({ url: '/marketing.marketing_custom_return_visit_survey/delete', params })
|
||||
}
|
||||
|
||||
export function apimarketing_custom_return_visit_evaluateLists(params: any) {
|
||||
return request.get({ url: '/marketing.marketing_custom_return_visit_evaluate/lists', params })
|
||||
}
|
||||
|
||||
// 删除市场经营--客户回访列表
|
||||
export function apimarketing_custom_return_visit_evaluateDelete(params: any) {
|
||||
return request.post({ url: '/marketing.marketing_custom_return_visit_evaluate/delete', params })
|
||||
}
|
||||
|
||||
// 市场经营--客户回访列表列表
|
||||
export function apiMarketingCustomReturnVisitSearch(params: any) {
|
||||
return request.get({ url: '/marketing.marketing_custom_return_visit/datas', params })
|
||||
}
|
@ -1,26 +0,0 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 市场经营--客户回访列表--成员评价列表
|
||||
export function apiMarketingCustomReturnVisitEvaluateLists(params: any) {
|
||||
return request.get({ url: '/marketing.marketing_custom_return_visit_evaluate/lists', params })
|
||||
}
|
||||
|
||||
// 添加市场经营--客户回访列表--成员评价
|
||||
export function apiMarketingCustomReturnVisitEvaluateAdd(params: any) {
|
||||
return request.post({ url: '/marketing.marketing_custom_return_visit_evaluate/add', params })
|
||||
}
|
||||
|
||||
// 编辑市场经营--客户回访列表--成员评价
|
||||
export function apiMarketingCustomReturnVisitEvaluateEdit(params: any) {
|
||||
return request.post({ url: '/marketing.marketing_custom_return_visit_evaluate/edit', params })
|
||||
}
|
||||
|
||||
// 删除市场经营--客户回访列表--成员评价
|
||||
export function apiMarketingCustomReturnVisitEvaluateDelete(params: any) {
|
||||
return request.post({ url: '/marketing.marketing_custom_return_visit_evaluate/delete', params })
|
||||
}
|
||||
|
||||
// 市场经营--客户回访列表--成员评价详情
|
||||
export function apiMarketingCustomReturnVisitEvaluateDetail(params: any) {
|
||||
return request.get({ url: '/marketing.marketing_custom_return_visit_evaluate/detail', params })
|
||||
}
|
@ -1,45 +0,0 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 市场经营--客户回访模板列表
|
||||
export function apiMarketingCustomReturnVisitTemplateLists(params: any) {
|
||||
return request.get({ url: '/marketing.marketing_custom_return_visit_template/lists', params })
|
||||
}
|
||||
|
||||
// 添加市场经营--客户回访模板
|
||||
export function apiMarketingCustomReturnVisitTemplateAdd(params: any) {
|
||||
return request.post({ url: '/marketing.marketing_custom_return_visit_template/add', params })
|
||||
}
|
||||
|
||||
// 编辑市场经营--客户回访模板
|
||||
export function apiMarketingCustomReturnVisitTemplateEdit(params: any) {
|
||||
return request.post({ url: '/marketing.marketing_custom_return_visit_template/edit', params })
|
||||
}
|
||||
|
||||
// 删除市场经营--客户回访模板
|
||||
export function apiMarketingCustomReturnVisitTemplateDelete(params: any) {
|
||||
return request.post({ url: '/marketing.marketing_custom_return_visit_template/delete', params })
|
||||
}
|
||||
|
||||
// 市场经营--客户回访模板详情
|
||||
export function apiMarketingCustomReturnVisitTemplateDetail(params: any) {
|
||||
return request.get({ url: '/marketing.marketing_custom_return_visit_template/detail', params })
|
||||
}
|
||||
|
||||
|
||||
// 市场经营--客户回访模板列表
|
||||
export function apiMarketingCustomReturnVisitTemplateDetailLists(params: any) {
|
||||
return request.get({ url: '/marketing.marketing_custom_return_visit_template_detail/lists', params })
|
||||
}
|
||||
|
||||
|
||||
|
||||
// 删除市场经营--客户回访模板
|
||||
export function apiMarketingCustomReturnVisitTemplateDetailDelete(params: any) {
|
||||
return request.post({ url: '/marketing.marketing_custom_return_visit_template_detail/delete', params })
|
||||
}
|
||||
|
||||
|
||||
// 市场经营--客户回访模板列表
|
||||
export function apiMarketingCustomReturnVisitTemplateSearch(params: any) {
|
||||
return request.get({ url: '/marketing.marketing_custom_return_visit_template/datas', params })
|
||||
}
|
@ -1,35 +0,0 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 市场经营--项目备案明细列表
|
||||
export function apimketingFrameworkAgreementLists(params: any) {
|
||||
return request.get({ url: '/marketing.marketing_framework_agreement/lists', params })
|
||||
}
|
||||
|
||||
// 添加市场经营--项目备案明细
|
||||
export function apimketingFrameworkAgreementAdd(params: any) {
|
||||
return request.post({ url: '/marketing.marketing_framework_agreement/add', params })
|
||||
}
|
||||
|
||||
// 编辑市场经营--项目备案明细
|
||||
export function apimketingFrameworkAgreementEdit(params: any) {
|
||||
return request.post({ url: '/marketing.marketing_framework_agreement/edit', params })
|
||||
}
|
||||
|
||||
// 删除市场经营--项目备案明细
|
||||
export function apimketingFrameworkAgreementDelete(params: any) {
|
||||
return request.post({ url: '/marketing.marketing_framework_agreement/delete', params })
|
||||
}
|
||||
|
||||
// 市场经营--项目备案明细详情
|
||||
export function apimketingFrameworkAgreementDetail(params: any) {
|
||||
return request.get({ url: '/marketing.marketing_framework_agreement/detail', params })
|
||||
}
|
||||
|
||||
// 市场经营--项目备案明细列表
|
||||
export function apimarketingFrameworkAgreementFlows(params: any) {
|
||||
return request.get({ url: '/marketing.marketing_framework_agreement/flows', params })
|
||||
}
|
||||
// 市场经营--项目备案明细列表
|
||||
export function apimarketingFrameworkAgreementApprove(params: any) {
|
||||
return request.post({ url: '/marketing.marketing_framework_agreement/approve', params })
|
||||
}
|
@ -1,12 +0,0 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 市场经营--项目备案明细列表
|
||||
export function apiMarketingHandoverContractLists(params: any) {
|
||||
return request.get({ url: '/marketing.marketing_handover_contract/lists', params })
|
||||
}
|
||||
|
||||
// 添加市场经营--项目备案明细
|
||||
export function apiMarketingHandoverContractHandover(params: any) {
|
||||
return request.post({ url: '/marketing.marketing_handover_contract/handover', params })
|
||||
}
|
||||
|
@ -1,65 +0,0 @@
|
||||
import request from "@/utils/request";
|
||||
|
||||
// 市场经营--项目备案列表
|
||||
export function apiMarketingProjectFilingLists(params: any) {
|
||||
return request.get({
|
||||
url: "/marketing.marketing_project_filing/lists",
|
||||
params,
|
||||
});
|
||||
}
|
||||
|
||||
// 添加市场经营--项目备案
|
||||
export function apiMarketingProjectFilingAdd(params: any) {
|
||||
return request.post({
|
||||
url: "/marketing.marketing_project_filing/add",
|
||||
params,
|
||||
});
|
||||
}
|
||||
|
||||
// 编辑市场经营--项目备案
|
||||
export function apiMarketingProjectFilingEdit(params: any) {
|
||||
return request.post({
|
||||
url: "/marketing.marketing_project_filing/edit",
|
||||
params,
|
||||
});
|
||||
}
|
||||
|
||||
// 删除市场经营--项目备案
|
||||
export function apiMarketingProjectFilingDelete(params: any) {
|
||||
return request.post({
|
||||
url: "/marketing.marketing_project_filing/delete",
|
||||
params,
|
||||
});
|
||||
}
|
||||
|
||||
// 市场经营--项目备案详情
|
||||
export function apiMarketingProjectFilingDetail(params: any) {
|
||||
return request.get({
|
||||
url: "/marketing.marketing_project_filing/detail",
|
||||
params,
|
||||
});
|
||||
}
|
||||
|
||||
// 市场经营--
|
||||
export function apiMarketingProjectFilingDetailDelete(params: any) {
|
||||
return request.post({
|
||||
url: "/marketing.marketing_project_filing_detail/delete",
|
||||
params,
|
||||
});
|
||||
}
|
||||
|
||||
// 市场经营--项目备案详情
|
||||
export function apiMarketingProjectFilingDetailLists(params: any) {
|
||||
return request.get({
|
||||
url: "/marketing.marketing_project_filing_detail/lists",
|
||||
params,
|
||||
});
|
||||
}
|
||||
|
||||
// 市场经营--项目备案列表
|
||||
export function apiMarketingProjectFilingSearch(params: any) {
|
||||
return request.get({
|
||||
url: "/marketing.marketing_project_filing/datas",
|
||||
params,
|
||||
});
|
||||
}
|
@ -1,26 +0,0 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 市场经营--项目备案明细列表
|
||||
export function apiMarketingProjectFilingDetailLists(params: any) {
|
||||
return request.get({ url: '/marketing.marketing_project_filing_detail/lists', params })
|
||||
}
|
||||
|
||||
// 添加市场经营--项目备案明细
|
||||
export function apiMarketingProjectFilingDetailAdd(params: any) {
|
||||
return request.post({ url: '/marketing.marketing_project_filing_detail/add', params })
|
||||
}
|
||||
|
||||
// 编辑市场经营--项目备案明细
|
||||
export function apiMarketingProjectFilingDetailEdit(params: any) {
|
||||
return request.post({ url: '/marketing.marketing_project_filing_detail/edit', params })
|
||||
}
|
||||
|
||||
// 删除市场经营--项目备案明细
|
||||
export function apiMarketingProjectFilingDetailDelete(params: any) {
|
||||
return request.post({ url: '/marketing.marketing_project_filing_detail/delete', params })
|
||||
}
|
||||
|
||||
// 市场经营--项目备案明细详情
|
||||
export function apiMarketingProjectFilingDetailDetail(params: any) {
|
||||
return request.get({ url: '/marketing.marketing_project_filing_detail/detail', params })
|
||||
}
|
@ -1,15 +0,0 @@
|
||||
import request from "@/utils/request";
|
||||
|
||||
export function apiMarketingRefluxContractLists(params: any) {
|
||||
return request.get({
|
||||
url: "/marketing.marketing_contract_reflux/lists",
|
||||
params,
|
||||
});
|
||||
}
|
||||
|
||||
export function apiMarketingRefluxContractReflux(params: any) {
|
||||
return request.post({
|
||||
url: "/marketing.marketing_contract_reflux/reflux",
|
||||
params,
|
||||
});
|
||||
}
|
@ -1,26 +0,0 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 市场经营--项目备案列表
|
||||
export function apiMarketingSupplementaryAgreementLists(params: any) {
|
||||
return request.get({ url: '/marketing.marketing_supplementary_agreement/lists', params })
|
||||
}
|
||||
|
||||
// 添加市场经营--项目备案
|
||||
export function apiMarketingSupplementaryAgreementAdd(params: any) {
|
||||
return request.post({ url: '/marketing.marketing_supplementary_agreement/add', params })
|
||||
}
|
||||
|
||||
// 编辑市场经营--项目备案
|
||||
export function apiMarketingSupplementaryAgreementEdit(params: any) {
|
||||
return request.post({ url: '/marketing.marketing_supplementary_agreement/edit', params })
|
||||
}
|
||||
|
||||
// 删除市场经营--项目备案
|
||||
export function apiMarketingSupplementaryAgreementDelete(params: any) {
|
||||
return request.post({ url: '/marketing.marketing_supplementary_agreement/delete', params })
|
||||
}
|
||||
|
||||
// 市场经营--项目备案详情
|
||||
export function apiMarketingSupplementaryAgreementDetail(params: any) {
|
||||
return request.get({ url: '/marketing.marketing_supplementary_agreement/detail', params })
|
||||
}
|
36
src/api/oa/oaSelfExamine.ts
Normal file
36
src/api/oa/oaSelfExamine.ts
Normal file
@ -0,0 +1,36 @@
|
||||
import request from "@/utils/request";
|
||||
|
||||
// 自评记录列表
|
||||
export function apiOaSelfExamineLists(params: any) {
|
||||
return request.get({ url: "/jxgl/oaSelfExamine/lists", params }, { urlPrefix: 'oa' });
|
||||
}
|
||||
|
||||
// 添加自评记录
|
||||
export function apiOaSelfExamineAdd(params: any) {
|
||||
return request.post({ url: "/jxgl/oaSelfExamine/add", params }, { urlPrefix: 'oa' });
|
||||
}
|
||||
|
||||
// 编辑自评记录
|
||||
export function apiOaSelfExamineEdit(params: any) {
|
||||
return request.post({ url: "/jxgl/oaSelfExamine/edit", params }, { urlPrefix: 'oa' });
|
||||
}
|
||||
|
||||
// 删除自评记录
|
||||
export function apiOaSelfExamineDelete(params: any) {
|
||||
return request.post({ url: "/jxgl/oaSelfExamine/delete", params }, { urlPrefix: 'oa' });
|
||||
}
|
||||
|
||||
// 自评记录详情
|
||||
export function apiOaSelfExamineDetail(params: any) {
|
||||
return request.get({ url: "/jxgl/oaSelfExamine/detail", params }, { urlPrefix: 'oa' });
|
||||
}
|
||||
|
||||
// 删除自评记录
|
||||
export function apidelete_detail(params: any) {
|
||||
return request.post({ url: "/jxgl/oaSelfExamine/delete_detail", params }, { urlPrefix: 'oa' });
|
||||
}
|
||||
|
||||
// 自评记录列表
|
||||
export function apioa_examine_allLists(params: any) {
|
||||
return request.get({ url: "/jxgl/oaExamineAll/lists", params }, { urlPrefix: 'oa' });
|
||||
}
|
32
src/api/oa/oa_examine.ts
Normal file
32
src/api/oa/oa_examine.ts
Normal file
@ -0,0 +1,32 @@
|
||||
import request from "@/utils/request";
|
||||
|
||||
// 我申请的
|
||||
export function apiExpenseList(params : any) {
|
||||
return request.get({ url: "/jxgl/oaExamine/lists", params }, { urlPrefix: 'oa' });
|
||||
}
|
||||
|
||||
// 我申请的
|
||||
export function apiExpenseDetail(params : any) {
|
||||
return request.get({ url: "/jxgl/oaExamine/detail", params }, { urlPrefix: 'oa' });
|
||||
}
|
||||
|
||||
// 审核
|
||||
export function apiExpenseAdd(params : any) {
|
||||
return request.post({ url: "/jxgl/oaExamine/add", params }, { urlPrefix: 'oa' });
|
||||
}
|
||||
|
||||
// 审核
|
||||
export function apiExpenseDelete(params : any) {
|
||||
return request.post({ url: "/jxgl/oaExamine/delete", params }, { urlPrefix: 'oa' });
|
||||
}
|
||||
|
||||
export function apiExpenseEdit(params : any) {
|
||||
return request.post({ url: "/jxgl/oaExamine/edit", params }, { urlPrefix: 'oa' });
|
||||
}
|
||||
|
||||
export function apiExpensedelete_detail(params : any) {
|
||||
return request.post({
|
||||
url: "/jxgl/oaExamine/delete_detail",
|
||||
params,
|
||||
}, { urlPrefix: 'oa' });
|
||||
}
|
34
src/api/oa/oa_examine_temp_item.ts
Normal file
34
src/api/oa/oa_examine_temp_item.ts
Normal file
@ -0,0 +1,34 @@
|
||||
import request from "@/utils/request";
|
||||
|
||||
// 考核模板-考核项列表
|
||||
export function apiOaExamineTempLists(params : any) {
|
||||
return request.get({ url: "/jxgl/oaExamineTemp/lists", params }, { urlPrefix: 'oa' });
|
||||
}
|
||||
|
||||
// 添加考核模板-考核项
|
||||
export function apiOaExamineTempAdd(params : any) {
|
||||
return request.post({ url: "/jxgl/oaExamineTemp/add", params }, { urlPrefix: 'oa' });
|
||||
}
|
||||
|
||||
// 编辑考核模板-考核项
|
||||
export function apiOaExamineTempEdit(params : any) {
|
||||
return request.post({ url: "/jxgl/oaExamineTemp/edit", params }, { urlPrefix: 'oa' });
|
||||
}
|
||||
|
||||
// 删除考核模板-考核项
|
||||
export function apiOaExamineTempDelete(params : any) {
|
||||
return request.post({ url: "/jxgl/oaExamineTemp/delete", params }, { urlPrefix: 'oa' });
|
||||
}
|
||||
|
||||
// 考核模板-考核项详情
|
||||
export function apiOaExamineTempDetail(params : any) {
|
||||
return request.get({ url: "/jxgl/oaExamineTemp/detail", params }, { urlPrefix: 'oa' });
|
||||
}
|
||||
|
||||
// 考核模板-考核项详情
|
||||
export function apiOaExamineTempItemDetail(params : any) {
|
||||
return request.post({
|
||||
url: "/jxgl/oaExamineTemp/delete_item",
|
||||
params,
|
||||
}, { urlPrefix: 'oa' });
|
||||
}
|
31
src/api/oa/oa_message.ts
Normal file
31
src/api/oa/oa_message.ts
Normal file
@ -0,0 +1,31 @@
|
||||
import request from "@/utils/request";
|
||||
|
||||
// 消息表列表
|
||||
export function apiOaMessageLists(params : any) {
|
||||
return request.get({ url: "/works/oaMessage/lists", params }, { urlPrefix: 'oa' });
|
||||
}
|
||||
|
||||
// 添加消息表
|
||||
export function apiOaMessageAdd(params : any) {
|
||||
return request.post({ url: "/works/oaMessage/add", params }, { urlPrefix: 'oa' });
|
||||
}
|
||||
|
||||
// 编辑消息表
|
||||
export function apiOaMessageEdit(params : any) {
|
||||
return request.post({ url: "/works/oaMessage/edit", params }, { urlPrefix: 'oa' });
|
||||
}
|
||||
|
||||
// 删除消息表
|
||||
export function apiOaMessageDelete(params : any) {
|
||||
return request.post({ url: "/works/oaMessage/delete", params }, { urlPrefix: 'oa' });
|
||||
}
|
||||
|
||||
// 消息表详情
|
||||
export function apiOaMessageDetail(params : any) {
|
||||
return request.get({ url: "/works/oaMessage/detail", params }, { urlPrefix: 'oa' });
|
||||
}
|
||||
|
||||
// 消息表详情
|
||||
export function apiOaMsgNums(params : any) {
|
||||
return request.get({ url: "/index/index", params }, { urlPrefix: 'oa' });
|
||||
}
|
@ -1,36 +0,0 @@
|
||||
import request from "@/utils/request";
|
||||
|
||||
// 自评记录列表
|
||||
export function apiOaSelfExamineLists(params: any) {
|
||||
return request.get({ url: "/jxgl.oa_self_examine/lists", params });
|
||||
}
|
||||
|
||||
// 添加自评记录
|
||||
export function apiOaSelfExamineAdd(params: any) {
|
||||
return request.post({ url: "/jxgl.oa_self_examine/add", params });
|
||||
}
|
||||
|
||||
// 编辑自评记录
|
||||
export function apiOaSelfExamineEdit(params: any) {
|
||||
return request.post({ url: "/jxgl.oa_self_examine/edit", params });
|
||||
}
|
||||
|
||||
// 删除自评记录
|
||||
export function apiOaSelfExamineDelete(params: any) {
|
||||
return request.post({ url: "/jxgl.oa_self_examine/delete", params });
|
||||
}
|
||||
|
||||
// 自评记录详情
|
||||
export function apiOaSelfExamineDetail(params: any) {
|
||||
return request.get({ url: "/jxgl.oa_self_examine/detail", params });
|
||||
}
|
||||
|
||||
// 删除自评记录
|
||||
export function apidelete_detail(params: any) {
|
||||
return request.post({ url: "/jxgl.oa_self_examine/delete_detail", params });
|
||||
}
|
||||
|
||||
// 自评记录列表
|
||||
export function apioa_examine_allLists(params: any) {
|
||||
return request.get({ url: "/jxgl.oa_examine_all/lists", params });
|
||||
}
|
@ -1,34 +0,0 @@
|
||||
import request from "@/utils/request";
|
||||
|
||||
// 考核模板-考核项列表
|
||||
export function apiOaExamineTempLists(params: any) {
|
||||
return request.get({ url: "/jxgl.oa_examine_temp/lists", params });
|
||||
}
|
||||
|
||||
// 添加考核模板-考核项
|
||||
export function apiOaExamineTempAdd(params: any) {
|
||||
return request.post({ url: "/jxgl.oa_examine_temp/add", params });
|
||||
}
|
||||
|
||||
// 编辑考核模板-考核项
|
||||
export function apiOaExamineTempEdit(params: any) {
|
||||
return request.post({ url: "/jxgl.oa_examine_temp/edit", params });
|
||||
}
|
||||
|
||||
// 删除考核模板-考核项
|
||||
export function apiOaExamineTempDelete(params: any) {
|
||||
return request.post({ url: "/jxgl.oa_examine_temp/delete", params });
|
||||
}
|
||||
|
||||
// 考核模板-考核项详情
|
||||
export function apiOaExamineTempDetail(params: any) {
|
||||
return request.get({ url: "/jxgl.oa_examine_temp/detail", params });
|
||||
}
|
||||
|
||||
// 考核模板-考核项详情
|
||||
export function apiOaExamineTempItemDetail(params: any) {
|
||||
return request.post({
|
||||
url: "/jxgl.oa_examine_temp/delete_item",
|
||||
params,
|
||||
});
|
||||
}
|
@ -1,26 +0,0 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 付款计划表列表
|
||||
export function paymentplanLists(params: any) {
|
||||
return request.get({ url: '/finance.finance_payment_plan/lists', params })
|
||||
}
|
||||
|
||||
// 添加付款计划
|
||||
export function paymentplanAdd(params: any) {
|
||||
return request.post({ url: '/finance.finance_payment_plan/add', params })
|
||||
}
|
||||
|
||||
// 编辑付款计划
|
||||
export function paymentplanEdit(params: any) {
|
||||
return request.post({ url: '/finance.finance_payment_plan/edit', params })
|
||||
}
|
||||
|
||||
// 删除付款计划
|
||||
export function paymentplanDelete(params: any) {
|
||||
return request.post({ url: '/finance.finance_payment_plan/delete', params })
|
||||
}
|
||||
|
||||
// 付款计划详情
|
||||
export function paymentplanDetail(params: any) {
|
||||
return request.get({ url: '/finance.finance_payment_plan/detail', params })
|
||||
}
|
@ -1,30 +0,0 @@
|
||||
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 });
|
||||
}
|
||||
|
||||
export function apiProcurementContractSearch(params: any) {
|
||||
return request.get({ url: "/contract.procurement_contract/datas", params });
|
||||
}
|
@ -1,26 +0,0 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 考勤记录表列表
|
||||
export function attendanceRecordLists(params: any) {
|
||||
return request.get({ url: '/project.project_attendance_record/lists', params })
|
||||
}
|
||||
|
||||
// 添加考勤记录
|
||||
export function attendanceRecordAdd(params: any) {
|
||||
return request.post({ url: '/project.project_attendance_record/add', params })
|
||||
}
|
||||
|
||||
// 编辑考勤记录
|
||||
export function attendanceRecordEdit(params: any) {
|
||||
return request.post({ url: '/project.project_attendance_record/edit', params })
|
||||
}
|
||||
|
||||
// 删除考勤记录
|
||||
export function attendanceRecordDelete(params: any) {
|
||||
return request.post({ url: '/project.project_attendance_record/delete', params })
|
||||
}
|
||||
|
||||
// 考勤记录详情
|
||||
export function attendanceRecordDetail(params: any) {
|
||||
return request.get({ url: '/project.project_attendance_record/detail', params })
|
||||
}
|
@ -1,45 +0,0 @@
|
||||
import request from "@/utils/request";
|
||||
|
||||
// 分包合同列表
|
||||
export function apiSubcontractingContractLists(params: any) {
|
||||
return request.get({
|
||||
url: "/contract.subcontracting_contract/lists",
|
||||
params,
|
||||
});
|
||||
}
|
||||
|
||||
// 添加分包合同
|
||||
export function apiSubcontractingContractAdd(params: any) {
|
||||
return request.post({ url: "/contract.subcontracting_contract/add", params });
|
||||
}
|
||||
|
||||
// 编辑分包合同
|
||||
export function apiSubcontractingContractEdit(params: any) {
|
||||
return request.post({
|
||||
url: "/contract.subcontracting_contract/edit",
|
||||
params,
|
||||
});
|
||||
}
|
||||
|
||||
// 删除分包合同
|
||||
export function apiSubcontractingContractDelete(params: any) {
|
||||
return request.post({
|
||||
url: "/contract.subcontracting_contract/delete",
|
||||
params,
|
||||
});
|
||||
}
|
||||
|
||||
// 分包合同详情
|
||||
export function apiSubcontractingContractDetail(params: any) {
|
||||
return request.get({
|
||||
url: "/contract.subcontracting_contract/detail",
|
||||
params,
|
||||
});
|
||||
}
|
||||
|
||||
export function apiSubcontractingContractSearch(params: any) {
|
||||
return request.get({
|
||||
url: "/contract.subcontracting_contract/datas",
|
||||
params,
|
||||
});
|
||||
}
|
@ -1,34 +0,0 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 工程监理--新增检查项列表
|
||||
export function apiSupervisionCheckItemLists(params: any) {
|
||||
return request.get({ url: '/supervision_work.supervision_check_item/lists', params })
|
||||
}
|
||||
|
||||
// 添加工程监理--新增检查项
|
||||
export function apiSupervisionCheckItemAdd(params: any) {
|
||||
return request.post({ url: '/supervision_work.supervision_check_item/add', params })
|
||||
}
|
||||
|
||||
// 编辑工程监理--新增检查项
|
||||
export function apiSupervisionCheckItemEdit(params: any) {
|
||||
return request.post({ url: '/supervision_work.supervision_check_item/edit', params })
|
||||
}
|
||||
|
||||
// 删除工程监理--新增检查项
|
||||
export function apiSupervisionCheckItemDelete(params: any) {
|
||||
return request.post({ url: '/supervision_work.supervision_check_item/delete', params })
|
||||
}
|
||||
|
||||
// 工程监理--新增检查项详情
|
||||
export function apiSupervisionCheckItemDetail(params: any) {
|
||||
return request.get({ url: '/supervision_work.supervision_check_item/detail', params })
|
||||
}
|
||||
|
||||
export function apisupervision_check_item_detailLists(params: any) {
|
||||
return request.get({ url: '/supervision_work.supervision_check_item_detail/lists', params })
|
||||
}
|
||||
|
||||
export function apisupervision_check_item_detail_delete(params: any) {
|
||||
return request.post({ url: '/supervision_work.supervision_check_item_detail/delete', params })
|
||||
}
|
@ -1,26 +0,0 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 工程监理--危大工程监控列表
|
||||
export function apiSupervisionDangerousEngineeringMonitoringLists(params: any) {
|
||||
return request.get({ url: '/supervision_dangerous.supervision_dangerous_engineering_monitoring/lists', params })
|
||||
}
|
||||
|
||||
// 添加工程监理--危大工程监控
|
||||
export function apiSupervisionDangerousEngineeringMonitoringAdd(params: any) {
|
||||
return request.post({ url: '/supervision_dangerous.supervision_dangerous_engineering_monitoring/add', params })
|
||||
}
|
||||
|
||||
// 编辑工程监理--危大工程监控
|
||||
export function apiSupervisionDangerousEngineeringMonitoringEdit(params: any) {
|
||||
return request.post({ url: '/supervision_dangerous.supervision_dangerous_engineering_monitoring/edit', params })
|
||||
}
|
||||
|
||||
// 删除工程监理--危大工程监控
|
||||
export function apiSupervisionDangerousEngineeringMonitoringDelete(params: any) {
|
||||
return request.post({ url: '/supervision_dangerous.supervision_dangerous_engineering_monitoring/delete', params })
|
||||
}
|
||||
|
||||
// 工程监理--危大工程监控详情
|
||||
export function apiSupervisionDangerousEngineeringMonitoringDetail(params: any) {
|
||||
return request.get({ url: '/supervision_dangerous.supervision_dangerous_engineering_monitoring/detail', params })
|
||||
}
|
@ -1,63 +0,0 @@
|
||||
import request from "@/utils/request";
|
||||
|
||||
// 工程监理--材料进场列表
|
||||
export function apiSupervisionMaterialEntryLists(params: any) {
|
||||
return request.get({
|
||||
url: "/supervision_work.supervision_material_entry/lists",
|
||||
params,
|
||||
});
|
||||
}
|
||||
|
||||
// 添加工程监理--材料进场
|
||||
export function apiSupervisionMaterialEntryAdd(params: any) {
|
||||
return request.post({
|
||||
url: "/supervision_work.supervision_material_entry/add",
|
||||
params,
|
||||
});
|
||||
}
|
||||
|
||||
// 编辑工程监理--材料进场
|
||||
export function apiSupervisionMaterialEntryEdit(params: any) {
|
||||
return request.post({
|
||||
url: "/supervision_work.supervision_material_entry/edit",
|
||||
params,
|
||||
});
|
||||
}
|
||||
|
||||
// 删除工程监理--材料进场
|
||||
export function apiSupervisionMaterialEntryDelete(params: any) {
|
||||
return request.post({
|
||||
url: "/supervision_work.supervision_material_entry/delete",
|
||||
params,
|
||||
});
|
||||
}
|
||||
|
||||
// 工程监理--材料进场详情
|
||||
export function apiSupervisionMaterialEntryDetail(params: any) {
|
||||
return request.get({
|
||||
url: "/supervision_work.supervision_material_entry/detail",
|
||||
params,
|
||||
});
|
||||
}
|
||||
|
||||
// 工程监理--材料进场详情
|
||||
export function apisupervision_material_entry_detail(params: any) {
|
||||
return request.get({
|
||||
url: "/supervision_work.supervision_material_entry_detail/lists",
|
||||
params,
|
||||
});
|
||||
}
|
||||
|
||||
export function apisupervision_material_entry_detail_delete(params: any) {
|
||||
return request.post({
|
||||
url: "/supervision_work.supervision_material_entry_detail/delete",
|
||||
params,
|
||||
});
|
||||
}
|
||||
|
||||
export function apiSupervisionMaterialEntrySearch(params: any) {
|
||||
return request.post({
|
||||
url: "/supervision_work.supervision_material_entry/datas",
|
||||
params,
|
||||
});
|
||||
}
|
@ -1,26 +0,0 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 工程监理--材料设备信息列表
|
||||
export function apiSupervisionMaterialEquipmentInfoLists(params: any) {
|
||||
return request.get({ url: '/supervision_work.supervision_material_equipment_info/lists', params })
|
||||
}
|
||||
|
||||
// 添加工程监理--材料设备信息
|
||||
export function apiSupervisionMaterialEquipmentInfoAdd(params: any) {
|
||||
return request.post({ url: '/supervision_work.supervision_material_equipment_info/add', params })
|
||||
}
|
||||
|
||||
// 编辑工程监理--材料设备信息
|
||||
export function apiSupervisionMaterialEquipmentInfoEdit(params: any) {
|
||||
return request.post({ url: '/supervision_work.supervision_material_equipment_info/edit', params })
|
||||
}
|
||||
|
||||
// 删除工程监理--材料设备信息
|
||||
export function apiSupervisionMaterialEquipmentInfoDelete(params: any) {
|
||||
return request.post({ url: '/supervision_work.supervision_material_equipment_info/delete', params })
|
||||
}
|
||||
|
||||
// 工程监理--材料设备信息详情
|
||||
export function apiSupervisionMaterialEquipmentInfoDetail(params: any) {
|
||||
return request.get({ url: '/supervision_work.supervision_material_equipment_info/detail', params })
|
||||
}
|
@ -1,57 +0,0 @@
|
||||
import request from "@/utils/request";
|
||||
|
||||
// 工程监理--参建单位列表
|
||||
export function apiSupervisionParticipatingUnitsLists(params: any) {
|
||||
return request.get({
|
||||
url: "/supervision_project.supervision_participating_units/lists",
|
||||
params,
|
||||
});
|
||||
}
|
||||
|
||||
// 添加工程监理--参建单位
|
||||
export function apiSupervisionParticipatingUnitsAdd(params: any) {
|
||||
return request.post({
|
||||
url: "/supervision_project.supervision_participating_units/add",
|
||||
params,
|
||||
});
|
||||
}
|
||||
|
||||
// 编辑工程监理--参建单位
|
||||
export function apiSupervisionParticipatingUnitsEdit(params: any) {
|
||||
return request.post({
|
||||
url: "/supervision_project.supervision_participating_units/edit",
|
||||
params,
|
||||
});
|
||||
}
|
||||
|
||||
// 删除工程监理--参建单位
|
||||
export function apiSupervisionParticipatingUnitsDelete(params: any) {
|
||||
return request.post({
|
||||
url: "/supervision_project.supervision_participating_units/delete",
|
||||
params,
|
||||
});
|
||||
}
|
||||
|
||||
// 工程监理--参建单位详情
|
||||
export function apiSupervisionParticipatingUnitsDetail(params: any) {
|
||||
return request.get({
|
||||
url: "/supervision_project.supervision_participating_units/detail",
|
||||
params,
|
||||
});
|
||||
}
|
||||
|
||||
// 工程监理--参建单位列表
|
||||
export function supervision_participating_units_contactsapi(params: any) {
|
||||
return request.get({
|
||||
url: "/supervision_project.supervision_participating_units_contacts/lists",
|
||||
params,
|
||||
});
|
||||
}
|
||||
|
||||
//apiSupervisionParticipatingUnitsSearch
|
||||
export function apiSupervisionParticipatingUnitsSearch(params: any) {
|
||||
return request.get({
|
||||
url: "/supervision_project.supervision_participating_units/datas",
|
||||
params,
|
||||
});
|
||||
}
|
@ -1,26 +0,0 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 工程监理--参建单位资质列表
|
||||
export function apiSupervisionParticipatingUnitsQualificationsLists(params: any) {
|
||||
return request.get({ url: '/supervision_qualification_review.supervision_participating_units_qualifications/lists', params })
|
||||
}
|
||||
|
||||
// 添加工程监理--参建单位资质
|
||||
export function apiSupervisionParticipatingUnitsQualificationsAdd(params: any) {
|
||||
return request.post({ url: '/supervision_qualification_review.supervision_participating_units_qualifications/add', params })
|
||||
}
|
||||
|
||||
// 编辑工程监理--参建单位资质
|
||||
export function apiSupervisionParticipatingUnitsQualificationsEdit(params: any) {
|
||||
return request.post({ url: '/supervision_qualification_review.supervision_participating_units_qualifications/edit', params })
|
||||
}
|
||||
|
||||
// 删除工程监理--参建单位资质
|
||||
export function apiSupervisionParticipatingUnitsQualificationsDelete(params: any) {
|
||||
return request.post({ url: '/supervision_qualification_review.supervision_participating_units_qualifications/delete', params })
|
||||
}
|
||||
|
||||
// 工程监理--参建单位资质详情
|
||||
export function apiSupervisionParticipatingUnitsQualificationsDetail(params: any) {
|
||||
return request.get({ url: '/supervision_qualification_review.supervision_participating_units_qualifications/detail', params })
|
||||
}
|
@ -1,48 +0,0 @@
|
||||
import request from "@/utils/request";
|
||||
|
||||
// 工程监理--监理项目信息列表
|
||||
export function apiSupervisionProjectLists(params: any) {
|
||||
return request.get({
|
||||
url: "/supervision_project.supervision_project/lists",
|
||||
params,
|
||||
});
|
||||
}
|
||||
|
||||
// 添加工程监理--监理项目信息
|
||||
export function apiSupervisionProjectAdd(params: any) {
|
||||
return request.post({
|
||||
url: "/supervision_project.supervision_project/add",
|
||||
params,
|
||||
});
|
||||
}
|
||||
|
||||
// 编辑工程监理--监理项目信息
|
||||
export function apiSupervisionProjectEdit(params: any) {
|
||||
return request.post({
|
||||
url: "/supervision_project.supervision_project/edit",
|
||||
params,
|
||||
});
|
||||
}
|
||||
|
||||
// 删除工程监理--监理项目信息
|
||||
export function apiSupervisionProjectDelete(params: any) {
|
||||
return request.post({
|
||||
url: "/supervision_project.supervision_project/delete",
|
||||
params,
|
||||
});
|
||||
}
|
||||
|
||||
// 工程监理--监理项目信息详情
|
||||
export function apiSupervisionProjectDetail(params: any) {
|
||||
return request.get({
|
||||
url: "/supervision_project.supervision_project/detail",
|
||||
params,
|
||||
});
|
||||
}
|
||||
|
||||
export function apiSupervisionProjectSearch(params: any) {
|
||||
return request.get({
|
||||
url: "/supervision_project.supervision_project/datas",
|
||||
params,
|
||||
});
|
||||
}
|
@ -1,30 +0,0 @@
|
||||
import request from "@/utils/request";
|
||||
|
||||
// 供应商表列表
|
||||
export function apisupplierLists(params: any) {
|
||||
return request.get({ url: "/supplier.supplier/lists", params });
|
||||
}
|
||||
|
||||
// 添加供应商
|
||||
export function apisupplierAdd(params: any) {
|
||||
return request.post({ url: "/supplier.supplier/add", params });
|
||||
}
|
||||
|
||||
// 编辑供应商
|
||||
export function apisupplierEdit(params: any) {
|
||||
return request.post({ url: "/supplier.supplier/edit", params });
|
||||
}
|
||||
|
||||
// 删除供应商
|
||||
export function apisupplierDelete(params: any) {
|
||||
return request.post({ url: "/supplier.supplier/delete", params });
|
||||
}
|
||||
|
||||
// 供应商详情
|
||||
export function apisupplierDetail(params: any) {
|
||||
return request.get({ url: "/supplier.supplier/detail", params });
|
||||
}
|
||||
|
||||
export function apiSupplierSearch(params: any) {
|
||||
return request.get({ url: "/supplier.supplier/datas", params });
|
||||
}
|
@ -1,26 +0,0 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 供应商户表列表
|
||||
export function apiSupplierLists(params: any) {
|
||||
return request.get({ url: '/supplier/supplier/lists', params })
|
||||
}
|
||||
|
||||
// 添加供应商户表
|
||||
export function apiSupplierAdd(params: any) {
|
||||
return request.post({ url: '/supplier/supplier/add', params })
|
||||
}
|
||||
|
||||
// 编辑供应商户表
|
||||
export function apiSupplierEdit(params: any) {
|
||||
return request.post({ url: '/supplier/supplier/edit', params })
|
||||
}
|
||||
|
||||
// 删除供应商户表
|
||||
export function apiSupplierDelete(params: any) {
|
||||
return request.post({ url: '/supplier/supplier/delete', params })
|
||||
}
|
||||
|
||||
// 供应商户表详情
|
||||
export function apiSupplierDetail(params: any) {
|
||||
return request.get({ url: '/supplier/supplier/detail', params })
|
||||
}
|
@ -1,26 +0,0 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 任务分配列表
|
||||
export function apiTaskAllocationLists(params: any) {
|
||||
return request.get({ url: '/task.task_allocation/lists', params })
|
||||
}
|
||||
|
||||
// 添加任务分配
|
||||
export function apiTaskAllocationAdd(params: any) {
|
||||
return request.post({ url: '/task.task_allocation/add', params })
|
||||
}
|
||||
|
||||
// 编辑任务分配
|
||||
export function apiTaskAllocationEdit(params: any) {
|
||||
return request.post({ url: '/task.task_allocation/edit', params })
|
||||
}
|
||||
|
||||
// 删除任务分配
|
||||
export function apiTaskAllocationDelete(params: any) {
|
||||
return request.post({ url: '/task.task_allocation/delete', params })
|
||||
}
|
||||
|
||||
// 任务分配详情
|
||||
export function apiTaskAllocationDetail(params: any) {
|
||||
return request.get({ url: '/task.task_allocation/detail', params })
|
||||
}
|
@ -1,26 +0,0 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 任务明细列表
|
||||
export function apiTaskDetailLists(params: any) {
|
||||
return request.get({ url: '/task_detail/lists', params })
|
||||
}
|
||||
|
||||
// 添加任务明细
|
||||
export function apiTaskDetailAdd(params: any) {
|
||||
return request.post({ url: '/task_detail/add', params })
|
||||
}
|
||||
|
||||
// 编辑任务明细
|
||||
export function apiTaskDetailEdit(params: any) {
|
||||
return request.post({ url: '/task_detail/edit', params })
|
||||
}
|
||||
|
||||
// 删除任务明细
|
||||
export function apiTaskDetailDelete(params: any) {
|
||||
return request.post({ url: '/task_detail/delete', params })
|
||||
}
|
||||
|
||||
// 任务明细详情
|
||||
export function apiTaskDetailDetail(params: any) {
|
||||
return request.get({ url: '/task_detail/detail', params })
|
||||
}
|
@ -1,26 +0,0 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 任务办理与三级审核列表
|
||||
export function apiTaskHandlingThreeLevelReviewLists(params: any) {
|
||||
return request.get({ url: '/task_handling_three_level_review/lists', params })
|
||||
}
|
||||
|
||||
// 添加任务办理与三级审核
|
||||
export function apiTaskHandlingThreeLevelReviewAdd(params: any) {
|
||||
return request.post({ url: '/task_handling_three_level_review/add', params })
|
||||
}
|
||||
|
||||
// 编辑任务办理与三级审核
|
||||
export function apiTaskHandlingThreeLevelReviewEdit(params: any) {
|
||||
return request.post({ url: '/task_handling_three_level_review/edit', params })
|
||||
}
|
||||
|
||||
// 删除任务办理与三级审核
|
||||
export function apiTaskHandlingThreeLevelReviewDelete(params: any) {
|
||||
return request.post({ url: '/task_handling_three_level_review/delete', params })
|
||||
}
|
||||
|
||||
// 任务办理与三级审核详情
|
||||
export function apiTaskHandlingThreeLevelReviewDetail(params: any) {
|
||||
return request.get({ url: '/task_handling_three_level_review/detail', params })
|
||||
}
|
@ -1,26 +0,0 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 任务类型列表
|
||||
export function apiTaskTypeLists(params: any) {
|
||||
return request.get({ url: '/task.task_type/lists', params })
|
||||
}
|
||||
|
||||
// 添加任务类型
|
||||
export function apiTaskTypeAdd(params: any) {
|
||||
return request.post({ url: '/task.task_type/add', params })
|
||||
}
|
||||
|
||||
// 编辑任务类型
|
||||
export function apiTaskTypeEdit(params: any) {
|
||||
return request.post({ url: '/task.task_type/edit', params })
|
||||
}
|
||||
|
||||
// 删除任务类型
|
||||
export function apiTaskTypeDelete(params: any) {
|
||||
return request.post({ url: '/task.task_type/delete', params })
|
||||
}
|
||||
|
||||
// 任务类型详情
|
||||
export function apiTaskTypeDetail(params: any) {
|
||||
return request.get({ url: '/task.task_type/detail', params })
|
||||
}
|
@ -1,32 +0,0 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 造价咨询--开票台账列表
|
||||
export function apiZjzxInvoiceLists(params: any) {
|
||||
return request.get({ url: '/zjzx_finance.zjzx_invoice/lists', params })
|
||||
}
|
||||
|
||||
// 添加造价咨询--开票台账
|
||||
export function apiZjzxInvoiceAdd(params: any) {
|
||||
return request.post({ url: '/zjzx_finance.zjzx_invoice/add', params })
|
||||
}
|
||||
|
||||
// 编辑造价咨询--开票台账
|
||||
export function apiZjzxInvoiceEdit(params: any) {
|
||||
return request.post({ url: '/zjzx_finance.zjzx_invoice/edit', params })
|
||||
}
|
||||
|
||||
// 删除造价咨询--开票台账
|
||||
export function apiZjzxInvoiceDelete(params: any) {
|
||||
return request.post({ url: '/zjzx_finance.zjzx_invoice/delete', params })
|
||||
}
|
||||
|
||||
// 造价咨询--开票台账详情
|
||||
export function apiZjzxInvoiceDetail(params: any) {
|
||||
return request.get({ url: '/zjzx_finance.zjzx_invoice/detail', params })
|
||||
}
|
||||
|
||||
// 造价咨询--开票台账列表
|
||||
export function apiZjzxInvoiceDatas(params: any) {
|
||||
return request.get({ url: '/zjzx_finance.zjzx_invoice/datas', params })
|
||||
}
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -60,7 +60,7 @@
|
||||
<script lang="ts" setup name="manageProjectLists">
|
||||
import { usePaging } from '@/hooks/usePaging'
|
||||
import { useDictData } from '@/hooks/useDictOptions'
|
||||
import { apioa_examine_allLists } from '@/api/oaSelfExamine'
|
||||
import { apioa_examine_allLists } from '@/api/oa/oaSelfExamine'
|
||||
import feedback from '@/utils/feedback'
|
||||
|
||||
|
||||
|
@ -33,9 +33,9 @@
|
||||
<script lang="ts" setup name="oaSealCateLists">
|
||||
import { usePaging } from '@/hooks/usePaging'
|
||||
import { useDictData } from '@/hooks/useDictOptions'
|
||||
import { apiOaoaApproveCopy } from '@/api/oa_Initiate'
|
||||
import { apiOaoaApproveCopy } from '@/api/oa/oa_Initiate'
|
||||
import detailPopup from '@/views/oa_Initiate/detail.vue'
|
||||
import { apiOaoaApproveDetail } from "@/api/oa_Initiate"
|
||||
import { apiOaoaApproveDetail } from "@/api/oa/oa_Initiate"
|
||||
|
||||
|
||||
const detailRef = ref(null)
|
||||
|
@ -46,9 +46,9 @@
|
||||
<script lang="ts" setup name="oaSealCateLists">
|
||||
import { usePaging } from '@/hooks/usePaging'
|
||||
import { useDictData } from '@/hooks/useDictOptions'
|
||||
import { apiOaoaApprovelst } from '@/api/oa_Initiate'
|
||||
import { apiOaoaApprovelst } from '@/api/oa/oa_Initiate'
|
||||
import detailPopup from '@/views/oa_Initiate/detail.vue'
|
||||
import { apiOaoaApproveDetail } from "@/api/oa_Initiate"
|
||||
import { apiOaoaApproveDetail } from "@/api/oa/oa_Initiate"
|
||||
|
||||
const detailRef = ref(null)
|
||||
// 是否显示编辑框
|
||||
|
@ -125,7 +125,7 @@
|
||||
<script lang="ts" setup name="customdetail">
|
||||
import annexLink from './../../components/annexLink/index.vue'
|
||||
import Popup from '@/components/popup/index.vue'
|
||||
import { apiOaoaApproveCheck } from "@/api/oa_initiate"
|
||||
import { apiOaoaApproveCheck } from "@/api/oa/oa_Initiate"
|
||||
import useUserStore from "@/stores/modules/user";
|
||||
import { Clock } from '@element-plus/icons-vue'
|
||||
import feedback from './../../utils/feedback'
|
||||
|
@ -37,7 +37,7 @@
|
||||
<script lang="ts" setup name="oaFlowTypeEdit">
|
||||
import generateForm from './../../components/generateForm/index.vue'
|
||||
import Popup from "@/components/popup/index.vue";
|
||||
import { apiOaoaApproveAdd } from "@/api/oa_Initiate"
|
||||
import { apiOaoaApproveAdd } from "@/api/oa/oa_Initiate"
|
||||
import qj from './form/jq/qj.vue'
|
||||
import cc from './form/jq/cc.vue'
|
||||
import wc from './form/jq/wc.vue'
|
||||
|
@ -51,7 +51,7 @@ let props = defineProps({
|
||||
formData: Object,
|
||||
})
|
||||
const formRef = ref(null)
|
||||
import { apiOaCarCateLists } from '@/api/oa_car_cate'
|
||||
import { apiOaCarCateLists } from '@/api/oa/oa_car_cate'
|
||||
let carLists = ref([])
|
||||
apiOaCarCateLists().then(res => {
|
||||
carLists.value = res.lists
|
||||
|
@ -43,7 +43,7 @@ let props = defineProps({
|
||||
formData: Object,
|
||||
})
|
||||
const formRef = ref(null)
|
||||
import { apiOaCarCateLists } from '@/api/oa_car_cate'
|
||||
import { apiOaCarCateLists } from '@/api/oa/oa_car_cate'
|
||||
let carLists = ref([])
|
||||
apiOaCarCateLists().then(res => {
|
||||
carLists.value = res.lists
|
||||
|
@ -70,10 +70,10 @@
|
||||
<script lang="ts" setup>
|
||||
import { ref, shallowRef, nextTick, reactive } from 'vue'
|
||||
import { usePaging } from '@/hooks/usePaging';
|
||||
import { apiOaFlowTypeLists, apiOaoaApproveLists, apiOaoaApproveDetail } from "@/api/oa_Initiate"
|
||||
import { apiOaFlowTypeLists, apiOaoaApproveLists, apiOaoaApproveDetail } from "@/api/oa/oa_Initiate"
|
||||
import EditPopup from './edit.vue'
|
||||
import detailPopup from './detail.vue'
|
||||
import { apiOaFlowTypeDetail } from '@/api/oa_flow_type'
|
||||
import { apiOaFlowTypeDetail } from '@/api/oa/oa_flow_type'
|
||||
|
||||
const editRef = shallowRef<InstanceType<typeof EditPopup>>()
|
||||
// 是否显示编辑框
|
||||
|
@ -117,10 +117,10 @@
|
||||
<script lang="ts" setup name="customdetail">
|
||||
import annexLink from './../../components/annexLink/index.vue'
|
||||
import Popup from '@/components/popup/index.vue'
|
||||
import { apiOaoaApproveCheck } from "@/api/oa_initiate"
|
||||
import { apiOaoaApproveCheck } from "@/api/oa/oa_Initiate"
|
||||
import useUserStore from "@/stores/modules/user";
|
||||
import { Clock } from '@element-plus/icons-vue'
|
||||
import { apiExpenseCheck } from '@/api/oa_financial'
|
||||
import { apiExpenseCheck } from '@/api/oa/oa_financial'
|
||||
|
||||
|
||||
const emit = defineEmits(['close'])
|
||||
|
@ -76,7 +76,7 @@
|
||||
<script lang="ts" setup name="oaFlowTypeEdit">
|
||||
import uploadAnnex from './../../components/uploadAnnex/index.vue'
|
||||
import Popup from "@/components/popup/index.vue";
|
||||
import { apiExpenseAdd } from '@/api/oa_financial'
|
||||
import { apiExpenseAdd } from '@/api/oa/oa_financial'
|
||||
|
||||
|
||||
const emit = defineEmits(["success", "close"]);
|
||||
|
@ -82,7 +82,7 @@
|
||||
|
||||
<script lang="ts" setup name="oaPersonalQuitLists">
|
||||
import { usePaging } from '@/hooks/usePaging'
|
||||
import { apiExpenseList, apiExpenseDetail } from '@/api/oa_financial'
|
||||
import { apiExpenseList, apiExpenseDetail } from '@/api/oa/oa_financial'
|
||||
import { timeFormat } from '@/utils/util'
|
||||
import feedback from '@/utils/feedback'
|
||||
import EditPopup from './edit.vue'
|
||||
|
@ -92,7 +92,7 @@
|
||||
<script lang="ts" setup name="customdetail">
|
||||
import annexLink from "./../../components/annexLink/index.vue";
|
||||
import Popup from "@/components/popup/index.vue";
|
||||
import { apiInvliceLists } from '@/api/oa_financial'
|
||||
import { apiInvliceLists } from '@/api/oa/oa_financial'
|
||||
|
||||
const emit = defineEmits(["close"]);
|
||||
const popupRef = shallowRef<InstanceType<typeof Popup>>();
|
||||
|
@ -120,7 +120,7 @@
|
||||
<script lang="ts" setup name="customdetail">
|
||||
import annexLink from "./../../components/annexLink/index.vue";
|
||||
import Popup from "@/components/popup/index.vue";
|
||||
import { apiInvliceLists, apiInvlicevAdd, apiInvlicevFdz } from '@/api/oa_financial'
|
||||
import { apiInvliceLists, apiInvlicevAdd, apiInvlicevFdz } from '@/api/oa/oa_financial'
|
||||
import { defineEmits } from "vue"
|
||||
const popupRef = shallowRef<InstanceType<typeof Popup>>();
|
||||
const emit = defineEmits(["success", "close"]);
|
||||
|
@ -66,7 +66,7 @@
|
||||
import { usePaging } from '@/hooks/usePaging'
|
||||
import detailPopup from './detail.vue'
|
||||
import EditPopup from './edit.vue'
|
||||
import { apiInvliceIncomeIndex, apiInvliceDetail, apiInvliceList2 } from '@/api/oa_financial'
|
||||
import { apiInvliceIncomeIndex, apiInvliceDetail, apiInvliceList2 } from '@/api/oa/oa_financial'
|
||||
|
||||
const detailRef = ref(null)
|
||||
// 是否显示编辑框
|
||||
|
@ -19,7 +19,7 @@
|
||||
<script lang="ts" setup name="oaCarCateEdit">
|
||||
import type { FormInstance } from 'element-plus'
|
||||
import Popup from '@/components/popup/index.vue'
|
||||
import { apiOaCarCateAdd, apiOaCarCateEdit, apiOaCarCateDetail } from '@/api/oa_car_cate'
|
||||
import { apiOaCarCateAdd, apiOaCarCateEdit, apiOaCarCateDetail } from '@/api/oa/oa_car_cate'
|
||||
import { timeFormat } from '@/utils/util'
|
||||
import type { PropType } from 'vue'
|
||||
defineProps({
|
||||
|
@ -62,7 +62,7 @@
|
||||
<script lang="ts" setup name="oaCarCateLists">
|
||||
import { usePaging } from '@/hooks/usePaging'
|
||||
import { useDictData } from '@/hooks/useDictOptions'
|
||||
import { apiOaCarCateLists, apiOaCarCateDelete } from '@/api/oa_car_cate'
|
||||
import { apiOaCarCateLists, apiOaCarCateDelete } from '@/api/oa/oa_car_cate'
|
||||
import { timeFormat } from '@/utils/util'
|
||||
import feedback from '@/utils/feedback'
|
||||
import EditPopup from './edit.vue'
|
||||
|
@ -105,10 +105,10 @@
|
||||
<script lang="ts" setup name="customdetail">
|
||||
import annexLink from './../../components/annexLink/index.vue'
|
||||
import Popup from '@/components/popup/index.vue'
|
||||
import { apiOaoaApproveCheck } from "@/api/oa_initiate"
|
||||
import { apiOaoaApproveCheck } from "@/api/oa/oa_Initiate"
|
||||
import useUserStore from "@/stores/modules/user";
|
||||
import { Clock } from '@element-plus/icons-vue'
|
||||
import { apiExpenseCheck } from '@/api/oa_financial'
|
||||
import { apiExpenseCheck } from '@/api/oa/oa_financial'
|
||||
|
||||
|
||||
const emit = defineEmits(['close'])
|
||||
@ -131,7 +131,6 @@ const setFormData = async (data: Record<any, any>) => {
|
||||
formData[key] = data[key]
|
||||
}
|
||||
}
|
||||
console.log(formData)
|
||||
}
|
||||
|
||||
|
||||
|
@ -61,7 +61,7 @@
|
||||
<script lang="ts" setup name="oaPersonalQuitLists">
|
||||
import { usePaging } from '@/hooks/usePaging'
|
||||
import { useDictData } from '@/hooks/useDictOptions'
|
||||
import { apiExpenseCopyList, apiExpenseDetail } from '@/api/oa_financial'
|
||||
import { apiExpenseCopyList, apiExpenseDetail } from '@/api/oa/oa_financial'
|
||||
import { timeFormat } from '@/utils/util'
|
||||
import feedback from '@/utils/feedback'
|
||||
import detailPopup from './detail.vue'
|
||||
|
@ -39,7 +39,7 @@
|
||||
<script lang="ts" setup name="oaDepartmentChangeEdit">
|
||||
import type { FormInstance } from 'element-plus'
|
||||
import Popup from '@/components/popup/index.vue'
|
||||
import { apiOaDepartmentChangeAdd, apiOaDepartmentChangeEdit, apiOaDepartmentChangeDetail } from '@/api/oa_department_change'
|
||||
import { apiOaDepartmentChangeAdd, apiOaDepartmentChangeEdit, apiOaDepartmentChangeDetail } from '@/api/oa/oa_department_change'
|
||||
import { timeFormat } from '@/utils/util'
|
||||
import type { PropType } from 'vue'
|
||||
defineProps({
|
||||
|
@ -60,7 +60,7 @@
|
||||
<script lang="ts" setup name="oaDepartmentChangeLists">
|
||||
import { usePaging } from '@/hooks/usePaging'
|
||||
import { useDictData } from '@/hooks/useDictOptions'
|
||||
import { apiOaDepartmentChangeLists, apiOaDepartmentChangeDelete } from '@/api/oa_department_change'
|
||||
import { apiOaDepartmentChangeLists, apiOaDepartmentChangeDelete } from '@/api/oa/oa_department_change'
|
||||
import { deptLists } from "@/api/org/department";
|
||||
import feedback from '@/utils/feedback'
|
||||
import EditPopup from './edit.vue'
|
||||
|
@ -62,7 +62,7 @@ import annexLink from './../../components/annexLink/index.vue'
|
||||
import Popup from '@/components/popup/index.vue'
|
||||
import useUserStore from "@/stores/modules/user";
|
||||
import { Clock } from '@element-plus/icons-vue'
|
||||
import { apiInvliceCheck } from '@/api/oa_financial'
|
||||
import { apiInvliceCheck } from '@/api/oa/oa_financial'
|
||||
import feedback from '@/utils/feedback'
|
||||
|
||||
|
||||
|
@ -114,9 +114,9 @@ import Popup from '@/components/popup/index.vue'
|
||||
import type { PropType } from 'vue'
|
||||
import { timeFormat } from '@/utils/util'
|
||||
import { oa_self_examine } from "@/components/dialogTable/dialogTableConfig";
|
||||
import { apiExpenseAdd, apiExpenseEdit, apiExpensedelete_detail } from '@/api/oa_examine'
|
||||
import { apiExpenseAdd, apiExpenseEdit, apiExpensedelete_detail } from '@/api/oa/oa_examine'
|
||||
import useUserStore from "@/stores/modules/user";
|
||||
import { apiOaSelfExamineDetail } from '@/api/oaSelfExamine'
|
||||
import { apiOaSelfExamineDetail } from '@/api/oa/oaSelfExamine'
|
||||
|
||||
|
||||
defineProps({
|
||||
|
@ -74,7 +74,7 @@
|
||||
<script lang="ts" setup name="manageProjectLists">
|
||||
import { ref, reactive } from "vue"
|
||||
import { usePaging } from '@/hooks/usePaging'
|
||||
import { apiExpenseList, apiExpenseDelete, apiExpenseDetail } from '@/api/oa_examine'
|
||||
import { apiExpenseList, apiExpenseDelete, apiExpenseDetail } from '@/api/oa/oa_examine'
|
||||
import { useDictData } from '@/hooks/useDictOptions'
|
||||
import EditPopup from './edit.vue'
|
||||
import detailPopup from './detail.vue'
|
||||
|
@ -68,7 +68,7 @@
|
||||
<script lang="ts" setup name="manageProjectEdit">
|
||||
import type { FormInstance } from 'element-plus'
|
||||
import Popup from '@/components/popup/index.vue'
|
||||
import { apiOaExamineTempAdd, apiOaExamineTempEdit, apiOaExamineTempItemDetail } from '@/api/oa_examine_temp_item.ts'
|
||||
import { apiOaExamineTempAdd, apiOaExamineTempEdit, apiOaExamineTempItemDetail } from '@/api/oa/oa_examine_temp_item.ts'
|
||||
import type { PropType } from 'vue'
|
||||
import { timeFormat } from '@/utils/util'
|
||||
import { number } from 'echarts'
|
||||
|
@ -67,7 +67,7 @@
|
||||
<script lang="ts" setup name="manageProjectLists">
|
||||
import { usePaging } from '@/hooks/usePaging'
|
||||
import { useDictData } from '@/hooks/useDictOptions'
|
||||
import { apiOaExamineTempLists, apiOaExamineTempDetail, apiOaExamineTempDelete } from '@/api/oa_examine_temp_item.ts'
|
||||
import { apiOaExamineTempLists, apiOaExamineTempDetail, apiOaExamineTempDelete } from '@/api/oa/oa_examine_temp_item.ts'
|
||||
import feedback from '@/utils/feedback'
|
||||
import EditPopup from './edit.vue'
|
||||
|
||||
|
@ -140,7 +140,7 @@ import personnelSelector from '@/components/personnelselector/index.vue'
|
||||
import { ref } from "vue"
|
||||
import type { PropType } from "vue";
|
||||
import { oa_flow_type } from "@/components/dialogTable/dialogTableConfig.ts"
|
||||
import { apiOaFlowAdd, apiOaFlowEdit } from '@/api/oa_flow'
|
||||
import { apiOaFlowAdd, apiOaFlowEdit } from '@/api/oa/oa_flow'
|
||||
|
||||
defineProps({
|
||||
dictData: {
|
||||
|
@ -70,7 +70,7 @@
|
||||
<script lang="ts" setup name="oaFlowLists">
|
||||
import { usePaging } from '@/hooks/usePaging'
|
||||
import { useDictData } from '@/hooks/useDictOptions'
|
||||
import { apiOaFlowLists, apiOaFlowDelete, apiOaFlowDetail } from '@/api/oa_flow'
|
||||
import { apiOaFlowLists, apiOaFlowDelete, apiOaFlowDetail } from '@/api/oa/oa_flow'
|
||||
import feedback from '@/utils/feedback'
|
||||
import EditPopup from './edit.vue'
|
||||
import { deptLists } from "@/api/org/department";
|
||||
|
@ -102,7 +102,7 @@ import {
|
||||
apiOaFlowTypeAdd,
|
||||
apiOaFlowTypeEdit,
|
||||
apiOaFlowTypeDetail,
|
||||
} from "@/api/oa_flow_type";
|
||||
} from "@/api/oa/oa_flow_type";
|
||||
import { timeFormat } from "@/utils/util";
|
||||
import type { PropType } from "vue";
|
||||
defineProps({
|
||||
|
@ -76,7 +76,7 @@
|
||||
<script lang="ts" setup name="oaFlowTypeLists">
|
||||
import { usePaging } from '@/hooks/usePaging'
|
||||
import { useDictData } from '@/hooks/useDictOptions'
|
||||
import { apiOaFlowTypeLists, apiOaFlowTypeDelete, apiOaFlowTypeDetail } from '@/api/oa_flow_type'
|
||||
import { apiOaFlowTypeLists, apiOaFlowTypeDelete, apiOaFlowTypeDetail } from '@/api/oa/oa_flow_type'
|
||||
import { timeFormat } from '@/utils/util'
|
||||
import feedback from '@/utils/feedback'
|
||||
import EditPopup from './edit.vue'
|
||||
|
@ -126,7 +126,7 @@ import annexLink from './../../components/annexLink/index.vue'
|
||||
import Popup from '@/components/popup/index.vue'
|
||||
import useUserStore from "@/stores/modules/user";
|
||||
import { Clock } from '@element-plus/icons-vue'
|
||||
import { apiInvliceCheck } from '@/api/oa_financial'
|
||||
import { apiInvliceCheck } from '@/api/oa/oa_financial'
|
||||
import feedback from '@/utils/feedback'
|
||||
|
||||
|
||||
|
@ -91,7 +91,7 @@
|
||||
<script lang="ts" setup name="oaFlowTypeEdit">
|
||||
import uploadAnnex from './../../components/uploadAnnex/index.vue'
|
||||
import Popup from "@/components/popup/index.vue";
|
||||
import { apiInvoiceAdd } from '@/api/oa_financial'
|
||||
import { apiInvoiceAdd } from '@/api/oa/oa_financial'
|
||||
|
||||
|
||||
const emit = defineEmits(["success", "close"]);
|
||||
|
@ -12,7 +12,7 @@
|
||||
value-format="YYYY-MM-DD" placeholder="选择结束时间">
|
||||
</el-date-picker>
|
||||
</el-form-item>
|
||||
<el-form-item label="状态" prop="quit_time">
|
||||
<el-form-item label="状态" prop="quit_time" class="w-[160px]">
|
||||
<el-select v-model="queryParams.status" placeholder="请选择状态" class="flex-1">
|
||||
<el-option label="全部" value="0" />
|
||||
<el-option label="待审核" value="1" />
|
||||
@ -85,7 +85,7 @@
|
||||
<script lang="ts" setup name="oaPersonalQuitLists">
|
||||
import { usePaging } from '@/hooks/usePaging'
|
||||
import { useDictData } from '@/hooks/useDictOptions'
|
||||
import { apiInvliceList, apiInvliceDetail } from '@/api/oa_financial'
|
||||
import { apiInvliceList, apiInvliceDetail } from '@/api/oa/oa_financial'
|
||||
import { timeFormat } from '@/utils/util'
|
||||
import feedback from '@/utils/feedback'
|
||||
import EditPopup from './edit.vue'
|
||||
|
@ -126,7 +126,7 @@ import annexLink from './../../components/annexLink/index.vue'
|
||||
import Popup from '@/components/popup/index.vue'
|
||||
import useUserStore from "@/stores/modules/user";
|
||||
import { Clock } from '@element-plus/icons-vue'
|
||||
import { apiInvliceCheck } from '@/api/oa_financial'
|
||||
import { apiInvliceCheck } from '@/api/oa/oa_financial'
|
||||
|
||||
|
||||
const emit = defineEmits(['close'])
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user