init project
This commit is contained in:
@@ -1,5 +0,0 @@
|
||||
<template>
|
||||
<div class="about">
|
||||
<h1>This is an about page</h1>
|
||||
</div>
|
||||
</template>
|
||||
19
src/views/CA/Index.vue
Normal file
19
src/views/CA/Index.vue
Normal 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>
|
||||
7
src/views/CA/UnitApply.vue
Normal file
7
src/views/CA/UnitApply.vue
Normal file
@@ -0,0 +1,7 @@
|
||||
<template>
|
||||
<div class="ca_apply">
|
||||
ca_unit_apply
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script></script>
|
||||
7
src/views/CA/UserApply.vue
Normal file
7
src/views/CA/UserApply.vue
Normal file
@@ -0,0 +1,7 @@
|
||||
<template>
|
||||
<div class="ca_apply">
|
||||
ca_user_apply
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script></script>
|
||||
@@ -1,18 +1,11 @@
|
||||
<template>
|
||||
<div class="home">
|
||||
<img alt="Vue logo" src="../assets/logo.png" />
|
||||
<HelloWorld msg="Welcome to Your Vue.js App" />
|
||||
</div>
|
||||
<div class="home"></div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
// @ is an alias to /src
|
||||
import HelloWorld from "@/components/HelloWorld.vue";
|
||||
|
||||
export default {
|
||||
name: "Home",
|
||||
components: {
|
||||
HelloWorld
|
||||
}
|
||||
name: "Home"
|
||||
};
|
||||
</script>
|
||||
|
||||
Reference in New Issue
Block a user