This commit is contained in:
parent
eb24470f80
commit
9d35069d2a
|
@ -12,13 +12,8 @@
|
||||||
<div class="title_line"></div>
|
<div class="title_line"></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="content">
|
<div class="content">
|
||||||
<div
|
<div class="content_item" v-for="(item, index) in personTotal" :class="{ choose: item.id == choose.person }"
|
||||||
class="content_item"
|
@click="buten(item)" :key="index">
|
||||||
v-for="(item, index) in personTotal"
|
|
||||||
:class="{ choose: item.id == choose.person }"
|
|
||||||
@click="buten(item)"
|
|
||||||
:key="index"
|
|
||||||
>
|
|
||||||
<div class="content_item_name">{{ ageLess0(item.ages) }}</div>
|
<div class="content_item_name">{{ ageLess0(item.ages) }}</div>
|
||||||
<div class="content_item_value">{{ item.rksl }}</div>
|
<div class="content_item_value">{{ item.rksl }}</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -30,13 +25,8 @@
|
||||||
<div class="title_line"></div>
|
<div class="title_line"></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="content">
|
<div class="content">
|
||||||
<div
|
<div class="content_item" v-for="(item, index) in tsbqTotal" :class="{ choose: item.id == choose.person }"
|
||||||
class="content_item"
|
@click="buten2(item)" :key="index">
|
||||||
v-for="(item, index) in tsbqTotal"
|
|
||||||
:class="{ choose: item.id == choose.person }"
|
|
||||||
@click="buten2(item)"
|
|
||||||
:key="index"
|
|
||||||
>
|
|
||||||
<div class="content_item_name">{{ item.name }}</div>
|
<div class="content_item_name">{{ item.name }}</div>
|
||||||
<div class="content_item_value">{{ item.rksl }}</div>
|
<div class="content_item_value">{{ item.rksl }}</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -50,18 +40,11 @@
|
||||||
<div class="title_line"></div>
|
<div class="title_line"></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="jbggfwq_content">
|
<div class="jbggfwq_content">
|
||||||
<div
|
<div class="jbggfwq_content_item" v-for="(item, index) in jbfwqTotal" :key="index">
|
||||||
class="jbggfwq_content_item"
|
|
||||||
v-for="(item, index) in jbfwqTotal"
|
|
||||||
:key="index"
|
|
||||||
>
|
|
||||||
<div class="jbggfwq_content_item_left">{{ item.name }}</div>
|
<div class="jbggfwq_content_item_left">{{ item.name }}</div>
|
||||||
<div class="jbggfwq_content_item_right">
|
<div class="jbggfwq_content_item_right">
|
||||||
<div
|
<div class="jbggfwq_content_item_right_item" v-for="itemm in item.child"
|
||||||
class="jbggfwq_content_item_right_item"
|
:class="{ choose: itemm.id == choose.fwq }" @click="
|
||||||
v-for="itemm in item.child"
|
|
||||||
:class="{ choose: itemm.id == choose.fwq }"
|
|
||||||
@click="
|
|
||||||
changeFwq(
|
changeFwq(
|
||||||
itemm.id,
|
itemm.id,
|
||||||
itemm.fwqList,
|
itemm.fwqList,
|
||||||
|
@ -69,8 +52,7 @@
|
||||||
item.name,
|
item.name,
|
||||||
itemm.name
|
itemm.name
|
||||||
)
|
)
|
||||||
"
|
">
|
||||||
>
|
|
||||||
{{ itemm.name }}
|
{{ itemm.name }}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -83,13 +65,8 @@
|
||||||
<div class="title_line"></div>
|
<div class="title_line"></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="zyys_content">
|
<div class="zyys_content">
|
||||||
<div
|
<div class="zyys_content_item" v-for="(item, index) in yaosuTotal"
|
||||||
class="zyys_content_item"
|
:class="{ choose: item.id == choose.yaosu, wz: item.wz == true }" @click="changeys(item.id)" :key="index">
|
||||||
v-for="(item, index) in yaosuTotal"
|
|
||||||
:class="{ choose: item.id == choose.yaosu, wz: item.wz == true }"
|
|
||||||
@click="changeys(item.id)"
|
|
||||||
:key="index"
|
|
||||||
>
|
|
||||||
<img :src="item.img" class="zyys_content_item_left" />
|
<img :src="item.img" class="zyys_content_item_left" />
|
||||||
<div class="zyys_content_item_right">{{ item.name }}</div>
|
<div class="zyys_content_item_right">{{ item.name }}</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -1019,7 +996,7 @@ const createCs2 = (polygon, indexx) => {
|
||||||
div.style.justifyContent = "space-between";
|
div.style.justifyContent = "space-between";
|
||||||
div.style.alignItems = "center";
|
div.style.alignItems = "center";
|
||||||
div.style.cursor = "pointer";
|
div.style.cursor = "pointer";
|
||||||
div.style.padding = "5px";
|
div.style.padding = "5px 10px";
|
||||||
div.style.minWidth = "90px";
|
div.style.minWidth = "90px";
|
||||||
div.style.background = `url(${xcbg}) no-repeat 0/100% 100%`;
|
div.style.background = `url(${xcbg}) no-repeat 0/100% 100%`;
|
||||||
div.style.transform = "translateY(50px)";
|
div.style.transform = "translateY(50px)";
|
||||||
|
@ -1097,7 +1074,7 @@ const createCs = (polygon, indexx) => {
|
||||||
div.style.justifyContent = "center";
|
div.style.justifyContent = "center";
|
||||||
div.style.alignItems = "center";
|
div.style.alignItems = "center";
|
||||||
div.style.cursor = "pointer";
|
div.style.cursor = "pointer";
|
||||||
div.style.padding = "5px";
|
div.style.padding = "5px 10px";
|
||||||
div.style.minWidth = "60px";
|
div.style.minWidth = "60px";
|
||||||
div.style.background = `url(${xcbg}) no-repeat 0/100% 100%`;
|
div.style.background = `url(${xcbg}) no-repeat 0/100% 100%`;
|
||||||
div.style.transform = "translateY(50px)";
|
div.style.transform = "translateY(50px)";
|
||||||
|
@ -1150,7 +1127,7 @@ const DGcreateCs = (polygon, indexx) => {
|
||||||
div.style.justifyContent = "center";
|
div.style.justifyContent = "center";
|
||||||
div.style.alignItems = "center";
|
div.style.alignItems = "center";
|
||||||
div.style.cursor = "pointer";
|
div.style.cursor = "pointer";
|
||||||
div.style.padding = "5px";
|
div.style.padding = "5px 10px";
|
||||||
div.style.minWidth = "60px";
|
div.style.minWidth = "60px";
|
||||||
div.style.background = `url(${xcbg}) no-repeat 0/100% 100%`;
|
div.style.background = `url(${xcbg}) no-repeat 0/100% 100%`;
|
||||||
div.style.transform = "translateY(50px)";
|
div.style.transform = "translateY(50px)";
|
||||||
|
@ -1206,7 +1183,7 @@ const DGcreateCs2 = (polygon, indexx) => {
|
||||||
div.style.justifyContent = "space-between";
|
div.style.justifyContent = "space-between";
|
||||||
div.style.alignItems = "center";
|
div.style.alignItems = "center";
|
||||||
div.style.cursor = "pointer";
|
div.style.cursor = "pointer";
|
||||||
div.style.padding = "5px";
|
div.style.padding = "5px 10px";
|
||||||
div.style.minWidth = "90px";
|
div.style.minWidth = "90px";
|
||||||
div.style.background = `url(${xcbg}) no-repeat 0/100% 100%`;
|
div.style.background = `url(${xcbg}) no-repeat 0/100% 100%`;
|
||||||
div.style.transform = "translateY(50px)";
|
div.style.transform = "translateY(50px)";
|
||||||
|
@ -1461,7 +1438,7 @@ const changeFwq = async (id, list, center, name, names) => {
|
||||||
await getServiceCircle(names, name);
|
await getServiceCircle(names, name);
|
||||||
choose.value.fwq = id;
|
choose.value.fwq = id;
|
||||||
map.clearOverlays(); //清空地图上所有的覆盖物
|
map.clearOverlays(); //清空地图上所有的覆盖物
|
||||||
choose.value.person=''
|
choose.value.person = ''
|
||||||
addggfwq(); //创建公共服务圈
|
addggfwq(); //创建公共服务圈
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
goMapCenter(center, 16); //中心点缩放
|
goMapCenter(center, 16); //中心点缩放
|
||||||
|
@ -2686,17 +2663,13 @@ onMounted(() => {
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
width: 520px;
|
width: 520px;
|
||||||
height: 960px;
|
height: 960px;
|
||||||
background: linear-gradient(
|
background: linear-gradient(270deg,
|
||||||
270deg,
|
|
||||||
rgba(0, 52, 131, 0.69) 0%,
|
rgba(0, 52, 131, 0.69) 0%,
|
||||||
rgba(0, 32, 83, 0.77) 50%,
|
rgba(0, 32, 83, 0.77) 50%,
|
||||||
rgba(0, 60, 131, 0.74) 100%
|
rgba(0, 60, 131, 0.74) 100%),
|
||||||
),
|
radial-gradient(128% 99% at 100% 46%,
|
||||||
radial-gradient(
|
|
||||||
128% 99% at 100% 46%,
|
|
||||||
rgba(0, 48, 125, 0.29) 0%,
|
rgba(0, 48, 125, 0.29) 0%,
|
||||||
rgba(0, 61, 134, 0.42) 100%
|
rgba(0, 61, 134, 0.42) 100%);
|
||||||
);
|
|
||||||
box-shadow: inset 0px 0px 56px 0px rgba(173, 221, 255, 0.5);
|
box-shadow: inset 0px 0px 56px 0px rgba(173, 221, 255, 0.5);
|
||||||
backdrop-filter: blur(3px);
|
backdrop-filter: blur(3px);
|
||||||
padding: 30px 26px;
|
padding: 30px 26px;
|
||||||
|
@ -2868,17 +2841,13 @@ onMounted(() => {
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
width: 520px;
|
width: 520px;
|
||||||
height: 960px;
|
height: 960px;
|
||||||
background: linear-gradient(
|
background: linear-gradient(270deg,
|
||||||
270deg,
|
|
||||||
rgba(0, 52, 131, 0.69) 0%,
|
rgba(0, 52, 131, 0.69) 0%,
|
||||||
rgba(0, 32, 83, 0.77) 50%,
|
rgba(0, 32, 83, 0.77) 50%,
|
||||||
rgba(0, 60, 131, 0.74) 100%
|
rgba(0, 60, 131, 0.74) 100%),
|
||||||
),
|
radial-gradient(128% 99% at 100% 46%,
|
||||||
radial-gradient(
|
|
||||||
128% 99% at 100% 46%,
|
|
||||||
rgba(0, 48, 125, 0.29) 0%,
|
rgba(0, 48, 125, 0.29) 0%,
|
||||||
rgba(0, 61, 134, 0.42) 100%
|
rgba(0, 61, 134, 0.42) 100%);
|
||||||
);
|
|
||||||
box-shadow: inset 0px 0px 56px 0px rgba(173, 221, 255, 0.5);
|
box-shadow: inset 0px 0px 56px 0px rgba(173, 221, 255, 0.5);
|
||||||
backdrop-filter: blur(3px);
|
backdrop-filter: blur(3px);
|
||||||
padding: 30px 26px;
|
padding: 30px 26px;
|
||||||
|
@ -2969,6 +2938,7 @@ onMounted(() => {
|
||||||
|
|
||||||
.zyys {
|
.zyys {
|
||||||
margin-top: 25px;
|
margin-top: 25px;
|
||||||
|
|
||||||
.zyys_content {
|
.zyys_content {
|
||||||
margin-top: 20px;
|
margin-top: 20px;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
|
@ -3037,12 +3007,10 @@ onMounted(() => {
|
||||||
// line-height: 44px;
|
// line-height: 44px;
|
||||||
letter-spacing: 4px;
|
letter-spacing: 4px;
|
||||||
margin-bottom: 15px;
|
margin-bottom: 15px;
|
||||||
background: linear-gradient(
|
background: linear-gradient(180deg,
|
||||||
180deg,
|
|
||||||
#ffffff 0%,
|
#ffffff 0%,
|
||||||
#ffffff 40%,
|
#ffffff 40%,
|
||||||
#00ffff 100%
|
#00ffff 100%);
|
||||||
);
|
|
||||||
/* 使文字没有背景颜色的背景 */
|
/* 使文字没有背景颜色的背景 */
|
||||||
background-clip: text;
|
background-clip: text;
|
||||||
/* 为了兼容性,添加渐变背景到IE */
|
/* 为了兼容性,添加渐变背景到IE */
|
||||||
|
|
Loading…
Reference in New Issue