Browse Source

[fix] 销售管理

修改客户报价的操作栏样式排列,使用公共方法采用下拉菜单展示操作栏按钮
dev
liuxiaoxu 2 months ago
parent
commit
c59a67b62d
  1. 3
      ruoyi-admin/src/main/resources/templates/system/customerQuote/customerQuote.html

3
ruoyi-admin/src/main/resources/templates/system/customerQuote/customerQuote.html

@ -311,7 +311,8 @@
} }
// 详情 // 详情
actions.push('<a class="btn btn-primary btn-xs" href="javascript:void(0)" onclick="$.operate.detail(\'' + row.id + '\')"><i class="fa fa-eye"></i> 详情</a> '); actions.push('<a class="btn btn-primary btn-xs" href="javascript:void(0)" onclick="$.operate.detail(\'' + row.id + '\')"><i class="fa fa-eye"></i> 详情</a> ');
return actions.join(''); var actionLinks = actions.join('');
return $.table.dropdownToggle(actionLinks);
} }
}], }],
rowStyle: function (row, index) { rowStyle: function (row, index) {

Loading…
Cancel
Save