diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/system/TdIndentureController.java b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/system/TdIndentureController.java index 0726032..bcac3d0 100644 --- a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/system/TdIndentureController.java +++ b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/system/TdIndentureController.java @@ -1,5 +1,6 @@ package com.ruoyi.web.controller.system.system; +import java.util.Date; import java.util.List; import org.apache.shiro.authz.annotation.RequiresPermissions; import org.springframework.beans.factory.annotation.Autowired; @@ -87,6 +88,8 @@ public class TdIndentureController extends BaseController @ResponseBody public AjaxResult addSave(TdIndenture tdIndenture) { + tdIndenture.setCreateStaffid(getLoginName()); + tdIndenture.setCreateDate(new Date()); return toAjax(tdIndentureService.insertTdIndenture(tdIndenture)); } diff --git a/ruoyi-admin/src/main/resources/templates/system/indenture/add.html b/ruoyi-admin/src/main/resources/templates/system/indenture/add.html index 0383f98..00329e8 100644 --- a/ruoyi-admin/src/main/resources/templates/system/indenture/add.html +++ b/ruoyi-admin/src/main/resources/templates/system/indenture/add.html @@ -10,17 +10,17 @@
- +
- +
- +
- +
@@ -28,17 +28,17 @@
- +
- +
- +
- +
@@ -46,7 +46,7 @@
- +
@@ -54,9 +54,9 @@
- +
- +
@@ -72,37 +72,16 @@
- +
-
-
-
- -
- -
-
-
-
-
- -
-
- - -
-
-
-
-
diff --git a/ruoyi-admin/src/main/resources/templates/system/indenture/edit.html b/ruoyi-admin/src/main/resources/templates/system/indenture/edit.html index 05e3c8c..7fc07eb 100644 --- a/ruoyi-admin/src/main/resources/templates/system/indenture/edit.html +++ b/ruoyi-admin/src/main/resources/templates/system/indenture/edit.html @@ -11,17 +11,17 @@
- +
- +
- +
- +
@@ -29,17 +29,17 @@
- +
- +
- +
- +
@@ -47,7 +47,7 @@
- +
@@ -55,7 +55,7 @@
- +
@@ -73,7 +73,7 @@
- +
- -
-
-
-
-
-
- -
- -
-
-
-
diff --git a/ruoyi-admin/src/main/resources/templates/system/indenture/indenture.html b/ruoyi-admin/src/main/resources/templates/system/indenture/indenture.html index 10f395c..ee70295 100644 --- a/ruoyi-admin/src/main/resources/templates/system/indenture/indenture.html +++ b/ruoyi-admin/src/main/resources/templates/system/indenture/indenture.html @@ -71,30 +71,30 @@ updateUrl: prefix + "/edit/{id}", removeUrl: prefix + "/remove", exportUrl: prefix + "/export", - modalName: "维修商", + modalName: "维修单位", columns: [{ checkbox: true }, { field: 'indentureId', - title: '维修商id', + title: '维修单位id', visible: false }, { field: 'indentureName', - title: '维修商名称' + title: '维修单位名称' }, { field: 'indentureAddress', - title: '维修商地址' + title: '维修单位地址' }, { field: 'indenturePhone', - title: '维修商座机' + title: '维修单位座机' }, { field: 'indentureMobile', - title: '维修商手机' + title: '维修单位手机' }, { field: 'indentureLinkman', @@ -110,7 +110,7 @@ }, { field: 'indentureState', - title: '维修商状态', + title: '维修单位状态', formatter: function(value, row, index) { return $.table.selectDictLabel(indentureStateDatas, value); }