|
@@ -5,14 +5,14 @@
|
|
|
<div class="card">
|
|
<div class="card">
|
|
|
<div class="info">
|
|
<div class="info">
|
|
|
<div class="title">{{ organization.name }}</div>
|
|
<div class="title">{{ organization.name }}</div>
|
|
|
- <div class="address" v-if="organization.address">
|
|
|
|
|
|
|
+ <div class="address">
|
|
|
<div class="text">
|
|
<div class="text">
|
|
|
- {{ organization.address }}
|
|
|
|
|
|
|
+ 南京市{{ organization.district }} {{ organization.address }}
|
|
|
</div>
|
|
</div>
|
|
|
- <div class="img">
|
|
|
|
|
|
|
+ <!-- <div class="img">
|
|
|
<img src="../../assets/icon_dizhi.png" alt="" />
|
|
<img src="../../assets/icon_dizhi.png" alt="" />
|
|
|
<span>导航</span>
|
|
<span>导航</span>
|
|
|
- </div>
|
|
|
|
|
|
|
+ </div> -->
|
|
|
</div>
|
|
</div>
|
|
|
<hr v-if="organization.owner" />
|
|
<hr v-if="organization.owner" />
|
|
|
<div class="owner" v-if="organization.owner">
|
|
<div class="owner" v-if="organization.owner">
|
|
@@ -116,6 +116,10 @@ export default {
|
|
|
},
|
|
},
|
|
|
methods: {
|
|
methods: {
|
|
|
getInfo(id) {
|
|
getInfo(id) {
|
|
|
|
|
+ this.$toast.loading({
|
|
|
|
|
+ message: "加载中...",
|
|
|
|
|
+ forbidClick: true
|
|
|
|
|
+ });
|
|
|
this.$http
|
|
this.$http
|
|
|
.get("/rate/get/" + id)
|
|
.get("/rate/get/" + id)
|
|
|
.then(res => {
|
|
.then(res => {
|
|
@@ -138,6 +142,7 @@ export default {
|
|
|
return this.$http.get("/organization/get/" + res.organizationId);
|
|
return this.$http.get("/organization/get/" + res.organizationId);
|
|
|
})
|
|
})
|
|
|
.then(res => {
|
|
.then(res => {
|
|
|
|
|
+ this.$toast.clear();
|
|
|
this.organization = res;
|
|
this.organization = res;
|
|
|
});
|
|
});
|
|
|
},
|
|
},
|
|
@@ -155,6 +160,7 @@ export default {
|
|
|
<style lang="less" scoped>
|
|
<style lang="less" scoped>
|
|
|
.container {
|
|
.container {
|
|
|
position: relative;
|
|
position: relative;
|
|
|
|
|
+ padding-bottom: 100px;
|
|
|
}
|
|
}
|
|
|
.top-box {
|
|
.top-box {
|
|
|
position: relative;
|
|
position: relative;
|