初始提交:人事共享服务中心钉钉登录功能

This commit is contained in:
zsc
2026-05-16 11:15:24 +08:00
commit 7ba21d6413
23 changed files with 1770 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
{% extends 'base.html' %}
{% block title %}回答需求{% endblock %}
{% block content %}
<h2>回答需求</h2>
<div class="question-preview">
<h3>需求内容</h3>
<h4 class="demand-title">{{ demand.title }}</h4>
<p>{{ demand.content }}</p>
<p class="meta">分会: {{ get_branch_name(demand.branch) }} | 联系方式: {{ demand.contact }}</p>
</div>
<form method="POST" class="form">
{{ form.hidden_tag() }}
<div class="form-group">
{{ form.answer.label }}
{{ form.answer(class="form-control", rows=8) }}
</div>
<div class="form-group">
{{ form.submit(class="btn btn-primary") }}
<a href="{{ url_for('index') }}" class="btn btn-cancel">取消</a>
</div>
</form>
{% endblock %}