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);
}
}
]