12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <template>
- <view class="box">
- <u-navbar :autoBack="true" title="组织介绍" bgColor="rgba(255,255,255,0)" :placeholder="true" titleStyle="font-weight:bold;color:#000000"></u-navbar>
- <view class="ban_box">
- <u-parse :content="list.content"></u-parse>
- </view>
- <!-- <view class="map_tit">
- <image style="width: 186rpx; height: 40rpx" src="/static/img/right_img.png"></image>
- <view class="">人员规模</view>
- <image style="width: 186rpx; height: 40rpx" src="/static/img/left_img.png"></image>
- </view> -->
- <!-- <view class="gm_box">
- <view class="">
- <text>区域:</text>
- <text style="margin-left: 20rpx">厦门市</text>
- </view>
- <view class="">
- <text>详细地址:</text>
- <text style="margin-left: 20rpx">厦门市禾祥路168号909室或914室</text>
- </view>
- <view class="">
- <text>人员规模:</text>
- <text style="margin-left: 20rpx">350</text>
- </view>
- <view class="">
- <text>正式成员:</text>
- <text style="margin-left: 20rpx">151</text>
- </view>
- <view class="">
- <text>成立日期:</text>
- <text style="margin-left: 20rpx">2016-10-15</text>
- </view>
- </view> -->
- </view>
- </template>
- <script>
- let that;
- export default {
- data() {
- return { list: {} };
- },
- onLoad() {
- that = this;
- this.getMainBodyColumnContentList();
- },
- methods: {
- getMainBodyColumnContentList() {
- this.$api.getContentDetail({ main_body_id: 1, id: 4422 }, function (res) {
- that.list = res.data;
- // console.log(res, '组织介绍');
- });
- }
- }
- };
- </script>
- <style>
- .box {
- width: 100%;
- padding-bottom: 50rpx;
- background-image: url('https://huli-app.wenlvti.net/app_static/WenWuGuanJia/image/xy_bgt.png');
- background-size: 100% 100%;
- background-attachment: fixed;
- background-repeat: repeat-y;
- min-height: 100%;
- height: auto;
- /* background-color: #fff9e9; */
- }
- .map_tit {
- display: flex;
- align-items: center;
- margin-left: 125rpx;
- margin-top: 50rpx;
- font-size: 32rpx;
- font-family: Songti SC, Songti SC;
- font-weight: 900;
- line-height: 52rpx;
- color: #444444;
- }
- .ban_box {
- width: 650rpx;
- line-height: 50rpx;
- margin: auto;
- font-size: 32rpx;
- }
- .gm_box {
- font-size: 30rpx;
- margin-left: 42rpx;
- line-height: 50rpx;
- }
- </style>
|