my.vue 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852
  1. <template>
  2. <view>
  3. <!-- 背景图 -->
  4. <view class="top">
  5. <image src="./icon/bg.png" mode="aspectFill"></image>
  6. </view>
  7. <view class="content">
  8. <view class="user" v-if="info.name">
  9. <!-- <view class="left">
  10. <view class="img">
  11. <image v-if="user.avatar" :src="user.avatar" mode="aspectFill"></image>
  12. <view class="avatar" v-if="!user.avatar" :style="{backgroundColor:bgColor[1]}">
  13. {{user.name.split('').pop()}}
  14. </view>
  15. </view>
  16. <view class="info">
  17. <view class="name">{{user.name}}</view>
  18. <view class="section">{{user.section}}</view>
  19. </view>
  20. </view> -->
  21. <view class="left">
  22. <view class="img">
  23. <image v-if="info.avatar" :src="info.avatar" mode="aspectFill"></image>
  24. <view class="avatar" v-if="!info.avatar" :style="{backgroundColor:bgColor[1]}">
  25. {{info.name.split('').pop()}}
  26. </view>
  27. </view>
  28. <view class="info">
  29. <view class="name">{{info.name}}</view>
  30. <view class="section">{{info.section_fullname}}</view>
  31. </view>
  32. </view>
  33. <view class="right">
  34. <view class="btn" @click="go_information()">
  35. <view class="icon">
  36. <uni-icons type="person-filled" color="#fff"></uni-icons>
  37. </view>
  38. <view class="text">个人中心</view>
  39. </view>
  40. </view>
  41. </view>
  42. <view class="section_1">
  43. <view class="title">本月使用信息</view>
  44. <view class="box">
  45. <view class="item">
  46. <view class="num">{{use.h}} <text> h </text> {{use.m}} <text> min</text></view>
  47. <view class="tip">使用时长</view>
  48. </view>
  49. <view class="item">
  50. <view class="num">{{use.times || '1'}}</view>
  51. <view class="tip">使用次数</view>
  52. </view>
  53. <view class="item">
  54. <view class="num">{{use.submit_count}}</view>
  55. <view class="tip">提交单据数</view>
  56. </view>
  57. </view>
  58. </view>
  59. <view class="section_2">
  60. <view class="inner_1">
  61. <view class="title">
  62. <view class="icon">
  63. <image src="./icon/time.png" mode=""></image>
  64. </view>
  65. <view class="text">最近使用</view>
  66. </view>
  67. <view class="box">
  68. <view class="item" v-if="recently_used.length > 0" v-for="(item,index) in recently_used"
  69. :key="index" @click="go_OA(item)">
  70. <view class="name">{{item.title}}</view>
  71. <view class="icon">
  72. <uni-icons type="right" color="#fff" size="16"></uni-icons>
  73. </view>
  74. </view>
  75. <view v-if="recently_used.length == 0"
  76. style="line-height: 80rpx;color: #FFFFFF;padding: 0 20rpx;font-size: 28rpx;">暂无使用记录。</view>
  77. </view>
  78. </view>
  79. <view class="inner_2" @click="go_integral()">
  80. <view class="num">{{total}}</view>
  81. <view class="text">积分</view>
  82. </view>
  83. </view>
  84. <view class="section_3" v-if="mine_code != 'ningdongyunying' && mine_code != 'wuyegongsi'"
  85. @click="go_downhole_statistics()">
  86. <view class="title">
  87. <view class="icon">
  88. <uni-icons type="map-pin-ellipse" color="#fff"></uni-icons>
  89. </view>
  90. <view class="text">当前位置:{{downhole.position}}</view>
  91. </view>
  92. <view class="box">
  93. <view class="item">
  94. <view class="num">{{downhole.h}} <text> h</text> {{downhole.m}} <text> min</text></view>
  95. <view class="tip">本月下井时长</view>
  96. </view>
  97. <view class="item">
  98. <view class="num">{{downhole.times}}</view>
  99. <view class="tip">本月下井次数</view>
  100. </view>
  101. </view>
  102. </view>
  103. </view>
  104. <view class="content">
  105. <view class="section_4">
  106. <view class="list">
  107. <view class="item" @click="clear_cache()">
  108. <view class="icon">
  109. <image src="./icon/icon_1.png" mode="aspectFill"></image>
  110. </view>
  111. <view class="text">
  112. 清除缓存
  113. </view>
  114. </view>
  115. <view class="item" @click="tell()">
  116. <view class="icon">
  117. <image src="./icon/icon_2.png" mode="aspectFill"></image>
  118. </view>
  119. <view class="text">服务电话</view>
  120. </view>
  121. <view class="item" @click="go_feedback()">
  122. <view class="icon">
  123. <image src="./icon/icon_3.png" mode="aspectFill"></image>
  124. </view>
  125. <view class="text">建议反馈</view>
  126. </view>
  127. <view class="item" @click="go_update_log()">
  128. <view class="icon">
  129. <image src="./icon/icon_4.png" mode="aspectFill"></image>
  130. </view>
  131. <view class="text">更新日志</view>
  132. </view>
  133. <view class="item" @click="go_m_repassword()">
  134. <view class="icon">
  135. <image src="./icon/icon_5.png" mode="aspectFill"></image>
  136. </view>
  137. <view class="text">修改密码</view>
  138. </view>
  139. <view class="item" @click="login_out()">
  140. <view class="icon">
  141. <image src="./icon/icon_6.png" mode="aspectFill"></image>
  142. </view>
  143. <view class="text">退出登陆</view>
  144. </view>
  145. <view class="item" @click="go_m_download()">
  146. <view class="icon">
  147. <image src="./icon/icon_7.png" mode="aspectFill"></image>
  148. </view>
  149. <view class="text">下载二维码</view>
  150. </view>
  151. </view>
  152. </view>
  153. </view>
  154. </view>
  155. </template>
  156. <script>
  157. import {
  158. set_mine
  159. } from '@/common/set_base_url.js'
  160. export default {
  161. data() {
  162. return {
  163. // 当前煤矿编码
  164. mine_code: "",
  165. // 用户基本信息
  166. user: {},
  167. info: {},
  168. bgColor: [],
  169. // 总积分
  170. total: 0,
  171. // 下井定位卡号
  172. people_num: "",
  173. // 矿编码
  174. mine: "",
  175. // 下井数据
  176. downhole: {
  177. position: "-",
  178. h: "0",
  179. m: "0",
  180. times: "0"
  181. },
  182. // 使用时长次数
  183. use: {
  184. times: "0",
  185. h: "0",
  186. m: "0",
  187. submit_count: "0"
  188. },
  189. // 最近使用
  190. recently_used: []
  191. };
  192. },
  193. onLoad() {
  194. // console.log(set_mine(uni.getStorageSync('mine_code')))
  195. this.mine = set_mine(uni.getStorageSync('mine_code'))
  196. // 初始化当前煤矿编码
  197. this.mine_code = uni.getStorageSync('mine_code')
  198. // 判断会否登录、没有则跳转至登录页
  199. // const Authorization = uni.getStorageSync('Authorization')
  200. // if (Authorization == '') {
  201. // uni.showToast({
  202. // icon: "none",
  203. // title: "用户未登录"
  204. // })
  205. // setTimeout(function() {
  206. // uni.redirectTo({
  207. // url: "../../my/login/login"
  208. // })
  209. // }, 1500)
  210. // }
  211. // 设置头像
  212. for (let i = 0; i < 2; i++) {
  213. // 获取随机色
  214. let r = parseInt(Math.random() * 256)
  215. let g = parseInt(Math.random() * 256)
  216. let b = parseInt(Math.random() * 256)
  217. // ES6 字符串拼接
  218. // this.bgColor = `rgba(${r},${g},${b},0.3)`
  219. let color = "rgba(" + r + "," + g + "," + b + "," + 0.3 + ")"
  220. // console.log(color)
  221. this.bgColor.push(color)
  222. }
  223. // 获取用户基本信息
  224. this.user = uni.getStorageSync('user');
  225. this.$api.user_getUinfo({
  226. staff_num: uni.getStorageSync('user').staff_num
  227. }).then((res) => {
  228. this.info = res.data.data
  229. })
  230. // 查询使用时长
  231. this.get_user_selectRecordDuration()
  232. //查询员工积分
  233. this.get_staff_integral_query(),
  234. // 获取个人信息
  235. this.$api.user_getUinfo({
  236. staff_num: uni.getStorageSync('user').staff_num
  237. }).then((res) => {
  238. // console.log(res)
  239. this.people_num = res.data.data.people_code
  240. // 获取当前位置
  241. this.get_downhole()
  242. })
  243. // 获取常用列表
  244. this.get_workflow_recently_used()
  245. },
  246. methods: {
  247. // 个人信息
  248. go_information() {
  249. uni.navigateTo({
  250. url: "../../my/personal_information/personal_information"
  251. })
  252. },
  253. // 查询使用时长
  254. get_user_selectRecordDuration() {
  255. this.$api.user_selectRecordDuration({
  256. }).then((res) => {
  257. // console.log(res.data.data)
  258. this.use.h = res.data.data.hours
  259. this.use.m = res.data.data.minutes
  260. this.use.times = res.data.data.frequency
  261. })
  262. },
  263. // 退出登录
  264. login_out() {
  265. let mine_code = uni.getStorageSync('mine_code')
  266. uni.clearStorageSync();
  267. uni.setStorageSync('mine_code',mine_code)
  268. uni.showToast({
  269. icon: "none",
  270. title: "退出登录"
  271. })
  272. // 跳转登录页
  273. setTimeout(() => {
  274. uni.redirectTo({
  275. url: "../../my/login/login"
  276. })
  277. }, 1000)
  278. },
  279. // 拨打服务电话
  280. tell() {
  281. uni.makePhoneCall({
  282. phoneNumber: '18152480670'
  283. });
  284. },
  285. // 修改密码
  286. go_m_repassword() {
  287. uni.navigateTo({
  288. url: "../../my/repassword/repassword"
  289. })
  290. },
  291. // 清除缓存
  292. clear_cache() {
  293. // uni.showLoading({
  294. // mask:true
  295. // })
  296. // setTimeout(()=>{
  297. // uni.hideLoading()
  298. // uni.showToast({
  299. // icon:"none",
  300. // title:"清除完成"
  301. // })
  302. // },1500)
  303. let that = this;
  304. plus.cache.calculate(function(size) {
  305. let sizeCache = parseInt(size);
  306. if (sizeCache == 0) {
  307. that.fileSizeString = "0B";
  308. } else if (sizeCache < 1024) {
  309. that.fileSizeString = sizeCache + "B";
  310. } else if (sizeCache < 1048576) {
  311. that.fileSizeString = (sizeCache / 1024).toFixed(2) + "K";
  312. } else if (sizeCache < 1073741824) {
  313. that.fileSizeString = (sizeCache / 1048576).toFixed(2) + "M";
  314. } else {
  315. that.fileSizeString = (sizeCache / 1073741824).toFixed(2) + "G";
  316. }
  317. console.log(sizeCache)
  318. });
  319. let os = plus.os.name;
  320. if (os == 'Android') {
  321. let main = plus.android.runtimeMainActivity();
  322. let sdRoot = main.getCacheDir();
  323. let files = plus.android.invoke(sdRoot, "listFiles");
  324. let len = files.length;
  325. for (let i = 0; i < len; i++) {
  326. let filePath = '' + files[i]; // 没有找到合适的方法获取路径,这样写可以转成文件路径
  327. plus.io.resolveLocalFileSystemURL(filePath, function(entry) {
  328. if (entry.isDirectory) {
  329. entry.removeRecursively(function(entry) { //递归删除其下的所有文件及子目录
  330. uni.showToast({
  331. title: '缓存清理完成',
  332. duration: 2000
  333. });
  334. that.getStorageSize(); // 重新计算缓存
  335. }, function(e) {
  336. console.log(e.message)
  337. });
  338. } else {
  339. entry.remove();
  340. }
  341. }, function(e) {
  342. console.log('文件路径读取失败')
  343. });
  344. }
  345. } else { // ios
  346. }
  347. },
  348. // 建议反馈
  349. go_feedback() {
  350. uni.navigateTo({
  351. url: "../../origanization/OA/h5/h5",
  352. success: (res) => {
  353. // 通过eventChannel向被打开页面传送数据
  354. res.eventChannel.emit('acceptDataFromOpenerPage', {
  355. url: 'http://oa_system.nxjiewei.com:8011/?m=ying&d=we&mnum=ndyybbug&show=we&hideheader=true',
  356. title: "建议反馈"
  357. })
  358. }
  359. })
  360. },
  361. // 更新日志
  362. go_update_log() {
  363. uni.navigateTo({
  364. url: "../../my/version_record/version_record"
  365. })
  366. },
  367. //查询员工积分
  368. get_staff_integral_query() {
  369. this.$api.staff_integral_query({
  370. staff_num: uni.getStorageSync('user').staff_num
  371. }).then((res) => {
  372. // console.log(res)
  373. this.total = res.data.content.data.integral_sum
  374. })
  375. },
  376. // 积分详情
  377. go_integral() {
  378. uni.navigateTo({
  379. url: "../../index/integral/integral?total=" + this.total
  380. })
  381. },
  382. // 获取当前位置
  383. get_downhole() {
  384. this.$p_api.peopleTotalNum({
  385. people_code: this.people_num,
  386. mine: ""
  387. }).then((res) => {
  388. // console.log(res)
  389. if (res.data.data.position == null) {
  390. if (this.people_num == "") {
  391. this.downhole.position = "请点击绑定定位卡"
  392. } else {
  393. this.downhole.position = "未在井下"
  394. }
  395. } else {
  396. this.downhole.position = res.data.data.data.position
  397. }
  398. this.downhole.h = res.data.data.hours
  399. this.downhole.m = res.data.data.minutes
  400. this.downhole.times = res.data.data.total
  401. })
  402. },
  403. go_downhole_statistics() {
  404. uni.navigateTo({
  405. url: "../../production/personnel_orientation/downhole_statistics/downhole_statistics?people_num=" +
  406. this.people_num + "&depart_name=" + this.user.section + "&name=" + this.user.name +
  407. "&mine=" + this.mine
  408. })
  409. },
  410. // 获取常用列表
  411. get_workflow_recently_used() {
  412. this.$api.workflow_recently_used({
  413. staff_num: this.user.staff_num
  414. }).then((res) => {
  415. // console.log(res.data.content.data)
  416. this.recently_used = res.data.content.data.list
  417. this.use.submit_count = res.data.content.data.submit_count
  418. })
  419. },
  420. go_OA(item) {
  421. uni.navigateTo({
  422. url: "../../origanization/OA/h5/h5",
  423. success: (res) => {
  424. // 通过eventChannel向被打开页面传送数据
  425. res.eventChannel.emit('acceptDataFromOpenerPage', {
  426. url: item.url,
  427. title: item.title
  428. })
  429. }
  430. })
  431. },
  432. // 下载二维码
  433. go_m_download() {
  434. uni.navigateTo({
  435. url: "../../my/download/download"
  436. })
  437. }
  438. }
  439. }
  440. </script>
  441. <style lang="scss">
  442. .top {
  443. z-index: -1;
  444. position: fixed;
  445. top: 1;
  446. left: 0;
  447. image {
  448. width: 750rpx;
  449. height: 746rpx;
  450. }
  451. }
  452. .content {
  453. width: 750rpx;
  454. .user {
  455. margin-bottom: 40rpx;
  456. box-sizing: border-box;
  457. padding-left: 25rpx;
  458. padding-top: 25rpx;
  459. display: flex;
  460. justify-content: space-between;
  461. align-items: center;
  462. .left {
  463. display: flex;
  464. align-items: center;
  465. .img {
  466. width: 130rpx;
  467. height: 130rpx;
  468. border-radius: 50%;
  469. background: #DCDCDC;
  470. border: 2rpx solid #FFFFFF;
  471. overflow: hidden;
  472. text-align: center;
  473. line-height: 130rpx;
  474. font-size: 56rpx;
  475. font-weight: 700;
  476. color: #FFFFFF;
  477. image {
  478. width: 100%;
  479. height: 100%;
  480. display: block;
  481. }
  482. .avatar {
  483. width: 100%;
  484. height: 100%;
  485. }
  486. }
  487. .info {
  488. margin-left: 20rpx;
  489. color: #fff;
  490. .name {
  491. font-size: 38rpx;
  492. font-weight: 700;
  493. }
  494. .section {
  495. margin-top: 20rpx;
  496. font-size: 24rpx;
  497. }
  498. }
  499. }
  500. .right {
  501. background-color: rgba(255, 255, 255, .3);
  502. border-radius: 25rpx 0rpx 0rpx 25rpx;
  503. padding: 5rpx 20rpx 5rpx 20rpx;
  504. .btn {
  505. display: flex;
  506. align-items: center;
  507. color: #FFFFFF;
  508. .icon {}
  509. .text {
  510. font-size: 24rpx;
  511. }
  512. }
  513. }
  514. }
  515. .section_1 {
  516. width: 749rpx;
  517. height: 220rpx;
  518. background-image: url(./icon/section_1.png);
  519. background-size: cover;
  520. background-repeat: no-repeat;
  521. box-sizing: border-box;
  522. padding: 10rpx 20rpx;
  523. .title {
  524. padding-left: 20rpx;
  525. height: 60rpx;
  526. line-height: 60rpx;
  527. font-size: 28rpx;
  528. color: #fff;
  529. border-bottom: 1rpx solid rgba(255, 255, 255, .5);
  530. }
  531. .box {
  532. display: flex;
  533. .item {
  534. width: 236rpx;
  535. text-align: center;
  536. height: 130rpx;
  537. border-right: 1rpx solid rgba(255, 255, 255, .5);
  538. color: #FFFFFF;
  539. display: flex;
  540. flex-direction: column;
  541. justify-content: center;
  542. .num {
  543. font-size: 44rpx;
  544. font-weight: 700;
  545. text {
  546. font-size: 24rpx;
  547. }
  548. }
  549. .tip {
  550. font-size: 24rpx;
  551. }
  552. }
  553. .item:last-child {
  554. border-right: none;
  555. }
  556. }
  557. }
  558. .section_2 {
  559. box-sizing: border-box;
  560. padding: 20rpx;
  561. display: flex;
  562. justify-content: space-between;
  563. .inner_1 {
  564. width: 510rpx;
  565. height: 220rpx;
  566. background-image: url(./icon/section_2_inner_1.png);
  567. background-size: 100% 100%;
  568. background-repeat: no-repeat;
  569. .title {
  570. display: flex;
  571. align-items: center;
  572. height: 70rpx;
  573. font-size: 28rpx;
  574. color: #fff;
  575. padding-left: 20rpx;
  576. border-bottom: 1rpx solid rgba(255, 255, 255, .5);
  577. .icon {
  578. image {
  579. width: 28rpx;
  580. height: 28rpx;
  581. display: block;
  582. }
  583. }
  584. .text {
  585. margin-left: 10rpx;
  586. font-size: 28rpx;
  587. }
  588. }
  589. .box {
  590. width: 510rpx;
  591. display: flex;
  592. flex-wrap: wrap;
  593. .item {
  594. width: 255rpx;
  595. height: 70rpx;
  596. display: flex;
  597. justify-content: space-between;
  598. align-items: center;
  599. color: #FFFFFF;
  600. box-sizing: border-box;
  601. padding: 0 10rpx;
  602. border-bottom: 1rpx solid rgba(255, 255, 255, .5);
  603. border-right: 1rpx solid rgba(255, 255, 255, .5);
  604. .name {
  605. width: 200rpx;
  606. //超过一行省略号
  607. overflow: hidden;
  608. white-space: nowrap;
  609. text-overflow: ellipsis;
  610. font-size: 28rpx;
  611. }
  612. .icon {}
  613. }
  614. .item:nth-child(2n) {
  615. border-right: none;
  616. }
  617. .item:nth-child(3) {
  618. border-bottom: none;
  619. }
  620. .item:nth-child(4) {
  621. border-bottom: none;
  622. }
  623. }
  624. }
  625. .inner_2 {
  626. margin-top: -4rpx;
  627. margin-right: -10rpx;
  628. width: 200rpx;
  629. height: 250rpx;
  630. background-image: url(./icon/section_2_inner_2.png);
  631. background-size: 100% 100%;
  632. background-repeat: no-repeat;
  633. color: #FFFFFF;
  634. text-align: center;
  635. .num {
  636. height: 140rpx;
  637. line-height: 140rpx;
  638. font-size: 44rpx;
  639. font-weight: 700;
  640. }
  641. .text {
  642. height: 50rpx;
  643. line-height: 50rpx;
  644. font-size: 34rpx;
  645. }
  646. }
  647. }
  648. .section_3 {
  649. margin: -15rpx auto 0;
  650. width: 710rpx;
  651. height: 220rpx;
  652. background-image: url(./icon/section_3.png);
  653. background-size: 100% 100%;
  654. background-repeat: no-repeat;
  655. .title {
  656. display: flex;
  657. align-items: center;
  658. height: 60rpx;
  659. font-size: 24rpx;
  660. color: #fff;
  661. padding-left: 20rpx;
  662. .icon {
  663. image {
  664. width: 28rpx;
  665. height: 28rpx;
  666. display: block;
  667. }
  668. }
  669. .text {
  670. margin-left: 10rpx;
  671. font-size: 28rpx;
  672. }
  673. }
  674. .box {
  675. display: flex;
  676. .item {
  677. width: 355rpx;
  678. text-align: center;
  679. height: 140rpx;
  680. color: #FFFFFF;
  681. display: flex;
  682. flex-direction: column;
  683. justify-content: center;
  684. .num {
  685. font-size: 44rpx;
  686. font-weight: 700;
  687. text {
  688. font-size: 24rpx;
  689. }
  690. }
  691. .tip {
  692. margin-top: 10rpx;
  693. font-size: 24rpx;
  694. }
  695. }
  696. }
  697. }
  698. .section_4 {
  699. margin: 25rpx auto 40rpx;
  700. width: 710rpx;
  701. background-color: #FFFFFF;
  702. box-shadow: 10rpx 10rpx 16rpx 6rpx rgba(0, 0, 0, 0.13);
  703. border-radius: 20rpx;
  704. .list {
  705. overflow: hidden;
  706. box-sizing: border-box;
  707. padding: 30rpx 0;
  708. .item {
  709. margin-right: 30rpx;
  710. margin-bottom: 30rpx;
  711. float: left;
  712. width: 155rpx;
  713. text-align: center;
  714. .icon {
  715. margin: 0 auto;
  716. width: 80rpx;
  717. height: 80rpx;
  718. border-radius: 50%;
  719. overflow: hidden;
  720. image {
  721. width: 80rpx;
  722. height: 80rpx;
  723. display: block;
  724. }
  725. }
  726. .text {
  727. font-size: 28rpx;
  728. color: #666666;
  729. }
  730. }
  731. .item:nth-child(4n) {
  732. margin-right: 0;
  733. }
  734. }
  735. }
  736. }
  737. </style>