整理1
This commit is contained in:
parent
cb4d8513e1
commit
494437cde2
@ -11,16 +11,16 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="mt-12 ml-8 flex space-x-16 h-full">
|
||||
<div class="flex flex-col space-y-6 border-r border-gray-200 w-80 h-full p-8">
|
||||
<p class="text-lg">子系统名称:后台管理系统</p>
|
||||
<p>子系统周期:10天</p>
|
||||
<p>项目开始时间:</p>
|
||||
<p>项目完成时间:</p>
|
||||
<div class="space-y-2">
|
||||
<p>工作量:</p>
|
||||
<p>20人/天</p>
|
||||
</div>
|
||||
</div>
|
||||
<!-- <div class="flex flex-col space-y-6 border-r border-gray-200 w-80 h-full p-8">-->
|
||||
<!-- <p class="text-lg">子系统名称:后台管理系统</p>-->
|
||||
<!-- <p>子系统周期:10天</p>-->
|
||||
<!-- <p>项目开始时间:</p>-->
|
||||
<!-- <p>项目完成时间:</p>-->
|
||||
<!-- <div class="space-y-2">-->
|
||||
<!-- <p>工作量:</p>-->
|
||||
<!-- <p>20人/天</p>-->
|
||||
<!-- </div>-->
|
||||
<!-- </div>-->
|
||||
|
||||
<div v-for="(ChildModule, index) in ChildModules" :key="index" class="flex space-x-9" >
|
||||
<a-card class="relative bg-blue-400 w-72 h-36 text-white rounded-xl">
|
||||
|
@ -9,16 +9,16 @@
|
||||
<button class="rounded-lg bg-red-500 hover:bg-red-600 p-1.5 text-white" @click="showAddModal">新增子系统</button>
|
||||
</div>
|
||||
<div class="mt-12 ml-8 flex space-x-16 h-full">
|
||||
<div class="flex flex-col space-y-6 border-r border-gray-200 w-80 h-full p-8">
|
||||
<p class="text-lg">项目名称:梁溪区纪委大数据管理平台{{ ChildSystems.name }}</p>
|
||||
<p>项目周期:3个月</p>
|
||||
<p>项目开始时间:</p>
|
||||
<p>项目完成时间:</p>
|
||||
<div class="space-y-2">
|
||||
<p>工作量:</p>
|
||||
<p>20人/天</p>
|
||||
</div>
|
||||
</div>
|
||||
<!-- <div class="flex flex-col space-y-6 border-r border-gray-200 w-80 h-full p-8">-->
|
||||
<!-- <p class="text-lg">项目名称:梁溪区纪委大数据管理平台{{ ChildSystems.name }}</p>-->
|
||||
<!-- <p>项目周期:3个月</p>-->
|
||||
<!-- <p>项目开始时间:</p>-->
|
||||
<!-- <p>项目完成时间:</p>-->
|
||||
<!-- <div class="space-y-2">-->
|
||||
<!-- <p>工作量:</p>-->
|
||||
<!-- <p>20人/天</p>-->
|
||||
<!-- </div>-->
|
||||
<!-- </div>-->
|
||||
<div class="flex flex-row justify-start space-x-5 container">
|
||||
<div v-for="(ChildSystem, index) in ChildSystems" :key="index" class="flex flex-row justify-start space-x-5">
|
||||
<a-card
|
||||
|
@ -156,10 +156,10 @@ onMounted(
|
||||
tagsData.value = res.data.data
|
||||
})
|
||||
// 默认获取全部数据
|
||||
request.projectGet(token).then(res => {
|
||||
console.log(res)
|
||||
|
||||
})
|
||||
// request.projectGet(token).then(res => {
|
||||
// console.log(res)
|
||||
//
|
||||
// })
|
||||
}
|
||||
)
|
||||
|
||||
|
@ -41,7 +41,7 @@
|
||||
<a-list-item>{{ item }}</a-list-item>
|
||||
</template>
|
||||
<template #header>
|
||||
<div class="text-2xl text-blue-400">登录注册模块</div>
|
||||
<div class="text-2xl text-blue-400">{{moduleInfo.data.name}}</div>
|
||||
</template>
|
||||
</a-list>
|
||||
</div>
|
||||
@ -58,13 +58,14 @@ const route = useRoute()
|
||||
const token = window.localStorage.getItem("token")
|
||||
|
||||
const moduleInfo = reactive({
|
||||
name:'',
|
||||
data:{}
|
||||
|
||||
})
|
||||
|
||||
onMounted(()=>{
|
||||
request.getModuleInfo(route.params.id, token).then((res)=>{
|
||||
console.log("ModuleInfo:", res)
|
||||
moduleInfo.data = res.data.data
|
||||
})
|
||||
})
|
||||
</script>
|
Loading…
x
Reference in New Issue
Block a user