审查视图

pages/homeblock/niangjiuteacher/niangjiuteacher.wxml 3.6 KB
lihongjuan authored
1
<import src="../../../wxParse/wxParse.wxml" />
lihongjuan authored
2 3 4
<view class="teacherhead">
  <view class="teacherleft">
    <view class="teacimg">
lihongjuan authored
5
      <image src="{{info.avatar}}"></image>
lihongjuan authored
6 7
    </view>
lihongjuan authored
8
    <view class="teacname">{{info.name}}</view>
lihongjuan authored
9 10 11 12 13
    <view class="teacgouimg">
      <image src="{{url}}aicon_20x.png"></image>
    </view>
  </view>
lihongjuan authored
14
  <view class="atten" bindtap="attention" data-id="{{info.id}}" wx:if="{{info.is_concern==0}}">
lihongjuan authored
15 16
    关注
  </view>
lihongjuan authored
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
  <view class="atten" bindtap="attention" data-id="{{info.id}}" wx:else>
    取消关注
  </view>
</view>

<view class="jiubottom">
  <view class="jiuleft">
    <view class="jiuleftimg" catchtap="zan" data-id="{{info.id}}">
      <image src="{{url}}/aicon_47x.png" wx:if="{{info.is_good==0}}"></image>
      <image src="{{url}}/aicon_46x.png" wx:else></image>
    </view>
    <view class="jiuzan">{{info.good_count}}</view>
  </view>

  <view class="jiumiddle" catchtap="ping" data-id="{{info.id}}">
    <view class="middleimg">
      <image src="{{url}}/aicon_67x.png"></image>
    </view>
    <view class="tiao">{{info.comment_count}}</view>
  </view>

  <view class="lastimg">

   <view class="jiuright">
    <image src="{{url}}/aicon_68x.png"></image>
    <button class="lj_share" catchtap="buildshare" open-type='share'></button>
  </view>
  <view class="tiao">分享</view>
  
  </view>

 
lihongjuan authored
49 50 51
</view>

<view class="wineimg">
lihongjuan authored
52
  <image src="{{info.thumb}}"></image>
lihongjuan authored
53 54
</view>
lihongjuan authored
55
lihongjuan authored
56 57
<view class="niangjiubox">
lihongjuan authored
58
  <!-- <view class="brandboxitem">
lihongjuan authored
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
    <view class="boxtop">
      <view class="boxtopleft">
        基本信息
      </view>
      <view class="boxright">
        <image src="{{url}}aicon_24x.png"></image>
      </view>
    </view>

    <view class="brandtext">
      <view class="baisinfo">
        <view class="basinfoleft">性别</view>
        <view class="baisinforight">男</view>
      </view>
      <view class="baisinfo">
        <view class="basinfoleft">年龄</view>
        <view class="baisinforight">34</view>
      </view>
      <view class="baisinfo">
        <view class="basinfoleft">所属酒厂</view>
        <view class="baisinforight">广东顺德酒厂</view>
      </view>
    </view>

lihongjuan authored
84 85
  </view> -->
  <view class="brandboxitem" wx:for='{{attr}}' wx:key='' wx:for-index="idxs">
lihongjuan authored
86 87
    <view class="boxtop">
      <view class="boxtopleft">
lihongjuan authored
88
        {{item.name}}
lihongjuan authored
89
      </view>
lihongjuan authored
90 91 92
      <view class="boxright" bindtap="showinfo" data-idx="{{idxs}}">
        <image src="{{url}}aicon_53x.png" wx:if="{{item.show}}"></image>
        <image src="{{url}}aicon_52x.png" wx:else></image>
lihongjuan authored
93 94 95
      </view>
    </view>
lihongjuan authored
96 97 98 99 100 101
    <view class="brandtext" wx:if="{{item.show==true}}">
      <block wx:for="{{artileList}}" wx:for-item="item" wx:for-index="idx" wx:key=''>
        <block wx:if="{{idxs==idx}}">
          <template is="wxParse" data="{{wxParseData:item}}" />
        </block>
      </block>
lihongjuan authored
102 103 104 105 106 107 108 109 110




    </view>


  </view>
lihongjuan authored
111
  <!-- <view class="brandboxitem">
lihongjuan authored
112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
    <view class="boxtop">
      <view class="boxtopleft">
        代表作品
      </view>
      <view class="boxright">
        <image src="{{url}}aicon_24x.png"></image>
      </view>
    </view>

    <view class="brandtext">
      <view class="brandlsit">
        2009年接触葡萄酒。
      </view>
      <view class="brandlsit">
        2010年—2011年在郑大工学院和财经学院任教计算机3D设计教师。
      </view>
      <view class="brandlsit">
        2012年考取ESW葡萄酒中级品酒师证。
      </view>
      <view class="brandlsit">
        2012年至今在优传葡萄酒有限公司从事葡萄酒销售,酒会承办工作。同时从事企业礼仪茶培训。
      </view>




    </view>

lihongjuan authored
141
  </view> -->
lihongjuan authored
142 143

</view>