|
@@ -4,65 +4,55 @@
|
|
|
<div class="wtxqDiv">
|
|
<div class="wtxqDiv">
|
|
|
<div class="wtxqConten">
|
|
<div class="wtxqConten">
|
|
|
<div class="wtxqItem">
|
|
<div class="wtxqItem">
|
|
|
- 水库名称:<span>{{ wtxqValue.name }}</span>
|
|
|
|
|
|
|
+ 水库名称:<span>{{ wtxqValue.nm }}</span>
|
|
|
</div>
|
|
</div>
|
|
|
<div class="wtxqItem">
|
|
<div class="wtxqItem">
|
|
|
- 问题类别:<span>{{ wtxqValue.wtlb }}</span>
|
|
|
|
|
|
|
+ 问题类别:<span>{{ wtxqValue.inspPblmName }}</span>
|
|
|
</div>
|
|
</div>
|
|
|
<div class="wtxqItem">
|
|
<div class="wtxqItem">
|
|
|
- 检查项目:<span>{{ wtxqValue.jcxm }}</span>
|
|
|
|
|
|
|
+ 检查项目:<span>{{ wtxqValue.checkPoint }}</span>
|
|
|
</div>
|
|
</div>
|
|
|
<div class="wtxqItem">
|
|
<div class="wtxqItem">
|
|
|
- 问题描述:<span>{{ wtxqValue.wtms }}</span>
|
|
|
|
|
|
|
+ 问题描述:<span>{{ wtxqValue.pblmDesc }}</span>
|
|
|
</div>
|
|
</div>
|
|
|
<div class="wtxqItem">
|
|
<div class="wtxqItem">
|
|
|
- 详细描述:<span>{{ wtxqValue.xxms }}</span>
|
|
|
|
|
|
|
+ 详细描述:<span>{{ wtxqValue.note }}</span>
|
|
|
</div>
|
|
</div>
|
|
|
<div class="wtxqItem">问题责任单位:{{ wtxqValue.inspPblmOrgName }}</div>
|
|
<div class="wtxqItem">问题责任单位:{{ wtxqValue.inspPblmOrgName }}</div>
|
|
|
- <div class="wtxqItem">扣分值:{{ wtxqValue.kfz }}</div>
|
|
|
|
|
- <div class="wtxqItem">典型问题:{{ wtxqValue.dxwt }}</div>
|
|
|
|
|
- <div class="wtxqItem">经度:{{ wtxqValue.jd }}</div>
|
|
|
|
|
- <div class="wtxqItem">维度:{{ wtxqValue.wd }}</div>
|
|
|
|
|
- <div class="wtxqItem">
|
|
|
|
|
- 备注:<span>{{ wtxqValue.bz }}</span>
|
|
|
|
|
- </div>
|
|
|
|
|
|
|
+ <div class="wtxqItem">扣分值:{{ wtxqValue.score }}</div>
|
|
|
|
|
+ <div class="wtxqItem">典型问题:{{ wtxqValue.ifCasePblm }}</div>
|
|
|
</div>
|
|
</div>
|
|
|
<div class="wtxqConten">
|
|
<div class="wtxqConten">
|
|
|
- <div class="wtxqItem">上报人员:{{ wtxqValue.sbry }}</div>
|
|
|
|
|
|
|
+ <div class="wtxqItem">上报人员:{{ wtxqValue.persName }}</div>
|
|
|
<div class="wtxqItem">上报时间:{{ wtxqValue.tm }}</div>
|
|
<div class="wtxqItem">上报时间:{{ wtxqValue.tm }}</div>
|
|
|
</div>
|
|
</div>
|
|
|
- <div class="wtxqConten">
|
|
|
|
|
- <div class="wtxqItem">多媒体</div>
|
|
|
|
|
- <div class="dmtList"></div>
|
|
|
|
|
- </div>
|
|
|
|
|
</div>
|
|
</div>
|
|
|
</div>
|
|
</div>
|
|
|
</template>
|
|
</template>
|
|
|
<script setup>
|
|
<script setup>
|
|
|
-import { defineEmits, ref, watch } from "vue";
|
|
|
|
|
|
|
+import { defineEmits, onMounted, ref, watch } from "vue";
|
|
|
import { getCurrGroup } from "@/api/inspect.js";
|
|
import { getCurrGroup } from "@/api/inspect.js";
|
|
|
import { jumpPage } from "@/utils/page";
|
|
import { jumpPage } from "@/utils/page";
|
|
|
import { useRoute, useRouter } from "vue-router";
|
|
import { useRoute, useRouter } from "vue-router";
|
|
|
|
|
+import request from "@/utils/request";
|
|
|
const router = useRouter();
|
|
const router = useRouter();
|
|
|
const wtxqValue = ref({
|
|
const wtxqValue = ref({
|
|
|
- name: "枫山水库",
|
|
|
|
|
- wtlb: "工程实体",
|
|
|
|
|
- jcxm: "工程管理、保护范围内禁止性行为",
|
|
|
|
|
- wtms: "工程管理和保护范围内有危害性工程安全的活动",
|
|
|
|
|
- xxms: "库区管理范围内存在恢复耕地施工行为",
|
|
|
|
|
- kfz: "",
|
|
|
|
|
- dxwt: 0,
|
|
|
|
|
- jd: "119.09487468",
|
|
|
|
|
- wd: "25.57170182",
|
|
|
|
|
- bz: "",
|
|
|
|
|
- sbry: "张盛友",
|
|
|
|
|
- tm: "2025-03-28 16:41",
|
|
|
|
|
- dmt: "枫山水库",
|
|
|
|
|
});
|
|
});
|
|
|
|
|
|
|
|
function onClickLeft() {
|
|
function onClickLeft() {
|
|
|
router.go(-1);
|
|
router.go(-1);
|
|
|
}
|
|
}
|
|
|
|
|
+onMounted(() => {
|
|
|
|
|
+ const route = useRoute();
|
|
|
|
|
+ var par = JSON.parse(route.query.object);
|
|
|
|
|
+ if (route.query.object) {
|
|
|
|
|
+ request.get(`/dc/insp/pblm/${par.id}`).then(res=>{
|
|
|
|
|
+ wtxqValue.value = res.data;
|
|
|
|
|
+ wtxqValue.value.tm = new Date(wtxqValue.value.collTime).toLocaleString();
|
|
|
|
|
+ wtxqValue.value.ifCasePblm = wtxqValue.value.ifCasePblm === '1' ? '是' : '否';
|
|
|
|
|
+ })
|
|
|
|
|
+ }
|
|
|
|
|
+})
|
|
|
</script>
|
|
</script>
|
|
|
<style lang="scss" scoped>
|
|
<style lang="scss" scoped>
|
|
|
.wtxqConten {
|
|
.wtxqConten {
|