12345678910111213141516171819202122232425262728293031323334 |
- <template>
- <!-- 申请协议 -->
- <view>
- <view class="argee-title">{{ distributionSet.title }}</view>
- <view class="argee-cont"><u-parse :html="distributionSet.desc"></u-parse></view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- distributionSet: {}
- };
- },
- onLoad() {
- this.distributionSet = this.$store.state.distributionSet;
- uni.setNavigationBarTitle({
- title: this.distributionSet.title
- });
- }
- };
- </script>
- <style lang="scss" scoped>
- .argee-title {
- line-height: 32upx;
- padding: 20upx 0;
- text-align: center;
- }
- .argee-cont {
- padding: 0 20upx 20upx;
- }
- </style>
|