修改物候映射
parent
c783552fa1
commit
82d7723d86
|
@ -67,7 +67,7 @@
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column prop="coverName" label="类别" show-overflow-tooltip sortable>
|
<el-table-column prop="coverName" label="类别" show-overflow-tooltip sortable>
|
||||||
<template slot-scope="scope">{{
|
<template slot-scope="scope">{{
|
||||||
productSubType == 39 ? JSON.parse(scope.row.paramStr).covernm : JSON.parse(scope.row.paramStr).phenophase
|
productSubType == 39 ? JSON.parse(scope.row.paramStr).covernm : JSON.parse(scope.row.paramStr).crop
|
||||||
}}</template>
|
}}</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column prop="collectDate" label="采样时间" sortable show-overflow-tooltip min-width="120px;">
|
<el-table-column prop="collectDate" label="采样时间" sortable show-overflow-tooltip min-width="120px;">
|
||||||
|
|
|
@ -53,7 +53,8 @@ export function truthFunctionsMap(truthFun) {
|
||||||
14: "总体分类精度",
|
14: "总体分类精度",
|
||||||
13: "Kappa系数",
|
13: "Kappa系数",
|
||||||
11: "产品真值",
|
11: "产品真值",
|
||||||
112: "正射误差列表"
|
112: "正射误差列表",
|
||||||
|
99: "有效值"
|
||||||
};
|
};
|
||||||
if (truthFun == null) return null;
|
if (truthFun == null) return null;
|
||||||
else return truthFunMap[truthFun];
|
else return truthFunMap[truthFun];
|
||||||
|
|
|
@ -193,7 +193,7 @@ export default {
|
||||||
this.pdSubType === productSubTypeVal.ACS_TYPESOFLANDCOVER ||
|
this.pdSubType === productSubTypeVal.ACS_TYPESOFLANDCOVER ||
|
||||||
this.pdSubType === productSubTypeVal.ACS_VEGETATIONPHENOLOGY
|
this.pdSubType === productSubTypeVal.ACS_VEGETATIONPHENOLOGY
|
||||||
) {
|
) {
|
||||||
this.$refs.reportQT.myCharts.on("finished",()=>{
|
// this.$refs.reportQT.myCharts.on("finished",()=>{
|
||||||
this.base64Data = this.$refs.reportQT.myCharts.getDataURL({
|
this.base64Data = this.$refs.reportQT.myCharts.getDataURL({
|
||||||
type: "png",
|
type: "png",
|
||||||
pixelRatio: 1.5, //放大两倍下载,之后压缩到同等大小展示。解决生成图片在移动端模糊问题
|
pixelRatio: 1.5, //放大两倍下载,之后压缩到同等大小展示。解决生成图片在移动端模糊问题
|
||||||
|
@ -201,9 +201,9 @@ export default {
|
||||||
excludeComponents: ["toolbox", "dataZoom"],
|
excludeComponents: ["toolbox", "dataZoom"],
|
||||||
});
|
});
|
||||||
this.exportPdf(this.reportMsg);
|
this.exportPdf(this.reportMsg);
|
||||||
})
|
// })
|
||||||
} else {
|
} else {
|
||||||
this.$refs.reportRT.myCharts.on("finished",()=>{
|
// this.$refs.reportRT.myCharts.on("finished",()=>{
|
||||||
this.base64Data = this.$refs.reportRT.myCharts.getDataURL({
|
this.base64Data = this.$refs.reportRT.myCharts.getDataURL({
|
||||||
type: "png",
|
type: "png",
|
||||||
pixelRatio: 1.5, //放大两倍下载,之后压缩到同等大小展示。解决生成图片在移动端模糊问题
|
pixelRatio: 1.5, //放大两倍下载,之后压缩到同等大小展示。解决生成图片在移动端模糊问题
|
||||||
|
@ -211,7 +211,7 @@ export default {
|
||||||
excludeComponents: ["toolbox", "dataZoom"],
|
excludeComponents: ["toolbox", "dataZoom"],
|
||||||
});
|
});
|
||||||
this.exportPdf(this.reportMsg);
|
this.exportPdf(this.reportMsg);
|
||||||
})
|
// })
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
|
|
|
@ -283,10 +283,10 @@ export default {
|
||||||
const pm = (self.productMsg = am.productMsg);
|
const pm = (self.productMsg = am.productMsg);
|
||||||
self.geoWorkSpace = pm.geoWorkspace;
|
self.geoWorkSpace = pm.geoWorkspace;
|
||||||
self.geoLayerName = pm.geoLayerName;
|
self.geoLayerName = pm.geoLayerName;
|
||||||
// self.tifPath = pm.ftpPath;
|
self.tifPath = pm.ftpPath;
|
||||||
//由于空天院内网服务无法拉取外网资源,先改成内网资源访问
|
//由于空天院内网服务无法拉取外网资源,先改成内网资源访问
|
||||||
let rt = pm.ftpPath.split('/');
|
// let rt = pm.ftpPath.split('/');
|
||||||
self.tifPath = 'http://10.0.31.125:18030/inspection/files/' + rt[rt.length - 1];
|
// self.tifPath = 'http://10.0.31.125:18030/inspection/files/' + rt[rt.length - 1];
|
||||||
self.projection = pm.projection;
|
self.projection = pm.projection;
|
||||||
self.microwaveDataJson = self.productMsg.microwaveDataJson
|
self.microwaveDataJson = self.productMsg.microwaveDataJson
|
||||||
// 赋值真实性检验方法
|
// 赋值真实性检验方法
|
||||||
|
|
|
@ -36,8 +36,8 @@ module.exports = {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
[process.env.VUE_APP_REALITY_API]: {
|
[process.env.VUE_APP_REALITY_API]: {
|
||||||
// target: "http://192.168.88.3:18092/microwave",
|
target: "http://192.168.88.199:18092/microwave",
|
||||||
target: "https://124.16.188.131:28092/microwave",
|
// target: "https://124.16.188.131:28092/microwave",
|
||||||
// target: "http://192.168.1.227:18092/microwave",
|
// target: "http://192.168.1.227:18092/microwave",
|
||||||
changeOrigin: true,
|
changeOrigin: true,
|
||||||
pathRewrite: {
|
pathRewrite: {
|
||||||
|
@ -45,8 +45,8 @@ module.exports = {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
[process.env.VUE_APP_FILE_API]: {
|
[process.env.VUE_APP_FILE_API]: {
|
||||||
// target: "http://192.168.88.3:18093/file",
|
target: "http://192.168.88.199:18093/file",
|
||||||
target: "https://124.16.188.131:28093/file",
|
// target: "https://124.16.188.131:28093/file",
|
||||||
// target: "http://192.168.1.227:18093/file",
|
// target: "http://192.168.1.227:18093/file",
|
||||||
changeOrigin: true,
|
changeOrigin: true,
|
||||||
pathRewrite: {
|
pathRewrite: {
|
||||||
|
|
Loading…
Reference in New Issue