完成后端接口调用(证书查询)
This commit is contained in:
parent
a70c0c0634
commit
6371e125ca
|
@ -13,10 +13,15 @@ import moment from "moment"
|
||||||
import VueClipboard from "vue-clipboard2";
|
import VueClipboard from "vue-clipboard2";
|
||||||
import JsonViewer from 'vue-json-viewer'
|
import JsonViewer from 'vue-json-viewer'
|
||||||
|
|
||||||
|
import Axios from "axios"
|
||||||
|
import api from './utils/http/index'
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Vue.use(api)
|
||||||
|
Vue.prototype.$axios = Axios
|
||||||
|
|
||||||
Vue.prototype.$moment = moment;
|
Vue.prototype.$moment = moment;
|
||||||
Vue.use(VueClipboard)
|
Vue.use(VueClipboard)
|
||||||
Vue.use(JsonViewer)
|
Vue.use(JsonViewer)
|
||||||
|
|
|
@ -8,16 +8,17 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<!--测试UUID:E29A018E9D46460FBDA73FB07ECDDE90-->
|
||||||
<div class="card">
|
<div class="card">
|
||||||
|
|
||||||
<div class="card-num">证书编号:2023OSCCIND00001</div>
|
<div class="card-num">证书编号:{{certificateNum}}</div>
|
||||||
<div class="card-title">红山开源平台<br>优秀开源贡献个人</div>
|
<div class="card-title" v-html="certificateName"></div>
|
||||||
<img class="card-img" src="../assets/icon/zq-icon.svg">
|
<img class="card-img" src="../assets/icon/zq-icon.svg">
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
<div class="zs">
|
<div class="zs">
|
||||||
<img class="zs-img" src="../assets/zs.png">
|
<img class="zs-img" :src="certificateImg">
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -27,9 +28,50 @@
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import "../assets/font/font.scss";
|
import "../assets/font/font.scss";
|
||||||
|
import PageUtils from "@/utils/pageUtils";
|
||||||
|
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "CertificateQuery"
|
name: "CertificateQuery",
|
||||||
|
data(){
|
||||||
|
return{
|
||||||
|
certificateNum :'',
|
||||||
|
certificateName : "",
|
||||||
|
certificateImg: "http://192.168.1.198:8020/api/files/rjgb3k-7e1be11c3c888250849b64ba0e06e12.png"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods:{
|
||||||
|
|
||||||
|
checkUid(){
|
||||||
|
|
||||||
|
var UUID = this.$route.params.certificateUuid
|
||||||
|
if (!UUID || UUID === null ) {
|
||||||
|
// do something if UUID is empty or null
|
||||||
|
//跳转
|
||||||
|
PageUtils.openPage(this.$router,"/CertificateQueryNotFound")
|
||||||
|
}else {
|
||||||
|
var certificateInfo = {
|
||||||
|
certificateUuid : UUID
|
||||||
|
}
|
||||||
|
this.$api.getCertificateInfoByUUID(certificateInfo).then((res)=>{
|
||||||
|
|
||||||
|
if (res.status === 0) {
|
||||||
|
this.certificateImg = "/api/" + res.data.certificateImg
|
||||||
|
this.certificateNum = res.data.certificateNum
|
||||||
|
this.certificateName = res.data.certificateName
|
||||||
|
}else {
|
||||||
|
//跳转
|
||||||
|
PageUtils.openPage(this.$router,"/CertificateQueryNotFound")
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
this.checkUid();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
|
@ -58,12 +58,12 @@ let routes = [
|
||||||
|
|
||||||
|
|
||||||
{
|
{
|
||||||
path: '/certificateQuery',
|
path: '/certificateQuery/:certificateUuid',
|
||||||
component: () => import("@/layout/PhoneLayout"),
|
component: () => import("@/layout/PhoneLayout"),
|
||||||
name: 'certificateQuery',
|
name: 'certificateQuery',
|
||||||
children: [
|
children: [
|
||||||
{
|
{
|
||||||
path: '/certificateQuery',
|
path: '/certificateQuery/:certificateUuid',
|
||||||
component: () => import("@/page/CertificateQuery"),
|
component: () => import("@/page/CertificateQuery"),
|
||||||
name: 'certificateQuery',
|
name: 'certificateQuery',
|
||||||
},
|
},
|
||||||
|
|
|
@ -0,0 +1,166 @@
|
||||||
|
import axios from 'axios' // 注意先安装哦
|
||||||
|
import config from './config' // 倒入默认配置
|
||||||
|
// import qs from 'qs' // 序列化请求数据,视服务端的要求
|
||||||
|
import router from '../../router'
|
||||||
|
import { Message } from 'element-ui'
|
||||||
|
|
||||||
|
|
||||||
|
export default function $axios (options) {
|
||||||
|
return new Promise((resolve, reject) => {
|
||||||
|
const instance = axios.create({
|
||||||
|
baseURL: config.baseURL,
|
||||||
|
headers: {},
|
||||||
|
// eslint-disable-next-line no-unused-vars
|
||||||
|
transformResponse: [function (data) {
|
||||||
|
}]
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
// request 拦截器
|
||||||
|
instance.interceptors.request.use(
|
||||||
|
config => {
|
||||||
|
// Tip: 1
|
||||||
|
// 请求开始的时候可以结合 vuex 开启全屏的 loading 动画
|
||||||
|
|
||||||
|
// Tip: 2
|
||||||
|
// 带上 token , 可以结合 vuex 或者重 localStorage
|
||||||
|
// let token = localStorage.getItem("systemToken")
|
||||||
|
// if (token) {
|
||||||
|
// config.headers.accessToken = token
|
||||||
|
// }else {
|
||||||
|
// router.push('/login')
|
||||||
|
// }
|
||||||
|
// if (store.getters.token) {
|
||||||
|
// config.headers['X-Token'] = getToken() // 让每个请求携带token--['X-Token']为自定义key 请根据实际情况自行修改
|
||||||
|
// } else {
|
||||||
|
// // 重定向到登录页面
|
||||||
|
// }
|
||||||
|
|
||||||
|
// Tip: 3
|
||||||
|
// 根据请求方法,序列化传来的参数,根据后端需求是否序列化
|
||||||
|
if (config.method.toLocaleLowerCase() === 'post'
|
||||||
|
|| config.method.toLocaleLowerCase() === 'put'
|
||||||
|
|| config.method.toLocaleLowerCase() === 'delete') {
|
||||||
|
|
||||||
|
// config.data = qs.stringify(config.data)
|
||||||
|
}
|
||||||
|
return config;
|
||||||
|
},
|
||||||
|
error => {
|
||||||
|
// 请求错误时做些事(接口错误、超时等)
|
||||||
|
// Tip: 4
|
||||||
|
// 关闭loadding
|
||||||
|
console.log('request:', error);
|
||||||
|
|
||||||
|
// 1.判断请求超时
|
||||||
|
if (error.code === 'ECONNABORTED' && error.message.indexOf('timeout') !== -1) {
|
||||||
|
console.log('根据你设置的timeout/真的请求超时 判断请求现在超时了,你可以在这里加入超时的处理方案')
|
||||||
|
// return service.request(originalRequest);//例如再重复请求一次
|
||||||
|
}
|
||||||
|
// 2.需要重定向到错误页面
|
||||||
|
const errorInfo = error.response
|
||||||
|
console.log(errorInfo)
|
||||||
|
if (errorInfo) {
|
||||||
|
// error =errorInfo.data//页面那边catch的时候就能拿到详细的错误信息,看最下边的Promise.reject
|
||||||
|
const errorStatus = errorInfo.status; // 404 403 500 ... 等
|
||||||
|
router.push({
|
||||||
|
path: `/error/${errorStatus}`
|
||||||
|
})
|
||||||
|
}
|
||||||
|
return Promise.reject(error) // 在调用的那边可以拿到(catch)你想返回的错误信息
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
// response 拦截器
|
||||||
|
instance.interceptors.response.use(
|
||||||
|
response => {
|
||||||
|
let data;
|
||||||
|
// IE9时response.data是undefined,因此需要使用response.request.responseText(Stringify后的字符串)
|
||||||
|
if(response.data == undefined){
|
||||||
|
data = JSON.parse(response.request.responseText)
|
||||||
|
} else{
|
||||||
|
data = response.data
|
||||||
|
}
|
||||||
|
// 根据返回的code值来做不同的处理(和后端约定)
|
||||||
|
switch (data.code) {
|
||||||
|
case '':
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
}
|
||||||
|
// 若不是正确的返回code,且已经登录,就抛出错误
|
||||||
|
// const err = new Error(data.description)
|
||||||
|
|
||||||
|
// err.data = data
|
||||||
|
// err.response = response
|
||||||
|
|
||||||
|
// throw err
|
||||||
|
return data;
|
||||||
|
},
|
||||||
|
err => {
|
||||||
|
if (err && err.response) {
|
||||||
|
switch (err.response.status) {
|
||||||
|
case 400:
|
||||||
|
err.message = '请求错误';
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 401:
|
||||||
|
err.message = '未授权,请登录';
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 403:
|
||||||
|
err.message = '拒绝访问';
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 404:
|
||||||
|
err.message = `请求地址出错: ${err.response.config.url}`;
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 408:
|
||||||
|
err.message = '请求超时';
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 500:
|
||||||
|
err.message = '服务器内部错误';
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 501:
|
||||||
|
err.message = '服务未实现';
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 502:
|
||||||
|
err.message = '网关错误';
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 503:
|
||||||
|
err.message = '服务不可用';
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 504:
|
||||||
|
err.message = '网关超时';
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 505:
|
||||||
|
err.message = 'HTTP版本不受支持';
|
||||||
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
}
|
||||||
|
}
|
||||||
|
console.error(err);
|
||||||
|
// 此处我使用的是 element UI 的提示组件
|
||||||
|
Message.error(`ERROR: ${err}`);
|
||||||
|
return Promise.reject(err); // 返回接口返回的错误信息
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
//请求处理
|
||||||
|
instance(options)
|
||||||
|
.then((res) => {
|
||||||
|
resolve(res);
|
||||||
|
return false
|
||||||
|
})
|
||||||
|
.catch((error) => {
|
||||||
|
reject(error);
|
||||||
|
})
|
||||||
|
})
|
||||||
|
}
|
|
@ -0,0 +1,17 @@
|
||||||
|
export default {
|
||||||
|
method: 'post',
|
||||||
|
// 基础url前缀
|
||||||
|
baseURL: '/api',
|
||||||
|
// 请求头信息
|
||||||
|
headers: {
|
||||||
|
'Content-Type':'application/json;charset=UTF-8'
|
||||||
|
},
|
||||||
|
// 参数
|
||||||
|
data: {},
|
||||||
|
// 设置超时时间
|
||||||
|
timeout: 100000,
|
||||||
|
// 携带凭证
|
||||||
|
withCredentials: false,
|
||||||
|
// 返回数据类型
|
||||||
|
responseType: 'json'
|
||||||
|
}
|
|
@ -0,0 +1,17 @@
|
||||||
|
// 导入定义的统一接口
|
||||||
|
import apiList from './interface'
|
||||||
|
|
||||||
|
const install = Vue => {
|
||||||
|
if (install.installed) return;
|
||||||
|
|
||||||
|
install.installed = true;
|
||||||
|
Object.defineProperties(Vue.prototype, {
|
||||||
|
// 注意哦,此处挂载在 Vue 原型的 $api 对象上
|
||||||
|
$api: {
|
||||||
|
get() {
|
||||||
|
return apiList
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
};
|
||||||
|
export default install
|
|
@ -0,0 +1,25 @@
|
||||||
|
// 导入 api
|
||||||
|
import axios from './api'
|
||||||
|
|
||||||
|
/* 将所有接口统一起来便于维护
|
||||||
|
* 如果项目很大可以将 url 独立成文件,接口分成不同的模块
|
||||||
|
* 此处的数据依然来自 Easy Mock
|
||||||
|
*/
|
||||||
|
|
||||||
|
export const getCertificateInfoByUUID = data => {
|
||||||
|
return axios({
|
||||||
|
|
||||||
|
url: '/certificate/search',
|
||||||
|
method: 'post',
|
||||||
|
data
|
||||||
|
})
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
// 默认全部倒出
|
||||||
|
// 根据需要进行
|
||||||
|
export default {
|
||||||
|
getCertificateInfoByUUID
|
||||||
|
}
|
|
@ -14,7 +14,7 @@ module.exports = {
|
||||||
port:8020,
|
port:8020,
|
||||||
proxy: {
|
proxy: {
|
||||||
'/api': {
|
'/api': {
|
||||||
target: 'http://localhost:8010',
|
target: 'http://localhost:8001',
|
||||||
changeOrigin: true,
|
changeOrigin: true,
|
||||||
pathRewrite: {
|
pathRewrite: {
|
||||||
'^/api': ''
|
'^/api': ''
|
||||||
|
|
Loading…
Reference in New Issue