|
@@ -38,7 +38,7 @@
|
|
|
<div class="box1">
|
|
|
<van-search
|
|
|
v-model="keyword"
|
|
|
- placeholder="所属区县"
|
|
|
+ placeholder="搜索"
|
|
|
class="common-search"
|
|
|
:left-icon="searchImg"
|
|
|
show-action
|
|
@@ -68,7 +68,6 @@
|
|
|
label="位置"
|
|
|
prop="name"
|
|
|
align="center"
|
|
|
- width="150px"
|
|
|
/>
|
|
|
<el-table-column
|
|
|
label="雨量"
|
|
@@ -84,7 +83,7 @@
|
|
|
/>
|
|
|
<el-table-column label="操作" align="center" width="50px">
|
|
|
<template #default="scope">
|
|
|
- <div class="btn" @click="showDetails(scope.row)" style="color: #1d92ff">播放</div>
|
|
|
+ <div class="btn" @click="showDetails(scope.row)" style="color: #1d92ff">查看</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
@@ -98,7 +97,9 @@ import { reactive, ref } from "vue";
|
|
|
import searchImg from "@/assets/images/search.png";
|
|
|
import { ElTable, ElTableColumn } from "element-plus";
|
|
|
import { getPointInfo } from "@/api/disasterRiskMonitor/rainfall";
|
|
|
+import {useDict} from "@/utils/dict";
|
|
|
|
|
|
+const { district_type } = toRefs<any>(useDict('district_type'));
|
|
|
const router = useRouter();
|
|
|
let detailsData = ref({
|
|
|
dataList: []
|