diff --git a/ruoyi-admin/src/main/resources/templates/purchase/purchaseQuote/purchaseQuote.html b/ruoyi-admin/src/main/resources/templates/purchase/purchaseQuote/purchaseQuote.html index b26e7fa5..2fc31fca 100644 --- a/ruoyi-admin/src/main/resources/templates/purchase/purchaseQuote/purchaseQuote.html +++ b/ruoyi-admin/src/main/resources/templates/purchase/purchaseQuote/purchaseQuote.html @@ -66,12 +66,16 @@ 添加 - + 导出 + + 导入 + +
-
+
@@ -147,14 +151,14 @@ // 审核状态-审核通过 使用状态-是 未发起作废流程 if (row.auditStatus == "1" && row.useStatus == "1") { // 作废 - actions.push(' 作废'); + actions.push(' 作废'); // 编辑 - actions.push(' 编辑 '); + actions.push(' 编辑 '); } // 已作废 if (row.useStatus == "2") { // 恢复 - actions.push(' 恢复 '); + actions.push(' 恢复 '); } // 有流程实例id if (row.instanceId) { @@ -163,17 +167,18 @@ var todoUserIdList = row.todoUserId.split(","); if (todoUserIdList.includes(loginName)) { var nodeName = row.taskName == '驳回调整' ? ' 调整申请' : ' 审批'; - actions.push(' ' + nodeName + ' '); + actions.push(' ' + nodeName + ' '); } } // 审批历史 - actions.push(' 审批历史 '); + actions.push(' 审批历史 '); // 进度查看 - actions.push(' 进度查看 '); + actions.push(' 进度查看 '); } // 详情 - actions.push(' 详情 '); - return actions.join(''); + actions.push(' 详情 '); + var actionLinks = actions.join(''); + return $.table.dropdownToggle(actionLinks); } } ],