|
@@ -0,0 +1,151 @@
|
|
|
+<template>
|
|
|
+ <div>
|
|
|
+ <div class="detailList">
|
|
|
+ <el-descriptions :column="1" border>
|
|
|
+ <el-descriptions-item
|
|
|
+ label="图斑编号"
|
|
|
+ label-class-name="my-label"
|
|
|
+ content-class-name="my-content"
|
|
|
+ >{{ "6401812024070108270002" }}</el-descriptions-item
|
|
|
+ >
|
|
|
+ <el-descriptions-item
|
|
|
+ label="外业核实情况"
|
|
|
+ content-class-name="my-content"
|
|
|
+ :span="3"
|
|
|
+ >{{ "已核实" }}</el-descriptions-item
|
|
|
+ >
|
|
|
+ <el-descriptions-item label="实际地类代码">{{
|
|
|
+ "4601"
|
|
|
+ }}</el-descriptions-item>
|
|
|
+ <el-descriptions-item label="调查人员">{{
|
|
|
+ "刘子规"
|
|
|
+ }}</el-descriptions-item>
|
|
|
+ <el-descriptions-item label="调查时间">{{
|
|
|
+ "20240116"
|
|
|
+ }}</el-descriptions-item>
|
|
|
+ <el-descriptions-item label="扩展信息1">{{ "1" }}</el-descriptions-item>
|
|
|
+ <el-descriptions-item label="扩展信息2">{{
|
|
|
+ "无"
|
|
|
+ }}</el-descriptions-item>
|
|
|
+ <el-descriptions-item label="扩展信息3">{{
|
|
|
+ "无"
|
|
|
+ }}</el-descriptions-item>
|
|
|
+ </el-descriptions>
|
|
|
+ </div>
|
|
|
+ <div class="imgCon">
|
|
|
+ <div class="echartTitle">
|
|
|
+ <div class="block-title">监测类型情况</div>
|
|
|
+ <div class="selectTab"></div>
|
|
|
+ </div>
|
|
|
+ <div class="imgList">
|
|
|
+ <div class="imgDiv" v-for="(item, i) in monitorList" :key="i">
|
|
|
+ <span>{{ i + 1 }}</span>
|
|
|
+ <img :src="item.imgUrl" />
|
|
|
+ <p>{{ item.info }}</p>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+export default {
|
|
|
+ props: {
|
|
|
+ detailObj: {
|
|
|
+ type: Object,
|
|
|
+ },
|
|
|
+ },
|
|
|
+ components: {},
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ monitorList: [
|
|
|
+ {
|
|
|
+ imgUrl: require("./u385.jpg"),
|
|
|
+ info: "2024-09-27 15:04",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ imgUrl: require("./u385.jpg"),
|
|
|
+ info: "2024-09-27 15:04",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ imgUrl: require("./u385.jpg"),
|
|
|
+ info: "2024-09-27 15:04",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ imgUrl: require("./u385.jpg"),
|
|
|
+ info: "2024-09-27 15:04",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ imgUrl: require("./u385.jpg"),
|
|
|
+ info: "2024-09-27 15:04",
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ };
|
|
|
+ },
|
|
|
+ computed: {},
|
|
|
+ mounted() {},
|
|
|
+ methods: {
|
|
|
+ changeData(name, updata) {
|
|
|
+ this[name] = updata;
|
|
|
+ },
|
|
|
+ },
|
|
|
+ watch: {},
|
|
|
+ watch: {},
|
|
|
+ beforeDestroy() {},
|
|
|
+};
|
|
|
+</script>
|
|
|
+
|
|
|
+<style lang="less" scoped>
|
|
|
+/deep/ .el-descriptions-item__label.is-bordered-label {
|
|
|
+ color: #fff;
|
|
|
+ background-color: transparent;
|
|
|
+}
|
|
|
+/deep/ .el-descriptions__body {
|
|
|
+ color: #fff;
|
|
|
+ background-color: transparent;
|
|
|
+}
|
|
|
+.imgCon {
|
|
|
+ .imgList {
|
|
|
+ width: 100%;
|
|
|
+ height: 410px;
|
|
|
+ background-color: rgba(255, 192, 203, 0.372);
|
|
|
+ .imgDiv {
|
|
|
+ width: 126px;
|
|
|
+ height: 83px;
|
|
|
+ background-color: rgba(0, 255, 255, 0.413);
|
|
|
+ position: relative;
|
|
|
+ img {
|
|
|
+ width: 126px;
|
|
|
+ height: 83px;
|
|
|
+ }
|
|
|
+ span {
|
|
|
+ width: 26px;
|
|
|
+ height: 26px;
|
|
|
+ display: inline-block;
|
|
|
+ position: absolute;
|
|
|
+ top: 0;
|
|
|
+ left: 0;
|
|
|
+ background: #dbad70;
|
|
|
+ text-align: center;
|
|
|
+ line-height: 26px;
|
|
|
+ }
|
|
|
+ p {
|
|
|
+ position: absolute;
|
|
|
+ bottom: 0;
|
|
|
+ font-size: 10px;
|
|
|
+ color: #33ccff;
|
|
|
+ text-align: center;
|
|
|
+ width: 100%;
|
|
|
+ height: 30px;
|
|
|
+ line-height: 30px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+.detailList {
|
|
|
+ margin-top: 10px;
|
|
|
+}
|
|
|
+/deep/ .el-descriptions .is-bordered .el-descriptions-item__cell {
|
|
|
+ padding: 3px;
|
|
|
+}
|
|
|
+</style>
|