接口对接优化
This commit is contained in:
parent
d02cb070cf
commit
108c72c9eb
|
|
@ -154,6 +154,7 @@ export function getReplacelistApi(data) {
|
|||
params:data
|
||||
})
|
||||
}
|
||||
//备案人员列表
|
||||
export function getSysUserListApi(data) {
|
||||
return request({
|
||||
url: '/certificate/certificate_returnmanage/certificateAtake/sysUserlist',
|
||||
|
|
@ -164,6 +165,18 @@ export function getSysUserListApi(data) {
|
|||
params:data
|
||||
})
|
||||
}
|
||||
//申请人列表 applyType 1 存证 2 取证
|
||||
export function getApplyUserListApi(data) {
|
||||
return request({
|
||||
url: '/certificate/certificate_check/certificateCheck/applyUserlist',
|
||||
method: 'get',
|
||||
headers: {
|
||||
//"merchant-id":"378915229716713472",
|
||||
},
|
||||
params:data
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
export function getApplyUserListApi(data) {
|
||||
return request({
|
||||
|
|
|
|||
|
|
@ -393,7 +393,7 @@
|
|||
<script>
|
||||
import { getUser } from '@/api/system/user'
|
||||
import { getCertificateApplyListPageApi,addCertificateApplyApi, editCertificateApplyApi,
|
||||
delCertificateApplyApi,revokeCertificateApplyApi,getSysUserListApi,applyCheckProcessApi,applyCertificateNoListApi,thridListApi } from "@/api/certificateManage/index";
|
||||
delCertificateApplyApi,revokeCertificateApplyApi,getApplyUserListApi,applyCheckProcessApi,applyCertificateNoListApi,thridListApi } from "@/api/certificateManage/index";
|
||||
import base64 from 'base-64';
|
||||
import { getToken } from '@/utils/auth'
|
||||
import { downloadFileByUrl } from '@/utils/download'
|
||||
|
|
@ -613,7 +613,7 @@
|
|||
const param={"applyType":this.baseForm.applyType,pageNum:1,pageSize:100}
|
||||
this.$set(this.baseForm,"name",null)
|
||||
this.$set(this.baseForm,"userId",null)
|
||||
getSysUserListApi(param).then(response => {
|
||||
getApplyUserListApi(param).then(response => {
|
||||
console.log("response",response);
|
||||
this.allUserList=response;
|
||||
});
|
||||
|
|
|
|||
|
|
@ -152,8 +152,7 @@
|
|||
updateDept,
|
||||
listDeptExcludeChild,
|
||||
} from '@/api/system/dept'
|
||||
import { getCertificateCheckListPageApi,addCertificateCheckApi, updateCertificateInfoApi,
|
||||
deleteCertificateInfoApi,getSysUserListApi } from "@/api/certificateManage/index";
|
||||
import { getCertificateCheckListPageApi,addCertificateCheckApi } from "@/api/certificateManage/index";
|
||||
import base64 from 'base-64';
|
||||
import { getToken } from '@/utils/auth'
|
||||
import { downloadFileByUrl } from '@/utils/download'
|
||||
|
|
|
|||
Loading…
Reference in New Issue