fix:会议详情文件下载

pg_adapter
wangxy 8 months ago
parent 074e1865f0
commit 10b50bf45c

@ -23,7 +23,7 @@
<div class="form-group">
<label class="col-sm-4 control-label is-required">会议时间:</label>
<div class="col-sm-8">
<input type="text" class="form-control m-b" placeholder="请选择会议时间" name="meetingTime"></input>
<input type="text" class="form-control m-b" required placeholder="请选择会议时间" name="meetingTime"></input>
</div>
</div>
</div>
@ -81,12 +81,12 @@
<div class="row">
<div class="col-sm-12">
<div class="form-group">
<label class="col-sm-2 control-label is-required">上传文件:</label>
<label class="col-sm-2 control-label">上传文件:</label>
<div class="fileinput fileinput-new col-sm-10" data-provides="fileinput">
<span class="btn btn-white btn-file">
<span class="fileinput-new">选择文件</span>
<span class="fileinput-exists">更改</span>
<input type="file" id="fileUrlId" name="..." required>
<input type="file" id="fileUrlId" name="..." >
<input type="hidden" id="fileUrl" name="fileUrl">
<input type="hidden" id="fileName" name="fileName">
</span>

@ -24,7 +24,7 @@
<div class="form-group">
<label class="col-sm-4 control-label is-required">会议时间:</label>
<div class="col-sm-8">
<input type="text" class="form-control m-b" placeholder="请选择会议时间" th:value="${#dates.format(meeting.meetingTime, 'yyyy-MM-dd')}" name="meetingTime"></input>
<input type="text" class="form-control m-b" required placeholder="请选择会议时间" th:value="${#dates.format(meeting.meetingTime, 'yyyy-MM-dd')}" name="meetingTime"></input>
</div>
</div>
</div>
@ -82,7 +82,7 @@
<div class="row">
<div class="col-sm-12">
<div class="form-group">
<label class="col-sm-2 control-label is-required">上传文件:</label>
<label class="col-sm-2 control-label">上传文件:</label>
<div class="fileinput fileinput-new col-sm-10" data-provides="fileinput">
<span class="btn btn-white btn-file">
<span class="fileinput-new">选择文件</span>

@ -34,10 +34,10 @@
<select id="selectTdMeetingList" resultType="com.ruoyi.system.domain.TdMeeting">
select <include refid="Base_Column_List"/> from td_meeting
<trim prefix="where" prefixOverrides="and|or">
<if test="meetingType!=null and meetingTitle!=''">
<if test="meetingType!=null and meetingType!=''">
AND meeting_type = #{meetingType}
</if>
<if test="meetingState!=null and meetingTitle!=''">
<if test="meetingState!=null and meetingState!=''">
AND meeting_state = #{meetingState}
</if>
<if test="meetingTitle!=null and meetingTitle!=''">

Loading…
Cancel
Save