index.vue 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773
  1. <template>
  2. <div id="volumeManagementAdd">
  3. <div class="boxWidth">
  4. <el-form
  5. label-position="right"
  6. label-width="120px"
  7. :model="listData"
  8. :rules="rules"
  9. ref="listData"
  10. >
  11. <el-form-item label="适用业务层级" :required="true">
  12. <el-select
  13. v-model="eduType"
  14. placeholder="请选择教育类型"
  15. @change="changeEduType"
  16. >
  17. <el-option
  18. v-for="(item, index) in eduTypeOptions"
  19. :key="index"
  20. :label="item.educationName"
  21. :value="item.id"
  22. >
  23. </el-option>
  24. </el-select>
  25. <el-select
  26. v-model="courType"
  27. placeholder="请选择业务层次"
  28. @change="changecourseType"
  29. >
  30. <el-option
  31. v-for="(item, index) in newCourTypeOptions"
  32. :key="index"
  33. :label="item.projectName + '-' + item.businessName"
  34. :value="item.id"
  35. >
  36. </el-option>
  37. </el-select>
  38. <el-popover
  39. ref="popovers"
  40. placement="bottom"
  41. width="200"
  42. trigger="click"
  43. @show="showHandle"
  44. @hide="hideHandle"
  45. :disabled="courType ? false : true"
  46. >
  47. <el-radio-group v-model="sujectApis">
  48. <el-radio
  49. v-for="(item, index) in newSujectOption"
  50. :label="item.newId"
  51. :key="index"
  52. >{{ item.subjectName }}</el-radio
  53. >
  54. </el-radio-group>
  55. <div style="display: block; text-align: center; margin-top: 10px">
  56. <el-button size="mini" type="primary" @click="submitSujectArray"
  57. >确定</el-button
  58. >
  59. </div>
  60. <el-button slot="reference" style="margin-left: 12px" @click="getMessage"
  61. >请选择科目</el-button
  62. >
  63. </el-popover>
  64. </el-form-item>
  65. <el-form-item label="">
  66. <!-- <span v-if="Object.keys(newSujectApis).length == 0"
  67. >未选项目类型</span
  68. > -->
  69. <div v-if="Object.keys(newSujectApis).length !== 0" style="display: flex">
  70. <div class="listBoxStys">
  71. {{
  72. newSujectApis.educationName +
  73. " - " +
  74. newSujectApis.projectName +
  75. " - " +
  76. newSujectApis.businessName +
  77. " - " +
  78. newSujectApis.subjectName
  79. }}
  80. <i class="el-icon-error closeIcons" @click="closeType"></i>
  81. </div>
  82. </div>
  83. </el-form-item>
  84. <el-form-item label="标题前缀" prop="prefixName">
  85. <el-input v-model="listData.prefixName"></el-input>
  86. </el-form-item>
  87. <el-form-item label="模块卷标题" prop="moduleName">
  88. <el-input v-model="listData.moduleName"></el-input>
  89. </el-form-item>
  90. <el-form-item label="是否发布" prop="publishStatus">
  91. <el-radio-group v-model="listData.publishStatus">
  92. <el-radio :label="1">是</el-radio>
  93. <el-radio :label="0">否</el-radio>
  94. </el-radio-group>
  95. </el-form-item>
  96. <el-form-item label="管理章卷">
  97. <div class="dis_plays">
  98. <div>
  99. <el-button size="small" @click="openBoxs">添加章卷</el-button>
  100. </div>
  101. <div style="color: #f56c6c">
  102. <span style="margin-right: 10px"
  103. >章卷总数:{{ tableData.length }}</span
  104. >
  105. <!-- <span>总时长:{{ minTimeAll }}分钟</span> -->
  106. </div>
  107. </div>
  108. <el-table
  109. :data="tableData"
  110. border
  111. :header-cell-style="{
  112. 'background-color': '#eee',
  113. padding: '8px',
  114. color: '#333',
  115. }"
  116. :default-sort="{ prop: 'sort', order: 'ascending' }"
  117. >
  118. <template v-for="(item, index) in tableSet">
  119. <el-table-column
  120. :width="item.width"
  121. :key="index"
  122. :label="item.label"
  123. align="center"
  124. :show-overflow-tooltip="true"
  125. header-align="center"
  126. :sortable="item.prop === 'sort'"
  127. sort-by="sort"
  128. :prop="item.prop"
  129. >
  130. <template slot-scope="scope">
  131. <span v-if="item.scope === 'types'">{{
  132. scope.row[item.prop] === 1
  133. ? "录播"
  134. : scope.row[item.prop] === 2
  135. ? "直播"
  136. : scope.row[item.prop] === 3
  137. ? "回放"
  138. : "未知"
  139. }}</span>
  140. <span v-else-if="item.scope === 'Status'">
  141. {{
  142. scope.row[item.prop] === 1
  143. ? "发布"
  144. : scope.row[item.prop] === 0
  145. ? "未发布"
  146. : "未知"
  147. }}
  148. </span>
  149. <div v-else-if="item.scope === 'inputs'">
  150. <el-input-number
  151. style="width: 50px"
  152. size="small"
  153. :controls="false"
  154. v-model="scope.row[item.prop]"
  155. controls-position="right"
  156. :min="0"
  157. ></el-input-number>
  158. </div>
  159. <span v-else>{{ scope.row[item.prop] }}</span></template
  160. >
  161. </el-table-column></template
  162. >
  163. <el-table-column
  164. label="操作"
  165. align="center"
  166. fixed="right"
  167. width="100px"
  168. >
  169. <template slot-scope="scope">
  170. <el-button type="text" @click="delList(scope.row, scope.$index)"
  171. >删除</el-button
  172. >
  173. </template>
  174. </el-table-column>
  175. </el-table>
  176. </el-form-item>
  177. <el-form-item>
  178. <el-button @click="backPage">取消</el-button>
  179. <el-button type="primary" @click="submitIns('listData')"
  180. >确定</el-button
  181. >
  182. </el-form-item>
  183. </el-form>
  184. </div>
  185. <el-dialog
  186. :visible.sync="dialogVisible"
  187. width="800px"
  188. :show-close="false"
  189. :close-on-click-modal="false"
  190. >
  191. <div slot="title" class="hearders">
  192. <div class="leftTitle">添加章卷</div>
  193. <div class="rightBoxs">
  194. <img
  195. src="@/assets/images/Close@2x.png"
  196. alt=""
  197. @click="dialogVisible = false"
  198. />
  199. </div>
  200. </div>
  201. <search-box-new
  202. ref="searchBox"
  203. :formData="formData"
  204. :formList="formList"
  205. @search="getInfos(1)"
  206. @init="init"
  207. />
  208. <el-table
  209. ref="multipleTable"
  210. :data="boxtableData"
  211. border
  212. @select-all="selectAll"
  213. @select="select"
  214. :row-key="getRowKeys"
  215. :header-cell-style="{
  216. 'background-color': '#eee',
  217. padding: '8px',
  218. color: '#333',
  219. }"
  220. >
  221. <el-table-column
  222. align="center"
  223. type="selection"
  224. width="55"
  225. header-align="center"
  226. :selectable="checkboxT"
  227. :reserve-selection="true"
  228. >
  229. </el-table-column>
  230. <template v-for="(item, index) in tableSet">
  231. <el-table-column
  232. v-if="item.scope !== 'inputs'"
  233. :width="item.width"
  234. :key="index"
  235. :label="item.label"
  236. align="center"
  237. :show-overflow-tooltip="true"
  238. header-align="center"
  239. >
  240. <template slot-scope="scope">
  241. <span v-if="item.scope === 'types'">{{
  242. scope.row[item.prop] === 1
  243. ? "录播"
  244. : scope.row[item.prop] === 2
  245. ? "直播"
  246. : scope.row[item.prop] === 3
  247. ? "回放"
  248. : "未知"
  249. }}</span>
  250. <span v-else-if="item.scope === 'Status'">
  251. {{
  252. scope.row[item.prop] === 1
  253. ? "发布"
  254. : scope.row[item.prop] === 0
  255. ? "未发布"
  256. : "未知"
  257. }}
  258. </span>
  259. <span v-else>{{ scope.row[item.prop] }}</span></template
  260. >
  261. </el-table-column></template
  262. >
  263. </el-table>
  264. <pagination
  265. :total="total"
  266. :pageSize="formData.pageSize"
  267. :currentPage="formData.pageNum"
  268. @handleSizeChange="handleSizeChange"
  269. @handleCurrentChange="handleCurrentChange"
  270. />
  271. <span slot="footer" class="dialog-footer">
  272. <el-button @click="dialogVisible = false">取 消</el-button>
  273. <el-button
  274. type="primary"
  275. :disabled="activeLists.length === 0"
  276. @click="submitForm"
  277. >确 定</el-button
  278. >
  279. </span>
  280. </el-dialog>
  281. </div>
  282. </template>
  283. <script>
  284. import searchBoxNew from "@/components/searchBoxNew";
  285. import pagination from "@/components/pagination";
  286. import tableList from "@/components/tableList";
  287. export default {
  288. components: {searchBoxNew,tableList, pagination },
  289. name:"volumeManagementAdd",
  290. data() {
  291. return {
  292. listData: {
  293. publishStatus: 1,
  294. }, // 弹窗数据
  295. eduTypeOptions: [], //教育类型数据
  296. projectTypeOptions: [], //项目类型数据
  297. courTypeOptions: [], //业务层次数据
  298. newCourTypeOptions: [], //当前业务层次数据
  299. sujectOption: [], //科目数据
  300. newSujectOption: [], //当前科目数据数据
  301. eduType: "", //当前选中教育类型
  302. courType: "", //当前选中业务层次
  303. newSujectApis: {},
  304. sujectApis: "", //当前存在的科目 例如'19-2'
  305. //表单验证
  306. rules: {
  307. moduleName: [
  308. { required: true, message: "请输入模块卷标题", trigger: "blur" },
  309. ],
  310. publishStatus: [
  311. { required: true, message: "请选择是否发布", trigger: "change" },
  312. ],
  313. },
  314. numberAll: 0, //试卷总数
  315. minTimeAll: 0, //总时长
  316. tableSet: [
  317. { label: "排序", prop: "sort", scope: "inputs", width: "100" },
  318. { label: "章卷编码", prop: "code" },
  319. { label: "标题前缀", prop: "prefixName", width: "120" },
  320. { label: "章卷标题", prop: "name" },
  321. {
  322. label: "发布状态",
  323. prop: "publishStatus",
  324. scope: "Status",
  325. width: "120",
  326. },
  327. ],
  328. tableData: [],
  329. dialogVisible: false,
  330. boxtableData: [],
  331. total: 0, //一共多少条
  332. formList: [
  333. {
  334. prop: "key",
  335. placeholder: "请输入章卷标题/章卷编码/标题前缀",
  336. },
  337. ],
  338. formData: {
  339. publishStatus:1,
  340. status: 1,
  341. pageSize: 10,
  342. pageNum: 1,
  343. },
  344. disCheckList: [], //已选转禁用复选列表
  345. activeLists: [],
  346. };
  347. },
  348. watch:{
  349. "newSujectApis"(){
  350. this.tableData = []
  351. },
  352. },
  353. mounted() {
  354. this.getDict();
  355. },
  356. methods: {
  357. openBoxs() {
  358. if (!this.newSujectApis.subjectId) {
  359. this.$message.warning("请先选择科目");
  360. return;
  361. }
  362. var self = this;
  363. var data = JSON.parse(JSON.stringify(this.formData));
  364. data.businessId = this.newSujectApis.businessId
  365. data.subjectId = this.newSujectApis.subjectId
  366. this.$api
  367. .inquirebankchapterList(data)
  368. .then((res) => {
  369. var aList = [];
  370. this.tableData.map((item) => {
  371. aList.push(item.chapterExamId);
  372. });
  373. this.disCheckList = aList;
  374. this.boxtableData = res.rows;
  375. this.total = res.total;
  376. this.dialogVisible = true;
  377. this.$nextTick(function () {
  378. self.$refs.multipleTable.clearSelection();
  379. });
  380. });
  381. },
  382. getInfos(int) {
  383. if (int === 1) {
  384. this.formData.pageNum = 1;
  385. }
  386. if (int === 2) {
  387. this.formData = {
  388. status: 1,
  389. pageSize: 10,
  390. pageNum: 1,
  391. publishStatus:1,
  392. };
  393. }
  394. var data = JSON.parse(JSON.stringify(this.formData));
  395. data.businessId = this.newSujectApis.businessId
  396. data.subjectId = this.newSujectApis.subjectId
  397. this.$api
  398. .inquirebankchapterList(data)
  399. .then((res) => {
  400. this.boxtableData = res.rows;
  401. this.total = res.total;
  402. });
  403. },
  404. init() {
  405. this.getInfos(2);
  406. },
  407. changeTypes() {
  408. var self = this;
  409. if (!this.sujectApis) {
  410. self.newSujectApis = {};
  411. return;
  412. }
  413. this.courTypeOptions.map((items) => {
  414. if (items.id === this.sujectApis.split("-").map(Number)[0]) {
  415. var obj = {
  416. type: 4,
  417. educationTypeId: items.educationId,
  418. educationName: items.educationName,
  419. projectId: items.projectId,
  420. projectName: items.projectName,
  421. businessId: items.id,
  422. businessName: items.businessName,
  423. };
  424. self.sujectOption.map((i) => {
  425. if (
  426. i.id === self.sujectApis.split("-").map(Number)[1] &&
  427. i.courseArrays.indexOf(items.projectId) !== -1
  428. ) {
  429. obj.subjectName = i.subjectName;
  430. obj.subjectId = i.id;
  431. }
  432. });
  433. self.newSujectApis = obj;
  434. }
  435. });
  436. },
  437. getMessage() {
  438. if (!this.courType) {
  439. this.$message.warning("请先选择业务层级");
  440. }
  441. },
  442. submitSujectArray() {
  443. this.changeTypes();
  444. this.$refs.popovers.doClose();
  445. },
  446. showHandle() {
  447. this.sujectApis = "";
  448. this.newSujectOption.map((item) => {
  449. item.newId = this.courType + "-" + item.id;
  450. if (item.newId === this.sujectApis) {
  451. console.log("成功");
  452. }
  453. });
  454. this.sujectApis =
  455. this.newSujectApis.businessId + "-" + this.newSujectApis.subjectId;
  456. },
  457. hideHandle() {},
  458. getDict() {
  459. this.$api.inquireCourseEducationType({ status: 1 }).then((res) => {
  460. this.eduTypeOptions = res.rows;
  461. });
  462. this.$api.inquireCourseProjectType({ status: 1 }).then((res) => {
  463. this.projectTypeOptions = res.rows;
  464. });
  465. this.$api.inquirebusinessList({ status: 1 }).then((res) => {
  466. this.courTypeOptions = res.rows;
  467. this.newCourTypeOptions = res.rows;
  468. });
  469. this.$api.inquireCourseSubject({ status: 1 }).then((res) => {
  470. res.rows.map((item, index) => {
  471. var array = [];
  472. item.courseProjectTypes.map((items, indexs) => {
  473. array.push(items.id);
  474. });
  475. item.courseArrays = array;
  476. });
  477. this.sujectOption = res.rows;
  478. });
  479. },
  480. changeEduType() {
  481. if (!(this.courType === undefined || this.courType === "")) {
  482. this.courType = "";
  483. }
  484. var arrays = [];
  485. this.courTypeOptions.map((item) => {
  486. if (item.educationId === this.eduType) {
  487. arrays.push(item);
  488. }
  489. });
  490. this.newCourTypeOptions = arrays;
  491. },
  492. changecourseType() {
  493. this.newCourTypeOptions.map((item, index) => {
  494. if (item.id === this.courType) {
  495. this.eduType = item.educationId;
  496. var array = [];
  497. this.sujectOption.map((items, indexs) => {
  498. if (items.courseArrays.indexOf(item.projectId) !== -1) {
  499. array.push(items);
  500. }
  501. });
  502. this.newSujectOption = array;
  503. }
  504. });
  505. var arrays = [];
  506. this.courTypeOptions.map((item) => {
  507. if (item.educationId === this.eduType) {
  508. arrays.push(item);
  509. }
  510. });
  511. this.newCourTypeOptions = arrays;
  512. this.$refs.popovers.doClose();
  513. this.tableData = []
  514. },
  515. submitIns(formName) {
  516. this.$refs[formName].validate((valid) => {
  517. if (valid) {
  518. if (JSON.stringify(this.newSujectApis) === "{}") {
  519. this.$message.error("请选择适用业务层级");
  520. return;
  521. }
  522. for (let i = 0; i < this.tableData.length; i++) {
  523. if (!this.tableData[i].sort && this.tableData[i].sort !== 0) {
  524. this.$message.warning(`管理章卷第${i + 1}条请输入排序`);
  525. return;
  526. }
  527. }
  528. let arr = this.tableData.map((items) => {
  529. return items.sort;
  530. });
  531. if (new Set(arr).size != arr.length) {
  532. this.$message.warning("排序不允许有重复值");
  533. return
  534. }
  535. this.rulesTableSumbit();
  536. } else {
  537. return false;
  538. }
  539. });
  540. },
  541. async rulesTableSumbit() {
  542. var chapterList = [];
  543. this.tableData.map((item) => {
  544. chapterList.push({
  545. chapterExamId: item.chapterExamId,
  546. sort: Number(item.sort),
  547. });
  548. });
  549. var data1 = {
  550. // examId: this.listData.examId,
  551. moduleName: this.listData.moduleName,
  552. chapterList: chapterList,
  553. publishStatus: this.listData.publishStatus,
  554. prefixName: this.listData.prefixName,
  555. businessList: [this.newSujectApis],
  556. status: 1,
  557. };
  558. this.$api.addBankModule(data1).then((res) => {
  559. this.$message.success("新增成功");
  560. setTimeout(() => {
  561. this.$router.go(-1);
  562. }, 500);
  563. });
  564. },
  565. backPage() {
  566. this.$router.go(-1);
  567. },
  568. closeType() {
  569. this.sujectApis = "";
  570. this.changeTypes();
  571. },
  572. handleSizeChange(v) {
  573. this.formData.pageSize = v;
  574. this.formData.pageNum = 1;
  575. this.getInfos();
  576. },
  577. handleCurrentChange(v) {
  578. this.formData.pageNum = v;
  579. this.getInfos();
  580. },
  581. selectAll(value) {
  582. this.activeLists = value;
  583. },
  584. select(value) {
  585. this.activeLists = value;
  586. },
  587. checkboxT(row, index) {
  588. if (this.disCheckList.indexOf(row.chapterExamId) !== -1) {
  589. return false;
  590. } else {
  591. return true;
  592. }
  593. },
  594. getRowKeys(row) {
  595. return row.chapterExamId;
  596. },
  597. submitForm() {
  598. if (this.activeLists.length === 0) {
  599. this.dialogVisible = false;
  600. return;
  601. }
  602. this.activeLists.map((item) => {
  603. item.sort = 0;
  604. });
  605. this.tableData = this.tableData.concat(this.activeLists);
  606. this.dialogVisible = false;
  607. this.$message.success("添加成功");
  608. this.activeLists = [];
  609. },
  610. delList(item, index) {
  611. this.tableData.splice(index, 1);
  612. this.$message.success("删除成功");
  613. },
  614. },
  615. };
  616. </script>
  617. <style lang="less" scoped>
  618. .boxWidth {
  619. width: 700px;
  620. }
  621. .numInputs {
  622. width: 150px;
  623. }
  624. .checkboxSty {
  625. max-height: 210px;
  626. overflow: auto;
  627. display: flex;
  628. flex-direction: column;
  629. }
  630. .listBoxStys {
  631. flex-shrink: 0;
  632. padding: 0px 10px;
  633. border-radius: 8px;
  634. border: 1px solid #eee;
  635. margin-right: 10px;
  636. margin-bottom: 6px;
  637. }
  638. .closeIcons {
  639. color: red;
  640. cursor: pointer;
  641. margin-left: 6px;
  642. }
  643. .ach {
  644. display: flex;
  645. align-items: center;
  646. overflow: hidden;
  647. }
  648. .clh {
  649. display: flex;
  650. align-items: center;
  651. flex-wrap: wrap;
  652. }
  653. .imgBoxins {
  654. width: 375px;
  655. height: 220px;
  656. text-align: center;
  657. img {
  658. height: 100%;
  659. }
  660. }
  661. .iconStsz {
  662. font-size: 40px;
  663. color: #67c23a;
  664. cursor: pointer;
  665. }
  666. .BusBoxs {
  667. min-height: 100px;
  668. border: 1px solid #a4a4a4;
  669. margin-bottom: 10px;
  670. border-radius: 8px;
  671. max-height: 280px;
  672. padding: 10px;
  673. overflow-y: auto;
  674. .fot_Le {
  675. border-radius: 12px;
  676. border: 1px solid yellowgreen;
  677. padding: 0px 10px;
  678. height: 30px;
  679. line-height: 30px;
  680. text-align: center;
  681. float: left;
  682. margin-right: 6px;
  683. margin-bottom: 6px;
  684. .icon_clear {
  685. margin-left: 2px;
  686. font-size: 15px;
  687. color: #f56c6c;
  688. cursor: pointer;
  689. }
  690. }
  691. }
  692. .marg_play {
  693. display: flex;
  694. margin-bottom: 15px;
  695. .spans {
  696. text-align: right;
  697. width: 80px;
  698. }
  699. }
  700. /deep/.el-button {
  701. border-radius: 8px;
  702. }
  703. /deep/.el-dialog {
  704. border-radius: 8px;
  705. .el-dialog__header {
  706. padding: 0;
  707. .hearders {
  708. height: 40px;
  709. display: flex;
  710. align-items: center;
  711. justify-content: space-between;
  712. padding: 0px 18px 0px 20px;
  713. border-bottom: 1px solid #e2e2e2;
  714. .leftTitle {
  715. font-size: 14px;
  716. font-weight: bold;
  717. color: #2f4378;
  718. }
  719. .rightBoxs {
  720. display: flex;
  721. align-items: center;
  722. img {
  723. width: 14px;
  724. height: 14px;
  725. margin-left: 13px;
  726. cursor: pointer;
  727. }
  728. }
  729. }
  730. }
  731. .el-dialog__footer {
  732. padding: 0;
  733. .dialog-footer {
  734. padding: 0px 40px;
  735. height: 70px;
  736. border-top: 1px solid #e2e2e2;
  737. display: flex;
  738. align-items: center;
  739. justify-content: center;
  740. }
  741. }
  742. }
  743. .centerStys {
  744. display: flex;
  745. align-items: center;
  746. justify-content: center;
  747. margin-top: 18px;
  748. }
  749. .dis_fos {
  750. align-items: flex-end;
  751. display: flex;
  752. justify-content: space-between;
  753. }
  754. .margin_bs {
  755. margin-bottom: 6px;
  756. }
  757. .dis_plays {
  758. display: flex;
  759. align-items: center;
  760. justify-content: space-between;
  761. margin-bottom: 10px;
  762. }
  763. .comInputsty {
  764. width: 50px;
  765. height: 24px;
  766. text-align: center;
  767. border: none;
  768. }
  769. </style>