mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-06 03:57:54 +08:00
190 lines
3.2 KiB
Vue
190 lines
3.2 KiB
Vue
<template>
|
|
<div>
|
|
<n-h1>接口功能测试</n-h1>
|
|
<n-space>
|
|
<n-button
|
|
strong
|
|
secondary
|
|
type="success"
|
|
@click="pinter"
|
|
>
|
|
check env
|
|
</n-button>
|
|
<n-button
|
|
strong
|
|
secondary
|
|
type="success"
|
|
@click="get"
|
|
>
|
|
use online get
|
|
</n-button>
|
|
<n-button
|
|
strong
|
|
secondary
|
|
type="success"
|
|
@click="post"
|
|
>
|
|
use online post
|
|
</n-button>
|
|
<n-button
|
|
strong
|
|
secondary
|
|
type="success"
|
|
@click="formPost"
|
|
>
|
|
use online formPost
|
|
</n-button>
|
|
<n-button
|
|
strong
|
|
secondary
|
|
type="success"
|
|
@click="delete2"
|
|
>
|
|
use online delete
|
|
</n-button>
|
|
<n-button
|
|
strong
|
|
secondary
|
|
type="success"
|
|
@click="put"
|
|
>
|
|
use online put
|
|
</n-button>
|
|
<n-button
|
|
strong
|
|
secondary
|
|
type="success"
|
|
@click="mock"
|
|
>
|
|
to use mock
|
|
</n-button>
|
|
<n-button
|
|
strong
|
|
secondary
|
|
type="error"
|
|
@click="failedRequest"
|
|
>
|
|
请求失败
|
|
</n-button>
|
|
<n-button
|
|
strong
|
|
secondary
|
|
type="error"
|
|
@click="failedResponse"
|
|
>
|
|
响应失败
|
|
</n-button>
|
|
<n-button
|
|
strong
|
|
secondary
|
|
type="error"
|
|
@click="failedResponse_NT"
|
|
>
|
|
响应失败(无提示)
|
|
</n-button>
|
|
<n-button
|
|
strong
|
|
secondary
|
|
@click="updataToken"
|
|
>
|
|
测试刷新token接口
|
|
</n-button>
|
|
</n-space>
|
|
|
|
{{ msg }}
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import {
|
|
fetachGet,
|
|
fetachPost,
|
|
fetachFormPost,
|
|
fetachDelete,
|
|
fetachPut,
|
|
fetchMock,
|
|
testFailedRequest,
|
|
testFailedResponse,
|
|
testFailedResponse_NT,
|
|
testUpdataToken,
|
|
} from '@/service';
|
|
|
|
import { ref } from 'vue';
|
|
const msg = ref();
|
|
const pinter = () => {
|
|
msg.value = import.meta.env;
|
|
};
|
|
const get = () => {
|
|
fetachGet({a:112211}).then((res) => {
|
|
msg.value = res;
|
|
});
|
|
};
|
|
const delete2 = () => {
|
|
fetachDelete().then((res) => {
|
|
msg.value = res;
|
|
});
|
|
};
|
|
const post = () => {
|
|
const params = {
|
|
data: '2022-2-2',
|
|
data1: [],
|
|
data2: {},
|
|
data3: '',
|
|
data4: null,
|
|
data5: undefined,
|
|
};
|
|
fetachPost(params).then((res) => {
|
|
msg.value = res;
|
|
});
|
|
};
|
|
|
|
function formPost() {
|
|
const params = {
|
|
data: '2022-2-2',
|
|
};
|
|
fetachFormPost(params).then((res) => {
|
|
msg.value = res;
|
|
});
|
|
}
|
|
const put = () => {
|
|
const params = {
|
|
data: '2022-2-2',
|
|
};
|
|
fetachPut(params).then((res) => {
|
|
msg.value = res;
|
|
});
|
|
};
|
|
|
|
// 测试请求失败
|
|
const failedRequest = () => {
|
|
testFailedRequest().then((res) => {
|
|
msg.value = res;
|
|
});
|
|
};
|
|
// 测试业务失败
|
|
const failedResponse = () => {
|
|
testFailedResponse().then((res) => {
|
|
msg.value = res;
|
|
});
|
|
};
|
|
// 测试业务失败无提示
|
|
const failedResponse_NT = () => {
|
|
testFailedResponse_NT().then((res) => {
|
|
msg.value = res;
|
|
});
|
|
};
|
|
// 测试刷新token
|
|
const updataToken = () => {
|
|
testUpdataToken().then((res) => {
|
|
msg.value = res;
|
|
});
|
|
};
|
|
const mock = () => {
|
|
fetchMock().then((res) => {
|
|
msg.value = res;
|
|
});
|
|
};
|
|
</script>
|
|
|
|
<style scoped></style>
|