123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- <!-- <image mode="widthFix" class="bannerImg" src="{{articleObj.cover_img}}"></image> -->
- <view class="contentBox">
- <view class="title fontfpr">{{articleObj.title}}</view>
- <view wx:if="{{!!articleObj.type}}" class="tagBox clearfix">
- <view class="fontfpm">#{{articleObj.type}}#</view>
- </view>
- <view class="articlebox {{articlelogin==false?'unloginbox':''}}">
- <mp-html content="{{articleObj.content}}" />
- </view>
- </view>
- <view wx:if="{{!bType}}" class="rightbtnbox">
- <image bindtap="priceshowtap" class="pricebtnimg" src="{{imgUrl}}xcx/aaa/pricebtn.gif"></image>
- <view bindtap="articlesharetap" class="tcollectbox tsharebox tcenter">
- <image src="{{imgUrl}}xcx/aaa/tshare.png"></image>
- <view class="colorfff fontfpr fontr24 lhr24">分享</view>
- </view>
- <view wx:if="{{articleObj.collect==0}}" bindtap="collectTap" class="tcollectbox tcenter">
- <image src="../../img/collect.png"></image>
- <view class="colorB6CADE fontfpr fontr24 lhr24">收藏</view>
- </view>
- <view wx:if="{{articleObj.collect!='0'}}" bindtap="cancleTap" class="tcollectbox tcenter">
- <image src="../../img/collected.png"></image>
- <view class="colorB6CADE fontfpr fontr24 lhr24">收藏</view>
- </view>
- </view>
- <block wx:if="{{bType == 'b'}}">
- <view wx:if="{{!showCutImage}}" style="width: 100%;height: 50rpx;"></view>
- <view class="shareTips">分享后上传分享截图可获得积分兑换现金</view>
- <view class="cutAndShare">
- <button bindtap="articlesharetap" class="shareBtn">立即分享</button>
- </view>
- <view wx:if="{{showCutImage}}" class="cutMask" bindtap="closeDialog" bindtouchmove="dothis">
- <view class="cutBlock" catchtap="dothis">
- <view class="cutTitle">上传分享截图</view>
- <view class="cutContent">
- <view class="cutShareLabel">上传分享截图</view>
- <view class="cutImglistBox">
- <view wx:for="{{trackimgarr}}" class="imageItem">
- <image src="{{item.tempFilePath}}" mode="" />
- <view data-index="{{index}}" class="imgdel" bindtap="imageDel">
- <image src="../../../img/wdelt.png" mode="widthFix"></image>
- </view>
- </view>
- <view class="uploadImg" bindtap="uploadImage">
- <image src="../../../img/addicon.png" mode="widthFix"></image>
- <view class="u-text">上传</view>
- </view>
- </view>
- <view class="u-textarea-box">
- <textarea value="{{remark}}" bindinput="getTextarea" class="u-textarea" placeholder="请输入备注" cols="30" rows="10"></textarea>
- </view>
- </view>
- <button disabled="{{loading}}" loading="{{loading}}" class="cutConfirm" bindtap="submitData">保存并推荐分享</button>
- </view>
- </view>
- </block>
- <block wx:if="{{pType=='b' && false}}">
- <view class="shareApprovalbtn" bindtap="handleShowApproval">分享审核</view>
- <view wx:if="{{showApproval}}" class="shareMask" catchtap="closeDialog">
- <view class="shareBlock" catchtap="dothis">
- <view class="shareBlockTitle">分享审核</view>
- <view class="shareBlockContent">
- <view wx:for="{{shareApprovallist}}" wx:key="{{index}}" class="shareApprovalItem">
- <view class="shareApprovalLeft">
- <image src="{{item.headimgurl?item.headimgurl:'../../../img/default.png'}}" mode="" />
- </view>
- <view class="shareApprovalRight">
- <view class="shareApprovalText">
- <text class="satName">{{item.agent_name||'未知'}}</text>
- <text class="satTime">分享时间:{{item.addtime}}</text>
- </view>
- <view class="shareApprovalImgBox">
- <view wx:for="{{item.img}}" wx:for-item="imgItem" wx:for-index="idx" wx:key="{{idx}}" class="shareApprovalImgItem" data-index="{{index}}" data-idx="{{idx}}" bindtap="previewImageEvent">
- <image src="{{imgItem}}" mode="" />
- </view>
- </view>
- <view wx:if="{{item.remarks}}" class="shareApprovalMsg">
- {{item.remarks}}
- </view>
- <view class="shareApproValBtnBox">
- <button data-id="{{item.id}}" disabled="{{loading}}" loading="{{loading}}" bindtap="confirmApproval" class="aConfirmBtn">通过</button>
- <button data-id="{{item.id}}" disabled="{{loading}}" loading="{{loading}}" bindtap="rejectApproval" class="aRejectBtn">驳回</button>
- </view>
- </view>
- </view>
- <nonedata len="{{shareApprovallist.length}}" datashow="{{datashow}}"></nonedata>
- </view>
- </view>
- </view>
- </block>
- <sharefooter wx:if="{{!pType}}" type="{{1}}"></sharefooter>
- <wshare wshareshow="{{wshareshow}}" bind:poster="setpostertap" bind:sfriend="sharetap" bind:sendfriendcircle="sendfriendtap" showTask="{{showTask}}" bind:shareurl="shareurltap" contentid="{{aid}}" type="Article"></wshare>
- <calcprice priceflag='{{priceflag}}' bind:run="closepricetap"></calcprice>
|