index.html 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593
  1. <style>
  2. /* 工具栏贴右时避免被裁切;主内容区约束宽度,表格在内部横向滚动 */
  3. #content:has(#procuremen-layout),
  4. #content .col-xs-12:has(#procuremen-layout),
  5. div.content:has(#procuremen-layout) {
  6. overflow-x: hidden !important;
  7. }
  8. div.content:has(#procuremen-layout) {
  9. padding-top: 0 !important;
  10. padding-bottom: 0 !important;
  11. }
  12. #procuremen-layout > .panel-body {
  13. padding-top: 16px !important;
  14. padding-bottom: 0 !important;
  15. }
  16. #procuremen-layout.panel-intro > .panel-heading {
  17. padding-top: 0 !important;
  18. padding-bottom: 0 !important;
  19. }
  20. #procuremen-layout.panel-intro > .panel-heading .panel-lead {
  21. margin-bottom: 0;
  22. }
  23. #procuremen-layout .tab-content,
  24. #procuremen-layout .tab-pane {
  25. padding: 0;
  26. margin: 0;
  27. }
  28. .procuremen-layout { margin: 0 -10px; }
  29. /* 左右列等高:与右侧整块(工具条+Tab+表格+分页)对齐;桌面下取消 float 用 flex */
  30. #procuremen-layout .procuremen-layout.row {
  31. display: flex;
  32. flex-wrap: wrap;
  33. align-items: stretch;
  34. }
  35. @media (min-width: 768px) {
  36. #procuremen-layout .procuremen-layout.row {
  37. min-height: calc(100vh - 132px);
  38. }
  39. #procuremen-layout .procuremen-layout > .procuremen-sidebar,
  40. #procuremen-layout .procuremen-layout > .procuremen-main {
  41. float: none !important;
  42. display: flex;
  43. flex-direction: column;
  44. }
  45. #procuremen-layout .procuremen-layout > .procuremen-sidebar {
  46. flex: 0 0 92px;
  47. max-width: 92px;
  48. width: 92px !important;
  49. }
  50. }
  51. #procuremen-layout .procuremen-main {
  52. overflow-x: hidden !important;
  53. overflow-y: visible;
  54. padding-right: 8px !important;
  55. flex: 1 1 0%;
  56. min-width: 0;
  57. }
  58. .procuremen-sidebar {
  59. flex: 0 0 auto;
  60. align-self: stretch;
  61. min-height: 0;
  62. overflow-y: auto;
  63. border-right: 1px solid #f0f0f0;
  64. background: #fafafa;
  65. }
  66. /* 左侧年月栏:桌面固定约 92px,略宽于纯数字月份便于显示「2026年」 */
  67. .procuremen-sidebar .year-title {
  68. font-weight: 600;
  69. padding: 8px 6px 4px;
  70. margin: 4px 0 2px;
  71. background: transparent;
  72. border-radius: 0;
  73. font-size: 12px;
  74. color: #8c8c8c;
  75. }
  76. .procuremen-sidebar .procuremen-ym-item {
  77. display: block;
  78. padding: 7px 6px;
  79. margin: 2px 4px;
  80. color: #595959;
  81. border-radius: 6px;
  82. text-decoration: none;
  83. border: none;
  84. font-size: 13px;
  85. text-align: center;
  86. }
  87. .procuremen-sidebar .procuremen-ym-item:hover {
  88. background: #f0f0f0;
  89. color: #1f1f1f;
  90. }
  91. .procuremen-sidebar .procuremen-ym-item.active {
  92. background: #e6f4ff;
  93. color: #1677ff;
  94. font-weight: 500;
  95. }
  96. #procuremen-layout .procuremen-main .widget-body {
  97. overflow-x: hidden;
  98. overflow-y: hidden;
  99. flex: 1 1 auto;
  100. min-height: 0;
  101. min-width: 0;
  102. display: flex;
  103. flex-direction: column;
  104. }
  105. #procuremen-layout .procuremen-toolbar-host,
  106. #procuremen-layout .procuremen-wff-tabs {
  107. flex-shrink: 0;
  108. }
  109. #procuremen-layout .procuremen-main .fixed-table-pagination {
  110. background: #fff;
  111. border-top: 1px solid #e7e7e7;
  112. box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.04);
  113. }
  114. /* 主表 loading 遮罩盖不住右侧固定列克隆体,刷新时短暂露出旧「操作」按钮,加载中先隐藏 */
  115. #procuremen-layout .fixed-columns-right.procuremen-hide-fixed-right-loading {
  116. visibility: hidden !important;
  117. pointer-events: none !important;
  118. }
  119. /* JS 把 .fixed-table-toolbar 挪到此处:上一行按钮,下一行 tabs */
  120. .procuremen-toolbar-host {
  121. padding: 10px 12px 8px 0;
  122. margin-bottom: 0;
  123. border-bottom: 1px solid #f0f0f0;
  124. width: 100%;
  125. box-sizing: border-box;
  126. overflow: visible;
  127. position: relative;
  128. z-index: 3;
  129. }
  130. .procuremen-toolbar-host .fixed-table-toolbar {
  131. border: none;
  132. margin: 0;
  133. padding: 0;
  134. display: flex;
  135. align-items: center;
  136. justify-content: flex-start;
  137. flex-wrap: nowrap;
  138. gap: 12px;
  139. width: 100%;
  140. box-sizing: border-box;
  141. overflow: visible;
  142. min-height: 36px;
  143. }
  144. .procuremen-toolbar-host .fixed-table-toolbar > .pull-left,
  145. .procuremen-toolbar-host .fixed-table-toolbar > .bars.pull-left,
  146. .procuremen-toolbar-host .fixed-table-toolbar > .bs-bars.pull-left {
  147. float: none !important;
  148. margin: 0 !important;
  149. flex: 0 0 auto;
  150. }
  151. .procuremen-toolbar-host .fixed-table-toolbar > .pull-right,
  152. .procuremen-toolbar-host .fixed-table-toolbar > .columns.pull-right,
  153. .procuremen-toolbar-host .fixed-table-toolbar > .columns.columns-right {
  154. float: none !important;
  155. margin-left: auto !important;
  156. flex: 0 0 auto;
  157. display: flex;
  158. align-items: center;
  159. flex-wrap: nowrap;
  160. gap: 8px;
  161. }
  162. .procuremen-toolbar-host .fixed-table-toolbar .search {
  163. float: none !important;
  164. margin: 0 !important;
  165. }
  166. .procuremen-toolbar-host .fixed-table-toolbar .search .form-control {
  167. min-width: 140px;
  168. max-width: 220px;
  169. }
  170. .procuremen-toolbar-host .fixed-table-toolbar .procuremen-toolbar-search-wrap {
  171. margin-left: auto !important;
  172. float: none !important;
  173. display: flex !important;
  174. align-items: center;
  175. flex-wrap: nowrap;
  176. gap: 8px;
  177. flex: 0 0 auto !important;
  178. flex-shrink: 0 !important;
  179. min-width: min-content;
  180. }
  181. .procuremen-toolbar-host .fixed-table-toolbar .procuremen-toolbar-search-wrap .btn-group,
  182. .procuremen-toolbar-host .fixed-table-toolbar .procuremen-toolbar-search-wrap button[name="search"] {
  183. flex-shrink: 0;
  184. }
  185. .procuremen-toolbar-host .fixed-table-toolbar .procuremen-toolbar-search-wrap > .search {
  186. order: 0 !important;
  187. }
  188. .procuremen-toolbar-host .fixed-table-toolbar .procuremen-toolbar-search-wrap > *:not(.search) {
  189. order: 2;
  190. }
  191. .procuremen-toolbar-host .fixed-table-toolbar .procuremen-toolbar-search-wrap > button[name="search"] {
  192. order: 4 !important;
  193. }
  194. #procuremen-layout .procuremen-main .procuremen-table-area {
  195. flex: 1 1 auto;
  196. min-height: 0;
  197. min-width: 0;
  198. overflow: hidden;
  199. display: flex;
  200. flex-direction: column;
  201. }
  202. #procuremen-layout .procuremen-table-area > .bootstrap-table {
  203. flex: 1 1 auto;
  204. min-height: 0;
  205. min-width: 0;
  206. width: 100%;
  207. }
  208. #procuremen-layout .bootstrap-table .fixed-table-container {
  209. width: 100% !important;
  210. }
  211. .procuremen-table-area .toolbar.procuremen-toolbar-empty {
  212. display: none !important;
  213. }
  214. .procuremen-wff-tabs {
  215. margin-bottom: 0;
  216. margin-top: 0;
  217. border-bottom: 1px solid #f0f0f0;
  218. background: #fff;
  219. }
  220. .procuremen-wff-tabs > li > a {
  221. padding: 10px 16px;
  222. color: #8c8c8c;
  223. border: none !important;
  224. border-bottom: 2px solid transparent !important;
  225. border-radius: 0 !important;
  226. margin-right: 0;
  227. }
  228. .procuremen-wff-tabs > li.active > a,
  229. .procuremen-wff-tabs > li.active > a:hover,
  230. .procuremen-wff-tabs > li.active > a:focus {
  231. color: #1677ff !important;
  232. background: transparent !important;
  233. border: none !important;
  234. border-bottom: 2px solid #1677ff !important;
  235. }
  236. #procuremen-layout .bootstrap-table .table > thead > tr > th,
  237. #procuremen-layout .bootstrap-table .table > tbody > tr > td {
  238. padding: 3px 6px;
  239. line-height: 1.28;
  240. vertical-align: middle;
  241. }
  242. /* 复选框列:表头 .th-inner 与表体 td 内边距一致,避免全选与行勾选框错位 */
  243. #procuremen-layout .bootstrap-table th.bs-checkbox,
  244. #procuremen-layout .bootstrap-table td.bs-checkbox {
  245. width: 42px !important;
  246. min-width: 42px !important;
  247. max-width: 42px !important;
  248. padding: 3px 4px !important;
  249. text-align: center !important;
  250. vertical-align: middle !important;
  251. box-sizing: border-box;
  252. }
  253. #procuremen-layout .bootstrap-table th.bs-checkbox .th-inner {
  254. padding: 0 !important;
  255. margin: 0 !important;
  256. text-align: center !important;
  257. line-height: 1;
  258. min-height: 0;
  259. }
  260. #procuremen-layout .bootstrap-table th.bs-checkbox input[type="checkbox"],
  261. #procuremen-layout .bootstrap-table td.bs-checkbox input[type="checkbox"] {
  262. margin: 0 auto !important;
  263. vertical-align: middle !important;
  264. float: none;
  265. position: static;
  266. top: auto;
  267. width: 16px;
  268. height: 16px;
  269. cursor: pointer;
  270. display: block;
  271. }
  272. #procuremen-layout .bootstrap-table tbody td.bs-checkbox {
  273. min-height: 28px;
  274. cursor: pointer;
  275. }
  276. /* 表头与表体同步横向滚动,避免右侧列(如提交日期)被裁切 */
  277. #procuremen-layout .bootstrap-table .fixed-table-body {
  278. overflow: auto !important;
  279. -webkit-overflow-scrolling: touch;
  280. box-sizing: border-box;
  281. }
  282. #procuremen-layout .bootstrap-table .fixed-table-body > table.table {
  283. margin-right: 14px;
  284. }
  285. #procuremen-layout .bootstrap-table .fixed-table-header {
  286. overflow: hidden;
  287. }
  288. /* 日期列加宽并禁止省略,避免滚到最右仍被竖向滚动条挡住 */
  289. #procuremen-layout .bootstrap-table thead th[data-field="dStamp"],
  290. #procuremen-layout .bootstrap-table thead th[data-field="dputrecord"],
  291. #procuremen-layout .bootstrap-table tbody td[data-field="dStamp"],
  292. #procuremen-layout .bootstrap-table tbody td[data-field="dputrecord"] {
  293. min-width: 176px !important;
  294. width: 176px !important;
  295. white-space: nowrap;
  296. overflow: visible;
  297. text-overflow: clip;
  298. }
  299. #procuremen-layout .nice-validator .bootstrap-table td.bs-checkbox input[type="checkbox"],
  300. #procuremen-layout .nice-validator .bootstrap-table th.bs-checkbox input[type="checkbox"] {
  301. vertical-align: middle !important;
  302. }
  303. #procuremen-layout .bootstrap-table .table > tbody > tr > td .btn-xs {
  304. padding: 2px 6px;
  305. font-size: 12px;
  306. }
  307. /*
  308. * 右固定列与主表 .fixed-table-body 为同级兄弟,主表全宽时最后一列会叠在固定层「下面」。
  309. * 全局 backend.css 里 .fixed-columns-right 仅 z-index:2,易被主表内层盖住,表现为要点多次才打开弹窗。
  310. * 抬高固定列整体叠层,并把主表滚动区压在 z-index:0,保证命中的是固定层上的按钮。
  311. */
  312. #procuremen-layout .bootstrap-table .fixed-table-container > .fixed-table-body {
  313. position: relative;
  314. z-index: 0;
  315. }
  316. #procuremen-layout .bootstrap-table .fixed-columns-right {
  317. box-shadow: none !important;
  318. border-left: 1px solid #e3e6ea;
  319. background-color: #fff;
  320. z-index: 18 !important;
  321. }
  322. #procuremen-layout .bootstrap-table .fixed-columns-right .fixed-table-header table thead th,
  323. #procuremen-layout .bootstrap-table .fixed-columns-right .fixed-table-body table tbody td {
  324. border-left-color: transparent;
  325. }
  326. /* 操作列按钮在固定层内置于可点区域之上,减少与主表透明重叠导致的「多点一次」 */
  327. /* 固定列操作按钮:抬高层级 + 明确可点,减轻与主表空白区域叠层的「点了没反应」 */
  328. #procuremen-layout .bootstrap-table .fixed-columns-right .fixed-table-body {
  329. pointer-events: auto;
  330. }
  331. #procuremen-layout .bootstrap-table .fixed-columns-right a.procuremen-op-open {
  332. position: relative;
  333. z-index: 6;
  334. pointer-events: auto;
  335. display: inline-block;
  336. vertical-align: middle;
  337. }
  338. #procuremen-layout .procuremen-op-btns .btn + .btn {
  339. margin-left: 6px;
  340. }
  341. /* 可排序列表头:排序图标紧跟文字后面(th-inner 仅包裹文字宽度) */
  342. #procuremen-layout .bootstrap-table thead th.sortable,
  343. #procuremen-layout .bootstrap-table thead th .th-inner.sortable {
  344. background-image: none !important;
  345. background-position: unset !important;
  346. padding-right: 6px !important;
  347. }
  348. #procuremen-layout .bootstrap-table thead th.sortable .th-inner,
  349. #procuremen-layout .bootstrap-table thead th .th-inner.sortable {
  350. display: inline-block !important;
  351. width: auto !important;
  352. max-width: calc(100% - 2px);
  353. padding-right: 0 !important;
  354. box-sizing: border-box;
  355. vertical-align: middle;
  356. white-space: nowrap;
  357. }
  358. #procuremen-layout .bootstrap-table thead th.sortable .th-inner:after,
  359. #procuremen-layout .bootstrap-table thead th .th-inner.sortable:after {
  360. content: '\f0dc';
  361. font-family: FontAwesome;
  362. font-size: 11px;
  363. line-height: 1;
  364. color: #bbb;
  365. margin-left: 4px;
  366. vertical-align: middle;
  367. }
  368. #procuremen-layout .bootstrap-table thead th.sortable.asc .th-inner:after,
  369. #procuremen-layout .bootstrap-table thead th.sortable.desc .th-inner:after,
  370. #procuremen-layout .bootstrap-table thead th .th-inner.sortable.asc:after,
  371. #procuremen-layout .bootstrap-table thead th .th-inner.sortable.desc:after {
  372. color: #337ab7;
  373. }
  374. /* 采购确认弹层(完结/删除等) */
  375. body .layui-layer-procuremen-finish {
  376. display: flex !important;
  377. flex-direction: column !important;
  378. height: 400px !important;
  379. border-radius: 8px;
  380. overflow: hidden;
  381. box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
  382. }
  383. body .layui-layer-procuremen-finish .layui-layer-title {
  384. background: #fff !important;
  385. color: #1f1f1f !important;
  386. border-bottom: 1px solid #f0f0f0;
  387. height: 48px;
  388. line-height: 48px;
  389. font-size: 15px;
  390. font-weight: 600;
  391. flex-shrink: 0;
  392. padding: 0 20px;
  393. }
  394. body .layui-layer-procuremen-finish .layui-layer-setwin {
  395. top: 2px;
  396. right: 12px;
  397. }
  398. body .layui-layer-procuremen-finish .layui-layer-content {
  399. flex: 1 1 auto !important;
  400. min-height: 0 !important;
  401. padding: 16px 20px !important;
  402. overflow: hidden !important;
  403. height: auto !important;
  404. display: flex !important;
  405. flex-direction: column !important;
  406. }
  407. body .layui-layer-procuremen-finish .procuremen-confirm-body {
  408. flex: 1 1 auto;
  409. min-height: 0;
  410. display: flex;
  411. flex-direction: column;
  412. text-align: left;
  413. line-height: 1.6;
  414. font-size: 13px;
  415. color: #434343;
  416. }
  417. body .layui-layer-procuremen-finish .procuremen-confirm-intro {
  418. margin: 0 0 12px;
  419. flex-shrink: 0;
  420. }
  421. body .layui-layer-procuremen-finish .procuremen-confirm-scroll {
  422. flex: 1 1 auto;
  423. min-height: 0;
  424. overflow-y: auto;
  425. overflow-x: hidden;
  426. border: 1px solid #f0f0f0;
  427. border-radius: 6px;
  428. background: #fafafa;
  429. }
  430. body .layui-layer-procuremen-finish .procuremen-confirm-table {
  431. margin: 0;
  432. font-size: 12px;
  433. border: none;
  434. background: #fff;
  435. width: 100%;
  436. table-layout: fixed;
  437. }
  438. body .layui-layer-procuremen-finish .procuremen-confirm-table th:nth-child(1),
  439. body .layui-layer-procuremen-finish .procuremen-confirm-table td:nth-child(1) {
  440. width: 150px;
  441. white-space: nowrap;
  442. }
  443. body .layui-layer-procuremen-finish .procuremen-confirm-table th:nth-child(2),
  444. body .layui-layer-procuremen-finish .procuremen-confirm-table td:nth-child(2) {
  445. width: 140px;
  446. }
  447. body .layui-layer-procuremen-finish .procuremen-confirm-table th:nth-child(3),
  448. body .layui-layer-procuremen-finish .procuremen-confirm-table td:nth-child(3) {
  449. width: auto;
  450. }
  451. body .layui-layer-procuremen-finish .procuremen-confirm-table thead th {
  452. position: sticky;
  453. top: 0;
  454. background: #f5f5f5;
  455. z-index: 1;
  456. border-bottom: 1px solid #f0f0f0;
  457. color: #595959;
  458. font-weight: 500;
  459. }
  460. body .layui-layer-procuremen-finish .procuremen-confirm-table tbody td {
  461. border-color: #f5f5f5;
  462. color: #434343;
  463. }
  464. body .layui-layer-procuremen-finish .layui-layer-btn {
  465. flex-shrink: 0 !important;
  466. text-align: right !important;
  467. padding: 12px 20px !important;
  468. background: #fff !important;
  469. border-top: 1px solid #f0f0f0;
  470. margin-top: auto;
  471. }
  472. body .layui-layer-procuremen-finish .layui-layer-btn a {
  473. height: 32px;
  474. line-height: 32px;
  475. margin: 0 0 0 8px;
  476. padding: 0 16px;
  477. font-size: 13px;
  478. border-radius: 4px;
  479. }
  480. body .layui-layer-procuremen-finish .layui-layer-btn1 {
  481. background: #fff !important;
  482. border: 1px solid #d9d9d9 !important;
  483. color: #333 !important;
  484. }
  485. body .layui-layer-procuremen-finish .layui-layer-btn1:hover {
  486. border-color: #1677ff !important;
  487. color: #1677ff !important;
  488. }
  489. body .layui-layer-procuremen-finish .layui-layer-btn0 {
  490. background-color: #27C24C !important;
  491. border-color: #23ad44 !important;
  492. color: #fff !important;
  493. }
  494. body .layui-layer-procuremen-finish .layui-layer-btn0:hover {
  495. background-color: #1e983e !important;
  496. border-color: #1a8737 !important;
  497. color: #fff !important;
  498. }
  499. #procuremen-layout .procuremen-po-field.procuremen-po-dirty {
  500. border-color: #f0ad4e;
  501. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 4px rgba(240, 173, 78, 0.45);
  502. }
  503. .procuremen-po-popover {
  504. position: fixed;
  505. z-index: 100050;
  506. padding: 6px 8px;
  507. background: #fff;
  508. border: 1px solid #d2d6de;
  509. border-radius: 4px;
  510. box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  511. }
  512. .procuremen-po-popover-inner {
  513. white-space: nowrap;
  514. }
  515. .procuremen-po-popover-inner .btn + .btn {
  516. margin-left: 6px;
  517. }
  518. #procuremen-layout .procuremen-supplier-lines-cell {
  519. position: relative;
  520. }
  521. #procuremen-layout .procuremen-supplier-lines-cell .procuremen-supplier-caret {
  522. position: absolute;
  523. right: 0;
  524. top: 0;
  525. height: 100%;
  526. line-height: 1;
  527. background: #eee;
  528. color: #ddd;
  529. padding: 0 5px;
  530. display: flex;
  531. justify-content: center;
  532. align-items: center;
  533. cursor: pointer;
  534. }
  535. #procuremen-layout .procuremen-supplier-lines-cell .procuremen-supplier-caret:hover {
  536. color: #999;
  537. }
  538. </style>
  539. <div class="panel panel-default panel-intro" id="procuremen-layout"
  540. data-default-ym="{$defaultYm|htmlentities}"
  541. data-procuremen-redis-api="{$procuremenRedisApi|htmlentities}"
  542. data-procuremen-stage="{$procuremenStage|default='pick'|htmlentities}"
  543. data-can-dispatch="{$procuremenBtnDispatch|default=0}"
  544. data-can-pick-delete="{$procuremenBtnPickDelete|default=0}"
  545. data-can-complete="{$procuremenBtnComplete|default=0}"
  546. data-can-audit-abandon="{$procuremenBtnAuditAbandon|default=0}">
  547. {:build_heading()}
  548. <div class="panel-body">
  549. <div class="row procuremen-layout">
  550. <div class="col-xs-12 col-sm-2 col-md-1 procuremen-sidebar">
  551. {foreach name="sidebarYearMonths" item="block"}
  552. <div class="procuremen-year-block">
  553. <div class="year-title">{$block.year}年</div>
  554. {foreach name="block.months" item="item"}
  555. <a href="javascript:;" class="procuremen-ym-item{if $item.ym == $defaultYm} active{/if}" data-ym="{$item.ym|htmlentities}">{$item.label|htmlentities}</a>
  556. {/foreach}
  557. </div>
  558. {/foreach}
  559. </div>
  560. <div class="col-xs-12 col-sm-10 col-md-11 procuremen-main">
  561. <div id="myTabContent" class="tab-content">
  562. <div class="tab-pane fade active in" id="one">
  563. <div class="widget-body no-padding">
  564. <div id="procuremen-toolbar-host" class="procuremen-toolbar-host clearfix"></div>
  565. <div class="procuremen-table-area">
  566. <div id="toolbar" class="toolbar">
  567. <a href="javascript:;" class="btn btn-primary btn-refresh" title="{:__('Refresh')}" >刷新 <i class="fa fa-refresh"></i> </a>
  568. {if isset($procuremenBtnAuditAbandon) && $procuremenBtnAuditAbandon}
  569. <a href="javascript:;" class="btn btn-danger" id="btn-procuremen-audit-abandon" title="勾选一条或多条订单退回协助初选重新下发(历史记录保留)" style="display:none;"><i class="fa fa-repeat"></i> 重新下发</a>
  570. {/if}
  571. {if isset($procuremenBtnDispatch) && $procuremenBtnDispatch}
  572. <a href="javascript:;" class="btn btn-info" id="btn-procuremen-pick-review" title="勾选一条或多条工序进行下发(多条须同一订单号)" style="display:none;"><i class="fa fa-paper-plane"></i> 下发</a>
  573. {/if}
  574. {if isset($procuremenBtnComplete) && $procuremenBtnComplete}
  575. <a href="javascript:;" class="btn btn-success" id="btn-procuremen-batch-finish" title="勾选一条或多条工序标记为已完结" style="display:none;"><i class="fa fa-flag-checkered"></i> 完结</a>
  576. {/if}
  577. {if isset($procuremenBtnPickDelete) && $procuremenBtnPickDelete}
  578. <a href="javascript:;" class="btn btn-danger" id="btn-procuremen-pick-delete" title="勾选一条或多条工序从初选列表移除" style="display:none;"><i class="fa fa-trash"></i> 删除</a>
  579. {/if}
  580. </div>
  581. <table id="table"
  582. class="table table-striped table-bordered table-hover">
  583. </table>
  584. </div>
  585. </div>
  586. </div>
  587. </div>
  588. </div>
  589. </div>
  590. </div>
  591. </div>