index.vue 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566
  1. <template>
  2. <view class="zxbox">
  3. <view class="navbox">
  4. <uni-nav-bar color="#ffffff" :background-color="backgroundColor" :border="false"
  5. statusBar='true' fixed="true">
  6. <block slot="right">
  7. <view class="topr" @click='getNoticeFn'>
  8. <image :src="noticimg"></image>
  9. <view class="cir"></view>
  10. <!-- <block v-if="noticenum>99">99+</block>
  11. <block v-else>{{noticenum}}</block> -->
  12. </view>
  13. </block>
  14. </uni-nav-bar>
  15. </view>
  16. <image :src="bgimg" class="bgimg"></image>
  17. <view class="mbox">
  18. <view class="infobox flexc" @click="handleToInfo">
  19. <image v-if="avatar" @click.stop="handleToAvatar" :src="avatar" class="limg" mode="aspectFill"></image>
  20. <image v-else @click.stop="handleToAvatar" :src="avatarimg" class="limg" mode="aspectFill"></image>
  21. <view class="cbox">
  22. <view class="tit">{{name?name:'登录账号'}}</view>
  23. <view class="flexc pr" v-if="deptName">
  24. <image :src="headl"></image>
  25. <view class="txt">{{deptName}}</view>
  26. <image :src="headr"></image>
  27. </view>
  28. </view>
  29. <image :src="wrimg" class="rimg"></image>
  30. </view>
  31. <view class="conts" v-if="checkPermi(['system:statistics:loan'])">
  32. <view class="conta">
  33. <view class="flexcj mb19">
  34. <view class="f15 fw co23 flex0 ml8">月份放款统计 <text class="coa ml4">/万元</text></view>
  35. <picker mode="date" fields="month" @change='bindDateChangea'>
  36. <view class="f12 coa fw5 flexc">
  37. <view>{{monthtime}}</view>
  38. <image :src="rimg" class="rimg"></image>
  39. </view>
  40. </picker>
  41. </view>
  42. <view class="flexc">
  43. <view class="contn">
  44. <view class="img">
  45. <image :src="mconta" class="imga"></image>
  46. </view>
  47. <view class="ctit">待放款</view>
  48. <view class="ctxt co1l">{{monthcont.dfk}}</view>
  49. </view>
  50. <view class="line"></view>
  51. <view class="contn">
  52. <view class="img">
  53. <image :src="mcontb" class="imgb"></image>
  54. </view>
  55. <view class="ctit">已放款</view>
  56. <view class="ctxt co1l">{{monthcont.yfk}}</view>
  57. </view>
  58. </view>
  59. </view>
  60. <view class="conta">
  61. <view class="flexcj mb19">
  62. <view class="f15 fw co23 flex0 ml8">年度申报<text class="coa ml4">/个</text></view>
  63. <picker mode="date" fields="year" @change='bindDateChangeb'>
  64. <view class="f12 coa fw5 flexc">
  65. <view>{{year}}年度</view>
  66. <image :src="rimg" class="rimg"></image>
  67. </view>
  68. </picker>
  69. </view>
  70. <view class="flexc">
  71. <view class="contn">
  72. <view class="img">
  73. <image :src="mcontc" class="imgc"></image>
  74. </view>
  75. <view class="ctit">待完成</view>
  76. <view class="ctxt co1y">{{yearcont.ywsh}}</view>
  77. </view>
  78. <view class="line"></view>
  79. <view class="contn">
  80. <view class="img">
  81. <image :src="mcontd" class="imgd"></image>
  82. </view>
  83. <view class="ctit">已归档</view>
  84. <view class="ctxt co1y">{{yearcont.ywwj}}</view>
  85. </view>
  86. </view>
  87. </view>
  88. </view>
  89. <view class="mbgbox">
  90. <view class="flexc mine_list" @click="handleToAddYwsb" v-if="checkPermi(['system:application:add'])&&checkPermi(['system:registered:user'])">
  91. <view class="limg">
  92. <image :src="listimga" class="imga"></image>
  93. </view>
  94. <view class="tit flex1">业务申报</view>
  95. <image :src="rimg" class="rimg"></image>
  96. </view>
  97. <view class="flexc mine_list" @click="handleToMysb" v-if="checkPermi(['system:application:list'])&&checkPermi(['system:registered:user'])">
  98. <view class="limg">
  99. <image :src="listimgb" class="imga"></image>
  100. </view>
  101. <view class="tit flex1">我的申报</view>
  102. <image :src="rimg" class="rimg"></image>
  103. </view>
  104. <view class="flexc mine_list" @click="handleToDbsx" v-if="checkPermi(['system:remind:list'])">
  105. <view class="limg">
  106. <image :src="listimgc" class="imga"></image>
  107. </view>
  108. <view class="tit flex1">待办事项</view>
  109. <image :src="rimg" class="rimg"></image>
  110. </view>
  111. <view class="flexc mine_list" @click="handleToAddQy" v-if="checkPermi(['enterprise:enterprise:list'])">
  112. <view class="limg">
  113. <image :src="listimgk" class="imgc"></image>
  114. </view>
  115. <view class="tit flex1">添加企业</view>
  116. <image :src="rimg" class="rimg"></image>
  117. </view>
  118. <view class="flexc mine_list" @click="handleToMyzc" v-if="checkPermi(['system:application:list'])&&checkPermi(['system:registered:user'])">
  119. <view class="limg">
  120. <image :src="listimgd" class="imga"></image>
  121. </view>
  122. <view class="tit flex1">我的暂存</view>
  123. <image :src="rimg" class="rimg"></image>
  124. </view>
  125. <view class="flexc mine_list" @click="handleToHsz" v-if="checkPermi(['system:system:user'])">
  126. <view class="limg">
  127. <image :src="listimge" class="imgb"></image>
  128. </view>
  129. <view class="tit flex1">回收站</view>
  130. <image :src="rimg" class="rimg"></image>
  131. </view>
  132. </view>
  133. <view class="mbgbox">
  134. <view class="flexc mine_list" @click="handleToAddNews" v-if="checkPermi(['zxConference:conference:list'])">
  135. <view class="limg">
  136. <image :src="listimgf" class="imga"></image>
  137. </view>
  138. <view class="tit flex1">台账表</view>
  139. <image :src="rimg" class="rimg"></image>
  140. </view>
  141. <view class="flexc mine_list" @click="handleToDbcy" v-if="checkPermi(['system:document:list'])">
  142. <view class="limg">
  143. <image :src="listimgg" class="imga"></image>
  144. </view>
  145. <view class="tit flex1">担保材料清单</view>
  146. <image :src="rimg" class="rimg"></image>
  147. </view>
  148. </view>
  149. <view class="mbgbox">
  150. <view class="flexc mine_list" @click="handleUpassword">
  151. <view class="limg">
  152. <image :src="listimgh" class="imga"></image>
  153. </view>
  154. <view class="tit flex1">修改密码</view>
  155. <image :src="rimg" class="rimg"></image>
  156. </view>
  157. <!-- #ifdef APP-PLUS -->
  158. <view class="flexc mine_list"@click="onlineWgt">
  159. <view class="limg">
  160. <image :src="listimgi" class="imga"></image>
  161. </view>
  162. <view class="tit flex1">版本号</view>
  163. <view class="txt">{{wgtcode}}</view>
  164. </view>
  165. <!-- #endif -->
  166. <view class="flexc mine_list" @click="handleLogout">
  167. <view class="limg">
  168. <image :src="listimgj" class="imga"></image>
  169. </view>
  170. <view class="tit flex1">退出登录</view>
  171. <image :src="rimg" class="rimg"></image>
  172. </view>
  173. </view>
  174. </view>
  175. <view class="ztit">安徽中新云计算有限公司提供支持</view>
  176. <pop-up :initFace="initFace" @getClose="getClose" @getXxwsFn="getXxwsFn"></pop-up>
  177. <footers v-if="isfootflag" :footerindex="footerindex" :isHomeIndex="false"></footers>
  178. </view>
  179. </template>
  180. <script>
  181. import storage from '@/utils/storage'
  182. import footers from '@/components/footer/footer.vue'
  183. import popUp from "@/components/popup/popup.vue"
  184. import {getCount} from "@/api/common.js"
  185. import {updateUserProfile,findVersion} from "@/api/system/user.js"
  186. import {checkPermi,checkRole} from "@/utils/permission"; // 权限判断函数
  187. import config from '@/config'
  188. const baseUrl = config.baseUrl
  189. export default {
  190. data() {
  191. return {
  192. bgimg: require("@/static/images/bg.png"),
  193. avatarimg:require("@/static/images/mine/profile.png"),
  194. noticimg: require("@/static/images/home/notice.png"),
  195. mconta:require("@/static/images/mine/mconta.png"),
  196. mcontb:require("@/static/images/mine/mcontb.png"),
  197. mcontc:require("@/static/images/mine/mcontc.png"),
  198. mcontd:require("@/static/images/mine/mcontd.png"),
  199. listimga: require('@/static/images/mine/minea.png'),
  200. listimgb: require('@/static/images/mine/mineb.png'),
  201. listimgc: require('@/static/images/mine/minec.png'),
  202. listimgd: require('@/static/images/mine/mined.png'),
  203. listimge: require('@/static/images/mine/minee.png'),
  204. listimgf: require('@/static/images/mine/minef.png'),
  205. listimgg: require('@/static/images/mine/mineg.png'),
  206. listimgh: require('@/static/images/mine/mineh.png'),
  207. listimgi: require('@/static/images/mine/minei.png'),
  208. listimgj: require('@/static/images/mine/minej.png'),
  209. listimgk: require('@/static/images/mine/minek.png'),
  210. headl:require('@/static/images/mine/headl.png'),
  211. headr:require('@/static/images/mine/headr.png'),
  212. wrimg:require("@/static/images/mine/wrimg.png"),
  213. rimg:require("@/static/images/mine/rimg.png"),
  214. border: false,
  215. backgroundColor: 'transparent',
  216. name: this.$store.state.user.name,
  217. deptName:this.$store.state.user.deptName,
  218. // version: getApp().globalData.config.appInfo.version,
  219. footerindex: 'mine',
  220. isfootflag: true,
  221. noticenum: 0,
  222. deptId: this.$store.state.user.deptId,
  223. wgtcode: this.$store.state.user.wgtcode,
  224. platform: 'Android',
  225. nvaHeight:44,
  226. beginTime:'2024',
  227. year:'',//年度
  228. monthtime:'',//月份
  229. yearcont:{},
  230. monthcont:{},
  231. initFace:'Y',//initFace Y不需要,N需要人脸认证
  232. }
  233. },
  234. components: {
  235. footers,popUp
  236. },
  237. computed: {
  238. avatar() {
  239. return this.$store.state.user.avatar
  240. },
  241. windowHeight() {
  242. return uni.getSystemInfoSync().windowHeight - 50
  243. }
  244. },
  245. onPageScroll(e) {
  246. var scrollTop = Number(e.scrollTop);
  247. var listTop=Number(this.listTop)-Number(this.nvaHeight)
  248. if (scrollTop <=this.nvaHeight) {
  249. const opacity = scrollTop / 100 // 计算透明度值
  250. const color = `rgba(29, 100, 226, ${opacity})`
  251. this.backgroundColor = color // 更新盒子背景颜色
  252. } else {
  253. this.backgroundColor = '#00A9F0'
  254. }
  255. },
  256. onLoad() {
  257. this.nvaHeight=uni.getSystemInfoSync().statusBarHeight+44;
  258. if (checkPermi(['system:notice:number'])) {
  259. // this.getNoticenumber()
  260. }
  261. if(checkPermi(['system:statistics:loan'])){
  262. this.time()
  263. }
  264. // #ifdef APP-PLUS
  265. plus.runtime.getProperty(plus.runtime.appid, function(widgetInfo) {
  266. that.$store.dispatch('SetwgtFn', widgetInfo.version).then(() => {
  267. that.wgtcode=widgetInfo.version
  268. })
  269. });
  270. // #endif
  271. },
  272. mounted() {
  273. this.getHeightFn()
  274. },
  275. methods: {
  276. checkPermi,
  277. checkRole,
  278. time() {
  279. var date = new Date();
  280. var y = date.getFullYear();
  281. var m = date.getMonth() + 1;
  282. var yearStr = y + '-' + (m < 10 ? ('0' + m) : m);
  283. this.year=y;
  284. this.monthtime=yearStr;
  285. this.getCount(1)
  286. this.getCount(2)
  287. },
  288. getCount(type){
  289. var params={
  290. type:type,
  291. params:{
  292. beginTime:type==1?this.year:this.monthtime
  293. }
  294. }
  295. getCount(params).then(res=>{
  296. if(res.code==200){
  297. if(type==1){
  298. this.yearcont=res.data;
  299. }else{
  300. this.monthcont=res.data;
  301. }
  302. }
  303. })
  304. },
  305. bindDateChangea(e){
  306. var val=e.detail.value;
  307. this.monthtime=val;
  308. this.getCount(2)
  309. },
  310. bindDateChangeb(e){
  311. var val=e.detail.value;
  312. this.year=val;
  313. this.getCount(1)
  314. },
  315. getNoticeFn(){
  316. this.$tab.navigateTo("/pages/index/notice")
  317. },
  318. getHeightFn(){
  319. let query = uni.createSelectorQuery().in(this);
  320. //需要给黄色区域设置一个id标识,在这里是demo
  321. query.select('.zxbox').boundingClientRect(data => {
  322. var top=data.top<0 ? -data.top : data.top;
  323. this.listTop = data.height//赋值,待会要用
  324. if (top <=this.nvaHeight) {
  325. const opacity = top / 100 // 计算透明度值
  326. const color = `rgba(4, 145, 253, ${opacity})`
  327. this.backgroundColor = color // 更新盒子背景颜色
  328. } else {
  329. this.backgroundColor = '#00A9F0'
  330. }
  331. }).exec();
  332. },
  333. getClose(){
  334. this.initFace='Y';
  335. this.$store.dispatch('checkInitFace', this.initFace).then(() => {
  336. })
  337. },
  338. getXxwsFn(){
  339. this.$tab.navigateTo(`/work/pages/prove/index`)
  340. },
  341. //业务申报
  342. handleToAddYwsb(){
  343. if(checkPermi(['system:registered:user'])&&!checkPermi(['system:system:user'])){
  344. this.$store.dispatch('GetInfo').then(vres => {
  345. this.initFace=this.$store.state.user.initFace;
  346. if(this.initFace=='Y'){
  347. this.$tab.navigateTo("/work/pages/prove/zctype")
  348. }
  349. })
  350. }else{
  351. this.$tab.navigateTo("/work/pages/prove/zctype")
  352. }
  353. },
  354. //我的申报
  355. handleToMysb(){
  356. this.$tab.navigateTo("/work/pages/business/list?from=my&type=0")
  357. },
  358. //待办事项
  359. handleToDbsx(){
  360. this.$tab.navigateTo("/pages/index/notice?type=dbtz")
  361. },
  362. //我的暂存
  363. handleToMyzc(){
  364. this.$tab.navigateTo("/work/pages/business/zclist")
  365. },
  366. //回收站
  367. handleToHsz(){
  368. this.$tab.navigateTo("/work/pages/business/hszlist")
  369. },
  370. //担保材料
  371. handleToDbcy(){
  372. this.$tab.navigateTo("/work/pages/prove/dbcltips")
  373. },
  374. // 修改密码
  375. handleUpassword(){
  376. this.$tab.navigateTo(`/pages/mine/pwd/index`)
  377. },
  378. // 账号信息
  379. handleToInfo() {
  380. this.$tab.navigateTo('/pages/mine/info/index')
  381. },
  382. handleToAddNews(){
  383. this.$tab.navigateTo('/work/pages/news/add')
  384. },
  385. //添加企业
  386. handleToAddQy(){
  387. this.$tab.navigateTo('/work/pages/prove/qylist')
  388. },
  389. handleToLogin() {
  390. this.$tab.reLaunch('/pages/login')
  391. },
  392. handleToAvatar() {
  393. this.$tab.navigateTo('/pages/mine/avatar/index')
  394. },
  395. handleLogout() {
  396. this.$modal.confirm('确定注销并退出系统吗?').then(() => {
  397. this.$store.dispatch('LogOut').then(() => {
  398. this.$tab.reLaunch('/pages/index')
  399. })
  400. })
  401. },
  402. onlineWgt() {
  403. let that = this;
  404. plus.runtime.getProperty(plus.runtime.appid, function(widgetInfo) {
  405. that.$store.dispatch('SetwgtFn', widgetInfo.version).then(() => {
  406. that.wgtcode=widgetInfo.version
  407. })
  408. that.comparisonVersionNo(widgetInfo.versionCode);
  409. });
  410. // that.comparisonVersionNo()
  411. },
  412. comparisonVersionNo(versionCode) {
  413. let that = this;
  414. // console.log("aaaaaaa===versionCode", versionCode);
  415. const parmas = {
  416. model: that.platform
  417. }
  418. findVersion(parmas).then(res => {
  419. if (res.code == "200") {
  420. let versionNos = res.data.code;
  421. console.log(versionNos, 'versionNos')
  422. // console.log(res.data.path);
  423. let filePath = res.data.path;
  424. if (versionNos != versionCode) { //服务器返回1更新,0则不更新
  425. uni.showModal({
  426. title: '提示',
  427. content: '发现新版本,是否升级',
  428. success: function(res) {
  429. // console.log(widgetInfo.version);
  430. if (res.confirm) {
  431. console.log('用户点击确定');
  432. that.getProperty(filePath);
  433. } else if (res.cancel) {
  434. console.log('用户点击取消');
  435. }
  436. }
  437. });
  438. } else {
  439. this.$toast('该版本已是最新版')
  440. }
  441. }
  442. }).catch(error => {
  443. uni.hideLoading()
  444. console.log(error)
  445. })
  446. },
  447. getProperty(getProperty) {
  448. // console.log("bbbbbbbbb----------->", getProperty)
  449. let that = this;
  450. // 在线升级app/热更新
  451. that.showwri = true;
  452. const downloadTask = uni.downloadFile({ //下载文件
  453. url: baseUrl + getProperty,
  454. success: (downloadResult) => {
  455. // console.log(downloadResult);
  456. if (downloadResult.statusCode == 200) {
  457. // 更新升级
  458. plus.runtime.install(downloadResult.tempFilePath, {
  459. force: true
  460. }, function() {
  461. // console.log('install success...');
  462. that.showwri = false;
  463. plus.nativeUI.alert("应用资源更新完成!", function() {
  464. plus.runtime.restart();
  465. });
  466. }, function(e) {
  467. that.showwri = false;
  468. plus.nativeUI.alert("更新失败,请稍后再试");
  469. });
  470. }
  471. }
  472. });
  473. downloadTask.onProgressUpdate((res) => { //下载文件的进度
  474. that.totalBytesWritten = res.totalBytesWritten; //当前下载大小
  475. that.progress = res.progress; //当前下载比例
  476. that.totalBytesExpectedToWrite = res.totalBytesExpectedToWrite; //
  477. });
  478. },
  479. getNoticenumber() {
  480. var params = {
  481. deptId: this.deptId
  482. }
  483. getNoticenumber(params).then(res => {
  484. if (res.code == 200) {
  485. this.noticenum = Number(res.data)
  486. } else {
  487. this.$toast(res.msg)
  488. }
  489. })
  490. },
  491. }
  492. }
  493. </script>
  494. <style lang="scss">
  495. page{background-color: #f6f6f6;}
  496. .navbox{position: fixed;left: 0;right: 0;top: 0;z-index: 4;
  497. .topl{width: 274rpx;height: 50rpx;margin-left: 14rpx;}
  498. .topr{width: 36rpx;height: 36rpx;position: relative;margin-right: 10rpx;
  499. image{width: 100%;height: 100%;}
  500. // .cir{background: #FF4747;font-size: 14rpx;color: #FFFFFF;border-radius: 50%;border: 2rpx solid #FFFFFF;min-width: 20rpx;height: 20rpx;
  501. // position: absolute;right: -5rpx;top: -5rpx;text-align: center;line-height: 16rpx;
  502. // }
  503. .cir{width: 14rpx;height: 14rpx;background: #DF0024;border-radius: 50%;position: absolute;right: -7rpx;top: -7rpx;}
  504. }
  505. }
  506. .zxbox{
  507. .bgimg{width: 100%;height: 680rpx;}
  508. .mbox{margin-top: -540rpx;padding: 0 36rpx;z-index: 1;position: relative;
  509. .infobox{margin-bottom: 60rpx;
  510. .limg{width: 140rpx;height: 140rpx;flex: 0 0 auto;margin-right: 26rpx;border-radius: 50%;}
  511. .cbox{flex: 1;z-index: 1;
  512. image{width: 32rpx;height: 38rpx;}
  513. .tit{font-weight: bold;font-size: 40rpx;color: #ffffff;margin-bottom: 14rpx;}
  514. .txt{font-weight: bold;font-size: 24rpx;background-color: #2973C7;color: #FFFFFF;height: 38rpx;line-height: 38rpx;margin: 0 -2rpx;padding:0 2rpx;}
  515. }
  516. .rimg{width: 12rpx;height: 20rpx;flex: 0 0 auto;margin-left: 20rpx;}
  517. }
  518. .conts{margin-bottom: 24rpx;background: #FFFFFF;box-shadow: 0px 0px 10rpx 0px rgba(216,216,216,0.4);border-radius: 20rpx;
  519. padding: 0 20rpx;box-sizing: border-box;
  520. .conta{border-bottom: 2rpx dashed #E6E6E6;padding: 38rpx 0 44rpx;
  521. .rimg{width: 16rpx;height: 22rpx;margin-left: 22rpx;flex: 0 0 auto;}
  522. .contn{
  523. display: flex;align-items: center;flex: 0 0 auto;width: 286rpx;
  524. .img{width: 42rpx;height: 40rpx;display: flex;align-items: center;justify-content: center;margin-right: 18rpx;flex: 0 0 auto;
  525. .imga{width: 42rpx;height: 40rpx;}
  526. .imgb{width: 30rpx;height: 40rpx;}
  527. .imgc{width: 38rpx;height: 40rpx;}
  528. .imgd{width: 34rpx;height: 40rpx;}
  529. }
  530. .ctit{font-weight: 500;font-size: 26rpx;color: #222327;flex: 0 0 auto;}
  531. .ctxt{flex: 1;text-align: right;font-weight: bold;font-size: 32rpx;word-break: break-all;}
  532. }
  533. .line{width: 2rpx;height: 28rpx;background: #E6E6E6;margin: 0 32rpx;flex: 0 0 auto;}
  534. }
  535. }
  536. .mbgbox{width: 100%;background: #FFFFFF;border-radius: 10rpx;margin-bottom: 24rpx;
  537. .mine_list{
  538. padding: 34rpx 22rpx;
  539. .limg{flex: 0 0 auto;width: 42rpx;height: 42rpx;margin-right: 26rpx;display: flex;align-items: center;justify-content: center;
  540. .imga{width: 40rpx;height: 40rpx;}
  541. .imgb{width: 38rpx;height: 40rpx;}
  542. .imgc{width: 42rpx;height: 42rpx;}
  543. }
  544. .tit{font-weight: bold;font-size: 30rpx;color: #222327;}
  545. .txt{font-weight: 500;font-size: 30rpx;color: #666666;margin-left: 20rpx;flex: 0 0 auto;}
  546. .rimg{width: 16rpx;height: 22rpx;margin-left: 20rpx;flex: 0 0 auto;}
  547. }
  548. }
  549. }
  550. }
  551. .ztit{font-size: 24rpx;color:#c6c6c9;text-align: center;flex:0 0 auto;margin-bottom: 28rpx;margin-top: 40rpx;}
  552. </style>