fix : 0901
This commit is contained in:
parent
1378eb0de2
commit
b0432ef3a8
|
@ -253,9 +253,12 @@ user-scalable: 用户是否能缩放页面 -->
|
|||
that.imgSrc = '';
|
||||
if(that.type==0){
|
||||
if(that.form.number!==''){
|
||||
axios.get('https://testsearch.ctc.ac.cn/api/edu/certificate/',{params:{证书编号:that.form.number}})
|
||||
axios.get('https://testsearch.ctc.ac.cn/api/edu/certificate/',{params:{证书编号:that.form.number,page:0}})
|
||||
.then(res => {
|
||||
debugger;
|
||||
console.log(res.data.data)
|
||||
if(res.data.data.length>0){
|
||||
|
||||
that.dataList = res.data.data;
|
||||
}else{
|
||||
that.warningTxtx='暂未查询到您的相关证书!'
|
||||
|
@ -271,12 +274,12 @@ user-scalable: 用户是否能缩放页面 -->
|
|||
}else{
|
||||
if(that.form.name!==''){
|
||||
if(that.form.deptName!==''){
|
||||
axios.get('https://testsearch.ctc.ac.cn/api/edu/certificate/',{params:{姓名:that.form.name,单位名称:that.form.deptName}})
|
||||
axios.get('https://testsearch.ctc.ac.cn/api/edu/certificate/',{params:{姓名:that.form.name,单位名称:that.form.deptName,page:0}})
|
||||
.then(res => {
|
||||
if(res.data.data.length>0){
|
||||
that.dataList = res.data.data;
|
||||
}else{
|
||||
axios.get('https://testsearch.ctc.ac.cn/api/edu/certificate/',{params:{姓名:that.form.name,所属单位:that.form.deptName}})
|
||||
axios.get('https://testsearch.ctc.ac.cn/api/edu/certificate/',{params:{姓名:that.form.name,所属单位:that.form.deptName,page:0}})
|
||||
.then(res => {
|
||||
if(res.data.data.length>0){
|
||||
that.dataList = res.data.data;
|
||||
|
|
Loading…
Reference in New Issue