reportSearch.vue 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656
  1. <template>
  2. <view class="searchTarget-container container">
  3. <view class="searchTarget-header">
  4. <input
  5. type="text"
  6. :placeholder="radioSelect == 1 ? '请输入报告标题/报告内容' : '请输入产业名/公司名'"
  7. placeholder-class="sea_ipt_placeholder"
  8. class="sea_ipt"
  9. v-model="searchTxt"
  10. focus="true"
  11. confirm-type="search"
  12. @confirm="searchHandle"
  13. />
  14. <icon type="search" size="15" class="sea_ico" />
  15. <view class="ipt-right">
  16. <icon type="clear" size="16" color="#E0E0E0" v-show="searchTxt" @click="clearIpt" />
  17. <text class="line">|</text>
  18. <text @click="searchHandle" style="color: #3385ff">搜索</text>
  19. </view>
  20. </view>
  21. <view class="radio-content">
  22. <van-radio-group :value="radioSelect" @change="onChangeRadio" direction="horizontal">
  23. <van-radio icon-size="16" name="1">搜报告</van-radio>
  24. <van-radio icon-size="16" name="2">搜资源包</van-radio>
  25. </van-radio-group>
  26. </view>
  27. <view class="search-cont">
  28. <template v-if="!isResult">
  29. <view class="search-cont-top">
  30. <view class="cont-tit">
  31. <text>热搜关键词:</text>
  32. </view>
  33. <view class="targetList">
  34. <view class="target-item" v-for="(item, index) in hotKeyWord" :key="index" @click="chooseTarget(item.KeyWord)"># {{ item.KeyWord }}</view>
  35. </view>
  36. </view>
  37. <view class="search-cont-top">
  38. <view class="cont-tit">
  39. <text>推荐关键词:</text>
  40. </view>
  41. <view class="targetList">
  42. <view class="target-item" v-for="(item, index) in keywordList" :key="index" @click="chooseTarget(item)"># {{ item }}</view>
  43. </view>
  44. </view>
  45. <view class="search-cont-top" v-if="historySearchList.length">
  46. <view class="cont-tit">
  47. <text>搜索历史:</text>
  48. <image src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/czbk/empty_ico.png" class="empty_ico" @click="clearHistory"></image>
  49. </view>
  50. <view class="targetList">
  51. <block v-for="(item, index) in historySearchList" :key="index">
  52. <view v-if="index < 8" class="target-item" @click="chooseTarget(item)"># {{ item }}</view>
  53. </block>
  54. </view>
  55. </view>
  56. </template>
  57. <template v-else>
  58. <block v-if="haveResult">
  59. <view class="content-list" v-if="radioSelect == '2'">
  60. <block v-if="ListHz.length">
  61. <view class="resource">
  62. <image src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/czbk/zybico.jpg"></image>
  63. <text>弘则资源包</text>
  64. </view>
  65. <text style="height: 1rpx; background: #ececec"></text>
  66. <view class="list-ui" v-for="item in ListHz" :key="item.IndustrialManagementId" @click="themeDetails(item)">
  67. <view class="item-title">
  68. <text>
  69. {{ item.IndustryName }}
  70. </text>
  71. <view class="publish">
  72. {{ item.PublishDate }}更新
  73. <u-icon name="arrow-right" color="#BDBDBD" size="34"></u-icon>
  74. </view>
  75. </view>
  76. <view class="read-more" v-if="item.IndustrialSubjectList">
  77. <text class="text-box text_oneLine" v-for="val in item.IndustrialSubjectList" :key="val.IndustrialSubjectId">
  78. {{ val.SubjectName }}
  79. </text>
  80. </view>
  81. </view>
  82. </block>
  83. <block v-if="ListYx.length">
  84. <view class="resource">
  85. <image src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/czbk/zybico.jpg"></image>
  86. <text>买方研选主题</text>
  87. </view>
  88. <text style="height: 1rpx; background: #ececec"></text>
  89. <view class="list-ui" v-for="item in ListYx" :key="item.IndustrialManagementId" @click="themeDetails(item)">
  90. <view class="item-title">
  91. <text>
  92. {{ item.IndustryName }}
  93. </text>
  94. <view class="publish">
  95. {{ item.PublishDate }}更新
  96. <u-icon name="arrow-right" color="#BDBDBD" size="34"></u-icon>
  97. </view>
  98. </view>
  99. <view class="read-more" @click="themeDetails(item)" v-if="item.IndustrialSubjectList">
  100. <text class="text-box text_oneLine" v-for="val in item.IndustrialSubjectList" :key="val.IndustrialSubjectId">
  101. {{ val.SubjectName }}
  102. </text>
  103. </view>
  104. </view>
  105. </block>
  106. </view>
  107. <view class="content-report" v-if="radioSelect == '1'">
  108. <block v-if="ListYx.length">
  109. <view class="resource">
  110. <image src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/czbk/report_Yx.png"></image>
  111. <text>买方研选报告</text>
  112. </view>
  113. <text style="height: 1rpx; background: #ececec"></text>
  114. <view class="content-item" v-for="item in ListYx" :key="item.ArticleId">
  115. <view class="item-user">
  116. <image src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/czbk/user_report.png"></image>
  117. <text> {{ item.NickName }}</text>
  118. </view>
  119. <view class="item-title">
  120. <text style="display: inline" @click="goDetailReport(item)">
  121. {{ item.Title }}
  122. </text>
  123. <text class="item-industry" v-if="item.IndustryName" @click="themeDetails(item)">&nbsp;&nbsp;&nbsp;#{{ item.IndustryName }}</text>
  124. </view>
  125. <view class="item-more">
  126. <text>{{ item.PublishDate }}</text>
  127. <view class="pv-ollect">
  128. <view>
  129. <image class="pv" src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/czbk/examine_icon.png"></image>
  130. {{ item.Pv }}
  131. </view>
  132. <view @click="collectClick(item)">
  133. <image v-if="item.IsCollect" src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/czbk/collect_act.png"></image>
  134. <image v-else src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/czbk/collect_ico.png"></image>
  135. {{ item.CollectNum }}人收藏
  136. </view>
  137. </view>
  138. </view>
  139. </view>
  140. </block>
  141. <block v-if="ListHz.length">
  142. <text style="height: 10rpx; background: #ececec"></text>
  143. <view class="resource">
  144. <image src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/czbk/report_Hz.png"></image>
  145. <text>弘则报告</text>
  146. </view>
  147. <text style="height: 1rpx; background: #ececec"></text>
  148. <view class="content-item" v-for="item in ListHz" :key="item.ArticleId">
  149. <view class="item-title">
  150. <text style="display: inline" @click="goDetailReport(item)">
  151. {{ item.Title }}
  152. </text>
  153. <text class="item-industry" @click="themeDetails(item)" v-if="item.IndustryName">&nbsp;&nbsp;&nbsp;#{{ item.IndustryName }}</text>
  154. </view>
  155. <view class="item-more">
  156. <text>{{ item.PublishDate }}</text>
  157. </view>
  158. </view>
  159. </block>
  160. </view>
  161. </block>
  162. <view class="nodata" v-else>
  163. <image src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/czbk/act_search.png" mode="" class="nodata_img"></image>
  164. <text>未找到您想搜索的内容</text>
  165. <text> 正式客户可联系销售免费发起新调研主题 </text>
  166. </view>
  167. </template>
  168. </view>
  169. <u-modal
  170. v-model="goFollowShow"
  171. :content-style="{ fontSize: '32rpx' }"
  172. @confirm="goFollowShowBtn"
  173. :show-cancel-button="isCancelBtn"
  174. :confirm-text="confirmText"
  175. @cancel="isCancelBtn = false"
  176. :show-title="false"
  177. :cancel-style="{ borderRight: '1rpx solid #EBEBEB' }"
  178. :confirm-style="{ fontWeight: '700' }"
  179. >
  180. <view class="slot-content">
  181. <rich-text :nodes="accounts"></rich-text>
  182. </view>
  183. </u-modal>
  184. <freeCharge class="free-charge" :isShowFreeBtn="isShowFree" />
  185. </view>
  186. </template>
  187. <script>
  188. import { Search, Reports, Research, Report } from "@/config/api.js";
  189. import { Debounce, Throttle } from "@/config/util.js";
  190. import freeCharge from "@/components/freeCharge";
  191. let app = getApp({ allowDefault: true });
  192. export default {
  193. data() {
  194. return {
  195. searchTxt: "", //搜索关键字
  196. isResult: false, //显示搜索结果
  197. haveResult: true, //是否有搜索数据
  198. // 历史搜索列表
  199. historySearchList: [],
  200. // 关键字列表
  201. keywordList: [],
  202. targetList: [], //所有指标列表
  203. // 搜索结果列表
  204. resultList: [],
  205. indList: [],
  206. hotKeyWord: [],
  207. radioSelect: "",
  208. ListHz: [],
  209. ListYx: [],
  210. goFollowShow: false,
  211. confirmText: "知道了",
  212. isCancelBtn: false,
  213. accounts: "",
  214. };
  215. },
  216. watch: {
  217. searchTxt(newVal) {
  218. if (newVal.length <= 0) {
  219. this.isResult = false;
  220. }
  221. },
  222. },
  223. components: {
  224. freeCharge,
  225. },
  226. methods: {
  227. async researchHotKeyWord() {
  228. const res = await Research.researchHotKeyWord();
  229. if (res.Ret === 200) {
  230. this.hotKeyWord = res.Data.List || [];
  231. }
  232. },
  233. onChangeRadio(value) {
  234. this.radioSelect = value.detail;
  235. let srt = this.searchTxt.replace(/^\s+|\s+$/g, "");
  236. if (!srt) return this.$util.toast(this.radioSelect == 1 ? "请输入报告标题/报告内容" : "请输入产业名/公司名");
  237. this.dataInit();
  238. this.getDataList();
  239. },
  240. /* 获取关键词 */
  241. getKeyWord() {
  242. Search.getKeys().then((res) => {
  243. if (res.Ret === 200) {
  244. this.keywordList = res.Data.Item.ConfigValue ? res.Data.Item.ConfigValue.split(",") : [];
  245. }
  246. });
  247. },
  248. // 选择历史搜索
  249. chooseTarget(item) {
  250. this.searchTxt = item;
  251. this.SecName = item;
  252. this.resultList = [];
  253. this.indList = [];
  254. if (!this.historySearchList.includes(this.searchTxt)) {
  255. this.historySearchList.unshift(this.searchTxt);
  256. this.$db.set("historySearchListReport", JSON.stringify(this.historySearchList));
  257. }
  258. this.getDataList();
  259. },
  260. // 键盘输入过程中
  261. searchDoing() {
  262. this.isResult = false;
  263. //全部指标列表
  264. let arr = JSON.parse(JSON.stringify(this.targetList));
  265. let filterArr = [];
  266. // // 过滤出符合搜索条件的值
  267. arr.forEach((item, index) => {
  268. if (item.SecName.includes(this.searchTxt)) {
  269. item.SecName = this.join(item.SecName, this.searchTxt);
  270. filterArr.unshift(item);
  271. }
  272. });
  273. this.keywordList = filterArr;
  274. },
  275. // 拼接
  276. join(str, key) {
  277. return str.replace(new RegExp(`${key}`, "g"), `%%${key}%%`).split("%%");
  278. },
  279. // 搜索数据
  280. searchHandle: Debounce(function () {
  281. if (this.searchTxt) {
  282. //添加搜索记录
  283. if (!this.historySearchList.includes(this.searchTxt)) {
  284. this.historySearchList.unshift(this.searchTxt);
  285. this.$db.set("historySearchListReport", JSON.stringify(this.historySearchList));
  286. }
  287. this.resultList = [];
  288. this.indList = [];
  289. this.getDataList();
  290. } else {
  291. this.$util.toast(this.radioSelect == 1 ? "请输入报告标题/报告内容" : "请输入产业名/公司名");
  292. }
  293. }),
  294. // 查找数据
  295. async getDataList() {
  296. this.isResult = true;
  297. const res =
  298. this.radioSelect == 2
  299. ? await Reports.getIndustryAndArticle({
  300. KeyWord: this.searchTxt.replace(/^\s+|\s+$/g, ""),
  301. })
  302. : await Reports.getReportSearchReport({
  303. KeyWord: this.searchTxt.replace(/^\s+|\s+$/g, ""),
  304. });
  305. if (res.Ret === 200) {
  306. this.ListHz = res.Data.ListHz || [];
  307. this.ListYx = res.Data.ListYx || [];
  308. this.haveResult = this.ListHz.length > 0 || this.ListYx.length > 0;
  309. }
  310. },
  311. // 点击数据列表修改数据
  312. itemClick(item) {
  313. let data = encodeURIComponent(JSON.stringify(item));
  314. uni.navigateTo({
  315. url: "/pages/recordData/recordData?data=" + data,
  316. });
  317. },
  318. /* 表单清空 */
  319. clearIpt() {
  320. this.searchTxt = "";
  321. this.isTabAct = false;
  322. },
  323. /* 历史搜索清空 */
  324. clearHistory() {
  325. this.historySearchList = [];
  326. this.$db.del("historySearchListReport");
  327. },
  328. //去往文章详情页面
  329. goDetailReport(item) {
  330. this.$store.dispatch("checkHandle", "/pageMy/reportDetail/reportDetail?id=" + item.ArticleId);
  331. },
  332. /* 进入详情 校验是否有该品种权限 */
  333. goDetail(item) {
  334. uni.navigateTo({
  335. url: "/reportPages/IndustryReport/IndustryReport?id=" + item.IndustrialManagementId,
  336. });
  337. },
  338. goDetailIndust(id) {
  339. this.$store.dispatch("checkHandle", "/pageMy/reportDetail/reportDetail?id=" + id);
  340. },
  341. //去往主题详情
  342. themeDetails(item) {
  343. if (item.Source === 1) {
  344. //非严选
  345. this.$store.dispatch("checkHandle", "/reportPages/IndustryReport/IndustryReport?id=" + item.IndustrialManagementId);
  346. } else {
  347. //严选
  348. this.$store.dispatch("checkHandle", "/reportPages/researchTheme/researchTheme?id=" + item.IndustrialManagementId);
  349. }
  350. },
  351. //收藏
  352. async collectClick(item) {
  353. const res = await Report.collectRpt({ ArticleId: item.ArticleId });
  354. if (res.Ret === 200) {
  355. item.IsCollect = !item.IsCollect;
  356. item.IsCollect
  357. ? (item.CollectNum += 1) &&
  358. uni.showToast({
  359. title: "收藏成功",
  360. icon: "none",
  361. duration: 2000,
  362. })
  363. : (item.CollectNum -= 1);
  364. !item.IsCollect &&
  365. uni.showToast({
  366. title: "已取消收藏",
  367. icon: "none",
  368. duration: 2000,
  369. });
  370. }
  371. },
  372. //获取数据的初始值
  373. dataInit() {
  374. this.ListHz = [];
  375. this.ListYx = [];
  376. uni.pageScrollTo({
  377. scrollTop: 0,
  378. duration: 0,
  379. });
  380. },
  381. //点击了去关注
  382. goFollowShowBtn() {
  383. if (this.confirmText == "去关注") {
  384. uni.navigateTo({
  385. url: "/activityPages/accountsOfficial/accountsOfficial",
  386. });
  387. }
  388. this.goFollowShow = false;
  389. },
  390. },
  391. onLoad(options) {
  392. this.radioSelect = options.id == "研选" ? "1" : "2";
  393. if (options.text) {
  394. this.searchTxt = options.text;
  395. this.getDataList();
  396. }
  397. // 获取历史搜索记录
  398. if (this.$db.get("historySearchListReport")) {
  399. let historyList = JSON.parse(this.$db.get("historySearchListReport"));
  400. this.historySearchList = historyList;
  401. }
  402. },
  403. onShow() {
  404. this.$store.dispatch("statistics", { PageType: "ReportSearch" });
  405. this.getKeyWord();
  406. this.researchHotKeyWord();
  407. },
  408. /**
  409. * 用户点击分享
  410. */
  411. onShareAppMessage: function (res) {
  412. return {
  413. title: this.isHorzMobile ? "好友向您推荐此内容,上传名片享查研观向免费月卡!" : "报告",
  414. path: "/reportPages/reportSearch/reportSearch?text=" + this.searchTxt,
  415. success: (res) => {},
  416. fail: (err) => {},
  417. };
  418. },
  419. };
  420. </script>
  421. <style lang="scss">
  422. .searchTarget-container {
  423. background-color: #f7f7f7;
  424. padding-bottom: 30rpx;
  425. .searchTarget-header {
  426. padding: 0 34rpx;
  427. width: 100%;
  428. background-color: #fff;
  429. position: fixed;
  430. top: 0;
  431. left: 0;
  432. z-index: 99;
  433. padding: 30rpx 0;
  434. display: flex;
  435. justify-content: center;
  436. align-items: center;
  437. .sea_ipt_placeholder {
  438. color: #8d8d8d;
  439. }
  440. .sea_ipt {
  441. width: 682rpx;
  442. height: 70rpx;
  443. line-height: 70rpx;
  444. box-sizing: border-box;
  445. border: 1rpx solid #e5e5e5;
  446. background-color: rgba(245, 245, 245, 0.2);
  447. font-size: 26rpx;
  448. color: #4a4a4a;
  449. padding: 0 180rpx 0 78rpx;
  450. border-radius: 70rpx;
  451. }
  452. .sea_ico {
  453. width: 31rpx;
  454. height: 31rpx;
  455. position: absolute;
  456. left: 68rpx;
  457. top: 50%;
  458. transform: translateY(-50%);
  459. }
  460. .ipt-right {
  461. display: flex;
  462. align-items: center;
  463. position: absolute;
  464. right: 59rpx;
  465. top: 50%;
  466. transform: translateY(-50%);
  467. color: #3385ff;
  468. .line {
  469. margin: 0 21rpx;
  470. color: #e0e0e0;
  471. }
  472. }
  473. }
  474. .radio-content {
  475. width: 100%;
  476. padding-left: 58rpx;
  477. background-color: #fff;
  478. position: fixed;
  479. height: 70rpx;
  480. top: 128rpx;
  481. left: 0;
  482. z-index: 99;
  483. display: flex;
  484. }
  485. .resource {
  486. padding: 0 30rpx;
  487. background-color: #fff;
  488. margin-top: 4rpx;
  489. height: 91rpx;
  490. width: 100%;
  491. display: flex;
  492. align-items: center;
  493. justify-content: center;
  494. color: #333333;
  495. font-size: 30rpx;
  496. image {
  497. width: 34rpx;
  498. height: 36rpx;
  499. margin-right: 10rpx;
  500. }
  501. }
  502. .content-list {
  503. .list-ui {
  504. background-color: #fff;
  505. margin-top: 2rpx;
  506. margin-bottom: 10rpx;
  507. }
  508. .item-title {
  509. display: flex;
  510. align-items: center;
  511. justify-content: space-between;
  512. height: 100rpx;
  513. border-bottom: 1px solid #f6f6f6;
  514. padding: 0 30rpx;
  515. background-color: #fff;
  516. .publish {
  517. display: flex;
  518. align-items: center;
  519. color: #999999;
  520. font-style: 26rpx;
  521. }
  522. }
  523. .read-more {
  524. margin-top: 20rpx;
  525. display: flex;
  526. flex-wrap: wrap;
  527. margin-left: 30rpx;
  528. .text-box {
  529. margin-bottom: 27rpx;
  530. margin-right: 15rpx;
  531. padding: 0;
  532. font-size: 24rpx;
  533. color: #408fff;
  534. width: 216rpx;
  535. height: 46rpx;
  536. line-height: 46rpx;
  537. text-align: center !important;
  538. background: url(~@/static/img/report_bg.png) no-repeat;
  539. background-size: 100% 100%;
  540. text-indent: 0em;
  541. }
  542. }
  543. }
  544. .search-cont {
  545. padding-top: 180rpx;
  546. .search-cont-top {
  547. padding: 0 34rpx 0;
  548. margin-bottom: 10rpx;
  549. padding-top: 20rpx;
  550. &:last-child {
  551. margin-bottom: 0;
  552. }
  553. .cont-tit {
  554. font-size: 32rpx;
  555. margin-bottom: 20rpx;
  556. font-weight: 500;
  557. display: flex;
  558. justify-content: space-between;
  559. .empty_ico {
  560. width: 32rpx;
  561. height: 33rpx;
  562. }
  563. }
  564. .targetList {
  565. display: flex;
  566. flex-wrap: wrap;
  567. font-size: 28rpx;
  568. .target-item {
  569. width: 50%;
  570. margin-bottom: 20rpx;
  571. }
  572. }
  573. }
  574. .result-cont {
  575. padding: 0 34rpx 0;
  576. padding-left: 21rpx;
  577. .result-list {
  578. display: flex;
  579. align-items: center;
  580. color: #333;
  581. padding-bottom: 30rpx;
  582. border-bottom: 1rpx solid #ebedf0;
  583. margin-bottom: 30rpx;
  584. .result_ico {
  585. width: 28rpx;
  586. height: 28rpx;
  587. margin-right: 20rpx;
  588. }
  589. text {
  590. display: inline;
  591. }
  592. .highlight {
  593. color: #3385ff;
  594. }
  595. }
  596. }
  597. .result-data {
  598. // margin-top: 80rpx;
  599. min-height: calc(100vh - 130rpx);
  600. padding: 20rpx 34rpx 40rpx;
  601. display: flex;
  602. background-color: #f7f7f7;
  603. }
  604. }
  605. .content-report {
  606. .content-item {
  607. background-color: #fff;
  608. padding: 35rpx 20rpx 0;
  609. .item-title {
  610. font-weight: 500;
  611. .item-industry {
  612. margin-left: 10rpx;
  613. color: #3385ff;
  614. display: inline-block;
  615. }
  616. }
  617. .item-user {
  618. display: flex;
  619. align-items: center;
  620. color: #999999;
  621. font-size: 28rpx;
  622. margin-bottom: 20rpx;
  623. image {
  624. width: 23rpx;
  625. height: 26rpx;
  626. margin-right: 20rpx;
  627. }
  628. }
  629. .item-more {
  630. display: flex;
  631. justify-content: space-between;
  632. color: #cecece;
  633. margin: 20rpx 0 0;
  634. padding-bottom: 30rpx;
  635. border-bottom: 1rpx solid #ececec;
  636. .pv-ollect {
  637. display: flex;
  638. align-items: center;
  639. width: 40%;
  640. justify-content: space-between;
  641. image {
  642. width: 22rpx;
  643. height: 21rpx;
  644. margin-right: 10rpx;
  645. }
  646. .pv {
  647. height: 16rpx;
  648. }
  649. }
  650. }
  651. }
  652. }
  653. }
  654. </style>