123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228 |
- <template>
- <view class="page-content complaintsdetails">
- <view class="complaintsdetails-content">
- <view class="complaintsdetails-item complaintsdetails-plauser">
- <view class="item-content">
- <view class="item-text">
- <view class="item-textlable">
- <text class="item-lable">标题:</text>
- </view>
- <view class="item-textvalue">
- <text class="item-value">{{ regulationsDetailsObj.artTitle }}</text>
- </view>
- </view>
- </view>
- </view>
- <view class="complaintsdetails-item complaintsdetails-plaphone">
- <view class="item-content">
- <view class="item-text">
- <view class="item-textlable">
- <text class="item-lable">作者:</text>
- </view>
- <view class="item-textvalue">
- <text class="item-value">{{ regulationsDetailsObj.artAuthor }}</text>
- </view>
- </view>
- </view>
- </view>
- <view class="complaintsdetails-item complaintsdetails-planame">
- <view class="item-content">
- <view class="item-text">
- <view class="item-textlable">
- <text class="item-lable">简介:</text>
- </view>
- <view class="item-textvalue">
- <text class="item-value">{{ regulationsDetailsObj.artSummary }}</text>
- </view>
- </view>
- </view>
- </view>
- <view class="complaintsdetails-placontent">
- <view class="placontent-text">
- <view class="placontent-textlable">
- <text class="placontent-lable">内容:</text>
- </view>
- <view class="placontent-textvalue">
- <view class="u-content">
- <u-parse
- :html="regulationsDetailsObj.artContent"
- :selectable="false"
- :show-with-animation="true"
- ></u-parse>
- </view>
- </view>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- import { regulationsViewData } from '@/agrcloud-api/regulations';
- export default {
- name: 'regulationsDetails',
- data() {
- return {
- regulationsDetailsObj: {
- artTitle: '',
- artAuthor: '',
- artSummary: '',
- artContent: ''
- }
- };
- },
- onLoad() {
- this.initData();
- },
- methods: {
- /** 初始化数据 */
- initData() {
- const currComplaintsDetailsItem = (this.$store.getters || {}).regulationsDetailsObj || {};
- regulationsViewData({
- id: currComplaintsDetailsItem.artId
- }).then(res => {
- this.regulationsDetailsObj = res.data || {};
- }).catch(() => {
- this.regulationsDetailsObj = {};
- });
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .complaintsdetails {
- padding: 0;
- .complaintsdetails-content {
- width: 100%;
- padding-top: 24rpx;
- .complaintsdetails-item {
- height: 138rpx;
- padding-left: 24rpx;
- background-color: #ffffff;
- .item-content {
- height: 138rpx;
- border-bottom: 1px solid #eeeeee;
- .item-text {
- padding: 24rpx 24rpx 24rpx 0;
- .item-textlable {
- height: 42rpx;
- line-height: 42rpx;
- .item-lable {
- height: 42rpx;
- font-size: 30rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #666666;
- line-height: 42rpx;
- }
- }
- .item-textvalue {
- height: 48rpx;
- line-height: 48rpx;
- .item-value {
- height: 48rpx;
- font-size: 34rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #333333;
- line-height: 48rpx;
- }
- }
- }
- }
- }
- .complaintsdetails-placontent {
- margin-top: 24rpx;
- background-color: #ffffff;
- min-height: 154rpx;
- .placontent-text {
- padding: 24rpx;
- .placontent-textlable {
- height: 42rpx;
- line-height: 42rpx;
- .placontent-lable {
- height: 42rpx;
- font-size: 30rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #666666;
- line-height: 42rpx;
- }
- }
- .placontent-textvalue {
- .placontent-textarea {
- min-height: 48rpx;
- font-size: 34rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #333333;
- }
- }
- }
- }
- .complaintsdetails-plares {
- margin-top: 24rpx;
- background-color: #ffffff;
- min-height: 154rpx;
- .plares-text {
- padding: 24rpx;
- .plares-textlable {
- height: 42rpx;
- line-height: 42rpx;
- .plares-lable {
- height: 42rpx;
- font-size: 30rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #666666;
- line-height: 42rpx;
- }
- }
- .plares-textvalue {
- .plares-textarea {
- min-height: 48rpx;
- font-size: 34rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #333333;
- }
- }
- .plares-textnovalue {
- height: 48rpx;
- line-height: 48rpx;
- .plares-value {
- height: 48rpx;
- font-size: 34rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #333333;
- line-height: 48rpx;
- }
- }
- }
- }
- }
- }
- </style>
|