review.html 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721
  1. <style>
  2. /*
  3. * 初选选商:与补加同一套轻量弹窗壳 + flex 列表高度
  4. */
  5. html, body.is-dialog {
  6. height: 100% !important;
  7. overflow: hidden !important;
  8. margin: 0 !important;
  9. }
  10. body.is-dialog #main,
  11. body.is-dialog #main > .tab-content,
  12. body.is-dialog #main #content {
  13. height: 100% !important;
  14. min-height: 0;
  15. overflow: hidden;
  16. }
  17. body.is-dialog #content > .row,
  18. body.is-dialog #content > .row > [class*="col-"] {
  19. height: 100% !important;
  20. min-height: 0;
  21. }
  22. body.is-dialog .content {
  23. height: 100% !important;
  24. min-height: 0;
  25. box-sizing: border-box;
  26. padding: 0 !important;
  27. overflow: hidden;
  28. }
  29. body.is-dialog > .review-dialog-form,
  30. body.is-dialog .review-dialog-form,
  31. .review-dialog-form {
  32. display: flex;
  33. flex-direction: column;
  34. height: 100% !important;
  35. max-height: 100%;
  36. min-height: 0;
  37. box-sizing: border-box;
  38. padding: 8px 12px 0;
  39. overflow: hidden;
  40. margin: 0;
  41. background: #fff;
  42. }
  43. .review-split {
  44. display: flex;
  45. flex-direction: column;
  46. align-items: stretch;
  47. flex-wrap: nowrap;
  48. gap: 8px;
  49. flex: 1 1 0%;
  50. min-height: 0;
  51. overflow: hidden;
  52. }
  53. .review-split-left {
  54. flex: 0 0 auto;
  55. width: 100%;
  56. min-width: 0;
  57. padding-bottom: 8px;
  58. border-bottom: 1px solid #e5e5e5;
  59. overflow: visible;
  60. position: relative;
  61. z-index: 60;
  62. }
  63. .review-split-right {
  64. flex: 1 1 0% !important;
  65. width: 100%;
  66. min-width: 0;
  67. min-height: 0 !important;
  68. display: flex;
  69. flex-direction: column;
  70. overflow: hidden;
  71. }
  72. .review-split-left .review-block-title {
  73. margin: 0 0 8px;
  74. font-weight: 600;
  75. font-size: 13px;
  76. color: #000;
  77. }
  78. /* 订单号、印件名称:标签与数值同字号;标题黑色,数值样式不变 */
  79. .review-order-highlight {
  80. display: flex;
  81. flex-direction: row;
  82. flex-wrap: wrap;
  83. align-items: baseline;
  84. gap: 6px 22px;
  85. margin-bottom: 8px;
  86. font-size: 15px;
  87. line-height: 1.5;
  88. }
  89. .review-order-highlight .review-highlight-item {
  90. display: flex;
  91. flex-direction: row;
  92. align-items: baseline;
  93. gap: 6px;
  94. min-width: 0;
  95. }
  96. .review-order-highlight .review-field-label {
  97. flex-shrink: 0;
  98. margin: 0;
  99. font-weight: 600;
  100. font-size: 15px;
  101. color: #000;
  102. }
  103. .review-order-highlight .review-highlight-value {
  104. margin: 0;
  105. color: #333;
  106. font-size: 15px;
  107. font-weight: 700;
  108. word-break: break-word;
  109. }
  110. /* 工序名称等:标题黑色;标签与内容同 13px */
  111. .review-order-meta {
  112. display: flex;
  113. flex-direction: row;
  114. flex-wrap: wrap;
  115. align-items: baseline;
  116. gap: 6px 22px;
  117. font-size: 13px;
  118. line-height: 1.5;
  119. }
  120. .review-order-meta .review-meta-item {
  121. display: flex;
  122. flex-direction: row;
  123. align-items: baseline;
  124. gap: 6px;
  125. min-width: 0;
  126. }
  127. .review-order-meta .review-field-label {
  128. flex-shrink: 0;
  129. margin: 0;
  130. font-weight: 600;
  131. font-size: 13px;
  132. color: #000;
  133. }
  134. .review-order-meta .review-meta-inline {
  135. margin: 0;
  136. color: #333;
  137. font-size: 13px;
  138. word-break: break-word;
  139. }
  140. .review-deadline-row {
  141. display: flex;
  142. flex-wrap: wrap;
  143. align-items: flex-start;
  144. gap: 10px 20px;
  145. margin-top: 10px;
  146. padding-top: 10px;
  147. border-top: 1px dashed #e0e0e0;
  148. width: 100%;
  149. position: relative;
  150. z-index: 61;
  151. overflow: visible;
  152. }
  153. .review-deadline-item {
  154. display: flex;
  155. flex-wrap: wrap;
  156. align-items: center;
  157. gap: 8px 10px;
  158. flex: 0 1 auto;
  159. min-width: 0;
  160. }
  161. .review-deadline-row .review-field-label {
  162. flex-shrink: 0;
  163. margin: 0;
  164. font-weight: 600;
  165. font-size: 13px;
  166. color: #000;
  167. }
  168. .review-deadline-input-wrap {
  169. position: relative;
  170. flex: 0 1 auto;
  171. min-width: 0;
  172. z-index: 62;
  173. }
  174. .review-delivery-deadline-input {
  175. width: 148px;
  176. min-width: 132px;
  177. height: 32px;
  178. padding: 4px 8px;
  179. }
  180. .review-order-type-select {
  181. width: 220px;
  182. min-width: 180px;
  183. height: 32px;
  184. padding: 4px 8px;
  185. }
  186. .review-delivery-deadline-input:not(.has-value)::-webkit-datetime-edit,
  187. .review-delivery-deadline-input:not(.has-value)::-webkit-datetime-edit-fields-wrapper,
  188. .review-delivery-deadline-input:not(.has-value)::-webkit-datetime-edit-text,
  189. .review-delivery-deadline-input:not(.has-value)::-webkit-datetime-edit-year-field,
  190. .review-delivery-deadline-input:not(.has-value)::-webkit-datetime-edit-month-field,
  191. .review-delivery-deadline-input:not(.has-value)::-webkit-datetime-edit-day-field {
  192. color: transparent;
  193. opacity: 0;
  194. }
  195. .review-delivery-deadline-input.has-value {
  196. color: #333;
  197. }
  198. .procuremen-sys-rq-split .procuremen-sys-rq-fields {
  199. display: flex;
  200. flex-wrap: wrap;
  201. align-items: center;
  202. gap: 8px;
  203. }
  204. .procuremen-sys-rq-split .procuremen-sys-rq-date {
  205. width: 148px;
  206. min-width: 132px;
  207. height: 32px;
  208. padding: 4px 8px;
  209. }
  210. .procuremen-sys-rq-split .procuremen-sys-rq-time-group {
  211. display: inline-flex;
  212. align-items: center;
  213. gap: 4px;
  214. }
  215. .procuremen-sys-rq-split .procuremen-sys-rq-hour,
  216. .procuremen-sys-rq-split .procuremen-sys-rq-minute {
  217. width: 62px;
  218. height: 32px;
  219. padding: 4px 6px;
  220. }
  221. .procuremen-sys-rq-split .procuremen-sys-rq-colon {
  222. color: #666;
  223. font-weight: 600;
  224. line-height: 32px;
  225. }
  226. /* 截止时间日历:浮在弹窗最上层,不占文档流 */
  227. body.is-dialog .bootstrap-datetimepicker-widget.dropdown-menu {
  228. z-index: 19999999 !important;
  229. box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  230. }
  231. .review-split-right .review-right-title {
  232. flex-shrink: 0;
  233. margin: 0 0 6px;
  234. font-weight: 600;
  235. font-size: 13px;
  236. color: #000;
  237. }
  238. .review-selected-summary .procuremen-review-submit-tip {
  239. margin: 0;
  240. padding: 0;
  241. border: none;
  242. background: transparent;
  243. color: #8a6d3b;
  244. font-size: 12px;
  245. line-height: 1.5;
  246. flex: 1 1 auto;
  247. min-width: 0;
  248. white-space: nowrap;
  249. overflow: hidden;
  250. text-overflow: ellipsis;
  251. }
  252. .review-selected-summary .procuremen-review-submit-tip .fa {
  253. margin-right: 4px;
  254. color: #f0ad4e;
  255. }
  256. /* 提交:与列表审核 / 采购确认、弹层「确定」一致 */
  257. .btn.procuremen-btn-slate {
  258. color: #fff !important;
  259. background-color: #4b5573 !important;
  260. border-color: #3e4659 !important;
  261. }
  262. .btn.procuremen-btn-slate:hover,
  263. .btn.procuremen-btn-slate:focus,
  264. .btn.procuremen-btn-slate:active {
  265. color: #fff !important;
  266. background-color: #3f485f !important;
  267. border-color: #353c4c !important;
  268. }
  269. /* 供应商列表:flex 占满剩余高度(与补加一致),内部滚动 */
  270. .review-company-panel {
  271. flex: 1 1 0% !important;
  272. width: 100%;
  273. height: auto !important;
  274. min-height: 0 !important;
  275. max-height: none !important;
  276. display: flex;
  277. flex-direction: row;
  278. align-items: stretch;
  279. gap: 0;
  280. border: 1px solid #ddd;
  281. border-radius: 3px;
  282. background: #fff;
  283. overflow: hidden;
  284. box-sizing: border-box;
  285. }
  286. .review-category-sidebar {
  287. flex: 0 0 196px;
  288. width: 196px;
  289. min-width: 196px;
  290. max-width: 196px;
  291. border-right: 1px solid #e0e0e0;
  292. background: #f9fafb;
  293. overflow-y: auto;
  294. overflow-x: hidden;
  295. font-size: 12px;
  296. }
  297. .review-category-sidebar .review-cat-head {
  298. padding: 6px 8px;
  299. font-weight: 600;
  300. color: #000;
  301. border-bottom: 1px solid #e5e5e5;
  302. background: #f0f2f5;
  303. }
  304. .review-category-sidebar .review-cat-item {
  305. display: block;
  306. padding: 5px 8px;
  307. color: #333;
  308. text-decoration: none;
  309. border-bottom: 1px solid #eee;
  310. cursor: pointer;
  311. white-space: normal;
  312. word-break: break-word;
  313. overflow: visible;
  314. line-height: 1.35;
  315. }
  316. .review-category-sidebar .review-cat-item:hover {
  317. background: #eef6fb;
  318. color: #2c6f9c;
  319. }
  320. .review-category-sidebar .review-cat-item.active {
  321. background: #3c8dbc;
  322. color: #fff;
  323. font-weight: 600;
  324. }
  325. .review-category-sidebar .review-cat-item .review-cat-count {
  326. opacity: 0.85;
  327. font-weight: normal;
  328. font-size: 11px;
  329. }
  330. .review-category-sidebar .review-cat-item.active .review-cat-count {
  331. opacity: 0.95;
  332. }
  333. .review-company-main {
  334. flex: 1 1 0%;
  335. min-width: 0;
  336. min-height: 0;
  337. display: flex;
  338. flex-direction: column;
  339. overflow: hidden;
  340. }
  341. .review-company-toolbar {
  342. flex-shrink: 0;
  343. padding: 6px 8px;
  344. border-bottom: 1px solid #eee;
  345. background: #fafafa;
  346. }
  347. .review-company-toolbar .form-control {
  348. font-size: 12px;
  349. height: 30px;
  350. }
  351. .review-table-scroll {
  352. flex: 1 1 0% !important;
  353. min-height: 0 !important;
  354. height: auto !important;
  355. box-sizing: border-box;
  356. width: 100%;
  357. overflow: auto;
  358. font-size: 12px;
  359. border: none;
  360. border-radius: 0;
  361. }
  362. .review-table-scroll .table-responsive {
  363. margin-bottom: 0;
  364. overflow: visible;
  365. }
  366. .review-table-scroll table {
  367. margin-bottom: 0;
  368. }
  369. .review-table-scroll .table > thead > tr > th,
  370. .review-table-scroll .table > tbody > tr > td {
  371. padding: 3px 6px;
  372. line-height: 1.35;
  373. }
  374. /* 客户列表滚动时表头固定在滚动区域顶部 */
  375. .review-table-scroll .review-company-table > thead > tr > th {
  376. position: sticky;
  377. top: 0;
  378. z-index: 3;
  379. background-color: #f5f5f5;
  380. border: 1px solid #ddd !important;
  381. box-shadow: none;
  382. }
  383. .review-table-scroll .review-merge-table > thead > tr > th,
  384. .review-table-scroll .review-merge-table > tbody > tr > td,
  385. .review-table-scroll .review-company-table > tbody > tr > td {
  386. border: 1px solid #ddd !important;
  387. }
  388. .review-table-scroll .review-company-table > thead > tr > th.review-th-cb {
  389. z-index: 4;
  390. }
  391. .review-company-table {
  392. table-layout: fixed;
  393. width: 100%;
  394. border-collapse: separate;
  395. border-spacing: 0;
  396. }
  397. /* 姓名、邮箱列收窄(colgroup 为主,此处补 max-width 防撑开) */
  398. .review-company-table > thead > tr > th:nth-child(3),
  399. .review-company-table > tbody > tr > td:nth-child(3) {
  400. max-width: 88px;
  401. }
  402. .review-company-table > thead > tr > th:nth-child(4),
  403. .review-company-table > tbody > tr > td:nth-child(4) {
  404. max-width: 200px;
  405. }
  406. .review-company-table > thead > tr > th.review-th-cb,
  407. .review-company-table > tbody > tr > td.review-td-cb {
  408. width: 34px;
  409. min-width: 34px;
  410. max-width: 34px;
  411. text-align: center;
  412. vertical-align: middle !important;
  413. padding-left: 2px;
  414. padding-right: 2px;
  415. }
  416. .review-company-table .review-th-cb input[type="checkbox"],
  417. .review-company-table .review-td-cb input[type="checkbox"] {
  418. margin: 0;
  419. vertical-align: middle;
  420. position: relative;
  421. top: 1px;
  422. }
  423. /* 单元格完整展示,不换行省略号 */
  424. .review-company-table > tbody > tr > td:not(.review-td-cb) {
  425. white-space: normal;
  426. word-wrap: break-word;
  427. word-break: break-word;
  428. overflow: visible;
  429. vertical-align: top;
  430. }
  431. .review-company-table > thead > tr > th:not(.review-th-cb) {
  432. white-space: normal;
  433. word-break: break-word;
  434. vertical-align: middle;
  435. }
  436. .review-company-empty {
  437. padding: 24px 12px;
  438. text-align: center;
  439. color: #999;
  440. font-size: 13px;
  441. }
  442. .review-dialog-form .layer-footer {
  443. flex-shrink: 0;
  444. width: 100%;
  445. box-sizing: border-box;
  446. margin-top: 0;
  447. padding: 8px 14px 8px 0;
  448. border-top: 1px solid #e5e5e5;
  449. background: #fafafa;
  450. text-align: right !important;
  451. }
  452. .review-dialog-form .layer-footer .pull-right {
  453. padding-right: 4px;
  454. }
  455. .review-dialog-form .layer-footer .btn + .btn {
  456. margin-left: 8px;
  457. }
  458. /* 已选单位:高度封顶,避免选中后把下方列表顶矮 */
  459. .review-selected-summary {
  460. flex-shrink: 0;
  461. margin: 0 0 8px;
  462. padding: 6px 8px;
  463. background: #fafbfc;
  464. border: 1px solid #e3e8ee;
  465. border-radius: 3px;
  466. font-size: 12px;
  467. line-height: 1.4;
  468. height: 52px;
  469. min-height: 52px;
  470. max-height: 52px;
  471. overflow: hidden;
  472. box-sizing: border-box;
  473. }
  474. .review-selected-summary .review-selected-top {
  475. display: flex;
  476. flex-wrap: nowrap;
  477. align-items: center;
  478. gap: 10px 14px;
  479. margin: 0 0 6px;
  480. min-width: 0;
  481. }
  482. .review-selected-summary .review-selected-head {
  483. margin: 0;
  484. font-weight: 600;
  485. color: #333;
  486. flex-shrink: 0;
  487. white-space: nowrap;
  488. }
  489. .review-selected-summary .review-selected-count {
  490. font-weight: 700;
  491. color: #3c8dbc;
  492. }
  493. .review-selected-summary .review-selected-empty {
  494. display: none;
  495. margin: 0;
  496. color: #999;
  497. font-size: 12px;
  498. }
  499. .review-selected-summary .review-selected-tags {
  500. display: flex;
  501. flex-wrap: wrap;
  502. gap: 6px 8px;
  503. align-items: flex-start;
  504. max-height: 104px;
  505. overflow-y: auto;
  506. margin: 0;
  507. }
  508. .review-selected-summary .review-selected-chip {
  509. display: inline-flex;
  510. align-items: flex-start;
  511. max-width: 100%;
  512. padding: 2px 4px 2px 8px;
  513. gap: 2px;
  514. font-size: 12px;
  515. color: #2c6f9c;
  516. background: #e8f4fb;
  517. border: 1px solid #c5dce8;
  518. border-radius: 2px;
  519. box-sizing: border-box;
  520. }
  521. .review-selected-summary .review-chip-text {
  522. flex: 1 1 auto;
  523. min-width: 0;
  524. word-break: break-all;
  525. line-height: 1.35;
  526. padding-top: 1px;
  527. }
  528. .review-selected-summary .review-chip-remove {
  529. flex: 0 0 auto;
  530. margin: 0;
  531. padding: 0 2px;
  532. border: none;
  533. background: transparent;
  534. color: #c9302c;
  535. font-size: 15px;
  536. font-weight: 700;
  537. line-height: 1.1;
  538. cursor: pointer;
  539. vertical-align: middle;
  540. }
  541. .review-selected-summary .review-chip-remove:hover,
  542. .review-selected-summary .review-chip-remove:focus {
  543. color: #a94442;
  544. outline: none;
  545. }
  546. .review-merge-panel {
  547. margin: 0 0 10px;
  548. display: block;
  549. }
  550. .review-merge-panel .review-block-title {
  551. margin: 0 0 8px;
  552. font-weight: 600;
  553. font-size: 13px;
  554. color: #000;
  555. }
  556. /* 选多道工序时加大可视高度,仍可滚动,避免把下方供应商区顶没 */
  557. .review-merge-table-wrap {
  558. max-height: min(42vh, 360px);
  559. overflow: auto;
  560. border: 1px solid #e5e5e5;
  561. }
  562. .review-merge-table {
  563. margin: 0;
  564. font-size: 12px;
  565. width: 100%;
  566. table-layout: auto;
  567. }
  568. .review-merge-table > thead > tr > th {
  569. position: sticky;
  570. top: 0;
  571. z-index: 2;
  572. white-space: nowrap;
  573. background: #f5f5f5;
  574. border: 1px solid #ddd !important;
  575. }
  576. .review-merge-table > tbody > tr > td {
  577. word-break: break-word;
  578. white-space: normal;
  579. vertical-align: middle;
  580. border: 1px solid #ddd !important;
  581. }
  582. .review-merge-table th.text-center,
  583. .review-merge-table td.text-center {
  584. text-align: center;
  585. vertical-align: middle;
  586. }
  587. .review-merge-table .review-merge-col-name {
  588. min-width: 180px;
  589. max-width: 320px;
  590. }
  591. .review-merge-table .review-merge-col-remark {
  592. min-width: 100px;
  593. }
  594. </style>
  595. <form id="review-form" class="review-dialog-form" role="form" data-toggle="validator" method="post" action="" data-pick-mode="{$pickMode|default=0}">
  596. {:token()}
  597. <textarea class="hide" name="row_json" id="c-row-json" rows="1" cols="1"></textarea>
  598. <textarea class="hide" name="merge_rows_json" id="c-merge-rows-json" rows="1" cols="1"></textarea>
  599. <div class="review-split">
  600. <div class="review-split-left">
  601. <div class="review-merge-panel" id="review-merge-panel">
  602. <div class="review-merge-table-wrap">
  603. <table class="table table-bordered table-condensed review-merge-table">
  604. <thead>
  605. <tr>
  606. <th class="text-center" style="width:100px;">订单号</th>
  607. <th class="review-merge-col-name">印件名称</th>
  608. <th>工序名称</th>
  609. <th class="text-center" style="width:56px;">单位</th>
  610. <th class="text-center" style="width:72px;">本次数量</th>
  611. <th class="text-center" style="width:72px;">最高限价</th>
  612. <th class="text-center" style="width:80px;">订法</th>
  613. <th class="review-merge-col-remark">备注</th>
  614. </tr>
  615. </thead>
  616. <tbody id="review-merge-tbody"></tbody>
  617. </table>
  618. </div>
  619. </div>
  620. <div class="review-deadline-row">
  621. <div class="review-deadline-item">
  622. <span class="review-field-label">招标截止日期:<span class="text-danger">*</span></span>
  623. <div class="review-deadline-input-wrap procuremen-sys-rq-split" id="review-sys-rq-wrap">
  624. <input type="hidden" id="review-sys-rq" name="sys_rq" value=""/>
  625. <div class="procuremen-sys-rq-fields">
  626. <input type="date" class="form-control procuremen-sys-rq-date" title="招标截止日期"/>
  627. <div class="procuremen-sys-rq-time-group">
  628. <select class="form-control procuremen-sys-rq-hour" title="时"></select>
  629. <span class="procuremen-sys-rq-colon">:</span>
  630. <select class="form-control procuremen-sys-rq-minute" title="分"></select>
  631. </div>
  632. </div>
  633. </div>
  634. </div>
  635. <div class="review-deadline-item">
  636. <span class="review-field-label">交货截止日期:<span class="text-danger">*</span></span>
  637. <input type="date" class="form-control review-delivery-deadline-input" id="review-delivery-deadline" name="delivery_deadline" title="交货截止日期" autocomplete="off"/>
  638. </div>
  639. {if condition="isset($pickMode) && $pickMode"}
  640. <div class="review-deadline-item">
  641. <span class="review-field-label">订单类型:<span class="text-danger">*</span></span>
  642. <select class="form-control review-order-type-select" id="review-score-rule-id" name="score_rule_id" title="订单类型(评分规则)">
  643. <option value="">请选择订单类型</option>
  644. {volist name="scoreRuleOptions" id="rule"}
  645. <option value="{$rule.id}" data-qw="{$rule.quality_weight}" data-pw="{$rule.price_weight}" data-lw="{$rule.lead_weight}"{if $rule.is_default} selected{/if}>{$rule.name|htmlentities}</option>
  646. {/volist}
  647. </select>
  648. </div>
  649. {/if}
  650. </div>
  651. </div>
  652. <div class="review-selected-summary" id="review-selected-summary" aria-live="polite">
  653. <div class="review-selected-top">
  654. <div class="review-selected-head">
  655. 已选单位(<span class="review-selected-count" id="review-selected-count">0</span>)
  656. </div>
  657. <p class="review-selected-tip procuremen-review-submit-tip" role="note">
  658. <i class="fa fa-exclamation-triangle"></i>
  659. <strong>重要提示:</strong>确认后将向所选供应商<strong>发送短信与邮件</strong>,请仔细核对后再提交。
  660. </p>
  661. </div>
  662. <p class="review-selected-empty" id="review-selected-empty">暂未选择供应商</p>
  663. <div class="review-selected-tags" id="review-selected-tags"></div>
  664. </div>
  665. <div class="review-split-right">
  666. <div class="review-company-panel">
  667. <aside class="review-category-sidebar" id="review-category-sidebar">
  668. <div class="review-cat-head">业务分组</div>
  669. <div id="review-category-list"></div>
  670. </aside>
  671. <div class="review-company-main">
  672. <div class="review-company-toolbar">
  673. <input type="text" class="form-control" id="review-company-search" placeholder="搜索供应商名称、姓名、邮箱、手机号、业务分类…" autocomplete="off"/>
  674. </div>
  675. <div class="review-table-scroll">
  676. <div class="table-responsive">
  677. <table class="table table-bordered table-hover table-striped table-condensed review-company-table">
  678. <colgroup>
  679. <col style="width:6%"/>
  680. <col style="width:27%"/>
  681. <col style="width:9%"/>
  682. <col style="width:16%"/>
  683. <col style="width: 15%"/>
  684. <col style="width:27%"/>
  685. </colgroup>
  686. <thead>
  687. <tr>
  688. <th class="review-th-cb"><input type="checkbox" id="review-check-all"/></th>
  689. <th>供应商名称</th>
  690. <th>姓名</th>
  691. <th>邮箱</th>
  692. <th>手机号</th>
  693. <th>业务分类</th>
  694. </tr>
  695. </thead>
  696. <tbody id="review-company-tbody">
  697. </tbody>
  698. </table>
  699. </div>
  700. </div>
  701. </div>
  702. </div>
  703. </div>
  704. </div>
  705. <div class="layer-footer clearfix">
  706. <div class="pull-right">
  707. {if isset($pickMode) && $pickMode}
  708. {if $auth->check('procuremen/picksubmit')}
  709. <button type="button" style="margin-right: 20px" id="btn-review-submit" class="btn procuremen-btn-slate btn-embossed">确认</button>
  710. {/if}
  711. {else /}
  712. {if $auth->check('procuremen/review')}
  713. <button type="button" style="margin-right: 20px" id="btn-review-submit" class="btn procuremen-btn-slate btn-embossed">确认</button>
  714. {/if}
  715. {/if}
  716. <button type="button" style="margin-right: 20px" class="btn btn-default btn-embossed btn-close">{:__('Close')}</button>
  717. </div>
  718. </div>
  719. </form>