You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <!-- 岗位列表 -->
- <div class="col-job-list">
- {% if contentData.list and contentData.list.length > 0 %}
- {% for item in contentData.list %}
- <div class="col-job-item">
- <div class="col-job-header">
- <h3>{{item.title}}</h3>
- {% if item.location %}<span class="col-job-loc">{{item.location}}</span>{% endif %}
- </div>
- {% if item.description %}<p class="col-job-desc">{{item.description}}</p>{% endif %}
- </div>
- {% endfor %}
- {% else %}
- <div class="col-empty">暂无招聘信息</div>
- {% endif %}
- </div>
|