review.html 23 KB

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