init project

This commit is contained in:
2021-01-15 17:38:18 +08:00
parent dc16453704
commit 1b4a68e3c2
15 changed files with 278 additions and 177 deletions

19
src/views/CA/Index.vue Normal file
View File

@@ -0,0 +1,19 @@
<template>
<div class="ca_index">
数字证书管理
<router-view></router-view>
</div>
</template>
<style lang="less" scoped></style>
<script>
import { get } from "@/services/http.js";
export default {
name: "index",
components: {},
async created() {
var res = await get("/api2/dictionary/children", { code: "abc" });
console.log(res);
}
};
</script>