41 lines
648 B
Vue
41 lines
648 B
Vue
<template>
|
|
<div class="centerBottomRight">
|
|
<Card title="质量待办">
|
|
|
|
</Card>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import Card from "@/components/card.vue";
|
|
import { ref, watch, onMounted } from "vue";
|
|
import { getStageOption } from "@/api/modules/projectOverview";
|
|
import { GlobalStore } from "@/stores";
|
|
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.centerBottomRight {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
::v-deep .h-card .content {
|
|
height: 80%;
|
|
margin-top: 4%;
|
|
}
|
|
.notoDta {
|
|
bottom: 10%;
|
|
width: 20%;
|
|
left: 35%;
|
|
text-align: center;
|
|
position: absolute;
|
|
img {
|
|
width: 40%;
|
|
}
|
|
div {
|
|
color: #fff;
|
|
font-size: 14px;
|
|
}
|
|
}
|
|
</style>
|