|
|
@@ -0,0 +1,35 @@
|
|
|
+<template>
|
|
|
+ <div>
|
|
|
+ <span class="font-20">入库项目</span>
|
|
|
+ <div class="mt-20 flex flex-center">
|
|
|
+ <div>
|
|
|
+ <el-icon color="red"><WarningFilled /></el-icon>
|
|
|
+ <span class="text-left mr-10"
|
|
|
+ >填写了项目实际入库时间后的项目将不在预审管理中显示</span
|
|
|
+ >
|
|
|
+ </div>
|
|
|
+ <el-button>项目预审·</el-button>
|
|
|
+ </div>
|
|
|
+ <div v-for="i in 10" :key="i">
|
|
|
+ <div
|
|
|
+ class="flex flex-center flex-justify-between border-bottom padding-bottom padding-top"
|
|
|
+ >
|
|
|
+ <el-checkbox />
|
|
|
+ <div>项目名i称</div>
|
|
|
+ <el-icon color="red"><WarningFilled /></el-icon>
|
|
|
+ <el-divider direction="vertical" />
|
|
|
+ <div class="font-12">上报时间:2023-06-18</div>
|
|
|
+ <el-icon color="#ECAB56"><WarningFilled /></el-icon>
|
|
|
+ <el-icon color="#ECAB56"><DeleteFilled /></el-icon>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+export default {
|
|
|
+ name: 'info'
|
|
|
+}
|
|
|
+</script>
|
|
|
+
|
|
|
+<style scoped></style>
|