diff --git a/src/api/system/config.js b/src/api/system/config.js
index 87f0d628..e785df14 100644
--- a/src/api/system/config.js
+++ b/src/api/system/config.js
@@ -15,3 +15,11 @@ export function getSystemAttachmentUrl() {
method: 'get'
})
}
+
+// 根据参数键名查询参数值
+export function getConfigKey(configKey) {
+ return request({
+ url: '/open/typz/configKey/' + configKey,
+ method: 'get'
+ })
+}
diff --git a/src/views/contracted/village/map/map.vue b/src/views/contracted/village/map/map.vue
index 7890df5b..f0e47b7a 100644
--- a/src/views/contracted/village/map/map.vue
+++ b/src/views/contracted/village/map/map.vue
@@ -13,6 +13,7 @@
+
-
-
+
+
画图
-
+
+
+
+
+
+
+
+ 生成代码
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ dict.dictLabel }}
+
+
+
+
+
+
+
+
+
+
+
+
+ 关闭弹窗
+ 删除地块
+ 保存信息
+
+
@@ -74,6 +602,20 @@
border: none;
}
+ /deep/ .van-field--disabled .van-field__label {
+ color: #646566;
+ }
+
+ /deep/ .landPopup .van-dialog {
+ width: 90%;
+ height: 85%;
+ overflow-y: auto;
+ }
+
+ /deep/ .landPopup .van-field__label {
+ width: 7em;
+ }
+
.head{
padding: 0 4vw;
}
@@ -140,24 +682,24 @@
margin-right: 10PX;
}
&:nth-child(2) i{
- background: rgba(12,255,0,.5);
- border-color: rgba(12,255,0,1);
+ background: rgba(22,233,15,.7);
+ border-color: rgba(22,233,15,1);
}
&:nth-child(3) i{
- background: rgba(255,137,5,.5);
- border-color: rgba(255,137,5,1);
+ background: rgba(1,198,222,.7);
+ border-color: rgba(1,198,222,1);
}
&:nth-child(4) i{
- background: rgba(246,255,0,.5);
- border-color: rgba(246,255,0,1);
+ background: rgba(238,238,0,.7);
+ border-color: rgba(238,238,0,1);
}
&:nth-child(5) i{
- background: rgba(168,0,255,.5);
- border-color: rgba(168,0,255,1);
+ background: rgba(238,60,60,.7);
+ border-color: rgba(238,60,60,1);
}
&:nth-child(6) i{
- background: rgba(0,234,255,.5);
- border-color: rgba(0,234,255,1);
+ background: rgba(235,134,0,.7);
+ border-color: rgba(235,134,0,1);
}
}
}
@@ -169,4 +711,12 @@
background-image: linear-gradient(to right,#c6fe8b,#48e5a2);
}
+ .footer_main {
+ flex: 0 0 120px;
+ background: #ccc;
+ display: flex;
+ justify-content: center; /* 相对父元素水平居中 */
+ align-items: center; /* 子元素相对父元素垂直居中 */
+ }
+