|
@@ -63,7 +63,7 @@
|
|
|
@queryTable="getList"
|
|
|
></right-toolbar>
|
|
|
</el-row>
|
|
|
-
|
|
|
+ <numCard :sdlist="sdlist"></numCard>
|
|
|
<el-table
|
|
|
v-loading="loading"
|
|
|
:data="dkjbxxList"
|
|
@@ -71,8 +71,8 @@
|
|
|
>
|
|
|
<el-table-column type="selection" width="55" align="center" />
|
|
|
<el-table-column label="地块编号" align="center" prop="dkbh" />
|
|
|
- <el-table-column label="监测面积(亩)" align="center" prop="dkmj" />
|
|
|
<el-table-column label="行政区名称" align="center" prop="xmc" />
|
|
|
+ <el-table-column label="监测面积(亩)" align="center" prop="dkmj" />
|
|
|
<el-table-column label="前类型" align="center" prop="qlx" />
|
|
|
<el-table-column label="后类型" align="center" prop="hlx" />
|
|
|
<el-table-column label="前时相" align="center" prop="qsx" />
|
|
@@ -140,7 +140,7 @@ import {
|
|
|
addDkjbxx,
|
|
|
updateDkjbxx,
|
|
|
} from "@/api/rsmonitoring/dkjbxx";
|
|
|
-import { listRole } from "@/api/system/role";
|
|
|
+import numCard from "@/components/numCard";
|
|
|
const { proxy } = getCurrentInstance();
|
|
|
|
|
|
const dkjbxxList = ref([]);
|
|
@@ -169,7 +169,7 @@ const { queryParams, form, rules } = toRefs(data);
|
|
|
/** 查询地块基本信息(DKJBXX)列表 */
|
|
|
function getList() {
|
|
|
loading.value = true;
|
|
|
- listRole(queryParams.value).then((response) => {
|
|
|
+ listDkjbxx(queryParams.value).then((response) => {
|
|
|
dkjbxxList.value = response.rows;
|
|
|
total.value = response.total;
|
|
|
loading.value = false;
|