From b0432ef3a837a952b1347a52565ef6f7410d5273 Mon Sep 17 00:00:00 2001 From: shijing Date: Fri, 1 Sep 2023 15:23:10 +0800 Subject: [PATCH] fix : 0901 --- server/dist/index_zs.html | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/server/dist/index_zs.html b/server/dist/index_zs.html index 5b5f47d..96260e2 100644 --- a/server/dist/index_zs.html +++ b/server/dist/index_zs.html @@ -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;