From 5606efe6f2778ad09d8b35280d6360cfe8f34d91 Mon Sep 17 00:00:00 2001
From: zmk <496160012@qq.com>
Date: 星期三, 03 七月 2024 16:19:28 +0800
Subject: [PATCH] Merge branch 'master' of ssh://117.78.1.188:29418/dkyChenJiang
---
javaweb-plus/javaweb-cms/src/main/resources/templates/geo/TubLog/add.html | 41 ++++++++++++++++++++++++++++++++++++++++-
1 files changed, 40 insertions(+), 1 deletions(-)
diff --git a/javaweb-plus/javaweb-cms/src/main/resources/templates/geo/TubLog/add.html b/javaweb-plus/javaweb-cms/src/main/resources/templates/geo/TubLog/add.html
index 8ce903c..a747da6 100644
--- a/javaweb-plus/javaweb-cms/src/main/resources/templates/geo/TubLog/add.html
+++ b/javaweb-plus/javaweb-cms/src/main/resources/templates/geo/TubLog/add.html
@@ -67,6 +67,13 @@
<textarea id="remark" name="remark" class="form-control"></textarea>
</div>
</div>
+
+ <div class="form-group">
+ <label class="col-sm-3 control-label">涓婁紶鍥剧墖/鎵弿浠讹細</label>
+ <div class="col-sm-8">
+ <input type="file" name= "file" id="file"/>
+ </div>
+ </div>
</form>
</div>
<th:block th:include="include :: footer" />
@@ -81,6 +88,14 @@
});
function submitHandler() {
+ var result = doSubmitFile();
+ var documentFile = null;
+ if(result !=null){
+ if(result.code == web_status.SUCCESS){
+ documentFile= result.fileName;
+ }
+ }
+
let inboundDateValue = $("#inboundDateId").val();
let outboundDateValue = $("#outboundDateId").val();
if ($.common.isEmpty(inboundDateValue) && $.common.isEmpty(outboundDateValue)) {
@@ -94,11 +109,35 @@
if ($.validate.form()) {
let formData = $('#form-TubLog-add').serialize();
- let data = formData + "&projectId=" + projectId + "&code=" + code;
+ let data = formData + "&projectId=" + projectId + "&code=" + code +"&fileUrl="+documentFile;
$.operate.save(prefix + "/add", data);
}
}
+ //涓婁紶鏂囦欢
+ function doSubmitFile(){
+ var file = $('#file').val();
+ if (file == '' || file ==null){
+ return null;
+ }
+ var formData = new FormData();
+ formData.append("file", $('#file')[0].files[0]);
+ var data = null;
+ $.ajax({
+ url: ctx + "geo/TubLog/uploadTubLogFile",
+ data: formData,
+ cache: false,
+ contentType: false,
+ processData: false,
+ type: 'POST',
+ async:false,
+ success: function (result) {
+ data= result;
+ }
+ });
+ return data;
+ }
+
$("input[name='outboundDate']").datetimepicker({
format: "yyyy-mm-dd",
minView: "month",
--
Gitblit v1.9.1