review.html 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758
  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. .review-company-table > tbody > tr.is-no-contact {
  424. color: #999;
  425. background: #fafafa;
  426. }
  427. .review-company-table > tbody > tr.is-no-contact .review-td-cb input[type="checkbox"]:disabled {
  428. cursor: not-allowed;
  429. opacity: .45;
  430. }
  431. /* 单元格完整展示,不换行省略号 */
  432. .review-company-table > tbody > tr > td:not(.review-td-cb) {
  433. white-space: normal;
  434. word-wrap: break-word;
  435. word-break: break-word;
  436. overflow: visible;
  437. vertical-align: top;
  438. }
  439. .review-company-table > thead > tr > th:not(.review-th-cb) {
  440. white-space: normal;
  441. word-break: break-word;
  442. vertical-align: middle;
  443. }
  444. .review-company-empty {
  445. padding: 24px 12px;
  446. text-align: center;
  447. color: #999;
  448. font-size: 13px;
  449. }
  450. .review-dialog-form .layer-footer {
  451. flex-shrink: 0;
  452. width: 100%;
  453. box-sizing: border-box;
  454. margin-top: 0;
  455. padding: 8px 14px 8px 0;
  456. border-top: 1px solid #e5e5e5;
  457. background: #fafafa;
  458. text-align: right !important;
  459. }
  460. .review-dialog-form .layer-footer .pull-right {
  461. padding-right: 4px;
  462. }
  463. .review-dialog-form .layer-footer .btn + .btn {
  464. margin-left: 8px;
  465. }
  466. /* 已选单位:整体高度封顶,标签区内滚动,避免多选撑死下方列表 */
  467. .review-selected-summary {
  468. flex: 0 0 auto;
  469. flex-shrink: 0;
  470. display: flex;
  471. flex-direction: column;
  472. margin: 0 0 8px;
  473. padding: 6px 8px;
  474. background: #fafbfc;
  475. border: 1px solid #e3e8ee;
  476. border-radius: 3px;
  477. font-size: 12px;
  478. line-height: 1.4;
  479. min-height: 52px;
  480. max-height: 110px;
  481. overflow: hidden;
  482. box-sizing: border-box;
  483. }
  484. .review-selected-summary .review-selected-top {
  485. display: flex;
  486. flex-wrap: nowrap;
  487. align-items: center;
  488. gap: 10px 14px;
  489. margin: 0 0 4px;
  490. min-width: 0;
  491. flex-shrink: 0;
  492. }
  493. .review-selected-summary .review-selected-head {
  494. margin: 0;
  495. font-weight: 600;
  496. color: #333;
  497. flex-shrink: 0;
  498. white-space: nowrap;
  499. }
  500. .review-selected-summary .review-selected-count {
  501. font-weight: 700;
  502. color: #3c8dbc;
  503. }
  504. .review-selected-summary .review-selected-slot {
  505. position: relative;
  506. flex: 1 1 auto;
  507. min-height: 24px;
  508. max-height: 78px;
  509. overflow: hidden;
  510. }
  511. .review-selected-summary .review-selected-empty {
  512. margin: 0;
  513. color: #999;
  514. font-size: 12px;
  515. line-height: 24px;
  516. white-space: nowrap;
  517. overflow: hidden;
  518. text-overflow: ellipsis;
  519. }
  520. .review-selected-summary .review-selected-tags {
  521. display: flex;
  522. flex-wrap: wrap;
  523. gap: 4px 6px;
  524. align-content: flex-start;
  525. align-items: flex-start;
  526. height: 100%;
  527. max-height: 78px;
  528. overflow-x: hidden;
  529. overflow-y: auto;
  530. -webkit-overflow-scrolling: touch;
  531. margin: 0;
  532. padding-right: 2px;
  533. }
  534. .review-selected-summary.is-empty .review-selected-tags {
  535. display: none;
  536. }
  537. .review-selected-summary:not(.is-empty) .review-selected-empty {
  538. display: none;
  539. }
  540. .review-selected-summary .review-selected-chip {
  541. display: inline-flex;
  542. align-items: center;
  543. max-width: 100%;
  544. padding: 1px 4px 1px 8px;
  545. gap: 2px;
  546. height: 22px;
  547. font-size: 12px;
  548. color: #2c6f9c;
  549. background: #e8f4fb;
  550. border: 1px solid #c5dce8;
  551. border-radius: 2px;
  552. box-sizing: border-box;
  553. }
  554. .review-selected-summary .review-chip-text {
  555. flex: 1 1 auto;
  556. min-width: 0;
  557. max-width: 14em;
  558. overflow: hidden;
  559. text-overflow: ellipsis;
  560. white-space: nowrap;
  561. line-height: 1.35;
  562. }
  563. .review-selected-summary .review-chip-remove {
  564. flex: 0 0 auto;
  565. margin: 0;
  566. padding: 0 2px;
  567. border: none;
  568. background: transparent;
  569. color: #c9302c;
  570. font-size: 15px;
  571. font-weight: 700;
  572. line-height: 1;
  573. cursor: pointer;
  574. vertical-align: middle;
  575. }
  576. .review-selected-summary .review-chip-remove:hover,
  577. .review-selected-summary .review-chip-remove:focus {
  578. color: #a94442;
  579. outline: none;
  580. }
  581. .review-merge-panel {
  582. margin: 0 0 10px;
  583. display: block;
  584. }
  585. .review-merge-panel .review-block-title {
  586. margin: 0 0 8px;
  587. font-weight: 600;
  588. font-size: 13px;
  589. color: #000;
  590. }
  591. /* 选多道工序时加大可视高度,仍可滚动,避免把下方供应商区顶没 */
  592. .review-merge-table-wrap {
  593. max-height: min(42vh, 360px);
  594. overflow: auto;
  595. border: 1px solid #e5e5e5;
  596. }
  597. .review-merge-table {
  598. margin: 0;
  599. font-size: 12px;
  600. width: 100%;
  601. table-layout: auto;
  602. }
  603. .review-merge-table > thead > tr > th {
  604. position: sticky;
  605. top: 0;
  606. z-index: 2;
  607. white-space: nowrap;
  608. background: #f5f5f5;
  609. border: 1px solid #ddd !important;
  610. }
  611. .review-merge-table > tbody > tr > td {
  612. word-break: break-word;
  613. white-space: normal;
  614. vertical-align: middle;
  615. border: 1px solid #ddd !important;
  616. }
  617. .review-merge-table th.text-center,
  618. .review-merge-table td.text-center {
  619. text-align: center;
  620. vertical-align: middle;
  621. }
  622. .review-merge-table .review-merge-col-name {
  623. min-width: 180px;
  624. max-width: 320px;
  625. }
  626. .review-merge-table .review-merge-col-remark {
  627. min-width: 100px;
  628. }
  629. </style>
  630. <form id="review-form" class="review-dialog-form" role="form" data-toggle="validator" method="post" action="" data-pick-mode="{$pickMode|default=0}">
  631. {:token()}
  632. <textarea class="hide" name="row_json" id="c-row-json" rows="1" cols="1"></textarea>
  633. <textarea class="hide" name="merge_rows_json" id="c-merge-rows-json" rows="1" cols="1"></textarea>
  634. <div class="review-split">
  635. <div class="review-split-left">
  636. <div class="review-merge-panel" id="review-merge-panel">
  637. <div class="review-merge-table-wrap">
  638. <table class="table table-bordered table-condensed review-merge-table">
  639. <thead>
  640. <tr>
  641. <th class="text-center" style="width:100px;">订单号</th>
  642. <th class="review-merge-col-name">印件名称</th>
  643. <th>工序名称</th>
  644. <th class="text-center" style="width:56px;">单位</th>
  645. <th class="text-center" style="width:72px;">本次数量</th>
  646. <th class="text-center" style="width:72px;">最高限价</th>
  647. <th class="text-center" style="width:80px;">订法</th>
  648. <th class="review-merge-col-remark">招标备注</th>
  649. </tr>
  650. </thead>
  651. <tbody id="review-merge-tbody"></tbody>
  652. </table>
  653. </div>
  654. </div>
  655. <div class="review-deadline-row">
  656. <div class="review-deadline-item">
  657. <span class="review-field-label">招标截止日期:<span class="text-danger">*</span></span>
  658. <div class="review-deadline-input-wrap procuremen-sys-rq-split" id="review-sys-rq-wrap">
  659. <input type="hidden" id="review-sys-rq" name="sys_rq" value=""/>
  660. <div class="procuremen-sys-rq-fields">
  661. <input type="date" class="form-control procuremen-sys-rq-date" title="招标截止日期"/>
  662. <div class="procuremen-sys-rq-time-group">
  663. <select class="form-control procuremen-sys-rq-hour" title="时"></select>
  664. <span class="procuremen-sys-rq-colon">:</span>
  665. <select class="form-control procuremen-sys-rq-minute" title="分"></select>
  666. </div>
  667. </div>
  668. </div>
  669. </div>
  670. <div class="review-deadline-item">
  671. <span class="review-field-label">交货截止日期:<span class="text-danger">*</span></span>
  672. <input type="date" class="form-control review-delivery-deadline-input" id="review-delivery-deadline" name="delivery_deadline" title="交货截止日期" autocomplete="off"/>
  673. </div>
  674. {if condition="isset($pickMode) && $pickMode"}
  675. <div class="review-deadline-item">
  676. <span class="review-field-label">订单类型:<span class="text-danger">*</span></span>
  677. <select class="form-control review-order-type-select" id="review-score-rule-id" name="score_rule_id" title="订单类型(评分规则)">
  678. <option value="">请选择订单类型</option>
  679. {volist name="scoreRuleOptions" id="rule"}
  680. <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>
  681. {/volist}
  682. </select>
  683. </div>
  684. {/if}
  685. </div>
  686. </div>
  687. <div class="review-selected-summary is-empty" id="review-selected-summary" aria-live="polite">
  688. <div class="review-selected-top">
  689. <div class="review-selected-head">
  690. 已选单位(<span class="review-selected-count" id="review-selected-count">0</span>)
  691. </div>
  692. <p class="review-selected-tip procuremen-review-submit-tip" role="note">
  693. <i class="fa fa-exclamation-triangle"></i>
  694. <strong>重要提示:</strong>确认后将向所选供应商<strong>发送短信与邮件</strong>,请仔细核对后再提交。
  695. </p>
  696. </div>
  697. <div class="review-selected-slot">
  698. <p class="review-selected-empty" id="review-selected-empty">暂未选择供应商</p>
  699. <div class="review-selected-tags" id="review-selected-tags"></div>
  700. </div>
  701. </div>
  702. <div class="review-split-right">
  703. <div class="review-company-panel">
  704. <aside class="review-category-sidebar" id="review-category-sidebar">
  705. <div class="review-cat-head">业务分组</div>
  706. <div id="review-category-list"></div>
  707. </aside>
  708. <div class="review-company-main">
  709. <div class="review-company-toolbar">
  710. <input type="text" class="form-control" id="review-company-search" placeholder="搜索供应商名称、姓名、邮箱、手机号、业务分类…" autocomplete="off"/>
  711. </div>
  712. <div class="review-table-scroll">
  713. <div class="table-responsive">
  714. <table class="table table-bordered table-hover table-striped table-condensed review-company-table">
  715. <colgroup>
  716. <col style="width:6%"/>
  717. <col style="width:27%"/>
  718. <col style="width:9%"/>
  719. <col style="width:16%"/>
  720. <col style="width: 15%"/>
  721. <col style="width:27%"/>
  722. </colgroup>
  723. <thead>
  724. <tr>
  725. <th class="review-th-cb"><input type="checkbox" id="review-check-all"/></th>
  726. <th>供应商名称</th>
  727. <th>姓名</th>
  728. <th>邮箱</th>
  729. <th>手机号</th>
  730. <th>业务分类</th>
  731. </tr>
  732. </thead>
  733. <tbody id="review-company-tbody">
  734. </tbody>
  735. </table>
  736. </div>
  737. </div>
  738. </div>
  739. </div>
  740. </div>
  741. </div>
  742. <div class="layer-footer clearfix">
  743. <div class="pull-right">
  744. {if isset($pickMode) && $pickMode}
  745. {if $auth->check('procuremen/picksubmit')}
  746. <button type="button" style="margin-right: 20px" id="btn-review-submit" class="btn procuremen-btn-slate btn-embossed">确认</button>
  747. {/if}
  748. {else /}
  749. {if $auth->check('procuremen/review')}
  750. <button type="button" style="margin-right: 20px" id="btn-review-submit" class="btn procuremen-btn-slate btn-embossed">确认</button>
  751. {/if}
  752. {/if}
  753. <button type="button" style="margin-right: 20px" class="btn btn-default btn-embossed btn-close">{:__('Close')}</button>
  754. </div>
  755. </div>
  756. </form>