employees.scss 17 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022
  1. .employees-container {
  2. padding: 24px;
  3. background: #f5f5f5;
  4. min-height: 100vh;
  5. }
  6. .page-header {
  7. display: flex;
  8. justify-content: space-between;
  9. align-items: center;
  10. margin-bottom: 24px;
  11. h1 {
  12. font-size: 24px;
  13. font-weight: 600;
  14. margin: 0 0 8px 0;
  15. }
  16. .subtitle {
  17. color: #666;
  18. margin: 0;
  19. font-size: 14px;
  20. }
  21. }
  22. .stats-cards {
  23. display: grid;
  24. grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  25. gap: 16px;
  26. margin-bottom: 24px;
  27. }
  28. .stat-card {
  29. background: white;
  30. border-radius: 8px;
  31. padding: 20px;
  32. text-align: center;
  33. cursor: pointer;
  34. border: 2px solid transparent;
  35. transition: all 0.3s;
  36. &:hover {
  37. box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  38. }
  39. &.active {
  40. border-color: #165DFF;
  41. background: #E6F7FF;
  42. }
  43. .stat-value {
  44. font-size: 32px;
  45. font-weight: 600;
  46. margin-bottom: 8px;
  47. }
  48. .stat-label {
  49. color: #666;
  50. font-size: 14px;
  51. }
  52. }
  53. .filter-bar {
  54. background: white;
  55. border-radius: 8px;
  56. padding: 16px;
  57. margin-bottom: 16px;
  58. display: flex;
  59. gap: 12px;
  60. .search-input {
  61. flex: 1;
  62. padding: 8px 12px;
  63. border: 1px solid #ddd;
  64. border-radius: 4px;
  65. }
  66. }
  67. .data-table {
  68. background: white;
  69. border-radius: 8px;
  70. overflow: hidden;
  71. table {
  72. width: 100%;
  73. border-collapse: collapse;
  74. th, td {
  75. padding: 12px 16px;
  76. text-align: left;
  77. border-bottom: 1px solid #f0f0f0;
  78. }
  79. th {
  80. background: #fafafa;
  81. font-weight: 600;
  82. }
  83. tr.disabled {
  84. opacity: 0.5;
  85. }
  86. .badge {
  87. padding: 4px 8px;
  88. background: #E6F7FF;
  89. color: #165DFF;
  90. border-radius: 4px;
  91. font-size: 12px;
  92. }
  93. .status {
  94. padding: 4px 8px;
  95. border-radius: 4px;
  96. font-size: 12px;
  97. &.active {
  98. background: #E6F9F0;
  99. color: #00B42A;
  100. }
  101. &.disabled {
  102. background: #FFECE8;
  103. color: #F53F3F;
  104. }
  105. }
  106. .empty-state {
  107. text-align: center;
  108. padding: 60px;
  109. color: #999;
  110. }
  111. }
  112. }
  113. .btn {
  114. padding: 8px 16px;
  115. border-radius: 4px;
  116. border: none;
  117. cursor: pointer;
  118. &.btn-primary {
  119. background: #165DFF;
  120. color: white;
  121. }
  122. &.btn-secondary {
  123. background: white;
  124. border: 1px solid #ddd;
  125. }
  126. &.btn-default {
  127. background: white;
  128. border: 1px solid #ddd;
  129. }
  130. &.btn-text {
  131. background: none;
  132. color: #165DFF;
  133. }
  134. }
  135. .btn-icon {
  136. background: none;
  137. border: none;
  138. cursor: pointer;
  139. padding: 4px 8px;
  140. }
  141. // 侧边面板(与departments样式相同,省略...)
  142. .side-panel {
  143. position: fixed;
  144. top: 0;
  145. right: 0;
  146. bottom: 0;
  147. left: 0;
  148. pointer-events: none;
  149. z-index: 1000;
  150. &.open {
  151. pointer-events: auto;
  152. .panel-overlay {
  153. opacity: 1;
  154. }
  155. .panel-content {
  156. transform: translateX(0);
  157. }
  158. }
  159. .panel-overlay {
  160. position: absolute;
  161. top: 0;
  162. left: 0;
  163. right: 0;
  164. bottom: 0;
  165. background: rgba(0, 0, 0, 0.4);
  166. opacity: 0;
  167. transition: opacity 0.3s;
  168. }
  169. .panel-content {
  170. position: absolute;
  171. top: 0;
  172. right: 0;
  173. bottom: 0;
  174. width: 480px;
  175. background: white;
  176. display: flex;
  177. flex-direction: column;
  178. transform: translateX(100%);
  179. transition: transform 0.3s;
  180. }
  181. .panel-header {
  182. padding: 20px;
  183. border-bottom: 1px solid #f0f0f0;
  184. display: flex;
  185. justify-content: space-between;
  186. align-items: center;
  187. h2 {
  188. margin: 0;
  189. font-size: 18px;
  190. font-weight: 600;
  191. }
  192. .btn-close {
  193. background: none;
  194. border: none;
  195. font-size: 24px;
  196. cursor: pointer;
  197. }
  198. }
  199. .panel-body {
  200. padding: 24px;
  201. overflow: auto;
  202. background: #fafafa;
  203. }
  204. .panel-footer {
  205. padding: 16px 24px;
  206. border-top: 1px solid #f0f0f0;
  207. display: flex;
  208. justify-content: flex-end;
  209. gap: 12px;
  210. background: white;
  211. .btn {
  212. min-width: 80px;
  213. padding: 10px 20px;
  214. font-size: 14px;
  215. font-weight: 500;
  216. border-radius: 6px;
  217. transition: all 0.2s;
  218. &.btn-default {
  219. background: white;
  220. border: 1px solid #ddd;
  221. color: #666;
  222. &:hover {
  223. border-color: #165DFF;
  224. color: #165DFF;
  225. }
  226. }
  227. &.btn-primary {
  228. background: #165DFF;
  229. color: white;
  230. border: none;
  231. &:hover {
  232. background: #0E4BD8;
  233. box-shadow: 0 2px 8px rgba(22, 93, 255, 0.3);
  234. }
  235. }
  236. }
  237. }
  238. // 详情视图 - 全新精美设计
  239. .detail-view {
  240. display: flex;
  241. flex-direction: column;
  242. gap: 20px;
  243. }
  244. // 详情头部
  245. .detail-header {
  246. background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  247. border-radius: 16px;
  248. padding: 24px;
  249. color: white;
  250. box-shadow: 0 8px 24px rgba(102, 126, 234, 0.25);
  251. }
  252. .detail-avatar-section {
  253. position: relative;
  254. display: flex;
  255. flex-direction: column;
  256. align-items: center;
  257. margin-bottom: 20px;
  258. .detail-avatar {
  259. width: 96px;
  260. height: 96px;
  261. border-radius: 50%;
  262. object-fit: cover;
  263. border: 4px solid rgba(255, 255, 255, 0.3);
  264. box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  265. transition: transform 0.3s;
  266. &:hover {
  267. transform: scale(1.05);
  268. }
  269. }
  270. .detail-badge-container {
  271. display: flex;
  272. gap: 8px;
  273. margin-top: 12px;
  274. }
  275. .detail-role-badge {
  276. padding: 6px 14px;
  277. background: rgba(255, 255, 255, 0.25);
  278. backdrop-filter: blur(10px);
  279. border-radius: 20px;
  280. font-size: 12px;
  281. font-weight: 600;
  282. border: 1px solid rgba(255, 255, 255, 0.3);
  283. }
  284. .detail-status-badge {
  285. padding: 6px 14px;
  286. border-radius: 20px;
  287. font-size: 12px;
  288. font-weight: 600;
  289. border: 1px solid rgba(255, 255, 255, 0.3);
  290. &.active {
  291. background: rgba(0, 180, 42, 0.3);
  292. backdrop-filter: blur(10px);
  293. }
  294. &.disabled {
  295. background: rgba(245, 63, 63, 0.3);
  296. backdrop-filter: blur(10px);
  297. }
  298. }
  299. }
  300. .detail-info-section {
  301. text-align: center;
  302. }
  303. .detail-name-block {
  304. margin-bottom: 12px;
  305. .detail-realname {
  306. font-size: 24px;
  307. font-weight: 700;
  308. margin: 0 0 8px 0;
  309. text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  310. }
  311. .detail-nickname {
  312. display: inline-block;
  313. padding: 4px 12px;
  314. background: rgba(255, 255, 255, 0.2);
  315. backdrop-filter: blur(10px);
  316. border-radius: 16px;
  317. font-size: 12px;
  318. font-weight: 500;
  319. border: 1px solid rgba(255, 255, 255, 0.3);
  320. }
  321. }
  322. .detail-position {
  323. display: inline-flex;
  324. align-items: center;
  325. gap: 6px;
  326. padding: 6px 14px;
  327. background: rgba(255, 255, 255, 0.2);
  328. backdrop-filter: blur(10px);
  329. border-radius: 20px;
  330. font-size: 13px;
  331. font-weight: 500;
  332. margin-bottom: 12px;
  333. border: 1px solid rgba(255, 255, 255, 0.3);
  334. svg {
  335. opacity: 0.9;
  336. }
  337. }
  338. .detail-meta {
  339. display: flex;
  340. justify-content: center;
  341. gap: 16px;
  342. flex-wrap: wrap;
  343. }
  344. .detail-meta-item {
  345. display: flex;
  346. align-items: center;
  347. gap: 6px;
  348. font-size: 12px;
  349. opacity: 0.95;
  350. svg {
  351. opacity: 0.8;
  352. }
  353. }
  354. // 详情分组
  355. .detail-section {
  356. background: white;
  357. border-radius: 12px;
  358. padding: 20px;
  359. border: 1px solid #f0f0f0;
  360. transition: all 0.3s;
  361. &:hover {
  362. box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  363. border-color: #165DFF;
  364. }
  365. }
  366. .detail-section-title {
  367. display: flex;
  368. align-items: center;
  369. gap: 8px;
  370. font-size: 15px;
  371. font-weight: 600;
  372. color: #333;
  373. margin-bottom: 16px;
  374. padding-bottom: 12px;
  375. border-bottom: 2px solid #f0f0f0;
  376. svg {
  377. color: #165DFF;
  378. flex-shrink: 0;
  379. }
  380. }
  381. .detail-grid {
  382. display: grid;
  383. grid-template-columns: repeat(2, minmax(0, 1fr));
  384. gap: 16px;
  385. }
  386. .detail-item {
  387. label {
  388. display: block;
  389. color: #888;
  390. font-size: 12px;
  391. margin-bottom: 6px;
  392. font-weight: 500;
  393. text-transform: uppercase;
  394. letter-spacing: 0.5px;
  395. }
  396. .detail-value {
  397. font-size: 14px;
  398. color: #333;
  399. font-weight: 600;
  400. word-break: break-word;
  401. }
  402. .badge {
  403. display: inline-block;
  404. padding: 4px 12px;
  405. background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  406. color: white;
  407. border-radius: 16px;
  408. font-size: 12px;
  409. font-weight: 600;
  410. }
  411. }
  412. // 保留旧的样式支持
  413. .grid {
  414. display: grid;
  415. grid-template-columns: repeat(2, minmax(0, 1fr));
  416. gap: 12px;
  417. }
  418. .avatar {
  419. width: 72px;
  420. height: 72px;
  421. border-radius: 50%;
  422. object-fit: cover;
  423. border: 3px solid #f0f0f0;
  424. }
  425. .title-block {
  426. .name {
  427. font-size: 20px;
  428. font-weight: 600;
  429. color: #333;
  430. margin-bottom: 4px;
  431. }
  432. .position {
  433. font-size: 13px;
  434. color: #888;
  435. }
  436. }
  437. .skills {
  438. margin-top: 8px;
  439. padding: 16px;
  440. background: white;
  441. border-radius: 12px;
  442. label {
  443. display: block;
  444. color: #666;
  445. font-size: 13px;
  446. margin-bottom: 12px;
  447. font-weight: 500;
  448. }
  449. }
  450. .tags {
  451. display: flex;
  452. gap: 8px;
  453. flex-wrap: wrap;
  454. }
  455. .tag {
  456. padding: 6px 12px;
  457. border-radius: 16px;
  458. background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  459. color: white;
  460. font-size: 12px;
  461. font-weight: 500;
  462. }
  463. .workload {
  464. padding: 16px;
  465. background: white;
  466. border-radius: 12px;
  467. label {
  468. display: block;
  469. color: #666;
  470. font-size: 13px;
  471. margin-bottom: 12px;
  472. font-weight: 500;
  473. }
  474. }
  475. // 表单视图
  476. .form-view {
  477. display: flex;
  478. flex-direction: column;
  479. gap: 24px;
  480. }
  481. .form-avatar-section {
  482. display: flex;
  483. align-items: center;
  484. gap: 16px;
  485. padding: 20px;
  486. background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  487. border-radius: 12px;
  488. color: white;
  489. .form-avatar {
  490. width: 64px;
  491. height: 64px;
  492. border-radius: 50%;
  493. object-fit: cover;
  494. border: 3px solid rgba(255, 255, 255, 0.3);
  495. }
  496. .form-avatar-info {
  497. flex: 1;
  498. .form-avatar-name {
  499. font-size: 18px;
  500. font-weight: 600;
  501. margin-bottom: 4px;
  502. }
  503. .form-avatar-id {
  504. font-size: 12px;
  505. opacity: 0.9;
  506. }
  507. }
  508. }
  509. .form-section {
  510. padding: 20px;
  511. background: white;
  512. border-radius: 12px;
  513. border: 1px solid #f0f0f0;
  514. .form-section-title {
  515. display: flex;
  516. align-items: center;
  517. gap: 8px;
  518. font-size: 15px;
  519. font-weight: 600;
  520. color: #333;
  521. margin-bottom: 20px;
  522. padding-bottom: 12px;
  523. border-bottom: 2px solid #f0f0f0;
  524. svg {
  525. color: #165DFF;
  526. }
  527. }
  528. }
  529. .form-group {
  530. margin-bottom: 20px;
  531. &:last-child {
  532. margin-bottom: 0;
  533. }
  534. .form-label {
  535. display: block;
  536. font-size: 13px;
  537. font-weight: 500;
  538. color: #333;
  539. margin-bottom: 8px;
  540. &.required::after {
  541. content: ' *';
  542. color: #F53F3F;
  543. }
  544. }
  545. .form-input,
  546. .form-select {
  547. width: 100%;
  548. padding: 10px 14px;
  549. border: 1px solid #ddd;
  550. border-radius: 8px;
  551. font-size: 14px;
  552. color: #333;
  553. transition: all 0.2s;
  554. background: white;
  555. &:focus {
  556. outline: none;
  557. border-color: #165DFF;
  558. box-shadow: 0 0 0 3px rgba(22, 93, 255, 0.1);
  559. }
  560. &:disabled {
  561. background: #f5f5f5;
  562. color: #999;
  563. cursor: not-allowed;
  564. }
  565. &::placeholder {
  566. color: #bbb;
  567. }
  568. }
  569. .form-hint {
  570. margin-top: 6px;
  571. font-size: 12px;
  572. color: #888;
  573. }
  574. }
  575. .status-toggle {
  576. display: flex;
  577. gap: 12px;
  578. .status-option {
  579. flex: 1;
  580. display: flex;
  581. align-items: center;
  582. gap: 10px;
  583. padding: 12px 16px;
  584. border: 2px solid #e5e7eb;
  585. border-radius: 8px;
  586. cursor: pointer;
  587. transition: all 0.2s;
  588. background: white;
  589. input[type="radio"] {
  590. display: none;
  591. }
  592. .status-dot {
  593. width: 12px;
  594. height: 12px;
  595. border-radius: 50%;
  596. &.active {
  597. background: #00B42A;
  598. box-shadow: 0 0 0 3px rgba(0, 180, 42, 0.2);
  599. }
  600. &.disabled {
  601. background: #F53F3F;
  602. box-shadow: 0 0 0 3px rgba(245, 63, 63, 0.2);
  603. }
  604. }
  605. span:not(.status-dot) {
  606. font-size: 14px;
  607. font-weight: 500;
  608. color: #666;
  609. }
  610. &.active {
  611. border-color: #165DFF;
  612. background: #f0f7ff;
  613. span:not(.status-dot) {
  614. color: #165DFF;
  615. }
  616. }
  617. &:hover {
  618. border-color: #165DFF;
  619. }
  620. }
  621. }
  622. .form-notice {
  623. display: flex;
  624. gap: 12px;
  625. padding: 16px;
  626. background: #fff7e6;
  627. border: 1px solid #ffd666;
  628. border-radius: 8px;
  629. svg {
  630. flex-shrink: 0;
  631. color: #fa8c16;
  632. margin-top: 2px;
  633. }
  634. .form-notice-title {
  635. font-size: 13px;
  636. font-weight: 600;
  637. color: #d46b08;
  638. margin-bottom: 4px;
  639. }
  640. .form-notice-text {
  641. font-size: 12px;
  642. color: #ad6800;
  643. line-height: 1.5;
  644. }
  645. }
  646. .panel-header h2 {
  647. display: flex;
  648. align-items: center;
  649. gap: 10px;
  650. &::before {
  651. content: "👤";
  652. font-size: 20px;
  653. }
  654. }
  655. }
  656. // ========================================
  657. // 员工管理移动端适配
  658. // ========================================
  659. @media (max-width: 768px) {
  660. .employees-container {
  661. padding: 12px;
  662. }
  663. .page-header {
  664. flex-direction: column;
  665. align-items: flex-start;
  666. gap: 16px;
  667. h1 {
  668. font-size: 20px;
  669. }
  670. .header-actions {
  671. width: 100%;
  672. button {
  673. width: 100%;
  674. }
  675. }
  676. }
  677. // 统计卡片适配
  678. .stats-cards {
  679. grid-template-columns: repeat(2, 1fr);
  680. gap: 12px;
  681. }
  682. .stat-card {
  683. padding: 16px;
  684. .stat-value {
  685. font-size: 24px;
  686. }
  687. .stat-label {
  688. font-size: 12px;
  689. }
  690. }
  691. // 搜索筛选区域
  692. .search-filter-section {
  693. flex-direction: column;
  694. gap: 12px;
  695. .search-input,
  696. .department-filter,
  697. .status-filter {
  698. width: 100%;
  699. min-width: 100%;
  700. }
  701. }
  702. // 员工列表表格卡片式
  703. .employees-table {
  704. thead {
  705. display: none;
  706. }
  707. tbody {
  708. display: block;
  709. }
  710. tr {
  711. display: block;
  712. border: 1px solid #e5e7eb;
  713. border-radius: 12px;
  714. padding: 16px;
  715. margin-bottom: 12px;
  716. background: white;
  717. }
  718. td {
  719. display: flex;
  720. justify-content: space-between;
  721. align-items: center;
  722. padding: 10px 0;
  723. border: none;
  724. &::before {
  725. content: attr(data-label);
  726. font-weight: 600;
  727. color: #666;
  728. font-size: 13px;
  729. margin-right: 12px;
  730. }
  731. &:not(:last-child) {
  732. border-bottom: 1px solid #f5f5f5;
  733. }
  734. }
  735. .employee-info {
  736. flex-direction: row;
  737. justify-content: flex-start;
  738. .avatar {
  739. width: 40px;
  740. height: 40px;
  741. }
  742. .info {
  743. .name {
  744. font-size: 14px;
  745. }
  746. .mobile,
  747. .userid {
  748. font-size: 12px;
  749. }
  750. }
  751. }
  752. .action-buttons {
  753. justify-content: center;
  754. gap: 8px;
  755. button {
  756. min-width: 32px;
  757. padding: 6px;
  758. }
  759. }
  760. }
  761. // 编辑面板全屏显示
  762. .edit-panel-overlay {
  763. padding: 0;
  764. }
  765. .edit-panel {
  766. width: 100vw;
  767. max-width: 100vw;
  768. height: 100vh;
  769. max-height: 100vh;
  770. border-radius: 0;
  771. .panel-header {
  772. padding: 16px;
  773. position: sticky;
  774. top: 0;
  775. z-index: 10;
  776. h2 {
  777. font-size: 18px;
  778. }
  779. .close-btn {
  780. width: 36px;
  781. height: 36px;
  782. }
  783. }
  784. .panel-body {
  785. padding: 16px;
  786. height: calc(100vh - 140px);
  787. .form-avatar-section {
  788. padding: 20px 16px;
  789. .avatar-container {
  790. width: 80px;
  791. height: 80px;
  792. }
  793. .employee-name {
  794. font-size: 18px;
  795. }
  796. .employee-id {
  797. font-size: 13px;
  798. }
  799. }
  800. .form-section {
  801. padding: 16px;
  802. margin-bottom: 12px;
  803. .section-title {
  804. font-size: 15px;
  805. }
  806. .form-group {
  807. margin-bottom: 16px;
  808. .form-label {
  809. font-size: 13px;
  810. }
  811. .form-input,
  812. .form-select {
  813. font-size: 16px; // 防止iOS自动缩放
  814. padding: 12px;
  815. }
  816. }
  817. .status-toggle {
  818. .toggle-option {
  819. padding: 12px;
  820. .option-label {
  821. font-size: 14px;
  822. }
  823. }
  824. }
  825. }
  826. .form-notice {
  827. padding: 12px;
  828. font-size: 12px;
  829. }
  830. }
  831. .panel-footer {
  832. padding: 16px;
  833. position: sticky;
  834. bottom: 0;
  835. flex-direction: column;
  836. gap: 12px;
  837. button {
  838. width: 100%;
  839. }
  840. }
  841. }
  842. }
  843. @media (max-width: 480px) {
  844. .employees-container {
  845. padding: 8px;
  846. }
  847. .page-header h1 {
  848. font-size: 18px;
  849. }
  850. .stats-cards {
  851. grid-template-columns: 1fr;
  852. }
  853. .stat-card {
  854. padding: 12px;
  855. .stat-value {
  856. font-size: 20px;
  857. }
  858. }
  859. }