myOrder.vue 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760
  1. <template>
  2. <view class="box">
  3. <homenav :iStatusBarHeight="iStatusBarHeight" :title="'我的订单'" :cj="3"></homenav>
  4. <view class="tab">
  5. <view class="tabLine" :class="{tabActive:tabIndex==0}" @click="tabClick(0)">全部</view>
  6. <view class="tabLine" :class="{tabActive:tabIndex==1}" @click="tabClick(1)">待付款</view>
  7. <view class="tabLine" :class="{tabActive:tabIndex==5}" @click="tabClick(5)">待成团</view>
  8. <view class="tabLine" :class="{tabActive:tabIndex==2}" @click="tabClick(2)">待服务</view>
  9. <view class="tabLine" :class="{tabActive:tabIndex==3}" @click="tabClick(3)">已完成</view>
  10. <view class="tabLine" :class="{tabActive:tabIndex==6}" @click="tabClick(6)">售后</view>
  11. </view>
  12. <view class="main">
  13. <view v-if="tabIndex!==6" >
  14. <view class="itemBg" v-for="(item,index) in items" @click="goDetail(item)">
  15. <view class="itemTop">
  16. <view class="orderCodeBox">
  17. <view class="itemType" v-if="item.SheetType==1">商城-商品订单</view>
  18. <view class="itemType" v-if="item.SheetType==2">商城-项目订单</view>
  19. <view class="itemType" v-if="item.SheetType==3">商城-套餐订单</view>
  20. <view class="itemType" v-if="item.SheetType==4">救援订单</view>
  21. <view class="itemType" v-if="item.SheetType==5">钣喷订单</view>
  22. <view class="itemType" v-if="item.SheetType==6">集客订单</view>
  23. <view class="itemType" v-if="item.SheetType==7">保养订单</view>
  24. <view class="itemType" v-else></view>
  25. <view class="orderCode">:{{item.Code}}</view>
  26. </view>
  27. <view class="itemSheetState redColor" v-if="item.SheetState==5">待成团</view>
  28. <view class="itemSheetState redColor" v-if="item.SheetState==1">待付款</view>
  29. <!-- <view v-if="item.SheetType==7">
  30. <view class="itemSheetState orangeColor" v-if="item.SheetState==2">已完成</view>
  31. </view> -->
  32. <view class="itemSheetState orangeColor" v-if="item.SheetState==2">待服务</view>
  33. <view class="itemSheetState greenColor" v-if="item.SheetState==3">已完成</view>
  34. <view class="itemSheetState" v-if="item.SheetState==4">已取消</view>
  35. </view>
  36. <view class="itemShopBg">
  37. <view class="shopName">{{item.SheetContent}}</view>
  38. <view style="color: #333333;font-size: 22rpx;">¥<span class="price">{{item.PayType==1?item.RealMoney:0}}</span></view>
  39. </view>
  40. <view class="renBox" v-if="item.SheetType==6">
  41. <image src="../../../static/timg/icon_ren.png" mode="" class="renimg"></image>
  42. <view class="renMobilePhone">{{item.MobilePhone}}</view>
  43. <view class="renNickName">{{item.NickName?item.NickName:''}}</view>
  44. </view>
  45. <view class="itemName">{{item.CreateTime}}</view>
  46. <view class="itemName" style="padding-top: 2rpx;padding-bottom: 0;">{{item.ShopName}}</view>
  47. <view class="package" v-if="item.SheetType==7" style="display: flex;">
  48. <view class="packageName" v-if="item.packageName">{{item.packageName}}</view>
  49. <view class="packageQty" v-if="item.packageQty" style="padding-left: 10rpx;">共{{item.packageQty}}件</view>
  50. </view>
  51. <view class="bottom" v-if="item.SheetState == 1">
  52. <view class="cancel" @click.stop="cancelBespeak(item)">取消订单</view>
  53. <view class="defer" @click.stop="pay(item)">立即支付</view>
  54. </view>
  55. </view>
  56. </view>
  57. <view v-if="tabIndex==6" class="afterSales">
  58. <view class="afterSalesLine" v-for="(item,index) in RefundList">
  59. <view class="afterSalesLineTop">
  60. <view class="" style="display: flex;">
  61. <view class="afterSalesShop">{{item.WriteoffShopName?item.WriteoffShopName:''}}</view>
  62. <image class="afterSalesLineJt" src="/static/img2/jt1.png" mode=""></image>
  63. </view>
  64. <view class="afterSalesLineState">退款</view>
  65. </view>
  66. <view class="afterSalesLineCont">
  67. <image src="../../../static/timg/noimg.png" class="afterSalesLineImg" mode=""></image>
  68. <view class="shCont">
  69. <view class="shCOntName">{{item.ItemName}}</view>
  70. <view class="shContMS">共 {{item.CouponCount}}件商品</view>
  71. <view class="shContMS">退款:¥{{item.Money}}</view>
  72. </view>
  73. </view>
  74. <view class="tkStateBox">
  75. <span style="font-weight: 500;color: #222222;" v-if="item.RefundState==0">无退款</span>
  76. <span style="font-weight: 500;color: #222222;" v-if="item.RefundState==1">退款中</span>
  77. <span style="font-weight: 500;color: #222222;" v-if="item.RefundState==2">退款成功</span>
  78. <span style="font-weight: 500;color: #222222;" v-if="item.RefundState==3">退款拒绝</span>
  79. <span style="font-weight: 500;color: #222222;" v-if="item.RefundState==4">退款失败</span>
  80. <span style="font-weight: 500;color: #222222;" v-if="item.RefundState==5">取消退款</span>
  81. <span style="padding-left: 24rpx;" >请查看详情</span>
  82. </view>
  83. <view class="tkBottom">
  84. <view class="tkBottomBtn" @click="goReDetail(item)">查看详情</view>
  85. </view>
  86. </view>
  87. </view>
  88. <nodata v-show="RefundList.length==0&&isload"></nodata>
  89. </view>
  90. <!-- 手机号授权 -->
  91. <view class="authorizBox" v-if="authorizShow" @click="authorizShow=false">
  92. <view class="authorizCont" @click.stop="">
  93. <view class="authorizName">{{wxOpenData.miniAppName}}</view>
  94. <view class="authorizMs">未注册的手机号登录后将自动创建会员账号,如果您不同意授权获取手机号,会影响您使用我们的产品和服务。</view>
  95. <button class="authorizContbutton" type="default" open-type="getPhoneNumber" @getphonenumber="decryptPhoneNumber">授权</button>
  96. </view>
  97. <view style="text-align: center;padding-top: 56rpx;">
  98. <image src="../../../static/timg/icon_guanbi@2x.png" mode="" class="authorizCloseImg"></image>
  99. </view>
  100. </view>
  101. </view>
  102. </template>
  103. <script>
  104. import nodata from '@/components/nodata/nodata.vue'
  105. import homenav from "@/components/homenav/nav.vue"
  106. export default {
  107. components: {
  108. nodata,homenav
  109. },
  110. data() {
  111. return {
  112. page: 1,
  113. tabIndex: '',
  114. items: [],
  115. isload: false,
  116. iStatusBarHeight:'',
  117. userInfo:'',
  118. ext:'',
  119. wxOpenData:'',
  120. themeColor:'',
  121. authorizShow:false,
  122. code:'',
  123. RefundList:[],
  124. }
  125. },
  126. onLoad(opt) {
  127. this.iStatusBarHeight = uni.getSystemInfoSync().statusBarHeight;
  128. this.tabIndex = opt.num;
  129. this.userInfo=this.$store.state.userInfo;
  130. this.ext=this.$common.getExtStoreId();
  131. this.themeColor = uni.getStorageSync("themeColor");
  132. if(this.userInfo){
  133. this.getData()
  134. }else{
  135. this.$common.automaticlogin().then(val => {
  136. this.userInfo=this.$store.state.userInfo;
  137. this.wxOpenData=this.$store.state.wxOpenData;
  138. this.themeColor = uni.getStorageSync("themeColor");
  139. this.getData();
  140. if(!this.userInfo){
  141. this.authorizShow=true
  142. }
  143. })
  144. }
  145. },
  146. onShow() {
  147. console.log(this.tabIndex)
  148. this.getData()
  149. },
  150. methods: {
  151. goReDetail(item){
  152. uni.navigateTo({
  153. url:'../../subPack/refundDetail?id='+item.ID
  154. })
  155. },
  156. pay(item){
  157. this.$http('openMallOrder/unifiedPay', {
  158. sheetId:item.ID
  159. },'POST').then(res => {
  160. if(res.code==0){
  161. this.requestPayment(res.data)
  162. }else{
  163. uni.showToast({
  164. title: res.msg,
  165. icon: 'none',
  166. duration: 3000
  167. });
  168. }
  169. })
  170. },
  171. requestPayment(res){
  172. var payInfo=res;
  173. //console.log(payInfo)
  174. //console.log(String(Date.now()))
  175. var that=this;
  176. uni.requestPayment({
  177. provider: 'wxpay',
  178. //timeStamp: String(Date.now()),
  179. timeStamp: payInfo.timeStamp,
  180. nonceStr: payInfo.nonceStr,
  181. package:payInfo.package,
  182. signType: payInfo.signType,
  183. paySign: payInfo.paySign,
  184. appid:payInfo.appId,
  185. success: function (res) {
  186. console.log('success:' + JSON.stringify(res));
  187. uni.showToast({
  188. title: '支付成功',
  189. icon:'none',
  190. duration: 2000
  191. });
  192. that.tabIndex=0
  193. that.page = 1;
  194. that.getData()
  195. },
  196. fail: function (err) {
  197. console.log(err)
  198. uni.showToast({
  199. title: '支付失败',
  200. icon:'none',
  201. duration: 2000
  202. });
  203. }
  204. });
  205. },
  206. cancelBespeak(item){
  207. var that = this
  208. uni.showModal({
  209. title: '提示',
  210. content: '是否取消该订单',
  211. cancelText:'否',
  212. confirmText:'是',
  213. success: function (res) {
  214. if (res.confirm) {
  215. uni.showLoading({
  216. title: '加载中'
  217. })
  218. that.$http('openOrderManagement/updateSheetState', {
  219. id: item.ID,
  220. }, 'POST').then(res => {
  221. uni.hideLoading();
  222. // var list = res.data.Items
  223. if(res.code==0){
  224. uni.showToast({
  225. title: '取消成功',
  226. icon: 'none',
  227. duration: 2000
  228. });
  229. setTimeout(function() {
  230. that.page = 1;
  231. that.getData();
  232. }, 100);
  233. }else{
  234. uni.showToast({
  235. title: res.msg,
  236. icon: 'none',
  237. duration: 3000
  238. });
  239. }
  240. })
  241. } else if (res.cancel) {
  242. }
  243. }
  244. });
  245. },
  246. decryptPhoneNumber: function(e) {
  247. console.log(e);
  248. this.code=e.detail.code
  249. this.wxPhoneLogin()
  250. this.authorizShow=false;
  251. },
  252. wxPhoneLogin(){
  253. var that=this;
  254. this.$http('miniApp2/sys/wxPhoneLogin', {
  255. appId:this.ext.appId,
  256. unionId:this.ext.unionId,
  257. code:this.code,
  258. openId:this.wxOpenData.openid
  259. },'POST').then(res => {
  260. var data = res.data;
  261. if(data.loginInfo){
  262. this.userInfo=data.loginInfo.openUser;
  263. this.wxOpenData=data.loginInfo;
  264. this.$store.commit('mutationswxOpenData', data)
  265. this.$store.commit('mutationsuserInfo', this.userInfo)
  266. this.getData()
  267. }
  268. })
  269. },
  270. tabClick(num) {
  271. this.tabIndex = num;
  272. this.page = 1;
  273. if(num==6){
  274. this.getOpenSheetRefundList()
  275. }else{
  276. this.getData()
  277. }
  278. },
  279. getOpenSheetRefundList(){
  280. uni.showLoading({
  281. title: '加载中'
  282. });
  283. this.isload = false;
  284. var padata = {
  285. page: this.page,
  286. limit: 10,
  287. //sheetState: this.tabIndex > 0 ? this.tabIndex : ''
  288. }
  289. this.$http('openOrderManagement/getOpenSheetRefundList', padata, 'GET').then(res => {
  290. uni.hideLoading();
  291. this.isload = true;
  292. var list = res.data.Items;
  293. if (this.page == 1) {
  294. this.RefundList = list
  295. } else {
  296. this.RefundList = this.RefundList.concat(list)
  297. }
  298. })
  299. },
  300. goDetail(item) {
  301. //SheetType 1 商品2项目3套餐4救援5钣喷6集客
  302. if((item.SheetType==1)||(item.SheetType==2)||(item.SheetType==3)){
  303. uni.navigateTo({
  304. url: "mallOrderDetail?id=" + item.ID +"&SheetType=" + item.SheetType
  305. })
  306. }
  307. else if (item.SheetType==5){
  308. uni.navigateTo({
  309. url: "paintOrderDetail?id=" + item.ID
  310. })
  311. }
  312. else if (item.SheetType==6){
  313. uni.navigateTo({
  314. url: "activityOrderDetail?id=" + item.ID//+'&sx=1'
  315. })
  316. }
  317. },
  318. getData() {
  319. uni.showLoading({
  320. title: '加载中'
  321. });
  322. this.isload = false;
  323. var padata = {
  324. page: this.page,
  325. limit: 10,
  326. sheetState: this.tabIndex > 0 ? this.tabIndex : ''
  327. }
  328. this.$http('openOrderManagement/getOpenSheetList', padata, 'GET').then(res => {
  329. uni.hideLoading();
  330. this.isload = true;
  331. var list = res.data.Items;
  332. if (this.page == 1) {
  333. this.items = list
  334. } else {
  335. this.items = this.items.concat(list)
  336. }
  337. })
  338. },
  339. },
  340. onReachBottom() {
  341. this.page++;
  342. this.getData()
  343. },
  344. onPullDownRefresh() {
  345. this.page = 1;
  346. this.getData()
  347. setTimeout(function() {
  348. uni.stopPullDownRefresh();
  349. }, 1000);
  350. }
  351. }
  352. </script>
  353. <style scoped>
  354. .box {
  355. min-height: 100vh;
  356. background: #F4F5F7;
  357. }
  358. .renBox{
  359. color: #1A1A1A;
  360. background: #F7F7F7;
  361. border-radius: 10rpx;
  362. display: flex;
  363. padding: 20rpx;font-size: 24rpx;
  364. line-height: 30rpx;
  365. margin-top: 16rpx;
  366. }
  367. .renimg{
  368. width: 30rpx;height: 30rpx;
  369. }
  370. .renMobilePhone{
  371. padding-left: 13rpx;
  372. }
  373. .renNickName{
  374. padding-left: 20rpx;
  375. }
  376. .tab {
  377. background: #FFFFFF;
  378. display: flex;
  379. justify-content: space-between;
  380. line-height: 92rpx;
  381. position: fixed;
  382. width: calc(100vw - 100rpx);
  383. padding-left: 50rpx;
  384. padding-right: 50rpx;
  385. height: 92rpx;
  386. z-index: 11;
  387. }
  388. .tabLine {
  389. font-size: 28rpx;
  390. color: #333333;
  391. text-align: center;
  392. }
  393. .tabActive {
  394. color: #EC0F0A;
  395. font-weight: bold;
  396. border-bottom: 4rpx solid #EC0F0A;
  397. }
  398. .main {
  399. padding-top: 92rpx;
  400. padding-bottom: 20rpx;
  401. background-color: #F4F5F7;
  402. }
  403. .itemBg {
  404. margin: 20rpx 24rpx;
  405. background-color: #FFFFFF;
  406. border-radius: 10rpx;
  407. padding: 20rpx;
  408. }
  409. .itemTop {
  410. display: flex;
  411. justify-content: space-between;
  412. }
  413. .itemType {
  414. color: #999999;
  415. font-size: 24rpx;
  416. }
  417. .itemSheetState {
  418. font-size: 24rpx;
  419. color: #999999
  420. }
  421. .redColor {
  422. color: #EC0F0A;
  423. }
  424. .orangeColor {
  425. color: #F19D01;
  426. }
  427. .greenColor {
  428. color: #00A040;
  429. }
  430. .itemShopBg {
  431. display: flex;
  432. justify-content: space-between;
  433. margin-top: 20rpx;
  434. }
  435. .shopName {
  436. color: #333333;
  437. font-size: 30rpx;
  438. font-weight: bold;
  439. /* 隐藏文字显示 ...不换行 */
  440. overflow: hidden;
  441. text-overflow: ellipsis;
  442. white-space: nowrap;
  443. }
  444. .price {
  445. color: #333333;
  446. font-weight: bold;
  447. font-size: 32rpx;
  448. }
  449. .itemName {
  450. color: #666666;
  451. font-size: 24rpx;
  452. padding: 16rpx 0;
  453. height: 30rpx;
  454. overflow: hidden;
  455. text-overflow: ellipsis;
  456. white-space: nowrap;
  457. }
  458. .plateBg {
  459. display: flex;
  460. justify-content: space-between;
  461. align-items: center;
  462. }
  463. .plateNumber {
  464. color: #666666;
  465. font-size: 24rpx;
  466. margin-bottom: 20rpx;
  467. display: flex;
  468. }
  469. .itemLineBottom {
  470. display: flex;
  471. justify-content: flex-end;
  472. }
  473. .itemBtn1 {
  474. width: 150rpx;
  475. height: 56rpx;
  476. border-radius: 36rpx;
  477. border: 2rpx solid #DDDDDD;
  478. text-align: center;
  479. line-height: 56rpx;
  480. font-size: 28rpx;
  481. color: #3C3C3C;
  482. margin-left: 40rpx;
  483. }
  484. .itemBtn2 {
  485. width: 150rpx;
  486. height: 56rpx;
  487. border-radius: 36rpx;
  488. border: 2rpx solid #FF4F00;
  489. text-align: center;
  490. line-height: 56rpx;
  491. font-size: 28rpx;
  492. color: #FF4F00;
  493. margin-left: 40rpx;
  494. }
  495. .orderState {
  496. color: #F19D01;
  497. font-size: 24rpx;
  498. padding-left: 20rpx;
  499. }
  500. .authorizBox{
  501. width: 100vw;
  502. height: 100vh;
  503. background: rgba(0, 0, 0, 0.5);
  504. position: fixed;
  505. top: 0;
  506. left: 0;
  507. }
  508. .authorizCont{
  509. margin-top: 30vh;
  510. width: 564rpx;
  511. height: 408rpx;
  512. background: #FFFFFF;
  513. border-radius: 24rpx;
  514. margin-left: 93rpx;
  515. position: relative;
  516. }
  517. .authorizCloseImg{
  518. width: 62rpx;
  519. height: 62rpx;
  520. }
  521. .sqLogoBox{
  522. width: 180rpx;
  523. height: 180rpx;
  524. background: #FFFFFF;
  525. border-radius: 90rpx;
  526. text-align: center;
  527. position: absolute;
  528. top: -50rpx;
  529. left: 192rpx;
  530. }
  531. .authorizName{
  532. color: #333333;
  533. line-height: 42rpx;
  534. font-size: 30rpx;
  535. text-align: center;
  536. padding-top: 58rpx;
  537. }
  538. .authorizMs{
  539. color: #999999;
  540. line-height: 36rpx;
  541. font-size: 26rpx;
  542. width: 452rpx;
  543. padding-top: 24rpx;
  544. text-align: center;
  545. margin-left: 56rpx;
  546. }
  547. .authorizContbutton{
  548. width: 422rpx;
  549. height: 88rpx;
  550. background: #EC0F0A;
  551. border-radius: 44rpx;
  552. line-height: 88rpx;
  553. text-align: center;
  554. font-size:30rpx;
  555. color: #FFFFFF;
  556. margin-top: 62rpx;
  557. margin-left:71rpx;
  558. }
  559. .shopBoxpt{
  560. margin-top: 20rpx;
  561. }
  562. button::after{
  563. border: none;
  564. }
  565. button{
  566. position: relative;
  567. display: block;
  568. margin-left: 0;
  569. margin-right: 0;
  570. padding-left: 0px;
  571. padding-right: 0px;
  572. box-sizing: border-box;
  573. // font-size: 18px;
  574. text-align: center;
  575. text-decoration: none;
  576. // line-height: 1;
  577. line-height: 1.35;
  578. // border-radius: 5px;
  579. -webkit-tap-highlight-color: transparent;
  580. overflow: hidden;
  581. color: #000000;
  582. background-color: #fff;
  583. height: 100%;
  584. }
  585. .orderCodeBox{
  586. display: flex;
  587. }
  588. .orderCode{
  589. color: #999999; font-size: 24rpx;
  590. }
  591. .cancel {
  592. color: #3C3C3C;
  593. font-size: 24rpx;
  594. width: 130rpx;
  595. height: 56rpx;
  596. border-radius: 8rpx;
  597. border: 1rpx solid #DDDDDD;
  598. text-align: center;
  599. line-height: 56rpx;
  600. margin-right: 20rpx;
  601. }
  602. .defer {
  603. color: #EC0F0A;
  604. font-size: 24rpx;
  605. width: 130rpx;
  606. height: 56rpx;
  607. border-radius: 8rpx;
  608. border: 1rpx solid #EC0F0A;
  609. text-align: center;
  610. line-height: 56rpx;
  611. }
  612. .bottom{
  613. display: flex;
  614. justify-content: flex-end;
  615. }
  616. .packageName{
  617. font-size: 22rpx;
  618. color: #FF0035;
  619. border-radius: 5rpx;
  620. border: 1px solid #FF0035;
  621. padding: 2rpx 8rpx;
  622. }
  623. .package{
  624. justify-content: space-between;
  625. padding-top: 10rpx;padding-bottom: 10rpx;
  626. }
  627. .packageQty{
  628. font-size: 26rpx;
  629. color: #666666;
  630. }
  631. .afterSalesLineJt{
  632. width: 10rpx;height: 20rpx;
  633. margin-top: 12rpx;
  634. }
  635. .afterSales{
  636. padding: 0 24rpx;
  637. }
  638. .afterSalesLine{
  639. background: #FFFFFF;
  640. margin-top: 20rpx;
  641. padding: 30rpx 20rpx;border-radius: 16rpx;
  642. }
  643. .afterSalesLineTop{
  644. display: flex;
  645. justify-content: space-between;
  646. }
  647. .afterSalesShop{
  648. font-size: 30rpx;
  649. color: #222222;
  650. line-height: 42rpx;
  651. }
  652. .afterSalesLineState{
  653. font-size: 26rpx;line-height: 42rpx;
  654. color: #666666;
  655. }
  656. .afterSalesLineImg{
  657. width: 144rpx;
  658. height: 144rpx;
  659. border-radius: 10rpx;
  660. }
  661. .afterSalesLineCont{
  662. display: flex;padding: 24rpx 0;
  663. }
  664. .shCont{
  665. color: #222222;padding-left: 20rpx;
  666. }
  667. .shCOntName{
  668. font-size: 26rpx;line-height: 37rpx;
  669. }
  670. .shContMS{
  671. font-size: 22rpx;
  672. color: #222222;
  673. line-height: 30rpx;
  674. padding-top: 8rpx;
  675. }
  676. .tkStateBox{
  677. height: 60rpx;padding-left: 16rpx;
  678. background: #F9F9F9;color: #666666;
  679. border-radius: 10rpx;
  680. line-height: 60rpx;font-size: 26rpx;
  681. }
  682. .tkBottomBtn{
  683. font-size: 24rpx;
  684. color: #222222;
  685. width: 137rpx;
  686. height: 56rpx;
  687. line-height: 56rpx;
  688. font-size: 24rpx;
  689. color: #222222;
  690. border-radius: 8rpx;
  691. border: 1rpx solid #DDDDDD;
  692. margin-top: 24rpx;
  693. text-align: center;
  694. }
  695. .tkBottom{
  696. display: flex;justify-content: flex-end;
  697. }
  698. </style>