|
@@ -50,14 +50,15 @@ export const apiSearchCustome=params=>{
|
|
|
* @param {string} Keyword 搜索关键字(对应客户名称)
|
|
|
*/
|
|
|
export const apiSearchContract=params=>{
|
|
|
- return httpGet('/contract/list',{...params,Status:'已审批'})
|
|
|
+ // return httpGet('/contract/list',{...params,Status:'已审批'})
|
|
|
+ return httpGet('/contract_approval/list',{...params,Status:'已审批',PageSize:10000})
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 审批单列表
|
|
|
* @param {type} Status 状态:待审批、处理中、已审批、已作废
|
|
|
*/
|
|
|
-export const apiSealList=params=>{
|
|
|
+export const apiSealApproveList=params=>{
|
|
|
return httpGet('/seal_approval/list',params)
|
|
|
}
|
|
|
|
|
@@ -115,4 +116,11 @@ export const apiSealEdit=params=>{
|
|
|
*/
|
|
|
export const apiSealCancelApply=params=>{
|
|
|
return httpGet('/seal_approval/cancelApply',params)
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * 用印列表
|
|
|
+ */
|
|
|
+export const apiSealList=params=>{
|
|
|
+ return httpGet('/seal/list',params)
|
|
|
}
|