Merge branch 'main' of git.zdool.com:xs/ggfwjsc

This commit is contained in:
姚宇浩 2024-07-25 13:00:47 +08:00
commit 29cd57a4a1
2 changed files with 30 additions and 1 deletions

View File

@ -405,12 +405,14 @@ const markera = (e) => {
var marker = new BMapGL.Marker(new BMapGL.Point(e.latlng.lng, e.latlng.lat), {
icon: icons,
});
//
map.addOverlay(marker);
currentMarker = marker;
};
const BMAP = () => {
//
map.addEventListener("click", markera);
};

View File

@ -110,6 +110,9 @@
</div>
</div>
<div class="tableBoxTopa">{{ item.text }}</div>
<div class="progress-container">
<div class="progress-bar" :style="{ width: item.progress + '%' }"></div>
</div>
</div>
</div>
</div>
@ -148,6 +151,7 @@ const goto = (url) => {
};
const data = reactive({
taps: "0",
taps1: "0",
tabPosition: [
@ -273,30 +277,35 @@ const data = reactive({
name: "最低生活保障",
Bj: Bj,
text: "我县在册低保对象7374户9463人为低保对象发放最低生活保障金2023年共支出低保金9912.65万元。",
progress: 95 ,//
},
{
id: "1",
name: "重特困人员救助供养",
Bj: Bj1,
text: "我县特困供养对象329户331人2023年支出特困供养经费722.29万元。",
progress: 35 ,//
},
{
id: "2",
name: "医疗救助",
Bj: Bj2,
text: "我县医疗救助的对象为民攻部门认定的特困供养人员最低生活保障家庭成员、最低生活保障边缘家庭成员(包括纳入低保、低边的因病致贫等支出型贫困对象)。",
progress: 45 ,//
},
{
id: "3",
name: "临时救助",
Bj: Bj3,
text: "为数助对象发放临时救助金2023年共救助609户1036人数助225.39万元。",
progress: 100 ,//
},
{
id: "4",
name: "受灾人员救助",
Bj: Bj4,
text: "机构改革以来(2019年),我县自然灾害形势总体平稳,未发生因灾亡人事故。",
progress: 25 ,//
},
],
});
@ -444,6 +453,7 @@ const rowState = (row) => {
box-sizing: border-box;
margin-right: 20px;
margin-bottom: 20px;
position: relative; /* Add this */
.tableBoxTops {
display: flex;
align-items: center;
@ -465,6 +475,23 @@ const rowState = (row) => {
font-style: normal;
margin-top: 10px;
}
.progress-container {
position: absolute;
bottom: 2px;
left: 0px;
width: 100%;
height: 10px;
background-color: rgba(255, 255, 255, 0.2);
border-radius: 5px;
overflow: hidden;
}
.progress-bar {
height: 100%;
background: linear-gradient(90deg, #31ffd8 0%, #00e5ff 100%);
border-radius: 0px 100px 100px 0px;
transition: width 0.3s ease;
}
}
img {
width: 24px;