index.vue 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731
  1. <template>
  2. <view>
  3. <view class="order-index">
  4. <view class="topBox">
  5. <view class="header acea-row">
  6. <view class="items">
  7. <image :src="user.avatar" mode=""></image>
  8. <span class="font">{{user.staff_name}}</span><span>({{manager == 0?'店员':'店长'}})</span>
  9. </view>
  10. <view class="item">
  11. <!-- <view class="iconfont icon-saoma" @click="scanCode"></view> -->
  12. <!-- #ifdef MP || MP-WEIXIN || APP -->
  13. <view class="iconfont icon-saoma" @click="scanCode">
  14. </view>
  15. <!-- #endif -->
  16. <!-- #ifdef H5 -->
  17. <view v-if="isWeixin" class="iconfont icon-saoma" @click="scanCode"></view>
  18. <!-- #endif -->
  19. </view>
  20. </view>
  21. <view class="topstatus acea-row" v-if="is_manager == 1 || user.order_status == 1">
  22. <navigator url="/pages/admin/store/order/index?type=0" hover-class="none">
  23. <view class="title">{{orderlist.unpaid_count}}</view>
  24. <view>待付款</view>
  25. </navigator>
  26. <navigator url="/pages/admin/store/order/index?type=1" hover-class="none">
  27. <view class="title">{{orderlist.unshipped_count}}</view>
  28. <view>待配送</view>
  29. </navigator>
  30. <navigator url="/pages/admin/store/order/index?type=5" hover-class="none">
  31. <view class="title">{{orderlist.unwriteoff_count}}</view>
  32. <view>待核销</view>
  33. </navigator>
  34. <navigator url="/pages/admin/store/order/index?type=3" hover-class="none">
  35. <view class="title">{{orderlist.evaluated_count}}</view>
  36. <view>待评价</view>
  37. </navigator>
  38. <navigator url="/pages/admin/store/order/index?type=-3" hover-class="none">
  39. <view class="title">{{orderlist.refund_count}}</view>
  40. <view>退款</view>
  41. </navigator>
  42. </view>
  43. </view>
  44. <view class="wrapper">
  45. <view class="title">
  46. <view class="uni-list-cell-db" @click="hiddened">
  47. <picker @change="bindPickerChange" :range="array" @cancel="cancel" v-if="is_manager == 1">
  48. <span class="iconfont icon-shujutongji"></span>
  49. <label class="aa">{{array[index]}}</label>
  50. <text class='iconfont' :class='hidden==true?"icon-xiangxia":"icon-xiangshang"'></text>
  51. </picker>
  52. <view v-else><span class="iconfont icon-shujutongji"></span>数据统计</view>
  53. </view>
  54. <view class="tab">
  55. <view class="box" :class="detailtabs== 'today' ? 'on':''" @click="detailtab('today')">今日</view>
  56. <view class="box" :class="detailtabs== 'yesterday' ? 'on':''" @click="detailtab('yesterday')">昨日</view>
  57. <view class="box" :class="detailtabs== 'month' ? 'on':''" @click="detailtab('month')">本月</view>
  58. </view>
  59. </view>
  60. <view class="list acea-row">
  61. <navigator v-if="manager == 1" class="item" :url="`/pages/admin/store/statistics/index?type=1&time=${detailtabs}&manager=1`" hover-class="none">
  62. <view class="num">{{ census.send_price }}</view>
  63. <view>配送订单额</view>
  64. </navigator>
  65. <navigator v-if="manager == 1" class="item" :url="`/pages/admin/store/statistics/index?type=2&time=${detailtabs}&manager=1`" hover-class="none">
  66. <view class="num">{{ census.send_count }}</view>
  67. <view>配送订单数</view>
  68. </navigator>
  69. <navigator v-if="manager == 1" class="item" :url="`/pages/admin/store/statistics/index?type=3&time=${detailtabs}&manager=1`" hover-class="none">
  70. <view class="num">{{ census.refund_price }}</view>
  71. <view>退款订单额</view>
  72. </navigator>
  73. <navigator class="item" :url="`/pages/admin/store/statistics/index?type=4&time=${detailtabs}&manager=${manager}`" hover-class="none">
  74. <view class="num">{{ census.cashier_price }}</view>
  75. <view>收银订单额</view>
  76. </navigator>
  77. <navigator class="item" :url="`/pages/admin/store/statistics/index?type=5&time=${detailtabs}&manager=${manager}`" hover-class="none">
  78. <view class="num">{{ census.writeoff_price }}</view>
  79. <view>核销订单额</view>
  80. </navigator>
  81. <navigator class="item" :url="`/pages/admin/store/statistics/index?type=6&time=${detailtabs}&manager=${manager}`" hover-class="none">
  82. <view class="num">{{ census.svip_price }}</view>
  83. <view>付费会员额</view>
  84. </navigator>
  85. <navigator class="item" :url="`/pages/admin/store/statistics/index?type=7&time=${detailtabs}&manager=${manager}`" hover-class="none">
  86. <view class="num">{{ census.recharge_price }}</view>
  87. <view>充值订单额</view>
  88. </navigator>
  89. <navigator class="item" :url="`/pages/admin/store/statistics/index?type=8&time=${detailtabs}&manager=${manager}`" hover-class="none">
  90. <view class="num">{{ census.spread_count }}</view>
  91. <view>推广用户数</view>
  92. </navigator>
  93. <navigator class="item" :url="`/pages/admin/store/statistics/index?type=9&time=${detailtabs}&manager=${manager}`" hover-class="none">
  94. <view class="num">{{ census.card_count }}</view>
  95. <view>激活会员卡</view>
  96. </navigator>
  97. </view>
  98. </view>
  99. <view class="public-wrapper">
  100. <view class="title">
  101. <view class="uni-list-cell-db" @click="hiddened">
  102. <span class="iconfont icon-xiangxishuju"></span>详细数据
  103. </view>
  104. <view class="tab">
  105. <view v-if="manager == 1" class="box" :class="tabs== 1 ? 'on':''" @click="tab(1)">配送</view>
  106. <view class="box" :class="tabs== 2 ? 'on':''" @click="tab(2)">收银</view>
  107. <view class="box" :class="tabs== 3 ? 'on':''" @click="tab(3)">核销</view>
  108. <view class="box" :class="tabs== 4 ? 'on':''" @click="tab(4)">充值</view>
  109. </view>
  110. </view>
  111. <view class="nav acea-row row-between-wrapper">
  112. <view class="data">日期</view>
  113. <view class="browse">订单数</view>
  114. <view class="turnover">金额</view>
  115. </view>
  116. <Loading :loaded="loaded" :loading="loading"></Loading>
  117. <view v-if="list.length" class="conter">
  118. <view class="item acea-row row-between-wrapper" v-for="(item, index) in list" :key="index">
  119. <view class="data">{{ item.time }}</view>
  120. <view class="browse">{{ item.count }}</view>
  121. <view class="turnover">¥{{ item.price }}</view>
  122. </view>
  123. </view>
  124. <view v-else class="unconter">
  125. <view v-if="!loading">暂无数据</view>
  126. </view>
  127. </view>
  128. </view>
  129. <home v-if="navigation"></home>
  130. <view v-if="iShidden">
  131. <view class="cardEntry acea-row row-center-wrapper">
  132. <view class="writeOff">
  133. <view class="pictrue">
  134. <image :src="writeData.image"></image>
  135. </view>
  136. <view class="conter">
  137. <view class="info">
  138. 核销信息:
  139. <text class="totalNum">
  140. <text class="num">{{writeData.write_off}}</text>/{{writeData.write_times}}
  141. </text>
  142. </view>
  143. <view class="center acea-row row-between-wrapper">
  144. <view class="title">本次核销</view>
  145. <view class='carnum acea-row row-center-wrapper'>
  146. <view class="reduce" :class="writeNum==writeData.write_off?'on':''" @click.stop='subCart'>-</view>
  147. <view class='num'>{{writeNum}}</view>
  148. <view class="plus" :class="writeNum==writeData.write_times?'on':''" @click.stop='addCart'>+</view>
  149. </view>
  150. </view>
  151. <view class="bottom acea-row row-between-wrapper">
  152. <view class="bnt acea-row row-center-wrapper" @click="cancelVerify">取消</view>
  153. <view class="bnt on acea-row row-center-wrapper" @click="confirmVerify">确认核销</view>
  154. </view>
  155. </view>
  156. </view>
  157. </view>
  158. <view class="mask"></view>
  159. </view>
  160. </view>
  161. </template>
  162. <script>
  163. import home from '@/components/home';
  164. import colors from '@/mixins/color.js';
  165. import {
  166. // getStatisticsInfo,
  167. // getStatisticsMonth,
  168. userInfo,
  169. orderInfo,
  170. statisticsMenuApi,
  171. getListApi,
  172. orderWriteoffInfo,
  173. orderWriteoff
  174. } from "@/api/admin";
  175. import Loading from '@/components/Loading/index.vue'
  176. export default {
  177. name: 'adminOrder',
  178. components: {
  179. Loading,
  180. home
  181. },
  182. mixins:[colors],
  183. data() {
  184. return {
  185. writeNum:1,
  186. writeData:{},
  187. iShidden: false,
  188. is_manager: 0,//判断首次进入是否为店长或店员
  189. manager: 0,//更改店长与店员的切换
  190. user: {},
  191. orderlist: {},
  192. hidden: true,
  193. page: 1,
  194. limit: 7,
  195. tip: 1,
  196. index: 0,
  197. detailtabs: 'today',
  198. array: ['门店统计', '数据统计'],
  199. tabs: 1,
  200. census: {},
  201. list: [],
  202. loaded: false,
  203. loading: false,
  204. verify_code: '',
  205. // #ifdef H5
  206. isWeixin: this.$wechat.isWeixin()
  207. // #endif
  208. }
  209. },
  210. onLoad() {
  211. this.userInfo()
  212. },
  213. methods: {
  214. subCart(){
  215. this.writeNum--;
  216. if(this.writeNum<1){
  217. this.writeNum = 1
  218. }
  219. },
  220. addCart(){
  221. this.writeNum++;
  222. let writeNo = parseInt(this.writeData.write_times) - parseInt(this.writeData.write_off);
  223. if(this.writeNum > writeNo){
  224. this.writeNum = writeNo
  225. }
  226. },
  227. cancelVerify(){
  228. this.iShidden = false
  229. },
  230. confirmVerify(){
  231. let newList = [];
  232. let obj = {
  233. cart_id:0,
  234. cart_num:0
  235. };
  236. obj.cart_id = this.writeData.cart_id[0];
  237. obj.cart_num = this.writeNum;
  238. newList.push(obj);
  239. orderWriteoff(1,{oid:this.writeData.id,cart_ids:newList}).then(res=>{
  240. this.iShidden = false
  241. this.$util.Tips({
  242. title: res.msg
  243. });
  244. }).catch(err=>{
  245. this.$util.Tips({
  246. title: err
  247. });
  248. })
  249. },
  250. // 用户信息
  251. userInfo: function() {
  252. userInfo().then(res=>{
  253. this.manager = res.data.is_manager
  254. this.is_manager = res.data.is_manager
  255. this.user = res.data
  256. if(res.data.is_manager == 0){
  257. this.tabs = 2
  258. }
  259. this.orderList()
  260. // this.getList()
  261. this.detailtab('today')
  262. })
  263. },
  264. // 订单统计
  265. orderList: function() {
  266. orderInfo({is_manager:this.manager}).then(res=>{
  267. this.orderlist = res.data
  268. })
  269. },
  270. // 统计菜单
  271. statisticsMenu: function(data) {
  272. statisticsMenuApi(data).then(res=>{
  273. this.census = res.data;
  274. })
  275. },
  276. // 详细数据列表
  277. getList: function() {
  278. let data ={
  279. type: this.tabs,
  280. is_manager : this.manager,
  281. page: this.page,
  282. limit: this.limit,
  283. data:this.detailtabs
  284. }
  285. // if (this.loading || this.loaded) return;
  286. this.loading = true;
  287. getListApi(data).then(res=>{
  288. this.loading = false
  289. // this.list.push(res.data);
  290. this.page += 1;
  291. this.list = this.list.concat(res.data);
  292. if(res.data.length < this.limit){
  293. this.tip = 2
  294. }
  295. })
  296. },
  297. hiddened: function(e) {
  298. this.hidden = !this.hidden;
  299. },
  300. cancel: function() {
  301. this.hidden = !this.hidden;
  302. },
  303. bindPickerChange: function(e) {
  304. this.tip = 1
  305. this.page = 1
  306. this.list = []
  307. this.hidden = !this.hidden;//改变的事件名
  308. this.index = e.target.value //将数组改变索引赋给定义的index变量
  309. let select = ''
  310. select=this.array[this.index] //将array【改变索引】的值赋给定义的jg变量
  311. if(select == '数据统计'){
  312. this.manager = 0
  313. this.tabs = 2
  314. this.detailtab('today')
  315. }
  316. if(select == '门店统计'){
  317. this.manager = 1
  318. this.tabs = 1
  319. this.detailtab('today')
  320. }
  321. this.orderList()
  322. },
  323. tab: function(type) {
  324. this.tip = 1
  325. this.tabs = type
  326. this.page = 1;
  327. this.list = []
  328. this.getList()
  329. },
  330. // 统计菜单
  331. detailtab: function(type) {
  332. this.detailtabs = type
  333. let data = {
  334. is_manager: this.manager,
  335. data: type
  336. }
  337. this.list = []
  338. this.page = 1;
  339. this.tip = 1
  340. this.getList()
  341. this.statisticsMenu(data)
  342. },
  343. scanCode() {
  344. var self = this;
  345. // #ifdef MP || APP
  346. uni.scanCode({
  347. scanType: ["qrCode", "barCode"],
  348. success(res) {
  349. self.verify_code = res.result
  350. self.codeChange();
  351. },
  352. fail(res) {},
  353. })
  354. // #endif
  355. //#ifdef H5
  356. this.$wechat.wechatEvevt('scanQRCode', {
  357. needResult: 1,
  358. scanType: ["qrCode", "barCode"]
  359. }).then(res => {
  360. let result = res.resultStr;
  361. if(result.includes(',')){
  362. result = result.split(",")[1]
  363. }
  364. this.verify_code = result
  365. this.codeChange();
  366. });
  367. //#endif
  368. },
  369. // 立即核销
  370. codeChange: function() {
  371. let self = this
  372. let ref = /^[0-9]*$/;
  373. if (!self.verify_code) return self.$util.Tips({
  374. title: '请输入核销码'
  375. });
  376. if (!ref.test(self.verify_code)) return self.$util.Tips({
  377. title: '请输入正确的核销码'
  378. });
  379. self.$util.Tips({
  380. title: '查询中'
  381. });
  382. setTimeout(() => {
  383. orderWriteoffInfo(1,{verify_code:self.verify_code,code_type:2}).then(res=>{
  384. if(res.status == 200){
  385. this.writeNum = 1;
  386. this.writeData = res.data[0];
  387. if(res.data[0].product_type !=4){
  388. uni.navigateTo({
  389. url:'./scanning/index?code='+self.verify_code
  390. })
  391. }else{
  392. self.iShidden = true
  393. }
  394. }else{
  395. self.$util.Tips({ title: res.msg });
  396. }
  397. }).catch(err=>{
  398. self.$util.Tips({
  399. title: err
  400. });
  401. })
  402. }, 800);
  403. },
  404. },
  405. onReachBottom(){
  406. if(this.tip == 1){
  407. this.getList()
  408. }
  409. }
  410. }
  411. </script>
  412. <style lang="scss" scoped>
  413. .cardEntry{
  414. position: fixed;
  415. top:50%;
  416. left:50%;
  417. margin-left: -280rpx;
  418. margin-top: -442rpx;
  419. z-index: 9;
  420. .writeOff{
  421. background-color: #fff;
  422. width: 560rpx;
  423. height: 885rpx;
  424. border-radius: 20rpx;
  425. .pictrue{
  426. width: 100%;
  427. height: 560rpx;
  428. border-radius: 20rpx 20rpx 0 0;
  429. image{
  430. width: 100%;
  431. height: 100%;
  432. border-radius: 20rpx 20rpx 0 0;
  433. }
  434. }
  435. .conter{
  436. padding: 30rpx 28rpx 54rpx 26rpx;
  437. .info{
  438. color: #333;
  439. font-size: 32rpx;
  440. .totalNum{
  441. color: #999;
  442. .num{
  443. color: #2291f8;
  444. }
  445. }
  446. }
  447. .center{
  448. margin-top: 30rpx;
  449. .title{
  450. color: #666;
  451. font-size: 32rpx;
  452. }
  453. .carnum{
  454. height: 44rpx;
  455. view{
  456. border: 1rpx solid #a4a4a4;
  457. width: 66rpx;
  458. text-align: center;
  459. height: 100%;
  460. line-height: 40rpx;
  461. font-size: 28rpx;
  462. color: #a4a4a4;
  463. }
  464. .reduce{
  465. border-right: 0;
  466. border-radius: 22rpx 0 0 22rpx;
  467. &.on{
  468. border-color: #e3e3e3;
  469. color: #dedede;
  470. }
  471. }
  472. .plus{
  473. border-left: 0;
  474. border-radius: 0 22rpx 22rpx 0;
  475. &.on{
  476. border-color: #e3e3e3;
  477. color: #dedede;
  478. }
  479. }
  480. .num{
  481. color: #282828;
  482. }
  483. }
  484. }
  485. .bottom{
  486. margin-top: 42rpx;
  487. .bnt{
  488. width: 240rpx;
  489. height: 82rpx;
  490. background: #F5F5F5;
  491. border-radius: 41rpx;
  492. color: #333;
  493. font-size: 32rpx;
  494. &.on{
  495. background-color: #2291f8;
  496. color: #fff;
  497. }
  498. }
  499. }
  500. }
  501. }
  502. }
  503. /*订单首页*/
  504. .order-index .topBox{
  505. padding-bottom: 40upx;
  506. // height: 360upx;
  507. background: linear-gradient(270deg, #4276F6 0%, #00ACF8 100%);
  508. }
  509. .order-index .header {
  510. box-sizing: border-box;
  511. display: flex;
  512. background-size: 100% 100%;
  513. width: 100%;
  514. // height: 120upx;
  515. padding: 0upx 30upx 0upx 30upx;
  516. justify-content: space-between;
  517. }
  518. .order-index .header .icon-saoma{
  519. font-size: 40rpx;
  520. padding: 30rpx 20rpx 30rpx 80rpx;
  521. }
  522. .order-index .header .item,.order-index .header .items {
  523. font-size: 24upx;
  524. color: #fff;
  525. height: 120upx;
  526. display: flex;
  527. align-items: center;
  528. }
  529. .order-index .header .item .font,.order-index .header .items .font{
  530. display: inline-block;
  531. margin-left: 16upx;
  532. margin-right: 16upx;
  533. font-size: 30upx;
  534. }
  535. .order-index .header .items image{
  536. width: 64upx;
  537. height: 64upx;
  538. border-radius: 60upx;
  539. border: 2upx solid #FFFFFF;
  540. }
  541. .order-index .topstatus{
  542. padding: 0upx 56upx 30upx;
  543. display: flex;
  544. justify-content: space-between;
  545. color: #FFFFFF;
  546. text-align: center;
  547. font-size: 24upx;
  548. font-weight: 400;
  549. box-sizing: border-box;
  550. // background: linear-gradient(270deg, #4276F6 0%, #00ACF8 100%);
  551. .title{
  552. font-size: 40upx;
  553. margin-bottom: 6upx;
  554. }
  555. }
  556. .order-index .wrapper {
  557. width: 690upx;
  558. background-color: #fff;
  559. border-radius: 10upx;
  560. margin: -46upx auto 0 auto;
  561. padding-top: 25upx;
  562. }
  563. .order-index .wrapper .title .iconfont {
  564. color: #2291f8;
  565. font-size: 40upx;
  566. margin-right: 13upx;
  567. vertical-align: middle;
  568. }
  569. .order-index .wrapper .title {
  570. font-size: 30upx;
  571. color: #282828;
  572. padding: 0 30upx;
  573. margin-bottom: 40upx;
  574. display: flex;
  575. justify-content: space-between;
  576. .uni-list-cell-db .iconfont{
  577. font-size: 24upx ;
  578. color: #999 ;
  579. margin-left: 14upx;
  580. }
  581. .tab{
  582. width: 240upx;
  583. height: 48upx;
  584. background: #F5F5F5;
  585. border-radius: 24upx;
  586. display: flex;
  587. justify-content: space-between;
  588. font-weight: 400;
  589. color: #999999;
  590. font-size: 24upx;
  591. .box{
  592. width: 82upx;
  593. height: 48upx;
  594. border-radius: 24upx;
  595. text-align: center;
  596. line-height: 48upx;
  597. }
  598. .on{
  599. background: #1890FF;
  600. color: #FFFFFF;
  601. }
  602. }
  603. }
  604. .order-index .wrapper .list .item {
  605. width: 33.33%;
  606. text-align: center;
  607. font-size: 24upx;
  608. color: #999;
  609. margin-bottom: 45upx;
  610. }
  611. .order-index .wrapper .list .item .num {
  612. font-size: 40upx;
  613. color: #333;
  614. }
  615. .public-wrapper .title {
  616. font-size: 30upx;
  617. color: #282828;
  618. padding: 0 30upx;
  619. margin-bottom: 20upx;
  620. font-size: 30upx;
  621. // margin-bottom: 40upx;
  622. display: flex;
  623. justify-content: space-between;
  624. .uni-list-cell-db .iconfont{
  625. font-size: 24upx ;
  626. color: #999 ;
  627. margin-left: 14upx;
  628. }
  629. .tab{
  630. // width: 240upx;
  631. height: 48upx;
  632. background: #F5F5F5;
  633. border-radius: 24upx;
  634. display: flex;
  635. justify-content: space-between;
  636. font-weight: 400;
  637. color: #999999;
  638. font-size: 24upx;
  639. .box{
  640. width: 82upx;
  641. height: 48upx;
  642. border-radius: 24upx;
  643. text-align: center;
  644. line-height: 48upx;
  645. }
  646. .on{
  647. background: #1890FF;
  648. color: #FFFFFF;
  649. }
  650. }
  651. }
  652. .public-wrapper .title .iconfont {
  653. color: #2291f8;
  654. font-size: 40upx;
  655. margin-right: 13upx;
  656. vertical-align: middle;
  657. }
  658. .public-wrapper {
  659. margin: 18upx auto 0 auto;
  660. width: 690upx;
  661. background-color: #fff;
  662. border-radius: 10upx;
  663. padding-top: 25upx;
  664. // padding-bottom: 25upx;
  665. }
  666. .public-wrapper .nav {
  667. padding: 0 30upx;
  668. height: 70upx;
  669. line-height: 70upx;
  670. font-size: 24upx;
  671. color: #999;
  672. }
  673. .public-wrapper .data {
  674. width: 33.33%;
  675. text-align: left;
  676. }
  677. .public-wrapper .browse {
  678. width: 33.33%;
  679. text-align: center;
  680. }
  681. .public-wrapper .turnover {
  682. width: 33.33%;
  683. text-align: right;
  684. }
  685. .public-wrapper .conter {
  686. padding: 0 30upx;
  687. margin-bottom: 40upx;
  688. }
  689. .public-wrapper .conter .item {
  690. border-bottom: 1px solid #f7f7f7;
  691. height: 70upx;
  692. font-size: 24upx;
  693. }
  694. .public-wrapper .conter .item .turnover {
  695. color: #000000;
  696. font-weight: 400;
  697. }
  698. .public-wrapper .unconter{
  699. text-align: center;
  700. color: #999;
  701. padding: 25upx;
  702. }
  703. </style>