69 lines
2.0 KiB
Vue
69 lines
2.0 KiB
Vue
|
<template>
|
|||
|
<div class="itemXs_Box">
|
|||
|
<div class="itemXs_Mc">
|
|||
|
情报描述情报描述情报描述情报措述情描述情报描述情报描述情报描,情报描述情报描述情报描述情报措述情描述情报描述情报描述情报描,
|
|||
|
</div>
|
|||
|
<div class="itemXs_Ms">
|
|||
|
情报描述情报描述情报描述情报措述情描述情报描述情报描述情报描,情报描述情报描述情报描述情报措述情描述情报描述情报描述情报描,
|
|||
|
</div>
|
|||
|
<div class="itemXs_Xs flex just-between align-center">
|
|||
|
<div class=" flex just-between align-center"><el-icon class="icon"><Histogram /></el-icon>1000</div>
|
|||
|
<div class=" flex just-between align-center"><el-icon class="icon"><ChatDotSquare /></el-icon>15522</div>
|
|||
|
<div class=" flex just-between align-center"><el-icon class="icon"><Clock /></el-icon>2025-10-10 10:10:10</div>
|
|||
|
<div class=" flex just-between align-center"><el-icon class="icon"><Avatar /></el-icon>张三</div>
|
|||
|
<div>情报类型:测试数据</div>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
</template>
|
|||
|
|
|||
|
<script setup>
|
|||
|
import PageTitle from "@/components/aboutTable/PageTitle.vue";
|
|||
|
import Search from "@/components/aboutTable/Search.vue";
|
|||
|
import { qcckGet, qcckPost } from "@/api/qcckApi.js";
|
|||
|
import { reactive, ref, onMounted, getCurrentInstance, nextTick } from "vue";
|
|||
|
const props = defineProps({
|
|||
|
item: {
|
|||
|
type: Object,
|
|||
|
default: () => { },
|
|||
|
},
|
|||
|
})
|
|||
|
</script>
|
|||
|
|
|||
|
<style lang="scss" scoped>
|
|||
|
.itemXs_Box {
|
|||
|
box-sizing: border-box;
|
|||
|
border: 1px solid red;
|
|||
|
// height: 100px;
|
|||
|
width: 40%;
|
|||
|
border-radius: 10px;
|
|||
|
padding: 10px 15px;
|
|||
|
|
|||
|
.itemXs_Mc {
|
|||
|
font-size: 16px;
|
|||
|
font-weight: 700;
|
|||
|
color: #de0909;
|
|||
|
overflow: hidden;
|
|||
|
white-space: nowrap;
|
|||
|
text-overflow: ellipsis;
|
|||
|
line-height: 20px;
|
|||
|
}
|
|||
|
|
|||
|
.itemXs_Ms {
|
|||
|
color: #ccc;
|
|||
|
font-size: 14px;
|
|||
|
overflow: hidden;
|
|||
|
white-space: nowrap;
|
|||
|
text-overflow: ellipsis;
|
|||
|
margin: 10px 0;
|
|||
|
}
|
|||
|
.itemXs_Xs{
|
|||
|
font-size: 16px;
|
|||
|
color: #ccc;
|
|||
|
line-height: 20px;
|
|||
|
.icon{
|
|||
|
font-size: 22px;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
</style>
|