morePage.vue 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685
  1. <template>
  2. <view>
  3. <view class="morePages">
  4. <!-- 头部栏 -->
  5. <view class="header-box">
  6. <UniStatusBar></UniStatusBar>
  7. <view class="title flex align_center" :style="{height:(navHeight+'px')}">
  8. <u-image src="/static/logo-h.png" width="349" height='40'></u-image>
  9. </view>
  10. </view>
  11. <!-- body -->
  12. <view class="morePages-body">
  13. <view class="body-box bg-blue">
  14. <!-- 名片 -->
  15. <view class="userCard flex align_center justify_between">
  16. <view class="userCard-info flex align_center">
  17. <view>
  18. <u-image shape='circle' v-if="!hasLogin" src="/static/def_personal_avatar.png" width="90" height="90"></u-image>
  19. <u-image shape='circle' v-else :src="avatarUrl||'/static/def_personal_avatar.png'" width="90" height="90"></u-image>
  20. </view>
  21. <view class="user-info" @click="toUser">
  22. <view v-if="!hasLogin" style="font-size: 40rpx;">
  23. 请点击登录
  24. </view>
  25. <view v-else>
  26. <view class="user-name">{{userInfo.userNameCN || userInfo.mobile}}</view>
  27. <view v-if="hasLogin&&userInfo&&userInfo.sysUserFlag == '0'">
  28. <u-tag text="个人用户" mode="dark" type="warning" shape="circle" size="mini" />
  29. </view>
  30. <view v-else>{{userInfo.orgName}}</view>
  31. </view>
  32. </view>
  33. </view>
  34. <view @click="toUser">
  35. <text v-if="hasLogin&&userInfo&&userInfo.sysUserFlag == '0'" class="user-rz">
  36. {{storeApply&&storeApply.auditStatus=='WAIT'?'认证门店审核中':'认证成为门店'}}
  37. </text>
  38. <uni-icons type="arrowright" size="20" color="#999"></uni-icons>
  39. </view>
  40. </view>
  41. </view>
  42. <view class="list-box" v-if="hasRedPacket&&hasShelf">
  43. <view class="list-title flex align_center justify_between" @click="toPage('/pagesB/redPacket')">
  44. <view><u-icon size="34" color="#f10000" name="red-packet-fill"></u-icon> <text style="color: #ff0000;margin-left: 10rpx;">红包奖励</text></view>
  45. <view>
  46. <u-badge :absolute="false" :count="redPackCount"></u-badge>
  47. <uni-icons type="arrowright" size="20" color="#999"></uni-icons>
  48. </view>
  49. </view>
  50. </view>
  51. <view class="list-box" v-if="hasLogin&&$hasPermissions('M_couponList_mini')">
  52. <view class="list-title flex align_center justify_between" @click="toPage('/pagesB/coupon')">
  53. <view><u-icon size="34" color="#ff7d0b" name="gift-fill"></u-icon> <text style="color: #ff7d0b;margin-left: 10rpx;">我的优惠券</text></view>
  54. <view>
  55. <u-badge :absolute="false" :count="couponCount"></u-badge>
  56. <uni-icons type="arrowright" size="20" color="#999"></uni-icons>
  57. </view>
  58. </view>
  59. </view>
  60. <!-- 网格图标 -->
  61. <view class="list-box" v-for="item in itemList" :key="item.id">
  62. <view class="list-title" v-if="item.text">
  63. <text>{{item.text}}</text>
  64. </view>
  65. <view class="list-body" :style="{paddingTop:item.text?0:'10px'}">
  66. <uni-grid :column="item.column" :highlight="true" :show-border="false" :square="false" @change="e=>openPage(e,item.child)">
  67. <uni-grid-item v-for="(sub, idx) in item.child" :index="idx" :key="idx">
  68. <view class="grid-item-box">
  69. <u-icon class="icons" :color="sub.color" :size="item.size" :name="sub.icon" custom-prefix="custom-icon"></u-icon>
  70. <text class="text">{{sub.text}}</text>
  71. </view>
  72. </uni-grid-item>
  73. </uni-grid>
  74. </view>
  75. </view>
  76. <view class="list-box" v-if="hasLogin">
  77. <view class="list-title flex justify_center phone" @click="quitOut">
  78. <text>退出登录</text>
  79. </view>
  80. </view>
  81. </view>
  82. <!-- 去认证弹框 -->
  83. <u-popup v-model="showPopup" mode="center" :border-radius="20" closeable>
  84. <view style="background-color: #fff;padding: 1rem;">
  85. <u-image width="533" height="415" src="/static/authimg.jpg"></u-image>
  86. <view style="padding-top:1rem;" class="flex justify_center">
  87. <u-button @click="toAuthStore()" shape="circle" :custom-style="{background:'#066cff',color:'#fff',width:'350rpx'}">开始认证</u-button>
  88. </view>
  89. </view>
  90. </u-popup>
  91. </view>
  92. <!-- tab -->
  93. <u-tabbar :list="vuex_tabBarList" :mid-button-size="80" :before-switch="beforeSwitch" :midButton="vuex_tabBarList.length==5"></u-tabbar>
  94. </view>
  95. </template>
  96. <script>
  97. import {
  98. mapState,
  99. mapMutations
  100. } from 'vuex'
  101. import UniStatusBar from '@/components/uni-status-bar/uni-status-bar.vue'
  102. import { queryQplsConfig,getProductfindByScanCode } from '@/api/shelf.js'
  103. import { findUserReward } from '@/api/rewardRule.js'
  104. import { ticketQueryCount } from '@/api/user.js'
  105. import { clickTab, toLogin } from "@/utils/index.js"
  106. export default {
  107. components: {
  108. UniStatusBar // 状态栏组件
  109. },
  110. data() {
  111. return {
  112. dealerPhone: null, // 经销商电话
  113. showPopup: false,
  114. showPriceSet: false,
  115. shelfSn: null,
  116. avatarUrl:'', // 用户图像
  117. navHeight: 44,
  118. couponCount: 0,
  119. redPackCount: 0
  120. }
  121. },
  122. computed: {
  123. ...mapState(['hasLogin','vuex_vinScanNums','vuex_scanMaxNums','vuex_tabBarList']),
  124. hasShelf(){
  125. return !!this.$store.state.vuex_storeShelf
  126. },
  127. userInfo(){
  128. return this.$store.state.vuex_userInfo
  129. },
  130. storeApply(){
  131. return this.$store.state.vuex_storeAuthInfo
  132. },
  133. hasRedPacket(){
  134. const rule = this.$store.state.vuex_rewardRule
  135. return rule&&rule.ruleStatus == 'release'
  136. },
  137. itemList(){
  138. const list = [
  139. {
  140. text: '订单管理',
  141. icon: 'order',
  142. auth: true,
  143. column: 4,
  144. size: 60,
  145. child:[
  146. {
  147. text: '货架订单',
  148. icon: 'huojiaguanli',
  149. auth: this.$hasPermissions('M_shelfOrder_mini'),
  150. path: '/pagesA/digitalShelf/orderList',
  151. color: '#056cd9',
  152. isShelf: true
  153. },
  154. {
  155. text: '急送订单',
  156. icon: 'yijianshansong',
  157. auth: this.$hasPermissions('M_tempShelfOrder_mini'),
  158. path: '/pagesA/digitalShelf/tempOrderList/tempOrderList',
  159. color: '#dd6859',
  160. isShelf: true
  161. },
  162. {
  163. text: '采购订单',
  164. icon: 'purchaseorder',
  165. auth: this.$hasPermissions('M_procureOrder_mini'),
  166. path: '/pagesB/procureOrderList',
  167. color: '#ffaa00'
  168. }
  169. ],
  170. },
  171. {
  172. text: '货架管理',
  173. icon: 'list-dot',
  174. auth: true,
  175. column: 4,
  176. size: 60,
  177. child:[
  178. {
  179. text: '库存查询',
  180. icon: 'stockquery',
  181. auth: this.$hasPermissions('M_stockQueryList_mini'),
  182. path: '/pagesB/stockQuery/stockQuery',
  183. color: '#ff87a3',
  184. isShelf: true
  185. },
  186. {
  187. text: '补货记录',
  188. icon: 'replenishment',
  189. auth: this.$hasPermissions('M_stockPut_mini'),
  190. path: '/pagesA/digitalShelf/stockPut',
  191. color: '#55aaff',
  192. isShelf: true
  193. },
  194. {
  195. text: '结算记录',
  196. icon: 'settlement',
  197. auth: this.$hasPermissions('M_settlementRecord_mini'),
  198. path: '/pagesA/digitalShelf/settlementRecord/settlementRecord',
  199. color: '#55aa7f',
  200. isShelf: true
  201. },
  202. {
  203. text: '付款结算',
  204. icon: 'payrecord',
  205. auth: this.$hasPermissions('M_settlementManage_mini'),
  206. path: '/pagesA/digitalShelf/settlementManage/settlementManage',
  207. color: '#ff9777',
  208. isShelf: true
  209. },
  210. {
  211. text: '编码取货',
  212. icon: 'ziyuanxhdpi',
  213. auth: this.userInfo && this.userInfo.sysUserFlag == '1',
  214. path: '#quhuo1',
  215. color: '#2196f3',
  216. isShelf: true
  217. },
  218. {
  219. text: '扫码取货',
  220. icon: 'saoma1',
  221. auth: this.userInfo && this.userInfo.sysUserFlag == '1',
  222. path: '#quhuo0',
  223. color: '#ffaa00',
  224. isShelf: true
  225. },
  226. {
  227. text: 'VIN查询历史',
  228. icon: 'lishijilu',
  229. auth: this.hasLogin,
  230. path: '/pagesA/vinRecord/vinRecord',
  231. color: '#abc4ff',
  232. isShelf: true
  233. },
  234. {
  235. text: '联系汽配商',
  236. icon: 'lianxidianhua',
  237. auth: this.hasLogin&&this.dealerPhone,
  238. path: '#call',
  239. color: '#00aaff',
  240. isShelf: true
  241. },
  242. ],
  243. },
  244. {
  245. text: '轮胎质保单',
  246. icon: 'file-text',
  247. auth: true,
  248. column: 4,
  249. size: 60,
  250. child:[
  251. {
  252. text: '创建质保单',
  253. icon: 'zhibaodan',
  254. auth: this.$hasPermissions('M_creatWarranty_mini'),
  255. path: '/pagesA/qualityPolicy/creatOrder',
  256. color: '#056cd9'
  257. },
  258. {
  259. text: '质保单查询',
  260. icon: 'ordersearch',
  261. auth: this.$hasPermissions('M_searchWarranty_mini'),
  262. path: '/pagesA/qualityPolicy/searchOrder',
  263. color: '#ffaa7f'
  264. },
  265. ],
  266. },
  267. {
  268. text: '基础设置',
  269. icon: 'setting',
  270. auth: true,
  271. column: 4,
  272. size: 60,
  273. child:[
  274. {
  275. text: '员工管理',
  276. icon: 'employee',
  277. auth: this.$hasPermissions('M_employee_mini'),
  278. path: '/pages/storeManage/personnel',
  279. color: '#ff9d7c'
  280. },
  281. {
  282. text: '岗位权限',
  283. icon: 'job',
  284. auth: this.$hasPermissions('M_roleSetting_mini'),
  285. path: '/pages/storeManage/roleSetting/roleSetting',
  286. color: '#aaaaff'
  287. },
  288. {
  289. text: '价格显示设置',
  290. icon: 'permission',
  291. auth: this.$hasPermissions('M_priceShow_mini')&&this.showPriceSet,
  292. path: '/pages/storeManage/priceSetting/priceSetting',
  293. color: '#55aaff',
  294. isShelf: true
  295. },
  296. ],
  297. }
  298. ]
  299. // 计算父节点,权限
  300. list.forEach(item => {
  301. item.id = this.$u.guid()
  302. item.child = item.child.filter(c => c.auth)
  303. item.auth = item.child.length > 0
  304. })
  305. return list
  306. }
  307. },
  308. onShow() {
  309. // 用户头像
  310. this.avatarUrl = uni.getStorageSync('userPhoto');
  311. // 获取货架信息
  312. const shelfInfo = this.$store.state.vuex_storeShelf
  313. this.shelfSn = shelfInfo ? shelfInfo.shelfSn : ''
  314. this.dealerPhone = shelfInfo&&shelfInfo.contactMobile ? shelfInfo.contactMobile : ''
  315. if(this.shelfSn){
  316. this.getPriceCofig()
  317. }
  318. // 获取优惠券总数
  319. if(this.hasLogin&&this.$hasPermissions('M_couponList_mini')){
  320. this.getCouponCount()
  321. }
  322. // 红包总金额
  323. if(this.hasRedPacket&&this.hasShelf){
  324. this.getUserReward()
  325. }
  326. // 隐藏促销模块
  327. if(!this.hasLogin){
  328. this.hidePromoTab()
  329. }
  330. },
  331. // 页面卸载
  332. onUnload() {
  333. uni.$off('refashProm')
  334. },
  335. methods: {
  336. // 获取优惠券数量
  337. getCouponCount(){
  338. if(this.userInfo.sysUserFlag == '1'){
  339. ticketQueryCount().then(res => {
  340. this.couponCount = res.data ? res.data.ticketValue : 0
  341. })
  342. }
  343. },
  344. // 红包总金额
  345. getUserReward(){
  346. findUserReward().then(res => {
  347. this.redPackCount = res.data ? res.data.rewardAmount : 0
  348. })
  349. },
  350. // 查看用户信息
  351. toUser(){
  352. if(this.hasLogin){
  353. // 用户详细信息 或 门店认证
  354. uni.navigateTo({
  355. url: this.userInfo.sysUserFlag == '1' ? '/pages/personData/personData' : '/pages/storeManage/storeAuth'
  356. })
  357. }else{
  358. toLogin()
  359. }
  360. },
  361. // 隐藏促销模块
  362. hidePromoTab(){
  363. // 删除促销模块
  364. const promoIndex = this.$store.state.vuex_tabBarList.findIndex(item => item.text == '促销')
  365. if(promoIndex > -1){
  366. this.$store.state.vuex_tabBarList.splice(promoIndex,1)
  367. }
  368. // 扫描按钮不局中
  369. const scanTab = this.$store.state.vuex_tabBarList.find(item => item.text == '扫描VIN')
  370. if(scanTab){
  371. scanTab.iconPath = "/static/tab/tab_scan_normal.png"
  372. scanTab.midButton = false
  373. }
  374. },
  375. // tab单击
  376. beforeSwitch(index){
  377. const row = this.$store.state.vuex_tabBarList[index] // 当前tab
  378. const isNoAuth = this.userInfo ? this.userInfo.sysUserFlag == '0' : false // 是否认证门店
  379. return clickTab(row,this.hasLogin,isNoAuth,this.vuex_vinScanNums < this.vuex_scanMaxNums)
  380. },
  381. // 网格打开页面
  382. openPage(e,child){
  383. const item = child[e.detail.index]
  384. this.toPage(item.path,item.isShelf)
  385. },
  386. // 获取价格配置
  387. getPriceCofig(){
  388. queryQplsConfig({shelfSn: this.shelfSn}).then(res => {
  389. this.$store.state.vuex_configPrice = res.data || null
  390. const ret = [false,false]
  391. ret[0]= res.data.shelf_cost_show == '1' || res.data.non_shelf_cost_show == '1'
  392. ret[1]= res.data.shelf_price_show == '1' || res.data.non_shelf_price_show == '1'
  393. this.showPriceSet = ret.filter(item => !!item).length > 0
  394. })
  395. },
  396. // 取货
  397. openTakeGood(index){
  398. // 已有数字货架
  399. if(this.hasShelf){
  400. this.clickAction(index)
  401. }else{
  402. uni.showToast({
  403. icon:'none',
  404. title: '门店没有关联数字货架,无法使用此功能!'
  405. })
  406. }
  407. },
  408. // 选择取货方式
  409. clickAction(index){
  410. const shelfSn = this.hasShelf.shelfSn
  411. const _this = this
  412. // 扫描
  413. if(index == 0){
  414. uni.scanCode({
  415. success: function (ret) {
  416. console.log(ret);
  417. const params = {
  418. codeType: ret.scanType == 'QR_CODE' ? 0 : 1
  419. }
  420. // 二维码
  421. if(ret.scanType == 'QR_CODE'){
  422. const result = ret.result.split("&")
  423. params.productSn = result[2] // 产品编码sn
  424. }else{
  425. params.qrCode = ret.result
  426. }
  427. uni.showLoading({
  428. title: "正在查询产品..."
  429. })
  430. // 确认取货
  431. getProductfindByScanCode(params).then(res => {
  432. if(res.status == 200 && res.data){
  433. if(res.data.currentInven){
  434. const billSource = ret.scanType == 'QR_CODE' ? 'qr_code': 'bar_code'
  435. const retData = Object.assign({shelfSn: shelfSn, billSource: billSource},res.data)
  436. _this.$store.state.vuex_tempData = retData
  437. uni.navigateTo({
  438. url: '/pagesA/queryByCode/confirmQh'
  439. })
  440. }else{
  441. uni.showModal({
  442. title: '提示',
  443. content: '产品库存为0,无法取货!',
  444. confirmText: '好的',
  445. showCancel: false
  446. })
  447. }
  448. }else{
  449. uni.showModal({
  450. title: '提示',
  451. content: '产品不属于此货架,请重新扫描!',
  452. confirmText: '好的',
  453. showCancel: false
  454. })
  455. }
  456. uni.hideLoading()
  457. })
  458. }
  459. });
  460. }else{
  461. // 按编码搜索
  462. uni.navigateTo({
  463. url: '/pagesA/queryByCode/queryByCode'
  464. })
  465. }
  466. },
  467. // 跳转打开页面
  468. toPage(path,isShelf){
  469. const _this = this
  470. if(this.hasLogin){
  471. // 游客未认证
  472. if(this.userInfo.sysUserFlag == '0'){
  473. if(this.storeApply&&this.storeApply.auditStatus=='WAIT'){
  474. uni.showModal({
  475. title: '提示',
  476. content: '门店认证资料审核中,请耐心等待!',
  477. confirmText: '知道了',
  478. showCancel: false
  479. })
  480. }
  481. // 如果审核已通过
  482. else if(this.storeApply&&this.storeApply.auditStatus=='PASS'){
  483. uni.showModal({
  484. title: '提示',
  485. content: '门店认证审核已通过,请重新登录!',
  486. confirmText: '去登录',
  487. showCancel: false,
  488. success() {
  489. _this.$store.dispatch('userLogout');
  490. toLogin()
  491. }
  492. })
  493. }else{
  494. this.showPopup = true
  495. }
  496. }else{
  497. // 已有数字货架
  498. if(this.hasShelf || !isShelf){
  499. if(path.indexOf("/pages")>=0){
  500. uni.navigateTo({
  501. url: path
  502. })
  503. }else{
  504. if(path == '#quhuo1'){
  505. this.openTakeGood(1)
  506. }
  507. if(path == '#quhuo0'){
  508. this.openTakeGood(0)
  509. }
  510. if(path == '#call'){
  511. this.call()
  512. }
  513. }
  514. }else{
  515. uni.showToast({
  516. icon:'none',
  517. title: '门店没有关联数字货架,无法使用此功能!'
  518. })
  519. }
  520. }
  521. }else{
  522. toLogin()
  523. }
  524. },
  525. // 去认证
  526. toAuthStore(){
  527. this.showPopup = false
  528. uni.navigateTo({
  529. url: '/pages/storeManage/storeAuth'
  530. })
  531. },
  532. // 打电话
  533. call(){
  534. this.callPhone(this.dealerPhone)
  535. },
  536. // 退出登录
  537. quitOut(){
  538. let _this = this
  539. uni.showModal({
  540. title: '提示',
  541. content: '确定退出登录吗?',
  542. success: (ret) => {
  543. if(ret.confirm){
  544. _this.$store.dispatch('userLogout');
  545. toLogin()
  546. }
  547. }
  548. })
  549. }
  550. }
  551. }
  552. </script>
  553. <style lang="less">
  554. .morePages{
  555. width: 100%;
  556. background-image: linear-gradient(#86defa 0%,#cdeff9 20%,#f8f8f8 30%);
  557. .header-box{
  558. z-index: 5;
  559. padding: 0em 1em;
  560. background: #03A9F4;
  561. .title{
  562. padding: 0;
  563. }
  564. .version{
  565. color: #FFEB3B;
  566. font-size: 0.8em;
  567. margin-left: 1em;
  568. }
  569. }
  570. .morePages-body{
  571. padding: 0 30rpx;
  572. overflow: hidden;
  573. .body-box{
  574. margin-bottom: 10px;
  575. z-index: 4;
  576. }
  577. .bg-blue{
  578. position: relative;
  579. > view{
  580. z-index: 100;
  581. position: relative;
  582. }
  583. &::after{
  584. /* 这个伪类的作用就是一个圆弧的背景色 */
  585. width: 130%;
  586. height: 100%;
  587. position: absolute;
  588. /*设置水平居中*/
  589. left: -15%;
  590. /* 之所以left:20%,是因为width:140%,若width:160%,那么left:30%才能水平居中 */
  591. top: -25%;
  592. /*层叠顺序,最底层显示*/
  593. content: '';
  594. border-radius: 0 0 50% 50%;
  595. /*分别对应 左上 右上 右下 左下 可以修改成其它颜色*/
  596. background: linear-gradient(to bottom, #03A9F4, #02a6ec);
  597. }
  598. .userCard{
  599. position:relative;
  600. left:0;
  601. bottom:0;
  602. padding: 0.5rem;
  603. background: #fff;
  604. border-radius: 25rpx;
  605. box-shadow: 2rpx 2rpx 5rpx #bcdede;
  606. .userCard-info{
  607. flex-grow:1;
  608. > view{
  609. &:last-child{
  610. margin-left: 0.5em;
  611. line-height: 1.5em;
  612. .user-name{
  613. font-size: 1rem;
  614. }
  615. >view{
  616. padding: 0.2em;
  617. }
  618. }
  619. }
  620. .user-info{
  621. flex-grow:1;
  622. }
  623. }
  624. .user-rz{
  625. font-size: 0.8rem;
  626. color:#58aff5;
  627. }
  628. }
  629. }
  630. .list-box{
  631. background: #ffffff;
  632. margin-bottom: 20rpx;
  633. border-radius: 25rpx;
  634. overflow: hidden;
  635. box-shadow: 2rpx 2rpx 5rpx #eee;
  636. .list-title{
  637. padding: 25rpx 20rpx;
  638. color: #666;
  639. > text{
  640. font-size: 28rpx;
  641. }
  642. }
  643. &:first-child{
  644. box-shadow: 2rpx 2rpx 5rpx #cdeff9;
  645. }
  646. .list-body{
  647. padding: 0 20rpx;
  648. }
  649. .grid-item-box{
  650. display: flex;
  651. flex-direction: column;
  652. align-items:center;
  653. justify-content: center;
  654. margin-bottom: 15px;
  655. .text{
  656. text-align:center;
  657. color: #666;
  658. margin-top: 3px;
  659. font-size: 12px;
  660. }
  661. .icons{
  662. text-align:center;
  663. display: flex;
  664. align-items: center;
  665. flex-direction: column;
  666. justify-content: center;
  667. }
  668. }
  669. }
  670. .phone{
  671. color: #00aaff;
  672. &:active{
  673. opacity: 0.8;
  674. transform:scale(0.9);
  675. }
  676. }
  677. }
  678. }
  679. </style>