first commit
This commit is contained in:
18
pages/recruit/recruit.wxml
Normal file
18
pages/recruit/recruit.wxml
Normal file
@@ -0,0 +1,18 @@
|
||||
<view class="jobs-page">
|
||||
<!-- 招聘列表 -->
|
||||
<view class="job-list">
|
||||
<!-- 循环遍历招聘数据 -->
|
||||
<block wx:for="{{jobs}}" wx:key="unique">
|
||||
<view class="job-card">
|
||||
<view class="job-header">
|
||||
<text class="job-title">{{item.title}}</text>
|
||||
<text class="job-salary">{{item.salary}}</text>
|
||||
</view>
|
||||
<view class="job-info">
|
||||
<text class="job-date">发布日期:{{item.date}}</text>
|
||||
<text class="job-detail">概述:{{item.detail}}</text>
|
||||
</view>
|
||||
</view>
|
||||
</block>
|
||||
</view>
|
||||
</view>
|
||||
Reference in New Issue
Block a user