|
@@ -55,7 +55,9 @@
|
|
|
class="max-width flex-box column padding-10 box-sizing"
|
|
class="max-width flex-box column padding-10 box-sizing"
|
|
|
style="padding-top: 0"
|
|
style="padding-top: 0"
|
|
|
>
|
|
>
|
|
|
- <div class="block-title margin-top-5">分析因子</div>
|
|
|
|
|
|
|
+ <div class="block-title margin-top-5">
|
|
|
|
|
+ {{ zytype == "7" ? "分析地类" : "分析因子" }}
|
|
|
|
|
+ </div>
|
|
|
<div class="max-width flex-box wrap margin-top-10">
|
|
<div class="max-width flex-box wrap margin-top-10">
|
|
|
<div
|
|
<div
|
|
|
class="city-item pointer"
|
|
class="city-item pointer"
|
|
@@ -91,25 +93,6 @@
|
|
|
</div>
|
|
</div>
|
|
|
</div>
|
|
</div>
|
|
|
<div
|
|
<div
|
|
|
- v-if="fxdlList.length > 0"
|
|
|
|
|
- class="max-width flex-box column padding-10 box-sizing"
|
|
|
|
|
- style="padding-top: 0"
|
|
|
|
|
- >
|
|
|
|
|
- <div class="block-title margin-top-5">分析地类</div>
|
|
|
|
|
- <div class="max-width flex-box wrap margin-top-10">
|
|
|
|
|
- <div
|
|
|
|
|
- class="city-item pointer"
|
|
|
|
|
- v-for="item in fxdlList"
|
|
|
|
|
- :key="item.id"
|
|
|
|
|
- :class="form.act_yz == item.id ? 'act_yz' : ''"
|
|
|
|
|
- @click="changeDl(item)"
|
|
|
|
|
- >
|
|
|
|
|
- {{ item.name }}
|
|
|
|
|
- </div>
|
|
|
|
|
- </div>
|
|
|
|
|
- </div>
|
|
|
|
|
- <div
|
|
|
|
|
- v-if="zytype != '7'"
|
|
|
|
|
class="max-width flex-box column padding-10 box-sizing"
|
|
class="max-width flex-box column padding-10 box-sizing"
|
|
|
style="padding-top: 0"
|
|
style="padding-top: 0"
|
|
|
>
|
|
>
|
|
@@ -173,7 +156,6 @@ export default {
|
|
|
fxyzList: [], // 分析因子列表
|
|
fxyzList: [], // 分析因子列表
|
|
|
yearList: [], // 分析年份列表
|
|
yearList: [], // 分析年份列表
|
|
|
fxwdList: [], // 分析维度列表
|
|
fxwdList: [], // 分析维度列表
|
|
|
- fxdlList: [], // 分析地类
|
|
|
|
|
active_layout: true,
|
|
active_layout: true,
|
|
|
downloadLoading: false,
|
|
downloadLoading: false,
|
|
|
xzqList: [],
|
|
xzqList: [],
|
|
@@ -286,6 +268,7 @@ export default {
|
|
|
res.data[0].children.map((item) => {
|
|
res.data[0].children.map((item) => {
|
|
|
fxsz.xzqList.push(item);
|
|
fxsz.xzqList.push(item);
|
|
|
});
|
|
});
|
|
|
|
|
+ fxsz.getResultName();
|
|
|
} else {
|
|
} else {
|
|
|
res.data[0].children.map((item) => {
|
|
res.data[0].children.map((item) => {
|
|
|
if (item.label === store.state.user.user.dept.district) {
|
|
if (item.label === store.state.user.user.dept.district) {
|
|
@@ -293,6 +276,7 @@ export default {
|
|
|
item.children.map((item2) => {
|
|
item.children.map((item2) => {
|
|
|
fxsz.xzqList.push(item2);
|
|
fxsz.xzqList.push(item2);
|
|
|
});
|
|
});
|
|
|
|
|
+ fxsz.getResultName();
|
|
|
}
|
|
}
|
|
|
});
|
|
});
|
|
|
}
|
|
}
|
|
@@ -309,13 +293,6 @@ export default {
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
});
|
|
});
|
|
|
- if (prop.zytype == "7") {
|
|
|
|
|
- fxsz.fxdlList = [
|
|
|
|
|
- { name: "所有建设用地", id: 0 },
|
|
|
|
|
- { name: "商业服务业用地", id: 1 },
|
|
|
|
|
- { name: "工矿用地", id: 2 },
|
|
|
|
|
- ];
|
|
|
|
|
- }
|
|
|
|
|
},
|
|
},
|
|
|
// 获取数据源
|
|
// 获取数据源
|
|
|
getSJY() {
|
|
getSJY() {
|
|
@@ -349,15 +326,15 @@ export default {
|
|
|
if (!fxsz.form.act_xzqmc) {
|
|
if (!fxsz.form.act_xzqmc) {
|
|
|
fxsz.form.act_xzqmc = fxsz.xzqList.find(
|
|
fxsz.form.act_xzqmc = fxsz.xzqList.find(
|
|
|
(item) => item.value === fxsz.form.act_xzq
|
|
(item) => item.value === fxsz.form.act_xzq
|
|
|
- ).label;
|
|
|
|
|
|
|
+ )?.label;
|
|
|
}
|
|
}
|
|
|
let fxyzName = fxsz.fxyzList.find(
|
|
let fxyzName = fxsz.fxyzList.find(
|
|
|
(item) => item.id === fxsz.form.act_yz
|
|
(item) => item.id === fxsz.form.act_yz
|
|
|
).name;
|
|
).name;
|
|
|
let fxwdName = fxsz.fxwdList.find(
|
|
let fxwdName = fxsz.fxwdList.find(
|
|
|
(item) => item.id === fxsz.form.act_wd
|
|
(item) => item.id === fxsz.form.act_wd
|
|
|
- ).name;
|
|
|
|
|
- fxsz.form.jgmc = `${fxsz.form.act_year}年${fxsz.form.act_xzqmc}${fxyzName}与${fxwdName}`;
|
|
|
|
|
|
|
+ )?.name;
|
|
|
|
|
+ fxsz.form.jgmc = `${fxsz.form.act_year}年${fxsz.form.act_xzqmc}${fxyzName}${fxwdName ? "与" + fxwdName : ""}`;
|
|
|
},
|
|
},
|
|
|
//#endregion
|
|
//#endregion
|
|
|
});
|
|
});
|