first commit

This commit is contained in:
2024-01-06 10:35:41 +08:00
commit bf3a62d426
61 changed files with 1464 additions and 0 deletions

View 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>