mingxi.vue 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711
  1. <template>
  2. <view class="page">
  3. <!-- :style="{height:tab1==0?'356rpx':'175rpx'}" -->
  4. <view class="" style="background: #fff;padding: 0 32rpx 20rpx;border-bottom: 2rpx solid rgba(0, 0, 0, 0);">
  5. <u-navbar :fixed="false" bgColor='rgba(0,0,0,0)' placeholder :safeAreaInsetTop="true" @leftClick="return1">
  6. <view class="index-header u-flex u-row-between" slot="center" style="position: relative;">
  7. <view class="" style="margin-left: -11rpx;">
  8. <u-tabs :current="tab1" :list="list4" lineWidth="42" lineHeight="5" :lineColor="bgImage"
  9. :activeStyle="{
  10. color: '#303133',
  11. fontWeight: 'bold',
  12. }" :inactiveStyle="{
  13. color: '#606266',
  14. }" itemStyle=" padding-right: 15px; height: 34px;" @click="TabsTop">
  15. </u-tabs>
  16. </view>
  17. </view>
  18. </u-navbar>
  19. <view v-if="tab1 ==0" class="search u-flex" style="margin-top: 20rpx;">
  20. <u-icon name="search"></u-icon>
  21. <input style="width: 100%;" type="text" placeholder="请输入关键词搜索" v-model="keywords"
  22. @input="commission_list">
  23. <!-- <input v-model="keywords" type="text" class="text1" placeholder="请输入关键词搜索" @confirm="search"> -->
  24. </view>
  25. <view v-if="tab1 ==0" class="shaixuan u-flex u-row-between"
  26. style="margin-top: 20rpx;border-top:2rpx solid #f6f6f6 ;padding-top: 16rpx;">
  27. <view class="u-flex" @click="showtime = true">
  28. <text style="margin-right: 14rpx;">{{date || '选择时间'}}</text>
  29. <u-icon name="arrow-down-fill" size="8"></u-icon>
  30. </view>
  31. <view class="u-flex" @click="show = true">
  32. <text style="margin-right: 14rpx;">{{label}}</text>
  33. <u-icon name="arrow-down-fill" size="8"></u-icon>
  34. </view>
  35. </view>
  36. </view>
  37. <view class="content">
  38. <view class="" style="margin-top: -20rpx;" v-if="tab1 == 0">
  39. <view class="" v-if="source_type == 'order'" style="border: 2rpx solid rgba(0,0,0,0);">
  40. <view style="margin-top: 20rpx;" class="list" v-for="(item,index) in list " :key="item.id">
  41. <view class="u-flex u-row-between">
  42. <view class="titlea">
  43. 订单编号:{{item.order.order_no}}
  44. </view>
  45. <view class="fonts">
  46. <text v-if="item.withdraw_status=='unapplied'"></text>
  47. <text v-if="item.withdraw_status=='withdrawing'"
  48. style="color: rgba(250, 143, 0, 0.8);background-color:rgba(250, 143, 0, 0.1);padding: 3rpx;">提现中</text>
  49. <text v-if="item.withdraw_status=='success'"
  50. style="color: rgba(53, 170, 31, 0.8);background-color:rgba(53, 170, 31, 0.1);padding: 3rpx;">已提现</text>
  51. <text v-if="item.withdraw_status=='withdraw'"
  52. style="color: rgba(12, 102, 194, 0.8);background-color:rgba(12, 102, 194, 0.1);padding: 3rpx;">已申请</text>
  53. <text v-if="item.withdraw_status=='failed'"
  54. style="color: rgba(219, 15, 15, 0.8);background-color:rgba(219, 15, 15, 0.1);padding: 3rpx;">提现失败</text>
  55. </view>
  56. </view>
  57. <view class="u-flex u-row-between"
  58. style="margin-top: 20rpx; border-top:2rpx solid #F6F6F6;padding-top: -18rpx;box-sizing: border-box;">
  59. <view class="left">
  60. <view class="top">
  61. <text class="left">
  62. {{item.user.nickname}}
  63. </text>
  64. <text class="right">
  65. {{item.order.job.job_name}}
  66. </text>
  67. </view>
  68. <view class="concent">
  69. <text class="left">佣金内容</text>
  70. <text class="right">{{item.type_name}}</text>
  71. </view>
  72. <view class="concent u-flex">
  73. <text class="left">佣金金额</text>
  74. <view class="money">
  75. <text style="font: 24rpx;">¥</text>
  76. <text style="font-size: 32rpx;">{{item.amount}}</text>
  77. </view>
  78. </view>
  79. </view>
  80. <view class="right">
  81. <view class="top">
  82. <text class="left">
  83. 职位负责人
  84. </text>
  85. <text class="right">
  86. {{item.order.recommend_info.username }}
  87. </text>
  88. </view>
  89. <view class="concent">
  90. <text class="left">offer时间</text>
  91. <text
  92. class="right">{{item.order.offered_time.slice(0,-3).replaceAll("-",".")}}</text>
  93. </view>
  94. <view class="concent">
  95. <text class="left">过保时间</text>
  96. <text
  97. class="right">{{item.order.over_protected_time.slice(0,-3).replaceAll("-",".")}}</text>
  98. </view>
  99. </view>
  100. </view>
  101. <view class="bottom u-flex u-row-between">
  102. <view class="left">
  103. <text>推荐时间:{{item.order.recommended_time||"暂无"}}</text>
  104. </view>
  105. <view class="right">
  106. <text
  107. v-if="item.is_confirm==1">回款时间:{{item.confirm_time.slice(0,-3).replaceAll("-",".")}}</text>
  108. <text v-if="item.is_confirm==0">佣金结算状况:未回款</text>
  109. </view>
  110. </view>
  111. </view>
  112. <view class="safe-area-inset-bottom"></view>
  113. </view>
  114. <view class="" v-if="source_type == 'invite'">
  115. <view class="list1" v-for="(item,index) in list" :key="item.id">
  116. <view class="u-flex u-row-between">
  117. <view class="tatlea">
  118. 订单编号:{{item.order.order_no}}
  119. </view>
  120. <view class="fonts">
  121. <text v-if="item.withdraw_status=='unapplied'"></text>
  122. <text v-if="item.withdraw_status=='withdrawing'"
  123. style="color: rgba(250, 143, 0, 0.8);">提现中</text>
  124. <text v-if="item.withdraw_status=='success'"
  125. style="color: rgba(53, 170, 31, 0.8);">已提现</text>
  126. <text v-if="item.withdraw_status=='withdraw'"
  127. style="color: rgba(12, 102, 194, 0.8);">已申请</text>
  128. <text v-if="item.withdraw_status=='failed'"
  129. style="color: rgba(219, 15, 15, 0.8);">提现失败</text>
  130. </view>
  131. </view>
  132. <view class="u-flex u-row-between">
  133. <view class="u-flex"
  134. style="border-top: 2rpx solid #F6F6F6;margin-top: 20rpx;padding-top: 20rpx;">
  135. <text style="margin-right: 16rpx;" class="title">{{item.type_name}}</text>
  136. <view class="back u-flex" @click="todingdan(item.id)">
  137. <image style="width: 26rpx;height: 26rpx;margin-top: 3rpx;"
  138. src="static/images/dikou-tips.png" mode="">
  139. </image>
  140. <text class="font" style="margin-left: 12rpx;">订单疑问</text>
  141. </view>
  142. </view>
  143. <view class="money">
  144. <text style="font-size: 24rpx;">¥</text>
  145. <text style="font-size: 32rpx;">{{item.amount}}</text>
  146. </view>
  147. </view>
  148. <view class="u-flex u-row-between" style="margin-top: 22rpx;">
  149. <text class="data tatlea">邀请日期 2023.03.12 12:4</text>
  150. <!-- <text class="data1">结算款时间:2023.03.12 12:</text> -->
  151. <text class="date1"
  152. v-if="item.is_confirm==1">结算款时间:{{item.confirm_time.slice(0,-3).replaceAll("-",".")}}</text>
  153. <text class="tatlea" v-if="item.is_confirm==0">佣金结算状态: 未回款</text>
  154. </view>
  155. </view>
  156. </view>
  157. <view class="safe-area-inset-bottom"></view>
  158. </view>
  159. <view class="" v-if="tab1 == 1">
  160. <u-subsection mode="subsection" :list="list2" :current="current" @change="change"
  161. keyName="label"></u-subsection>
  162. <view class="" v-if="current==0">
  163. <view class="yong" v-for="(item,index) in list" :key="item.id" style="margin-top: 20rpx;"
  164. v-if="item.withdraw_status=='unapplied'?false:true">
  165. <view class="top u-flex u-row-between">
  166. <text class="left tatlea">订单编号:{{item.order.order_no}}</text>
  167. <view class="right">
  168. <text style="font-size: 24rpx;">¥</text>
  169. <text style="font-size: 32rpx;">{{item.amount}}</text>
  170. </view>
  171. </view>
  172. <view class="u-flex u-row-between"
  173. style="margin-top: 20rpx; border-top:2rpx solid #F6F6F6;padding-top: -18rpx;box-sizing: border-box;">
  174. <view class="left">
  175. <view class="top"
  176. style="width: 284rpx;overflow: hidden; white-space: nowrap;text-overflow: ellipsis;">
  177. <text class="left">
  178. {{item.order.recommend_info.username}}
  179. </text>
  180. <text class="right">
  181. {{item.order.job.job_name}}
  182. </text>
  183. </view>
  184. <view class="concent">
  185. <text class="left">佣金内容</text>
  186. <text class="right">{{item.type_name}}</text>
  187. </view>
  188. <view class="concent u-flex">
  189. <text class="left">佣金金额</text>
  190. <view class="money">
  191. <text style="font: 24rpx;">¥</text>
  192. <text style="font-size: 32rpx;">{{item.amount}}</text>
  193. </view>
  194. </view>
  195. </view>
  196. <view class="right">
  197. <view class="top">
  198. <text class="left">
  199. 职位负责人
  200. </text>
  201. <text class="right">
  202. {{item.order.hr.name }}
  203. </text>
  204. </view>
  205. <view class="concent">
  206. <text class="left">offer时间</text>
  207. <text
  208. class="right">{{item.order.offered_time.slice(0,-3).replaceAll("-",".")}}</text>
  209. </view>
  210. <view class="concent">
  211. <text class="left">过保时间</text>
  212. <text
  213. class="right">{{item.order.over_protected_time.slice(0,-3).replaceAll("-",".")}}</text>
  214. </view>
  215. </view>
  216. </view>
  217. <view class="" style="border-top:2rpx solid #F6F6F6 ;margin-top: 20rpx;">
  218. <view class="u-flex u-row-between leftf">
  219. <text class="leftff">提现账号</text>
  220. <text>中国农业银行(2392)</text>
  221. </view>
  222. <view class="u-flex u-row-between leftf">
  223. <text class="leftff">申请时间</text>
  224. <text>2023.08.23 12:16</text>
  225. </view>
  226. <view class="u-flex u-row-between leftf">
  227. <text class="leftff">到账时间</text>
  228. <text>2023.08.23 12:16</text>
  229. </view>
  230. <view class="u-flex u-row-between leftf">
  231. <text class="leftff">提现状态</text>
  232. <text v-if="item.withdraw_status=='withdrawing'"
  233. style="color: rgba(250, 143, 0, 0.8);background-color:rgba(250, 143, 0, 0.1);padding: 3rpx;">提现中</text>
  234. <text v-if="item.withdraw_status=='success'"
  235. style="color: rgba(53, 170, 31, 0.8);background-color:rgba(53, 170, 31, 0.1);padding: 3rpx;">已提现</text>
  236. <text v-if="item.withdraw_status=='withdraw'"
  237. style="color: rgba(12, 102, 194, 0.8);background-color:rgba(12, 102, 194, 0.1);padding: 3rpx;">已申请</text>
  238. <text v-if="item.withdraw_status=='failed'"
  239. style="color: rgba(219, 15, 15, 0.8);background-color:rgba(219, 15, 15, 0.1);padding: 3rpx;">提现失败</text>
  240. </view>
  241. </view>
  242. </view>
  243. <view class="safe-area-inset-bottom"></view>
  244. </view>
  245. <view class="" v-if="current==1">
  246. <view class="yong" v-for="(item,index) in list" :key="item.id" style="margin-top: 20rpx;"
  247. v-if="item.withdraw_status=='unapplied'?false:true">
  248. <view class="top u-flex u-row-between">
  249. <text class="left tatlea">订单编号:{{item.order.order_no}}</text>
  250. <view class="right">
  251. <text style="font-size: 24rpx;">¥</text>
  252. <text style="font-size: 32rpx;">{{item.amount}}</text>
  253. </view>
  254. </view>
  255. <view class="" style="border-top:2rpx solid #F6F6F6 ;margin-top: 20rpx;">
  256. <view class="u-flex u-row-between leftf">
  257. <text class="leftff">邀请类型</text>
  258. <text>{{item.type_name}}</text>
  259. </view>
  260. <view class="u-flex u-row-between leftf">
  261. <text class="leftff">邀请时间</text>
  262. <text>2023.08.23 12:16</text>
  263. </view>
  264. <view class="u-flex u-row-between leftf">
  265. <text class="leftff">提现账号</text>
  266. <text>中国农业银行(2392)</text>
  267. </view>
  268. <view class="u-flex u-row-between leftf">
  269. <text class="leftff">申请时间</text>
  270. <text>2023.08.23 12:16</text>
  271. </view>
  272. <view class="u-flex u-row-between leftf">
  273. <text class="leftff">到账时间</text>
  274. <text>2023.08.23 12:16</text>
  275. </view>
  276. <view class="u-flex u-row-between leftf">
  277. <text class="leftff">提现状态</text>
  278. <text v-if="item.withdraw_status=='withdrawing'"
  279. style="color: rgba(250, 143, 0, 0.8);padding: 3rpx;">提现中</text>
  280. <text v-if="item.withdraw_status=='success'"
  281. style="color: rgba(53, 170, 31, 0.8);padding: 3rpx;">已提现</text>
  282. <text v-if="item.withdraw_status=='withdraw'"
  283. style="color: rgba(12, 102, 194, 0.8);padding: 3rpx;">已申请</text>
  284. <text v-if="item.withdraw_status=='failed'"
  285. style="color: rgba(219, 15, 15, 0.8);padding: 3rpx;">提现失败</text>
  286. </view>
  287. </view>
  288. </view>
  289. <view class="safe-area-inset-bottom"></view>
  290. </view>
  291. </view>
  292. <view style="height: 70vh;justify-content: center;" class="u-flex" v-if="list.length == 0&&tab1 == 0">
  293. <u-empty text="暂无数据" mode="list"></u-empty>
  294. </view>
  295. <view style="height: 88vh;justify-content: center;" class="u-flex" v-if="list.length == 0 &&tab1 == 1">
  296. <u-empty text="暂无数据" mode="list"></u-empty>
  297. </view>
  298. </view>
  299. <u-datetime-picker :show="showtime" mode="year-month" @confirm="changetime"
  300. @cancel="showtime = false"></u-datetime-picker>
  301. <u-picker :show="show" :columns="columns" keyName="label" @cancel="show = false" @confirm="enter"></u-picker>
  302. </view>
  303. </template>
  304. <script>
  305. import {
  306. commission_list,
  307. } from "@/units/inquire.js"
  308. export default {
  309. data() {
  310. return {
  311. keywords: '',
  312. show: false,
  313. showtime: false,
  314. tab1: 0,
  315. current: 0,
  316. date: "",
  317. list: [],
  318. job_name: "",
  319. list2: [{
  320. label: '订单佣金',
  321. // 其他属性值
  322. source_type: "order"
  323. }, {
  324. label: '邀请佣金',
  325. source_type: "invite"
  326. }],
  327. source_type: "order",
  328. label: "订单佣金",
  329. columns: [
  330. [{
  331. label: '订单佣金',
  332. // 其他属性值
  333. source_type: "order"
  334. // ...
  335. }, {
  336. label: '邀请佣金',
  337. source_type: "invite"
  338. }]
  339. ],
  340. list4: [{
  341. name: "佣金明细"
  342. },
  343. {
  344. name: "提现记录"
  345. }
  346. ]
  347. }
  348. },
  349. onLoad(options) {
  350. if (options.source_type != null) {
  351. this.source_type = options.source_type
  352. if (this.source_type == "order") {
  353. this.label = "订单佣金"
  354. } else {
  355. this.label = "邀请佣金"
  356. }
  357. }
  358. this.commission_list()
  359. },
  360. computed: {
  361. bgImage() {
  362. return `url(${require('@/static/images/juxing.png')}) 100% 100%`
  363. }
  364. },
  365. methods: {
  366. todingdan(id) {
  367. uni.navigateTo({
  368. url: "/pagesD/dingdan/dingdan?id=" + id
  369. })
  370. },
  371. return1() {
  372. uni.navigateBack()
  373. },
  374. change(e) {
  375. console.log(e);
  376. this.current = e
  377. if (this.current == 0) {
  378. this.source_type = "order"
  379. this.commission_list()
  380. } else {
  381. this.source_type = "invite"
  382. this.commission_list()
  383. }
  384. },
  385. enter(e) {
  386. console.log(e);
  387. this.label = e.value[0].label
  388. this.source_type = e.value[0].source_type
  389. this.show = false
  390. this.commission_list()
  391. },
  392. async changetime(e) {
  393. const timeFormat = uni.$u.timeFormat;
  394. let timeValue = await timeFormat(e.value, 'yyyy-mm');
  395. this.date = timeValue;
  396. this.page = 1
  397. this.total = 0
  398. this.list = []
  399. this.commission_list()
  400. this.showtime = false
  401. },
  402. TabsTop(item) {
  403. this.tab1 = item.index
  404. this.commission_list()
  405. },
  406. commission_list() {
  407. commission_list({
  408. // source_type: "order",
  409. source_type: this.source_type,
  410. keywords: this.keywords,
  411. is_confirm: "",
  412. date: this.date,
  413. }).then(res => {
  414. console.log(res);
  415. this.list = res.data.data
  416. })
  417. }
  418. }
  419. }
  420. </script>
  421. <style lang="scss" scoped>
  422. .date1 {
  423. font-size: 24rpx;
  424. font-family: PingFangSC, PingFang SC;
  425. font-weight: 400;
  426. color: #222222;
  427. }
  428. .tatlea {
  429. font-size: 24rpx;
  430. font-family: SFPro, SFPro;
  431. font-weight: 400;
  432. color: #666666;
  433. }
  434. .fonts {
  435. padding: 3rpx;
  436. height: 40rpx;
  437. border-radius: 6rpx;
  438. font-size: 24rpx;
  439. font-family: PingFangSC, PingFang SC;
  440. font-weight: 400;
  441. line-height: 40rpx;
  442. }
  443. .yong {
  444. background: #FFFFFF;
  445. border-radius: 16rpx;
  446. padding: 20rpx 20rpx 26rpx;
  447. box-sizing: border-box;
  448. .top {
  449. .left {
  450. font-size: 24rpx;
  451. font-family: PingFangSC-Regular, PingFang SC;
  452. font-weight: 400;
  453. color: #555555;
  454. }
  455. .right {
  456. font-family: SFPro-Regular, SFPro;
  457. font-weight: 400;
  458. color: #F2413A;
  459. }
  460. }
  461. .leftf {
  462. font-size: 26rpx;
  463. font-family: PingFangSC-Regular, PingFang SC;
  464. font-weight: 400;
  465. color: #555555;
  466. margin-top: 20rpx;
  467. }
  468. .leftff {
  469. font-size: 26rpx;
  470. font-family: PingFangSC-Regular, PingFang SC;
  471. font-weight: 400;
  472. color: #555555;
  473. }
  474. }
  475. .list1 {
  476. background: #FFFFFF;
  477. border-radius: 16rpx;
  478. padding: 20rpx;
  479. margin-top: 20rpx;
  480. .data {
  481. font-size: 24rpx;
  482. font-family: PingFangSC-Regular, PingFang SC;
  483. font-weight: 400;
  484. color: #888888;
  485. }
  486. .data1 {
  487. font-size: 24rpx;
  488. font-family: PingFangSC-Regular, PingFang SC;
  489. font-weight: 400;
  490. color: #222222;
  491. }
  492. .title {
  493. font-size: 32rpx;
  494. font-family: PingFangSC-Medium, PingFang SC;
  495. font-weight: 500;
  496. color: #222222;
  497. }
  498. .font {
  499. font-size: 24rpx;
  500. font-family: PingFangSC-Regular, PingFang SC;
  501. font-weight: 400;
  502. color: #fff;
  503. opacity: 1;
  504. }
  505. .back {
  506. background: #0C66C2;
  507. border-radius: 6rpx;
  508. padding: 4rpx 8rpx;
  509. opacity: 0.5;
  510. }
  511. .money {
  512. font-size: 24rpx;
  513. font-family: SFPro-Regular, SFPro;
  514. font-weight: 400;
  515. color: #F2413A;
  516. margin-left: 12rpx;
  517. }
  518. }
  519. .page {
  520. height: 100vh;
  521. .content {
  522. padding: 20rpx 24rpx 0;
  523. background: #F3F3F3;
  524. min-height: 78vh;
  525. // margin-top: 20rpx;
  526. .list {
  527. background: #FFFFFF;
  528. border-radius: 16rpx;
  529. padding: 20rpx;
  530. box-sizing: border-box;
  531. border: 2rpx solid rgba(0, 0, 0, 0);
  532. }
  533. }
  534. }
  535. .bottom {
  536. border-top: 2rpx solid #F6F6F6;
  537. margin-top: 18rpx;
  538. padding-top: 18rpx;
  539. box-sizing: border-box;
  540. .left {
  541. font-size: 24rpx;
  542. font-family: PingFangSC-Regular, PingFang SC;
  543. font-weight: 400;
  544. color: #555555;
  545. }
  546. .right {
  547. font-size: 24rpx;
  548. font-family: PingFangSC-Regular, PingFang SC;
  549. font-weight: 400;
  550. color: #999999;
  551. }
  552. }
  553. .right {
  554. .concent {
  555. .left {
  556. font-size: 24rpx;
  557. font-family: PingFangSC-Regular, PingFang SC;
  558. font-weight: 400;
  559. color: #222222;
  560. }
  561. .money {
  562. font-size: 24rpx;
  563. font-family: SFPro-Regular, SFPro;
  564. font-weight: 400;
  565. color: #F2413A;
  566. margin-left: 12rpx;
  567. }
  568. .right {
  569. margin-left: 12rpx;
  570. font-size: 24rpx;
  571. font-family: PingFangSC-Regular, PingFang SC;
  572. font-weight: 400;
  573. color: #555555;
  574. }
  575. }
  576. .top {
  577. .left {
  578. font-size: 24rpx;
  579. font-family: PingFangSC-Regular, PingFang SC;
  580. font-weight: 400;
  581. color: #555555;
  582. }
  583. .right {
  584. font-size: 24rpx;
  585. font-family: PingFangSC-Regular, PingFang SC;
  586. font-weight: 400;
  587. color: #555555;
  588. }
  589. }
  590. }
  591. .titlea {
  592. font-size: 24rpx;
  593. font-family: SFPro, SFPro;
  594. font-weight: 400;
  595. color: #666666;
  596. }
  597. .left {
  598. .concent {
  599. .left {
  600. font-size: 24rpx;
  601. font-family: PingFangSC-Regular, PingFang SC;
  602. font-weight: 400;
  603. color: #222222;
  604. }
  605. .money {
  606. font-size: 24rpx;
  607. font-family: SFPro-Regular, SFPro;
  608. font-weight: 400;
  609. color: #F2413A;
  610. margin-left: 12rpx;
  611. }
  612. .right {
  613. margin-left: 12rpx;
  614. font-size: 24rpx;
  615. font-family: PingFangSC-Regular, PingFang SC;
  616. font-weight: 400;
  617. color: #555555;
  618. }
  619. }
  620. .top {
  621. .left {
  622. height: 44rpx;
  623. font-size: 32rpx;
  624. font-family: PingFangSC-Medium, PingFang SC;
  625. font-weight: 500;
  626. color: #222222;
  627. }
  628. .right {
  629. margin-left: 12rpx;
  630. font-size: 24rpx;
  631. font-family: PingFangSC-Regular, PingFang SC;
  632. font-weight: 400;
  633. color: #141414;
  634. }
  635. }
  636. }
  637. .search {
  638. height: 68rpx;
  639. background: #F3F3F3;
  640. border-radius: 38rpx;
  641. padding: 14rpx 28rpx;
  642. box-sizing: border-box;
  643. }
  644. .index-header {
  645. padding: 0 32rpx;
  646. height: 50rpx;
  647. .index-search {
  648. width: 200rpx;
  649. height: 64rpx;
  650. background: #FFFFFF;
  651. border-radius: 20rpx;
  652. padding: 0 28rpx;
  653. .text1 {
  654. font-size: 24rpx;
  655. font-family: PingFangSC-Regular, PingFang SC;
  656. font-weight: 400;
  657. color: #999999;
  658. margin-left: 16rpx;
  659. }
  660. }
  661. }
  662. ::v-deep .u-navbar__content__left {
  663. padding: 0 !important;
  664. }
  665. // ::v-deep .u-subsection__item{
  666. // border-radius: 38rpx;
  667. // }
  668. // ::v-deep .u-subsection--subsection{
  669. // border-radius: 76rpx;
  670. // }
  671. </style>