index.vue 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803
  1. <template>
  2. <view>
  3. <nav-bar title="模考预约" class="nav"></nav-bar>
  4. <view class="tabs">
  5. <view
  6. class="tab"
  7. :class="{ active: param.mockStatus == 0 }"
  8. data-index="1"
  9. @click="tab(0)"
  10. >
  11. <view>未考试</view>
  12. </view>
  13. <view
  14. class="tab"
  15. :class="{ active: param.mockStatus == 1 }"
  16. data-index="2"
  17. @click="tab(1)"
  18. >
  19. <view>已结束</view>
  20. </view>
  21. <view class="sort" @click="showSort = true"> 筛选 </view>
  22. </view>
  23. <view class="record">
  24. <template v-if="param.mockStatus == 0">
  25. <view v-if="recordList.length">
  26. <view
  27. class="examList"
  28. v-for="(item, index) in recordList"
  29. :key="index"
  30. >
  31. <view class="main">
  32. <view class="top" @click="showDetails(item)">
  33. <view class="subject">{{ item.applyName }}</view>
  34. </view>
  35. <view class="item">
  36. <view class="left">项目</view>
  37. <view class="right"
  38. >{{ item.businessName }} {{ item.projectName }}</view
  39. >
  40. </view>
  41. <view class="item">
  42. <view class="left">专业</view>
  43. <view class="right">{{ item.categoryName }}</view>
  44. </view>
  45. <view class="item">
  46. <view class="left">科目</view>
  47. <view class="right">{{ item.subjectName }}</view>
  48. </view>
  49. <view class="item">
  50. <view class="left">考试时间</view>
  51. <view v-if="item.mockActivity == 0" class="right">
  52. {{ $method.timestampToTime(item.applySiteExamTime) }}
  53. {{ item.applySiteStartTime }} - {{ item.applySiteEndTime }}
  54. </view>
  55. </view>
  56. <view class="btn-wrap">
  57. <view class="btn-line">
  58. <!-- mockActivity 1是活动模考,0否 && (!item.handStatus || item.handStatus == 0)-->
  59. <view
  60. v-if="
  61. item.mockActivity == 1 &&
  62. (!item.handStatus || item.handStatus == 0)
  63. "
  64. class="btn"
  65. :class="{
  66. 'test-disabled': !(item.activityStartTime < nowTime),
  67. }"
  68. @click="goExamCount(item, index)"
  69. >去考试</view
  70. >
  71. <view v-else>
  72. <view
  73. class="btn test-disabled"
  74. v-if="goTest(item)"
  75. @click="goExamCount(item, index)"
  76. >去考试</view
  77. >
  78. <view class="btn test-disabled" v-else-if="item.handStatus"
  79. >已考试</view
  80. >
  81. <view class="btn" v-else @click="goExamCount(item, index)"
  82. >去考试</view
  83. >
  84. </view>
  85. </view>
  86. </view>
  87. </view>
  88. </view>
  89. </view>
  90. <view v-else class="nodata">暂无相关数据</view>
  91. </template>
  92. <template v-if="param.mockStatus == 1">
  93. <view v-if="recordList.length">
  94. <view
  95. class="examList"
  96. v-for="(item, index) in recordList"
  97. :key="index"
  98. >
  99. <view class="main">
  100. <view class="top" @click="showDetails(item)">
  101. <view class="subject">{{ item.applyName }}</view>
  102. </view>
  103. <view class="item">
  104. <view class="left">项目</view>
  105. <view class="right"
  106. >{{ item.businessName }} {{ item.projectName }}</view
  107. >
  108. </view>
  109. <view class="item">
  110. <view class="left">专业</view>
  111. <view class="right">{{ item.categoryName }}</view>
  112. </view>
  113. <view class="item">
  114. <view class="left">科目</view>
  115. <view class="right">{{ item.subjectName }}</view>
  116. </view>
  117. <view class="item">
  118. <view class="left">考试时间</view>
  119. <view class="right">
  120. {{ $method.timestampToTime(item.applySiteExamTime) }}
  121. {{ item.applySiteStartTime }} - {{ item.applySiteEndTime }}
  122. </view>
  123. </view>
  124. <view class="btn-wrap">
  125. <view class="btn-line" v-if="item.reSubscribe == 1">
  126. <view class="btn border" @click="reApply(item)"
  127. >重新预约</view
  128. >
  129. </view>
  130. <template v-else>
  131. <view class="btn-line">
  132. <view class="text" v-if="item.handStatus"
  133. >当前报告含主观题需人工阅卷,阅卷完成后显示完整报告</view
  134. >
  135. <view class="text" v-if="!item.handStatus"
  136. >由于未按时参加考试,主观题将不会提交至后台进行人工阅卷</view
  137. >
  138. <view
  139. class="btn border"
  140. :class="{
  141. disabled: item.canDo === 0,
  142. 'btn--half': item.handStatus,
  143. }"
  144. @click="doQuestion(item)"
  145. >去做题</view
  146. >
  147. <view
  148. class="btn btn--half border"
  149. @click="report(item)"
  150. v-if="item.handStatus"
  151. >查看报告</view
  152. >
  153. </view>
  154. <view
  155. class="btn-line"
  156. v-if="
  157. item.liveEndTime && item.liveStartTime && item.liveUrl
  158. "
  159. >
  160. <view class="text-half">
  161. <view>模考讲解直播时间</view>
  162. <view
  163. >{{
  164. $method.timestampToTime(item.liveStartTime, false)
  165. }}
  166. -
  167. {{
  168. $method.timestampToTime(item.liveEndTime, false)
  169. }}</view
  170. >
  171. </view>
  172. <view class="btn btn--half border" @click="goLive(item)"
  173. >去查看</view
  174. >
  175. </view>
  176. </template>
  177. </view>
  178. </view>
  179. </view>
  180. </view>
  181. <view v-else class="nodata">暂无相关数据</view>
  182. </template>
  183. </view>
  184. <view class="modal" :style="{ top: modalTop + 'px' }" v-if="showSort">
  185. <view class="content">
  186. <view class="item">
  187. <view class="item__title">考试时间</view>
  188. <view class="item__box">
  189. <view class="text">
  190. <picker
  191. mode="date"
  192. :value="param.startTime"
  193. :end="endDate"
  194. @change="bindDateFromChange"
  195. >
  196. <view class="uni-input">{{
  197. param.startTime || "开始时间"
  198. }}</view>
  199. </picker>
  200. -
  201. <picker
  202. mode="date"
  203. :value="param.endTime"
  204. :end="endDate"
  205. @change="bindDateToChange"
  206. >
  207. <view class="uni-input">{{ param.endTime || "结束时间" }}</view>
  208. </picker>
  209. </view>
  210. <u-icon class="icon" name="calendar"></u-icon>
  211. </view>
  212. </view>
  213. <view class="item">
  214. <view class="item__title">考试标题</view>
  215. <view class="item__box">
  216. <picker
  217. class="picker"
  218. mode="selector"
  219. :range="listApplyName"
  220. range-key="applyName"
  221. :value="param.applyName"
  222. @change="bindTitleChange"
  223. >
  224. <view style="width: 650rpx; height: 40rpx">{{
  225. param.applyName
  226. }}</view>
  227. </picker>
  228. <u-icon class="icon" name="arrow-down"></u-icon>
  229. </view>
  230. </view>
  231. </view>
  232. <view class="modal_wrap" @click="showSort = false"></view>
  233. </view>
  234. </view>
  235. </template>
  236. <script>
  237. import { mapGetters } from "vuex";
  238. import config from "@/common/config";
  239. export default {
  240. data() {
  241. return {
  242. showSort: false,
  243. index: 0,
  244. list: [],
  245. list1: [],
  246. recordList: [],
  247. goodsData: {},
  248. param: {
  249. pageNum: 1,
  250. pageSize: 10,
  251. mockStatus: 0,
  252. endTime: "",
  253. startTime: "",
  254. applyName: "",
  255. },
  256. nowTime: 0,
  257. sysTime: Date.now(),
  258. dateFrom: "",
  259. dateTo: "",
  260. isRepeat: false,
  261. total: 0,
  262. activeIndex: 0,
  263. typeIndex: 0,
  264. itemIndex: "",
  265. modalTop: 0,
  266. endDate: "",
  267. titleName: 3,
  268. listApplyName: [],
  269. };
  270. },
  271. computed: {
  272. ...mapGetters(["userInfo"]),
  273. },
  274. onLoad(option) {
  275. this.param.mockStatus = option.state || 0;
  276. this.endDate = this.$method
  277. .timestampToTime(new Date().getTime() / 1000)
  278. .replace(/-/g, "/");
  279. // this.mockSubscribeListSubscribe();
  280. uni.getSystemInfo({
  281. success: (e) => {
  282. let info = uni.createSelectorQuery().select(".nav");
  283. info
  284. .boundingClientRect((navData) => {
  285. //data - 各种参数
  286. let info = uni.createSelectorQuery().select(".tabs");
  287. info
  288. .boundingClientRect((tabData) => {
  289. //data - 各种参数
  290. this.modalTop = navData.height + tabData.height;
  291. console.log(navData); // 获取元素宽度
  292. console.log(tabData); // 获取元素宽度
  293. })
  294. .exec();
  295. })
  296. .exec();
  297. },
  298. });
  299. },
  300. onPullDownRefresh() {
  301. let that = this;
  302. this.param.pageNum = 1;
  303. this.mockSubscribeListSubscribe();
  304. setTimeout(function () {
  305. uni.stopPullDownRefresh();
  306. }, 500);
  307. },
  308. onReachBottom() {
  309. console.log(this.total, "total");
  310. console.log(this.recordList.length, "length");
  311. if (this.recordList.length < this.total) {
  312. this.param.pageNum++;
  313. this.mockSubscribeListSubscribe();
  314. }
  315. },
  316. onShow() {
  317. this.nowTime = +this.$method.timest();
  318. // if(this.itemIndex !== '') {
  319. // this.refreshByIndex();
  320. // }
  321. this.recordList = [];
  322. this.mockSubscribeListSubscribe();
  323. },
  324. methods: {
  325. mockApplyListApplyName() {
  326. let param = JSON.parse(JSON.stringify(this.param));
  327. if (param.endTime) {
  328. param.endTime = this.$method.TimeTotimestamp(param.endTime);
  329. }
  330. if (param.startTime) {
  331. param.startTime = this.$method.TimeTotimestamp(param.startTime);
  332. }
  333. console.log(param, "param");
  334. this.$api.mockApplyListApplyName(param).then((res) => {
  335. this.listApplyName = res.data.rows;
  336. console.log(this.listApplyName, "listApplyName");
  337. this.param.applyName = "";
  338. this.mockSubscribeListSubscribe();
  339. });
  340. },
  341. reApply(item) {
  342. uni.redirectTo({
  343. url: "/pages5/examAppointList/index",
  344. });
  345. },
  346. report(item) {
  347. uni.navigateTo({
  348. url:
  349. "/pages5/examReport/index?&examId=" +
  350. item.examId +
  351. "&id=" +
  352. item.recordId +
  353. "&eachExamId=" +
  354. item.eachExamId +
  355. "&subscribeId=" +
  356. item.subscribeId,
  357. });
  358. },
  359. doQuestion(item) {
  360. if (item.canDo === 0) {
  361. uni.showToast({
  362. icon: "none",
  363. msg: "请等待所有科目考试结束后再进入刷题",
  364. });
  365. return;
  366. }
  367. uni.navigateTo({
  368. url:
  369. "../examBank/index?examId=" +
  370. item.examId +
  371. "&eachExamId=" +
  372. item.eachExamId +
  373. "&subscribeId=" +
  374. item.subscribeId,
  375. });
  376. },
  377. goTest(item) {
  378. if (item.mockActivity && item.mockActivity == 1) {
  379. return false;
  380. }
  381. let startTime = this.$method.TimeTotimestamp(
  382. this.$method.timestampToTime(item.applySiteExamTime) +
  383. " " +
  384. item.applySiteStartTime
  385. );
  386. let canGo =
  387. startTime - this.nowTime <= 600 &&
  388. startTime - this.nowTime >= (-(item.timeLimit * 60) || 0);
  389. return !canGo;
  390. },
  391. isStart(item) {
  392. let startTime = this.$method.TimeTotimestamp(
  393. this.$method.timestampToTime(item.applySiteExamTime) +
  394. " " +
  395. item.applySiteStartTime
  396. );
  397. return startTime - this.nowTime <= 600;
  398. },
  399. mockSubscribeListSubscribe() {
  400. let param = JSON.parse(JSON.stringify(this.param));
  401. if (param.endTime) {
  402. param.endTime = this.$method.TimeTotimestamp(param.endTime);
  403. }
  404. if (param.startTime) {
  405. param.startTime = this.$method.TimeTotimestamp(param.startTime);
  406. }
  407. // mock/subscribe/listSubscribe
  408. this.$api.mockSubscribeListSubscribe(param).then((res) => {
  409. this.recordList.push(...res.data.rows);
  410. this.total = res.data.total;
  411. });
  412. },
  413. refreshByIndex() {
  414. let param = JSON.parse(JSON.stringify(this.param));
  415. if (param.endTime) {
  416. param.endTime = this.$method.TimeTotimestamp(param.endTime);
  417. }
  418. if (param.startTime) {
  419. param.startTime = this.$method.TimeTotimestamp(param.startTime);
  420. }
  421. param.pageNum = this.itemIndex + 1;
  422. param.pageSize = 1;
  423. this.$api.mockSubscribeListSubscribe(param).then((res) => {
  424. console.log("res.data.rows[0]", res.data.rows[0]);
  425. this.$set(this.recordList, this.itemIndex, res.data.rows[0]);
  426. this.itemIndex = "";
  427. });
  428. },
  429. goLive(item) {
  430. let uuid = new Date().valueOf() + "";
  431. // buyCourse 是否购买课程:1是 0否
  432. let encode = encodeURIComponent(
  433. config.WEBVIEW_URL +
  434. "pages/live/index?token=" +
  435. uni.getStorageSync("token") +
  436. "&userInfo=" +
  437. JSON.stringify(this.userInfo) +
  438. "&channelId=" +
  439. item.liveUrl +
  440. "&buyCourse=1" +
  441. "&ident=" +
  442. uuid
  443. );
  444. uni.navigateTo({
  445. url: `../../pages/webview/index?url=` + encode,
  446. });
  447. },
  448. async goExamCount(item, index) {
  449. if (item.mockActivity && item.mockActivity == 1) {
  450. if (!(item.activityStartTime < this.nowTime)) {
  451. return;
  452. }
  453. await this.$http({
  454. url: "/mock/apply/addMockTime",
  455. method: "post",
  456. data: {
  457. applyId: item.applyId,
  458. duration: item.duration,
  459. majorId: item.majorId,
  460. subjectId: item.subjectId,
  461. mockMajorSubjectId: item.mockMajorSubjectId,
  462. },
  463. }).then((res) => {
  464. if (res.data.code == 200) {
  465. const { examTime, startTime, endTime, eachExamId, mockActivity } =
  466. res.data.data;
  467. let o_item = {
  468. ...item,
  469. applySiteExamTime: examTime,
  470. applySiteStartTime: startTime,
  471. applySiteEndTime: endTime,
  472. eachExamId: eachExamId,
  473. mockActivity: mockActivity,
  474. };
  475. // item.applySiteExamTime = examTime // 当前时间的时间戳
  476. // item.applySiteStartTime = startTime
  477. // item.applySiteEndTime = endTime
  478. // item.eachExamId = eachExamId
  479. this.toJump(o_item, index);
  480. } else {
  481. this.$u.toast(res.data.msg);
  482. return;
  483. }
  484. });
  485. } else {
  486. this.toJump(item, index);
  487. }
  488. },
  489. toJump(item, index) {
  490. if (this.goTest(item)) {
  491. uni.showToast({
  492. icon: "none",
  493. title: "不在考试时间",
  494. });
  495. return;
  496. }
  497. this.itemIndex = index;
  498. uni.navigateTo({
  499. url:
  500. "../examCount/index?start=" +
  501. this.$method.TimeTotimestamp(
  502. this.$method.timestampToTime(item.applySiteExamTime) +
  503. " " +
  504. item.applySiteStartTime
  505. ) +
  506. "&limit=" +
  507. item.timeLimit +
  508. "&examId=" +
  509. item.examId +
  510. "&eachExamId=" +
  511. item.eachExamId +
  512. "&subscribeId=" +
  513. item.subscribeId +
  514. "&mockName=" +
  515. item.applyName +
  516. "&examEndTime=" +
  517. this.$method.TimeTotimestamp(
  518. this.$method.timestampToTime(item.applySiteExamTime) +
  519. " " +
  520. item.applySiteEndTime
  521. ) +
  522. "&mockActivity=" +
  523. item.mockActivity +
  524. "&goodsId=" +
  525. (item.goodsId || "") +
  526. "&orderGoodsId=" +
  527. (item.orderGoodsId || ""),
  528. });
  529. },
  530. sort() {},
  531. appoint(item) {
  532. this.appointModal = true;
  533. },
  534. tab(state) {
  535. if (this.param.mockStatus == state) {
  536. return;
  537. }
  538. this.recordList = [];
  539. this.param.endTime = "";
  540. this.param.startTime = "";
  541. this.param.applyName = "";
  542. this.param.pageNum = 1;
  543. this.param.mockStatus = state;
  544. this.mockSubscribeListSubscribe();
  545. },
  546. bindDateFromChange(e) {
  547. this.param.startTime = e.detail.value;
  548. this.param.pageNum = 1;
  549. this.param.applyName = "";
  550. this.recordList = [];
  551. this.mockApplyListApplyName();
  552. },
  553. bindDateToChange(e) {
  554. this.param.endTime = e.detail.value;
  555. this.param.pageNum = 1;
  556. this.param.applyName = "";
  557. this.recordList = [];
  558. this.mockApplyListApplyName();
  559. },
  560. bindTitleChange(e) {
  561. if (this.listApplyName.length) {
  562. let index = e.detail.value;
  563. this.param.applyName = this.listApplyName[index].applyName;
  564. } else {
  565. this.param.applyName = "";
  566. }
  567. this.param.pageNum = 1;
  568. this.recordList = [];
  569. this.mockSubscribeListSubscribe();
  570. },
  571. },
  572. };
  573. </script>
  574. <style>
  575. page {
  576. background: #eaeef1;
  577. }
  578. </style>
  579. <style lang="scss" scope>
  580. .animals {
  581. transition: all 0.3s;
  582. transform: rotate(180deg);
  583. }
  584. .tabs {
  585. position: fixed;
  586. left: 0;
  587. width: 100%;
  588. display: flex;
  589. z-index: 10;
  590. background: #ffffff;
  591. padding: 18rpx 0;
  592. border-bottom: 1px solid #eee;
  593. .tab {
  594. padding: 0 18rpx;
  595. flex: 1;
  596. background: #ffffff;
  597. font-size: 32rpx;
  598. color: #999999;
  599. text-align: center;
  600. position: relative;
  601. &:nth-of-type(2) {
  602. border-right: 1px solid #eeeeee;
  603. }
  604. &.active {
  605. color: #333333;
  606. &::before {
  607. content: "";
  608. position: absolute;
  609. width: 24px;
  610. height: 4px;
  611. background: #007aff;
  612. border-radius: 2px;
  613. left: 50%;
  614. margin-left: -12px;
  615. bottom: -18rpx;
  616. }
  617. }
  618. }
  619. .sort {
  620. width: 160rpx;
  621. text-align: center;
  622. font-size: 32rpx;
  623. font-weight: 500;
  624. color: #999999;
  625. }
  626. }
  627. .record {
  628. margin-top: 80rpx;
  629. padding: 16rpx 16rpx;
  630. .examList {
  631. .main {
  632. background: #ffffff;
  633. border-radius: 16rpx;
  634. margin: 20rpx 0;
  635. }
  636. .top {
  637. height: 80rpx;
  638. text-align: center;
  639. line-height: 80rpx;
  640. font-size: 30rpx;
  641. color: #333333;
  642. font-weight: bold;
  643. border-bottom: 1px solid #eeeeee;
  644. }
  645. .item {
  646. display: flex;
  647. justify-content: space-between;
  648. align-items: center;
  649. margin-left: 31rpx;
  650. height: 80rpx;
  651. padding-right: 24rpx;
  652. border-bottom: 1px solid #eeeeee;
  653. font-size: 24rpx;
  654. color: #666666;
  655. .right {
  656. font-size: 28rpx;
  657. }
  658. }
  659. .btn-wrap {
  660. padding: 24rpx 16rpx;
  661. border-bottom: 1px solid #eeeeee;
  662. .btn-line {
  663. display: flex;
  664. align-items: center;
  665. justify-content: center;
  666. flex-wrap: wrap;
  667. }
  668. .text {
  669. width: 100%;
  670. color: #f5222d;
  671. font-size: 24rpx;
  672. text-align: center;
  673. }
  674. .text-half {
  675. color: #666666;
  676. font-size: 24rpx;
  677. width: 320rpx;
  678. margin: 8rpx;
  679. }
  680. .btn {
  681. margin: 8rpx;
  682. width: 528rpx;
  683. height: 64rpx;
  684. background: #007aff;
  685. border-radius: 16rpx;
  686. text-align: center;
  687. line-height: 64rpx;
  688. color: #fff;
  689. &--half {
  690. width: 320rpx;
  691. }
  692. &.border {
  693. background: #fff;
  694. color: #007aff;
  695. border: 1px solid #007aff;
  696. }
  697. &.disabled {
  698. color: #d9d9d9;
  699. border-color: #d9d9d9;
  700. }
  701. &.test-disabled {
  702. color: #fff;
  703. background: #d9d9d9;
  704. }
  705. }
  706. }
  707. }
  708. }
  709. .modal {
  710. bottom: 0;
  711. z-index: 199999999;
  712. position: fixed;
  713. left: 0;
  714. width: 100%;
  715. .content {
  716. overflow: hidden;
  717. position: relative;
  718. z-index: 10;
  719. background: #fff;
  720. padding: 20rpx 12rpx 16rpx;
  721. .item {
  722. &__title {
  723. padding: 16rpx 0;
  724. font-size: 28rpx;
  725. color: #999999;
  726. }
  727. &__box {
  728. padding: 0 16rpx;
  729. display: flex;
  730. width: 718rpx;
  731. height: 80rpx;
  732. background: #ffffff;
  733. border: 1px solid #eeeeee;
  734. border-radius: 16rpx;
  735. align-items: center;
  736. .text {
  737. flex: 1;
  738. display: flex;
  739. align-items: center;
  740. }
  741. }
  742. }
  743. }
  744. .modal_wrap {
  745. position: absolute;
  746. left: 0;
  747. width: 100%;
  748. top: 0;
  749. height: 100%;
  750. background: rgba(0, 0, 0, 0.3);
  751. }
  752. }
  753. .activesty {
  754. background: #007aff !important;
  755. color: #fff !important;
  756. }
  757. .nodata {
  758. text-align: center;
  759. margin-top: 100rpx;
  760. font-size: 32rpx;
  761. color: #222;
  762. }
  763. </style>