This commit is contained in:
A1300399510
2023-07-06 20:09:13 +08:00
parent 232b7c290c
commit 93fb0c1c98
5 changed files with 321 additions and 106 deletions

View File

@@ -38,7 +38,7 @@ export default {
};
const tab = ref("person"); // person intermediary more
computed(() => {
if (props['intermediary'] == 1) tab = "intermediary"
else tab = "person"
@@ -152,6 +152,19 @@ export default {
.about-list-item {
padding: 30px 0;
position: relative;
&::after {
content: "";
position: absolute;
top: 40px;
left: -22px;
width: 8px;
height: 8px;
border-radius: 50%;
background: rgba(80, 227, 194, 1);
}
&:not(:last-of-type) {
border-bottom: 1px dashed #ebebeb;
}

View File

@@ -47,7 +47,9 @@ export default {
let that = this
let info = this.info
if (!info['latitude']) {
console.log("info['latitude']", info['latitude']);
if (info['latitude']) {
this.latlng = {
longitude: info['longitude'],
latitude: info['latitude'],