1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- <template>
- <div class="aboutThePark">
- <div class="whiteBoard">
- <img src="../housingResources/testImg.png" class="testImg">
- <div class="info">
- {{form.content}}
- </div>
- </div>
- <div class="whiteBoard">
- <div class="detailLi">
- <span class="liName">
- <span class="callName">招商电话:</span>
- <span class="callNumber">{{ form.attractPhone }}</span>
- </span>
- <img src="https://www.idea-co-sf.com/gardenProduct/image/phoneIcon.png" class="phoneIcon">
- </div>
- </div>
- </div>
- </template>
- <script>
- import { getParkBriefById } from "@/js_sdk/http";
- export default {
- name: "index",
- data(){
- return{
- form:{
- }
- }
- },
- onLoad(options){
- this.getById()
- },
- methods:{
- getById(){
- const data = {
- groupId : JSON.parse(uni.getStorageSync('selectGroup')).groupId
- }
- getParkBriefById(data).then((res)=>{
- this.form = res.data
- })
- },
- }
- }
- </script>
- <style lang="scss">
- .aboutThePark{
- .whiteBoard{
- background: white;
- margin: 24rpx 0;
- padding: 24rpx;
- .testImg{
- width: 686rpx;
- height: 300rpx;
- }
- .info{
- color: #333333;
- font-size: 28rpx;
- line-height: 42rpx;
- margin: 24rpx 0;
- word-wrap: break-word;
- }
- .detailLi{
- display: flex;
- justify-content: space-between;
- align-items: center;
- .liInfo{
- display: inline-block;
- text-align: right;
- max-width: 428rpx;
- color: rgba(102, 102, 102, 1);
- font-size: 32rpx;
- line-height: 38rpx;
- overflow: hidden;
- word-wrap: break-word;
- }
- .callNumber{
- color: rgba(24, 23, 42, 1);
- font-size: 36rpx;
- font-weight: 600;
- }
- .callName{
- color: rgba(102, 102, 102, 1);
- font-size: 28rpx;
- }
- .phoneIcon{
- width: 64rpx;
- height: 64rpx;
- }
- }
- }
- }
- </style>
|