19 changed files with 1026 additions and 936 deletions
Before Width: | Height: | Size: 2.7 KiB |
After Width: | Height: | Size: 7.0 KiB |
After Width: | Height: | Size: 7.8 KiB |
After Width: | Height: | Size: 12 KiB |
@ -0,0 +1,15 @@ |
|||||
|
import { getGuideInfo} from '../../utils/api' |
||||
|
Page({ |
||||
|
data: { |
||||
|
partyGroupId: '', |
||||
|
guideInfoData: '' |
||||
|
}, |
||||
|
onLoad: function (options) { |
||||
|
this.data.partyGroupId = options.partyGroupId |
||||
|
getGuideInfo(this.data.partyGroupId).then(res => { |
||||
|
this.setData({ |
||||
|
guideInfoData: res.data |
||||
|
}) |
||||
|
}) |
||||
|
} |
||||
|
}) |
@ -0,0 +1,5 @@ |
|||||
|
{ |
||||
|
"usingComponents": { |
||||
|
}, |
||||
|
"navigationBarTitleText": "论坛指南" |
||||
|
} |
@ -0,0 +1,5 @@ |
|||||
|
<view class="guide-info"> |
||||
|
<view class="guide-content"> |
||||
|
{{guideInfoData}} |
||||
|
</view> |
||||
|
</view> |
@ -0,0 +1,9 @@ |
|||||
|
page { |
||||
|
width:100%; |
||||
|
height: auto; |
||||
|
overflow-y: auto; |
||||
|
background: #f7f7f7; |
||||
|
} |
||||
|
.guide-content { |
||||
|
font-size: 34rpx; |
||||
|
} |
Loading…
Reference in new issue