|
|
|
@ -217,7 +217,7 @@
|
|
|
|
|
<label class="col-sm-4 control-label">保密协议签订书:</label>
|
|
|
|
|
<div class="col-sm-8">
|
|
|
|
|
<span class="btn btn-white btn-file">
|
|
|
|
|
<span class="fileinput-filename">文件下载</span>
|
|
|
|
|
<span class="fileinput-filename" onclick="downloadFile()">文件下载</span>
|
|
|
|
|
<input type="hidden" id="fileUrl" name="confAgreement" th:field="*{confAgreement}" >
|
|
|
|
|
</span>
|
|
|
|
|
<span class="fileinput-filename">[[*{confName}]]</span>
|
|
|
|
@ -251,8 +251,9 @@
|
|
|
|
|
<th:block th:include="include :: select2-js" />
|
|
|
|
|
<th:block th:include="include :: datetimepicker-js" />
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
function downloadFile(value){
|
|
|
|
|
window.location.href = ctx + "common/download/resource?resource=" + value;
|
|
|
|
|
function downloadFile(){
|
|
|
|
|
var fileUrl = $("#fileUrl").val();
|
|
|
|
|
window.location.href = ctx + "common/download/resource?resource=" + encodeURI(fileUrl) ;
|
|
|
|
|
}
|
|
|
|
|
var prefix = ctx + "system/user";
|
|
|
|
|
|
|
|
|
|