diff --git a/ruoyi-admin/src/main/resources/templates/system/baseEvectionForm/baseEvectionForm.html b/ruoyi-admin/src/main/resources/templates/system/baseEvectionForm/baseEvectionForm.html
index 5fdb6869..005b1b85 100644
--- a/ruoyi-admin/src/main/resources/templates/system/baseEvectionForm/baseEvectionForm.html
+++ b/ruoyi-admin/src/main/resources/templates/system/baseEvectionForm/baseEvectionForm.html
@@ -200,7 +200,7 @@
var todoUserIdList = row.todoUserId.split(",");
if(todoUserIdList.includes(loginName) || loginName == 'admin'){
var nodeName = row.taskName=='驳回调整'?' 调整申请':' 审批';
- actions.push(' '+nodeName+' ');
+ actions.push(' '+nodeName+' ');
}
}
// 审批历史
diff --git a/ruoyi-admin/src/main/resources/templates/system/companyInformation/companyInformation.html b/ruoyi-admin/src/main/resources/templates/system/companyInformation/companyInformation.html
index 1b28a25c..1e0a7350 100644
--- a/ruoyi-admin/src/main/resources/templates/system/companyInformation/companyInformation.html
+++ b/ruoyi-admin/src/main/resources/templates/system/companyInformation/companyInformation.html
@@ -225,7 +225,7 @@
align: 'center',
formatter: function(value, row, index) {
var actions = [];
- actions.push('编辑 ');
+ actions.push('编辑 ');
var actionLinks = actions.join('');
return $.table.dropdownToggle(actionLinks);
}
diff --git a/ruoyi-admin/src/main/resources/templates/system/contacts/contacts.html b/ruoyi-admin/src/main/resources/templates/system/contacts/contacts.html
index 521e71be..8de56471 100644
--- a/ruoyi-admin/src/main/resources/templates/system/contacts/contacts.html
+++ b/ruoyi-admin/src/main/resources/templates/system/contacts/contacts.html
@@ -40,7 +40,7 @@
添加
-
@@ -67,6 +67,7 @@
{
field: 'contactid',
title: '联系人id',
+ visible: false
},
{
field: 'enterpriseCode',
@@ -133,9 +134,10 @@
align: 'center',
formatter: function(value, row, index) {
var actions = [];
- actions.push('编辑 ');
- actions.push('删除');
- return actions.join('');
+ actions.push('编辑 ');
+ actions.push('删除');
+ var actionLinks = actions.join('');
+ return $.table.dropdownToggle(actionLinks);
}
}
]
diff --git a/ruoyi-admin/src/main/resources/templates/system/invoice/invoice.html b/ruoyi-admin/src/main/resources/templates/system/invoice/invoice.html
index ef2ae43b..90af3f30 100644
--- a/ruoyi-admin/src/main/resources/templates/system/invoice/invoice.html
+++ b/ruoyi-admin/src/main/resources/templates/system/invoice/invoice.html
@@ -110,10 +110,11 @@
align: 'center',
formatter: function(value, row, index) {
var actions = [];
- actions.push('编辑 ');
- actions.push('删除 ');
- actions.push('详情 ');
- return actions.join('');
+ actions.push('编辑 ');
+ actions.push('删除 ');
+ actions.push('详情 ');
+ var actionLinks = actions.join('');
+ return $.table.dropdownToggle(actionLinks);
}
}]
};
diff --git a/ruoyi-admin/src/main/resources/templates/system/shippingaddress/shippingaddress.html b/ruoyi-admin/src/main/resources/templates/system/shippingaddress/shippingaddress.html
index 94af2df0..26171e8c 100644
--- a/ruoyi-admin/src/main/resources/templates/system/shippingaddress/shippingaddress.html
+++ b/ruoyi-admin/src/main/resources/templates/system/shippingaddress/shippingaddress.html
@@ -47,7 +47,7 @@
@@ -70,7 +70,7 @@
modalName: "送货地址",
columns: [
{checkbox: true},
- {title: '送货id',field: 'deliveryId'},
+ {title: '送货id',field: 'deliveryId', visible: false},
{title: '客户/企业代码',field: 'enterpriseCode'},
{title: '客户/企业名称',field: 'enterpriseName'},
{title: '联系人电话',field: 'customerPhone'},
@@ -90,9 +90,10 @@
align: 'center',
formatter: function (value, row, index) {
var actions = [];
- actions.push('编辑 ');
- actions.push('删除');
- return actions.join('');
+ actions.push('编辑 ');
+ actions.push('删除');
+ var actionLinks = actions.join('');
+ return $.table.dropdownToggle(actionLinks);
}
}
]