123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673 |
- <template>
- <div class="page-container">
- <<<<<<< HEAD
- <div>
- <router-view></router-view> <!-- 关键:子路由渲染位置 -->
- </div>
- =======
- <!-- 上半部分:地图 + 柱状图 -->
- <div class="top-content">
- <!-- 灌溉水输入通量计算模块 -->
- <div class="irrigation-form">
- <div class="form-header">
- <h3>灌溉水输入通量计算</h3>
- </div>
-
- <div class="form-body">
- <div class="land-form-row">
- <!-- 水田 -->
- <div class="land-form">
- <h4>水田</h4>
- <el-form :model="irrigationData.paddy" label-position="top">
- <el-form-item label="灌溉水用量 (吨/公顷)">
- <el-input-number
- v-model="irrigationData.paddy.usage"
- :min="0"
- :step="100"
- ></el-input-number>
- </el-form-item>
- <el-form-item label="灌溉水有效利用率 (%)">
- <el-input-number
- v-model="irrigationData.paddy.efficiency"
- :min="0"
- :max="100"
- :step="5"
- ></el-input-number>
- </el-form-item>
- <el-form-item label="计算通量(吨/公顷·年)">
- <el-input
- v-model="irrigationData.paddy.flux"
- readonly
- class="flux-input"
- >
- </el-input>
- </el-form-item>
- <el-button
- type="primary"
- @click="calculateFlux('paddy')"
- class="calculate-btn"
- >计算水田通量</el-button>
- </el-form>
- </div>
-
- <!-- 水浇地 -->
- <div class="land-form">
- <h4>水浇地</h4>
- <el-form :model="irrigationData.irrigated" label-position="top">
- <el-form-item label="灌溉水用量 (吨/公顷)">
- <el-input-number
- v-model="irrigationData.irrigated.usage"
- :min="0"
- :step="100"
- ></el-input-number>
- </el-form-item>
- <el-form-item label="灌溉水有效利用率 (%)">
- <el-input-number
- v-model="irrigationData.irrigated.efficiency"
- :min="0"
- :max="100"
- :step="5"
- ></el-input-number>
- </el-form-item>
- <el-form-item label="计算通量(吨/公顷·年)">
- <el-input
- v-model="irrigationData.irrigated.flux"
- readonly
- class="flux-input"
- >
- </el-input>
- </el-form-item>
- <el-button
- type="primary"
- @click="calculateFlux('irrigated')"
- class="calculate-btn"
- >计算水浇地通量</el-button>
- </el-form>
- </div>
-
- <!-- 旱地 -->
- <div class="land-form">
- <h4>旱地</h4>
- <el-form :model="irrigationData.dryland" label-position="top">
- <el-form-item label="灌溉水用量 (吨/公顷)">
- <el-input-number
- v-model="irrigationData.dryland.usage"
- :min="0"
- :step="100"
- ></el-input-number>
- </el-form-item>
- <el-form-item label="灌溉水有效利用率 (%)">
- <el-input-number
- v-model="irrigationData.dryland.efficiency"
- :min="0"
- :max="100"
- :step="5"
- ></el-input-number>
- </el-form-item>
- <el-form-item label="计算通量(吨/公顷·年)">
- <el-input
- v-model="irrigationData.dryland.flux"
- readonly
- class="flux-input"
- >
- </el-input>
- </el-form-item>
- <el-button
- type="primary"
- @click="calculateFlux('dryland')"
- class="calculate-btn"
- >计算旱地通量</el-button>
- </el-form>
- </div>
- </div>
- </div>
- </div>
-
- <!-- 右侧图表区域 -->
- <div class="graphics-container">
- <!-- 下拉选择栏 -->
- <div class="land-type-selector">
- <el-select v-model="selectedLandType" placeholder="选择土地类型" @change="handleLandTypeChange">
- <el-option label="水田" value="paddy"></el-option>
- <el-option label="水浇地" value="irrigated"></el-option>
- <el-option label="旱地" value="dryland"></el-option>
- </el-select>
- </div>
-
- <!-- 图表容器 -->
- <div class="graphics-row">
- <!-- 地图模块 -->
- <div class="map-module">
- <div v-if="rasterMapImage" class="map-box">
- <img :src="rasterMapImage" alt="土地类型Cd分布图" class="raster-image">
- </div>
- <div v-else-if="mapLoading" class="map-box">地图加载中...</div>
- <div v-else class="map-box error-message">
- 地图加载失败: {{ mapError }}
- <el-button type="primary" size="small" @click="retryMap">重试</el-button>
- </div>
- </div>
-
- <!-- 图表模块 -->
- <div class="chart-module">
- <div v-if="histogramImage" class="chart-box">
- <img :src="histogramImage" alt="数据分布直方图" class="histogram-image">
- </div>
- <div v-else-if="histogramLoading" class="chart-box">直方图加载中...</div>
- <div v-else class="chart-box error-message">
- 直方图加载失败: {{ histogramError }}
- <el-button type="primary" size="small" @click="retryHistogram">重试</el-button>
- </div>
- </div>
- </div>
- </div>
- </div>
- <!-- 中间间距 -->
- <div class="middle-gap"></div>
- <!-- 下半部分:表格 -->
- <div class="table-module">
- <div class="table-header">
- <h3>计算结果汇总</h3>
- <el-button type="primary" @click="exportData">导出数据</el-button>
- </div>
-
- <el-table
- :data="tableData"
- style="width: 100%"
- border
- stripe
- class="compact-table"
- >
- <el-table-column prop="name" label="土地类型" width="120" />
- <el-table-column prop="area" label="面积 (公顷)" width="100" />
- <el-table-column prop="quality" label="质量等级" width="100" />
- <el-table-column prop="productivity" label="生产力指数" width="120" />
- <el-table-column prop="waterUsage" label="灌溉水用量" width="120" />
- <el-table-column prop="waterEfficiency" label="利用率" width="100" />
- <el-table-column prop="waterFlux" label="通量" width="120" />
- <el-table-column label="操作" width="80">
- <template #default="{ row }">
- <el-button type="primary" size="small" @click="editItem(row)">修改</el-button>
- </template>
- </el-table-column>
- </el-table>
- </div>
- >>>>>>> ding
- </div>
- </template>
- <script setup>
- import { ref, onMounted, reactive, watch } from 'vue';
- import axios from 'axios';
- // 配置API基础URL
- const BASE_URL = 'http://localhost:8000/api/water';
- // 创建自定义axios实例
- const http = axios.create({
- timeout: 60000, // 60秒超时
- });
- // 土地类型数据映射
- const landTypeData = {
- paddy: {
- shp_base_name: 'lechang',
- tif_type: '水田',
- properties: {
- area: 1200,
- quality: '优',
- productivity: 850
- }
- },
- dryland: {
- shp_base_name: 'lechang',
- tif_type: '旱地',
- properties: {
- area: 800,
- quality: '良',
- productivity: 600
- }
- },
- irrigated: {
- shp_base_name: 'lechang',
- tif_type: '水浇地',
- properties: {
- area: 950,
- quality: '中',
- productivity: 720
- }
- }
- };
- // 灌溉水计算数据
- const irrigationData = reactive({
- paddy: {
- usage: 8000,
- efficiency: 60,
- flux: 4800
- },
- irrigated: {
- usage: 6000,
- efficiency: 70,
- flux: 4200
- },
- dryland: {
- usage: 4000,
- efficiency: 50,
- flux: 2000
- }
- });
- // 响应式数据
- const selectedLandType = ref('paddy');
- const rasterMapImage = ref(null);
- const histogramImage = ref(null);
- const tableData = ref([]);
- // 加载状态和错误信息
- const mapLoading = ref(false);
- const histogramLoading = ref(false);
- const mapError = ref('');
- const histogramError = ref('');
- // 初始化数据和表格
- const initTableData = () => {
- tableData.value = [
- {
- id: 1,
- name: '水田',
- ...landTypeData.paddy.properties,
- waterUsage: irrigationData.paddy.usage,
- waterEfficiency: irrigationData.paddy.efficiency + '%',
- waterFlux: irrigationData.paddy.flux
- },
- {
- id: 2,
- name: '水浇地',
- ...landTypeData.irrigated.properties,
- waterUsage: irrigationData.irrigated.usage,
- waterEfficiency: irrigationData.irrigated.efficiency + '%',
- waterFlux: irrigationData.irrigated.flux
- },
- {
- id: 3,
- name: '旱地',
- ...landTypeData.dryland.properties,
- waterUsage: irrigationData.dryland.usage,
- waterEfficiency: irrigationData.dryland.efficiency + '%',
- waterFlux: irrigationData.dryland.flux
- }
- ];
- };
- // 计算灌溉水通量
- const calculateFlux = (landType) => {
- const data = irrigationData[landType];
- data.flux = Math.round(data.usage * data.efficiency / 100);
-
- // 更新表格数据
- const row = tableData.value.find(item =>
- landType === 'paddy' ? item.name === '水田' :
- landType === 'irrigated' ? item.name === '水浇地' :
- item.name === '旱地'
- );
-
- if (row) {
- row.waterUsage = data.usage;
- row.waterEfficiency = data.efficiency + '%';
- row.waterFlux = data.flux;
- }
- };
- // 导出数据功能
- const exportData = () => {
- alert('导出数据功能已触发,数据已准备好下载');
- // 实际应用中这里会生成并下载CSV文件
- };
- // 修改条目功能
- const editItem = (row) => {
- alert(`正在修改 ${row.name} 的数据`);
- // 实际应用中这里会打开编辑模态框
- };
- onMounted(() => {
- initTableData();
- handleLandTypeChange();
- });
- // 监听灌溉数据变化更新表格
- watch(irrigationData, (newVal) => {
- tableData.value = tableData.value.map(item => {
- if (item.name === '水田') {
- return {...item,
- waterUsage: newVal.paddy.usage,
- waterEfficiency: newVal.paddy.efficiency + '%',
- waterFlux: newVal.paddy.flux};
- } else if (item.name === '水浇地') {
- return {...item,
- waterUsage: newVal.irrigated.usage,
- waterEfficiency: newVal.irrigated.efficiency + '%',
- waterFlux: newVal.irrigated.flux};
- } else {
- return {...item,
- waterUsage: newVal.dryland.usage,
- waterEfficiency: newVal.dryland.efficiency + '%',
- waterFlux: newVal.dryland.flux};
- }
- });
- }, { deep: true });
- const handleLandTypeChange = async () => {
- const landType = selectedLandType.value;
- const data = landTypeData[landType];
-
- // 重置状态
- rasterMapImage.value = null;
- histogramImage.value = null;
- mapError.value = '';
- histogramError.value = '';
-
- try {
- // 设置加载状态
- mapLoading.value = true;
- histogramLoading.value = true;
-
- // 顺序请求,避免同时处理大文件导致问题
- await generateRasterMap(data.shp_base_name, data.tif_type);
- await generateHistogram(data.tif_type);
- } catch (error) {
- console.error('数据加载失败:', error);
- } finally {
- // 重置加载状态
- mapLoading.value = false;
- histogramLoading.value = false;
- }
- };
- const generateRasterMap = async (shp_base_name, tif_type) => {
- try {
- const formData = new FormData();
- formData.append('shp_base_name', shp_base_name);
- formData.append('tif_type', tif_type);
- formData.append('color_map_name', 'colormap6');
- formData.append('title_name', `${getLandTypeName(selectedLandType.value)}Cd分布图`);
- formData.append('output_size', '8'); // 减小输出尺寸
-
- const response = await http.post(`${BASE_URL}/generate-raster-map`, formData, {
- headers: { 'Content-Type': 'multipart/form-data' },
- responseType: 'blob'
- });
-
- if (response.data.size === 0) {
- throw new Error('后端返回空响应');
- }
-
- const blob = new Blob([response.data], { type: 'image/jpeg' });
- rasterMapImage.value = URL.createObjectURL(blob);
- mapError.value = '';
- } catch (error) {
- console.error('栅格地图生成失败:', error);
- mapError.value = error.response?.data?.message || error.message || '未知错误';
- throw error;
- }
- };
- const generateHistogram = async (tif_type) => {
- try {
- const formData = new FormData();
- formData.append('tif_type', tif_type);
- formData.append('figsize_width', '8'); // 减小宽度
- formData.append('figsize_height', '6'); // 减小高度
- formData.append('xlabel', '像元值');
- formData.append('ylabel', '频率密度');
- formData.append('title', `${getLandTypeName(selectedLandType.value)}数据分布`);
-
- const response = await http.post(`${BASE_URL}/generate-tif-histogram`, formData, {
- headers: { 'Content-Type': 'multipart/form-data' },
- responseType: 'blob'
- });
-
- if (response.data.size === 0) {
- throw new Error('后端返回空响应');
- }
-
- const blob = new Blob([response.data], { type: 'image/jpeg' });
- histogramImage.value = URL.createObjectURL(blob);
- histogramError.value = '';
- } catch (error) {
- console.error('直方图生成失败:', error);
- histogramError.value = error.response?.data?.message || error.message || '未知错误';
- throw error;
- }
- };
- const getLandTypeName = (value) => {
- switch (value) {
- case 'paddy': return '水田';
- case 'dryland': return '旱地';
- case 'irrigated': return '水浇地';
- default: return '';
- }
- };
- // 重试功能
- const retryMap = async () => {
- const landType = selectedLandType.value;
- const data = landTypeData[landType];
-
- mapLoading.value = true;
- mapError.value = '';
-
- try {
- await generateRasterMap(data.shp_base_name, data.tif_type);
- } catch (error) {
- console.error('重试栅格地图失败:', error);
- } finally {
- mapLoading.value = false;
- }
- };
- const retryHistogram = async () => {
- const landType = selectedLandType.value;
- const data = landTypeData[landType];
-
- histogramLoading.value = true;
- histogramError.value = '';
-
- try {
- await generateHistogram(data.tif_type);
- } catch (error) {
- console.error('重试直方图失败:', error);
- } finally {
- histogramLoading.value = false;
- }
- };
- </script>
- <style scoped>
- .page-container {
- display: flex;
- flex-direction: column;
- height: 100vh;
- padding: 20px;
- box-sizing: border-box;
- background-color: #f5f7fa;
- }
- .top-content {
- display: flex;
- height: 45%;
- gap: 20px; /* 增加间距 */
- }
- .irrigation-form {
- flex: 0 0 45%;
- background: white;
- border-radius: 12px;
- box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
- display: flex;
- flex-direction: column;
- }
- .form-header {
- background-color: #2c3e50;
- color: white;
- padding: 10px 15px;
- text-align: center;
- font-size: 16px;
- font-weight: bold;
- }
- .form-body {
- padding: 15px;
- flex: 1;
- display: flex;
- flex-direction: column;
- }
- .land-form-row {
- display: flex;
- gap: 20px; /* 增加间距 */
- height: 100%;
- }
- .land-form {
- flex: 1;
- border: 1px solid #e1e4e8;
- border-radius: 8px;
- padding: 15px; /* 增加内边距 */
- box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
- }
- .land-form h4 {
- margin-top: 0;
- margin-bottom: 15px; /* 增加下边距 */
- color: #1a73e8;
- border-bottom: 1px solid #e1e4e8;
- padding-bottom: 10px; /* 增加下边距 */
- font-size: 14px;
- }
- /* 修复通量数字显示不全 */
- .flux-input {
- width: 100%; /* 确保输入框宽度填满 */
- }
- .flux-input >>> .el-input__inner {
- text-align: left; /* 数字右对齐 */
- padding-right: 10px; /* 增加右边距 */
- font-weight: bold; /* 加粗显示 */
- }
- .calculate-btn {
- margin-top: 15px; /* 增加按钮上边距 */
- }
- .graphics-container {
- flex: 1;
- display: flex;
- flex-direction: column;
- gap: 15px; /* 增加间距 */
- }
- .land-type-selector {
- margin-bottom: 15px; /* 增加下边距 */
- }
- .graphics-row {
- display: flex;
- gap: 15px; /* 增加间距 */
- height: calc(100% - 45px); /* 减去选择器高度 */
- }
- .map-module, .chart-module {
- flex: 1;
- background: white;
- border-radius: 8px;
- box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
- display: flex;
- justify-content: center;
- align-items: center;
- overflow: hidden;
- height: 100%; /* 固定高度 */
- }
- .map-box, .chart-box {
- width: 100%;
- height: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- position: relative;
- padding: 10px; /* 增加内边距 */
- }
- .raster-image, .histogram-image {
- width: 100%; /* 宽度固定为容器宽度 */
- height: 100%; /* 高度固定为容器高度 */
- object-fit: contain; /* 保持比例 */
- }
- .error-message {
- color: #f56c6c;
- font-size: 13px;
- padding: 10px; /* 增加内边距 */
- text-align: center;
- display: flex;
- flex-direction: column;
- align-items: center;
- gap: 10px; /* 增加间距 */
- }
- .middle-gap {
- height: 20px; /* 增加中间间距高度 */
- }
- .table-module {
- height: 50%;
- background: white;
- border-radius: 12px;
- box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
- display: flex;
- flex-direction: column;
- margin-top: 50px; /* 增加上边距 */
- }
- .table-header {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 15px 20px; /* 增加内边距 */
- background-color: #f8f9fa;
- border-bottom: 1px solid #e1e4e8;
- }
- .table-header h3 {
- margin: 0;
- font-size: 16px; /* 增加字体大小 */
- color: #2c3e50;
- }
- .compact-table {
- width: 100%;
- height: 100%;
- font-size: 13px;
- }
- .compact-table >>> .el-table__cell {
- padding: 10px 0; /* 增加单元格内边距 */
- }
- /* 修复表格中数字显示 */
- .compact-table >>> .el-table__cell .cell {
- padding: 0 10px; /* 增加单元格内边距 */
- text-align: center; /* 居中显示 */
- white-space: nowrap; /* 防止换行 */
- overflow: hidden; /* 隐藏溢出 */
- text-overflow: ellipsis; /* 显示省略号 */
- }
- </style>
|