longVideo.vue 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799
  1. <template>
  2. <view class="container">
  3. <!-- 筛选标签栏 -->
  4. <view class="filter-bar">
  5. <view class="filter-tabs">
  6. <view class="tab-item"
  7. :class="{ active: currentTab === item.value }"
  8. v-for="(item, index) in tabs"
  9. :key="index"
  10. @click="switchTab(item.value)">
  11. {{ item.label }}
  12. </view>
  13. </view>
  14. <view class="filter-divider"></view>
  15. <view class="filter-btn" @click="showFilter = true">
  16. <image class="w32 h32" src="@/static/image/icon_select.png" mode=""></image>
  17. </view>
  18. </view>
  19. <!-- 任务列表 -->
  20. <scroll-view class="content" scroll-y>
  21. <view class="task-card" v-for="(item, index) in taskList" :key="index" @click="showDetail(item)">
  22. <view class="card-header">
  23. <view class="card-title">{{ item.taskName}}</view>
  24. <view class="status-tag" :class="'tag'+item.finishAuditStatus">
  25. {{ item.finishAuditStatus==0?'待审核':item.finishAuditStatus==1?'已通过':item.finishAuditStatus==2?'已驳回':'未完成'}}
  26. </view>
  27. </view>
  28. <view style="padding: 24rpx;">
  29. <view class="card-tags">
  30. <view class="x-f">
  31. <view class="tag-item video-tag" v-if="item.taskType">
  32. <!-- <image class="w28 h28 mr10" src="@/static/image/icon_longvideo.png" mode=""></image> -->
  33. <image class="w28 h28 mr10" src="@/static/image/icon_article.png" mode=""></image>
  34. <text>{{ item.taskType==4?'文章':taskData.taskType==5?'短视频':'长视频'}}</text>
  35. </view>
  36. <view class="tag-item category">
  37. 学术
  38. </view>
  39. </view>
  40. <view class="tag-item points-tag">
  41. {{ item.taskIntegral }}积分
  42. </view>
  43. <view class="tag-item">
  44. {{ item.taskCount }}{{item.taskUnitName}}
  45. </view>
  46. </view>
  47. <view class="card-dates">
  48. <view class="date-item">
  49. <text>开始时间:{{ item.planStartTime }}</text>
  50. </view>
  51. <view class="date-item">
  52. <text>结束时间:{{ item.planEndTime }}</text>
  53. </view>
  54. </view>
  55. <view class="card-warning" v-if="item.warning">
  56. <image class="w28 h28 mr8" src="@/static/image/icon_admonish.png" mode=""></image>
  57. <text>{{ item.warning }}</text>
  58. </view>
  59. <view class="card-rejection" v-if="item.finishAuditStatus == 2">
  60. <image class="w28 h28 mr8" src="@/static/image/icon_reject.png" mode=""></image>
  61. <text>驳回原因: {{ item.finishAuditRemark}}</text>
  62. </view>
  63. <view class="card-footer">
  64. <view class="footer-date">{{ item.createTime }}</view>
  65. <view class="footer-actions">
  66. <view class="action-btn" v-if="item.finishAuditStatus==3">
  67. 去完成
  68. </view>
  69. <view class="action-btn" v-if="item.finishAuditStatus == 2" @click="goEdit(item)">
  70. 编辑
  71. </view>
  72. </view>
  73. </view>
  74. </view>
  75. </view>
  76. <view class="no-more" v-if="!hasMore && taskList.length > 0">没有更多了~</view>
  77. <view class="empty-state y-bc" v-if="taskList.length === 0">
  78. <image class="w300 h300" src="@/static/image/img_blank_nodata.png" mode=""></image>
  79. <text>暂无数据</text>
  80. </view>
  81. </scroll-view>
  82. <!-- 筛选弹窗 -->
  83. <view class="filter-popup" v-if="showFilter" @click="closeFilter">
  84. <view class="filter-content" @click.stop>
  85. <view class="filter-header">
  86. <view class="filter-title">筛选</view>
  87. <view class="filter-close-btn" @click="closeFilter">
  88. <image class="w44 h44" src="@/static/image/icon_cross.png" mode=""></image>
  89. </view>
  90. </view>
  91. <!-- 申请时间筛选 -->
  92. <view class="filter-group">
  93. <view class="group-label">申请时间</view>
  94. <view class="date-range-inputs">
  95. <picker style="flex:1" mode="date" :value="tempDateRange.startDate" @change="onStartDateChange">
  96. <view class="date-input" :class="{ placeholder: !tempDateRange.startDate }">
  97. {{ tempDateRange.startDate || '开始时间' }}
  98. </view>
  99. </picker>
  100. <text class="date-separator">-</text>
  101. <picker style="flex:1" mode="date" :value="tempDateRange.endDate" @change="onEndDateChange">
  102. <view class="date-input" :class="{ placeholder: !tempDateRange.endDate }">
  103. {{ tempDateRange.endDate || '结束时间' }}
  104. </view>
  105. </picker>
  106. </view>
  107. </view>
  108. <!-- 任务类型筛选 -->
  109. <!-- <view class="filter-group">
  110. <view class="group-label">任务类型</view>
  111. <view class="filter-tags">
  112. <view
  113. class="filter-tag"
  114. :class="{ active: tempSelectedTaskType === item.value }"
  115. v-for="(item, index) in taskTypeOptions"
  116. :key="index"
  117. @click="selectTaskType(item.value)">
  118. {{ item.label }}
  119. </view>
  120. </view>
  121. </view> -->
  122. <!-- 操作按钮 -->
  123. <view class="filter-actions">
  124. <view class="reset-btn" @click="resetFilters">重置</view>
  125. <view class="confirm-btn" @click="confirmFilters">确定</view>
  126. </view>
  127. </view>
  128. </view>
  129. </view>
  130. </template>
  131. <script>
  132. import { getAirClassroomList ,getTaskDetail,submitTask} from '@/api/airClassroom'
  133. import { getTaskTypeList } from '@/api/common.js'
  134. export default {
  135. data() {
  136. return {
  137. statusBarHeight: uni.getSystemInfoSync().statusBarHeight + 'px',
  138. currentTab:'',
  139. showFilter: false,
  140. dateRange: {
  141. startDate: '',
  142. endDate: ''
  143. },
  144. tempDateRange: {
  145. startDate: '',
  146. endDate: ''
  147. },
  148. selectedTaskType: 'article', // 默认选中科普文章
  149. tempSelectedTaskType: 'article',
  150. // taskTypeOptions: [
  151. // { label: '科普文章', value: 'article' },
  152. // { label: '科普短视频', value: 'shortVideo' },
  153. // { label: '科普长视频', value: 'longVideo' }
  154. // ],
  155. tabs: [
  156. { label: '全部', value:''},
  157. { label: '未完成', value: 3},
  158. { label: '待审核', value: 0},
  159. { label: '已通过', value: 1},
  160. { label: '已驳回', value: 2}
  161. ],
  162. taskList: [],
  163. pageNum: 1,
  164. pageSize: 10,
  165. hasMore: true,
  166. loading: false
  167. }
  168. },
  169. watch: {
  170. showFilter(newVal) {
  171. if (newVal) {
  172. // 打开弹窗时,同步临时日期范围和任务类型为当前值
  173. this.tempDateRange = {
  174. startDate: this.dateRange.startDate,
  175. endDate: this.dateRange.endDate
  176. }
  177. this.tempSelectedTaskType = this.selectedTaskType
  178. }
  179. }
  180. },
  181. onLoad() {
  182. },
  183. onShow() {
  184. this.loadData()
  185. },
  186. onReachBottom() {
  187. this.loadMore()
  188. },
  189. methods: {
  190. goBack() {
  191. uni.navigateBack()
  192. },
  193. switchTab(value) {
  194. this.currentTab = value
  195. this.pageNum = 1
  196. this.hasMore = true
  197. this.loadData()
  198. },
  199. closeFilter() {
  200. // 关闭弹窗时,恢复临时日期范围和任务类型为当前值
  201. this.tempDateRange = {
  202. startDate: this.dateRange.startDate,
  203. endDate: this.dateRange.endDate
  204. }
  205. this.tempSelectedTaskType = this.selectedTaskType
  206. this.showFilter = false
  207. },
  208. selectTaskType(value) {
  209. // 如果点击的是已选中的,则取消选择
  210. if (this.tempSelectedTaskType === value) {
  211. this.tempSelectedTaskType = ''
  212. } else {
  213. this.tempSelectedTaskType = value
  214. }
  215. },
  216. onStartDateChange(e) {
  217. this.tempDateRange.startDate = e.detail.value
  218. },
  219. onEndDateChange(e) {
  220. this.tempDateRange.endDate = e.detail.value
  221. },
  222. resetFilters() {
  223. this.tempDateRange = {
  224. startDate: '',
  225. endDate: ''
  226. }
  227. this.tempSelectedTaskType = ''
  228. },
  229. confirmFilters() {
  230. // 验证日期范围
  231. if (this.tempDateRange.startDate && this.tempDateRange.endDate) {
  232. if (new Date(this.tempDateRange.startDate) > new Date(this.tempDateRange.endDate)) {
  233. uni.showToast({
  234. icon: 'none',
  235. title: '开始时间不能大于结束时间'
  236. })
  237. return
  238. }
  239. }
  240. this.dateRange = {
  241. startDate: this.tempDateRange.startDate,
  242. endDate: this.tempDateRange.endDate
  243. }
  244. this.selectedTaskType = this.tempSelectedTaskType
  245. this.showFilter = false
  246. this.pageNum = 1
  247. this.hasMore = true
  248. this.loadData()
  249. },
  250. goComplete(item) {
  251. uni.navigateTo({
  252. url: `/pages_task/completeTask?id=${item.id}`
  253. })
  254. },
  255. goEdit(item) {
  256. uni.navigateTo({
  257. url: `/pages_task/completeTask?id=${item.id}&edit=true`
  258. })
  259. },
  260. // 查看详情
  261. showDetail(item) {
  262. uni.navigateTo({
  263. url: `/pages_task/taskDetail?id=${item.id}`
  264. })
  265. },
  266. async loadData() {
  267. try {
  268. this.pageNum = 1
  269. this.hasMore = true
  270. uni.showLoading({ title: '加载中...' })
  271. // 构建请求参数
  272. const params = {
  273. beginTime: this.dateRange.startDate,
  274. endTime: this.dateRange.endDate,
  275. finishAuditStatus:this.currentTab,
  276. taskType:6,
  277. pageNum: 1,
  278. pageSize: this.pageSize
  279. }
  280. const res = await getAirClassroomList(params)
  281. uni.hideLoading()
  282. if (res.code === 200) {
  283. this.taskList = res.rows || []
  284. // 判断是否还有更多数据
  285. if (!res.rows || res.rows.length < this.pageSize) {
  286. this.hasMore = false
  287. }
  288. } else {
  289. uni.showToast({
  290. icon: 'none',
  291. title: res.msg
  292. })
  293. }
  294. } catch (e) {
  295. uni.hideLoading()
  296. }
  297. },
  298. async loadMore() {
  299. // 如果没有更多数据或正在加载,则不执行
  300. if (!this.hasMore || this.loading) {
  301. return
  302. }
  303. try {
  304. this.loading = true
  305. const nextPage = this.pageNum + 1
  306. // 构建请求参数
  307. const params = {
  308. beginTime: this.dateRange.startDate,
  309. endTime: this.dateRange.endDate,
  310. finishAuditStatus:this.currentTab,
  311. taskType: 6,
  312. pageNum: nextPage,
  313. pageSize: this.pageSize
  314. }
  315. const res = await getAirClassroomList(params)
  316. if (res.code === 200) {
  317. const newData = res.rows || []
  318. if (newData.length > 0) {
  319. // 追加新数据到列表
  320. this.taskList = [...this.taskList, ...newData]
  321. this.pageNum = nextPage
  322. // 如果返回的数据量小于 pageSize,说明没有更多数据了
  323. if (newData.length < this.pageSize) {
  324. this.hasMore = false
  325. }
  326. } else {
  327. // 没有新数据,说明已经加载完所有数据
  328. this.hasMore = false
  329. }
  330. } else {
  331. uni.showToast({
  332. icon: 'none',
  333. title: res.msg || '加载失败'
  334. })
  335. }
  336. } catch (e) {
  337. console.error('加载更多数据失败', e)
  338. uni.showToast({
  339. icon: 'none',
  340. title: '加载失败'
  341. })
  342. } finally {
  343. this.loading = false
  344. }
  345. }
  346. }
  347. }
  348. </script>
  349. <style lang="scss" scoped>
  350. .container {
  351. min-height: 100vh;
  352. background: #f5f5f5;
  353. display: flex;
  354. flex-direction: column;
  355. }
  356. .status-bar {
  357. width: 100%;
  358. background: #fff;
  359. }
  360. .header {
  361. position: relative;
  362. height: 88rpx;
  363. display: flex;
  364. align-items: center;
  365. justify-content: center;
  366. background: #fff;
  367. border-bottom: 1rpx solid #f0f0f0;
  368. .back-btn {
  369. position: absolute;
  370. left: 24rpx;
  371. width: 40rpx;
  372. height: 40rpx;
  373. image {
  374. width: 100%;
  375. height: 100%;
  376. }
  377. }
  378. .title {
  379. font-size: 36rpx;
  380. font-weight: bold;
  381. color: #333;
  382. }
  383. .header-right {
  384. position: absolute;
  385. right: 24rpx;
  386. display: flex;
  387. align-items: center;
  388. gap: 16rpx;
  389. .more-icon {
  390. font-size: 32rpx;
  391. color: #333;
  392. }
  393. }
  394. }
  395. .filter-bar {
  396. display: flex;
  397. align-items: center;
  398. background: #fff;
  399. padding: 0 24rpx;
  400. border-bottom: 1rpx solid #f0f0f0;
  401. .filter-tabs {
  402. flex: 1;
  403. display: flex;
  404. align-items: center;
  405. gap: 48rpx;
  406. overflow-x: auto;
  407. .tab-item {
  408. padding: 24rpx 0;
  409. font-size: 28rpx;
  410. color: #969799;
  411. white-space: nowrap;
  412. position: relative;
  413. &.active {
  414. font-weight: 500;
  415. font-size: 28rpx;
  416. color: #333333;
  417. &::after {
  418. content: '';
  419. position: absolute;
  420. bottom: 0;
  421. left: 50%;
  422. transform: translateX(-50%);
  423. width: 56rpx;
  424. height: 6rpx;
  425. background: #388BFF;
  426. border-radius: 3rpx 3rpx 3rpx 3rpx;
  427. }
  428. }
  429. }
  430. }
  431. .filter-divider {
  432. width: 1rpx;
  433. height: 40rpx;
  434. background: #e0e0e0;
  435. margin: 0 16rpx;
  436. }
  437. .filter-btn {
  438. padding: 24rpx 0;
  439. .filter-icon {
  440. font-size: 32rpx;
  441. color: #333;
  442. }
  443. }
  444. }
  445. .content {
  446. flex: 1;
  447. padding: 24rpx;
  448. box-sizing: border-box;
  449. }
  450. .no-more {
  451. text-align: center;
  452. padding: 48rpx 0;
  453. font-size: 24rpx;
  454. color: #999;
  455. }
  456. .empty-state {
  457. padding: 120rpx 24rpx;
  458. text-align: center;
  459. font-size: 28rpx;
  460. color: #999;
  461. }
  462. .task-card {
  463. background: #fff;
  464. border-radius: 24rpx 24rpx 24rpx 24rpx;
  465. border: 2rpx solid #E9F2FF;
  466. margin-bottom: 24rpx;
  467. .card-header {
  468. display: flex;
  469. align-items: flex-start;
  470. justify-content: space-between;
  471. margin-bottom: 16rpx;
  472. padding: 24rpx;
  473. background: linear-gradient( 90deg, #E8F1FF 0%, #FFFFFF 100%);
  474. border-radius: 24rpx 24rpx 0rpx 0rpx;
  475. .card-title {
  476. flex: 1;
  477. font-size: 32rpx;
  478. font-weight: bold;
  479. color: #333;
  480. }
  481. .status-tag {
  482. padding: 8rpx 16rpx;
  483. border-radius: 20rpx;
  484. font-size: 24rpx;
  485. &.tag0 {
  486. // 待审核
  487. background: #FFF3E0;
  488. color: #FF9800;
  489. }
  490. &.tag1 {
  491. // 已通过
  492. background: #E8F5E9;
  493. color: #4CAF50;
  494. }
  495. &.tag2 {
  496. // 已驳回
  497. background: #FFF4F5;
  498. color: #CF3546;
  499. }
  500. &.tag3 {
  501. // 未完成
  502. background: #EBF5FF;
  503. color: #388BFF;
  504. }
  505. }
  506. }
  507. .card-tags {
  508. display: flex;
  509. align-items: center;
  510. flex-wrap: wrap;
  511. gap: 12rpx;
  512. margin-bottom: 16rpx;
  513. .tag-item {
  514. padding: 8rpx 16rpx;
  515. // background: #f5f5f5;
  516. border-radius: 8rpx;
  517. font-size: 24rpx;
  518. color: #999999;
  519. border-radius: 8rpx 8rpx 8rpx 8rpx;
  520. border: 2rpx solid #F5F5F5;
  521. &.category{
  522. border-radius: 0rpx 8rpx 8rpx 0rpx;
  523. border: 2rpx solid #F3D191;
  524. background: #FFFAF4;
  525. color:#5D410F
  526. }
  527. &.video-tag {
  528. background: linear-gradient( 90deg, #FFE9C7 0%, #F3D091 100%);
  529. border-radius:8rpx 0rpx 0rpx 8rpx;
  530. border: 2rpx solid #F3D191;
  531. font-family: PingFang SC, PingFang SC;
  532. font-weight: 400;
  533. font-size: 24rpx;
  534. color: #5D410F;
  535. display: flex;
  536. align-items: center;
  537. .tag-icon {
  538. margin-right: 4rpx;
  539. }
  540. }
  541. &.points-tag {
  542. border: 1rpx solid #388BFF;
  543. color: #388BFF;
  544. background: transparent;
  545. }
  546. }
  547. }
  548. .card-dates {
  549. margin-bottom: 16rpx;
  550. .date-item {
  551. font-size: 26rpx;
  552. color: #999;
  553. margin-bottom: 8rpx;
  554. }
  555. }
  556. .card-warning {
  557. display: flex;
  558. align-items: center;
  559. gap: 8rpx;
  560. padding: 12rpx;
  561. background: #FFF3E0;
  562. border-radius: 8rpx;
  563. margin-bottom: 16rpx;
  564. font-size: 26rpx;
  565. color: #FF9800;
  566. .warning-icon {
  567. font-size: 28rpx;
  568. }
  569. }
  570. .card-rejection {
  571. display: flex;
  572. align-items: center;
  573. gap: 8rpx;
  574. padding: 12rpx;
  575. background: #FFEBEE;
  576. border-radius: 8rpx;
  577. margin-bottom: 16rpx;
  578. font-size: 26rpx;
  579. color: #F44336;
  580. .rejection-icon {
  581. font-size: 28rpx;
  582. }
  583. }
  584. .card-footer {
  585. display: flex;
  586. align-items: center;
  587. justify-content: space-between;
  588. padding-top: 16rpx;
  589. border-top: 1rpx solid #f0f0f0;
  590. .footer-date {
  591. font-size: 24rpx;
  592. color: #999;
  593. }
  594. .footer-actions {
  595. .action-btn {
  596. padding: 12rpx 32rpx;
  597. background: #388BFF;
  598. border-radius: 34rpx 34rpx 34rpx 34rpx;
  599. font-size: 28rpx;
  600. color: #fff;
  601. }
  602. }
  603. }
  604. }
  605. .filter-popup {
  606. position: fixed;
  607. top: 0;
  608. left: 0;
  609. right: 0;
  610. bottom: 0;
  611. background: rgba(0, 0, 0, 0.5);
  612. z-index: 999;
  613. display: flex;
  614. align-items: flex-end;
  615. }
  616. .filter-content {
  617. width: 100%;
  618. background: #fff;
  619. border-radius: 24rpx 24rpx 0 0;
  620. padding: 32rpx;
  621. .filter-header {
  622. display: flex;
  623. align-items: center;
  624. justify-content: center;
  625. // padding: 32rpx 24rpx;
  626. position: relative;
  627. .filter-title {
  628. font-family: PingFang SC, PingFang SC;
  629. font-weight: 500;
  630. font-size: 32rpx;
  631. color: #333333;
  632. }
  633. .filter-close-btn {
  634. position: absolute;
  635. right: 24rpx;
  636. top: 50%;
  637. transform: translateY(-50%);
  638. font-size: 48rpx;
  639. color: #999;
  640. width: 48rpx;
  641. height: 48rpx;
  642. display: flex;
  643. align-items: center;
  644. justify-content: center;
  645. line-height: 1;
  646. }
  647. }
  648. .filter-group {
  649. margin-bottom: 32rpx;
  650. .group-label {
  651. font-size: 28rpx;
  652. font-weight: bold;
  653. color: #333;
  654. margin-bottom: 20rpx;
  655. }
  656. .date-range-inputs {
  657. display: flex;
  658. align-items: center;
  659. gap: 16rpx;
  660. .date-input {
  661. flex: 1;
  662. height: 80rpx;
  663. line-height: 80rpx;
  664. padding: 0 24rpx;
  665. background: #f5f5f5;
  666. border-radius: 8rpx;
  667. font-size: 28rpx;
  668. color: #333;
  669. text-align: center;
  670. &.placeholder {
  671. color: #999;
  672. }
  673. }
  674. .date-separator {
  675. font-size: 28rpx;
  676. color: #666;
  677. }
  678. }
  679. .filter-tags {
  680. display: flex;
  681. flex-wrap: wrap;
  682. gap: 16rpx;
  683. .filter-tag {
  684. padding: 14rpx 36rpx;
  685. background: #F7F8FA;
  686. border-radius: 70rpx 70rpx 70rpx 70rpx;
  687. font-family: PingFang SC, PingFang SC;
  688. font-weight: 400;
  689. font-size: 28rpx;
  690. color: #333333;
  691. border: 1rpx solid transparent;
  692. &.active {
  693. background: rgba(56,139,255,0.15);
  694. color: #388BFF;
  695. border-color: #388BFF;
  696. }
  697. }
  698. }
  699. }
  700. .filter-actions {
  701. display: flex;
  702. gap: 24rpx;
  703. margin-top: 40rpx;
  704. padding-top: 24rpx;
  705. border-top: 1rpx solid #f0f0f0;
  706. .reset-btn,
  707. .confirm-btn {
  708. flex: 1;
  709. height: 88rpx;
  710. line-height: 88rpx;
  711. text-align: center;
  712. border-radius: 200rpx 200rpx 200rpx 200rpx;
  713. font-size: 30rpx;
  714. }
  715. .reset-btn {
  716. background: #fff;
  717. color: #666;
  718. border: 1rpx solid #e0e0e0;
  719. }
  720. .confirm-btn {
  721. background: #388BFF;
  722. color: #fff;
  723. }
  724. }
  725. }
  726. </style>