writinglist.wxml
2.96 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
49
50
51
52
53
54
55
56
57
58
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
84
85
86
<view style="font-size:28rpx;">
<view wx:if="{{list}}">
<view class="content2">
<block wx:for="{{list}}">
<view class="li">
<navigator url='../academic/academic?id={{item.id}}'>
<view class="bg">
<image src='{{item.listImage[0].url}}' mode='widthFix'></image>
</view>
<view class="con">
<view class="con1">
<view class="top">{{item.title}}</view>
<view class="bot">{{item.content}}</view>
</view>
</view>
</navigator>
</view>
</block>
</view>
</view>
<view wx:else>
<image src='/static/images/kongliebiao.png' mode='aspectFit' class="konglie"></image>
</view>
<view style="height:120rpx;"></view>
<view class="{{scrollTop>120 ? 'hide' : 'block'}} bott">
<view class="{{block ? 'block' : 'hide'}} menu">
<view class='tanbg'>
<image src='/static/images/tanbg1.png'></image>
</view>
<view class="ol">
<navigator url='../jobfair/jobfair' open-type="redirect">招聘会</navigator>
</view>
<view class="ol">
<navigator url='../academiclist/academiclist' open-type="redirect">学术会议</navigator>
</view>
<view class="ol">
<navigator url='../xzpx/xzpx' open-type="redirect">写作培训</navigator>
</view>
</view>
<view class="{{block1 ? 'block' : 'hide'}} menu1">
<view class='tanbg'>
<image src='/static/images/tanbg1.png'></image>
</view>
<view class="ol">
<navigator url='../zyjy/zyjy' open-type="redirect">职业建议</navigator>
</view>
<view class="ol">
<navigator url='../gzjh/gzjh' open-type="redirect">工作机会</navigator>
</view>
</view>
<view class="foot">
<view class="li">
<navigator url='../lwrs/lwrs' open-type="redirect">
<image src='/static/images/001.png' mode='widthFix' class="top"></image>
<text>润色</text>
</navigator>
</view>
<view class="li">
<view bindtap='getmenu' class='huodong'>
<image src='/static/images/002.png' mode='widthFix' class="top"></image>
<text>活动</text>
</view>
</view>
<view class="li">
<view bindtap='getmenu1' class='huodong'>
<image src='/static/images/003.png' mode='widthFix' class="top"></image>
<text>资讯</text>
</view>
</view>
<view class="li">
<navigator url='../contact/contact' open-type="redirect">
<image src='/static/images/004.png' mode='widthFix' class="top"></image>
<text>联系</text>
</navigator>
</view>
<view class="li">
<navigator url='../member/member' open-type="redirect">
<image src='/static/images/005.png' mode='widthFix' class="top"></image>
<text>我的</text>
</navigator>
</view>
<view class="cl"></view>
</view>
</view>
</view>