<!-- 空白页 -->
|
<script setup>
|
import request from "@/utils/request";
|
import { ElMessage } from "element-plus";
|
</script>
|
<script>
|
export default {
|
mounted() {
|
//获取数据
|
var data="ProcessId="+"P24032508";
|
request.get("/TidyUpGlassModule/SelectTerritoryInfo?"+data).then((res) => {
|
if (res.code == 200) {
|
for(var i=0;i<res.data.length;i++){
|
//遍历数据
|
}
|
f1()
|
} else {blank
|
ElMessage.warning(res.msg)
|
router.push("/login")
|
}
|
});
|
},
|
methods: {
|
//方法
|
f1() {
|
|
}
|
}
|
}
|
|
|
</script>
|
|
|
|
<template>
|
<div ref="content">
|
<canvas ref="mycanvas"></canvas>
|
</div>
|
</template>
|
|
<style scoped>
|
#main {
|
width: 100%;
|
height: 100%;
|
}
|
|
|
|
#div-title {
|
height: 5%;
|
width: 100%;
|
}
|
|
#searchButton {
|
margin-top: -5px;
|
margin-left: 1rem;
|
}
|
|
/*main-body样式*/
|
#main-body {
|
width: 99%;
|
height: 92%;
|
margin-top: 1%;
|
}
|
|
#select {
|
margin-left: 0.5rem;
|
}
|
|
:deep(.indexTag .el-breadcrumb__inner) {
|
color: #5CADFE !important;
|
}
|
</style>
|