price-log.php 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706
  1. <?php
  2. /**
  3. * @link:http://www.goodmall.com/
  4. * @copyright: Copyright (c) 2020
  5. * Created by PhpStorm
  6. * Author: ganxiaohao
  7. * Date: 2020-05-13
  8. * Time: 14:21
  9. */
  10. use common\helpers\ComponentHelper;
  11. ComponentHelper::loadComponentView('com-export-dialog', '@backend/views/components/common');
  12. ?>
  13. <style>
  14. .order_stat{
  15. background: #FFF;
  16. padding: 10px 10px 0;
  17. margin-bottom: 10px;
  18. }
  19. .title{
  20. font-size: 18px;
  21. font-weight: bold;
  22. display: flex;
  23. align-items: center;
  24. height: 40px;
  25. }
  26. .order_stat > .title > .time{
  27. font-size: 13px;
  28. font-weight: 400;
  29. color: #BFBFBF;
  30. margin-left: 20px;
  31. flex: 1;
  32. }
  33. .order_stat .stat_details{
  34. padding: 30px 0;
  35. display: flex;
  36. }
  37. .default-avatar{
  38. width: 50px;
  39. height: 50px;
  40. border-radius: 50%;
  41. margin-right: 8px;
  42. }
  43. .uer-nickname {
  44. flex: 1;
  45. }
  46. .user_img{
  47. position: relative;
  48. margin-right: 8px;
  49. /* height: 50px;
  50. width: 50px; */
  51. }
  52. </style>
  53. <div id="app" v-cloak>
  54. <el-tabs v-model="actionNameDetail" @tab-click="handleClick">
  55. <el-tab-pane label="佣金明细" name="first">
  56. <div class="order_stat">
  57. <div class="el-card is-never-shadow" style="border: 0px; min-width: 800px; margin-bottom: 10px;">
  58. <div class="stat_details">
  59. <div class="order_module" v-for="(item,index) in orderTotalArr" :key="item.type">
  60. <div class="oirder_modul_title">
  61. <div class="text">{{item.name}}</div>
  62. <el-tooltip class="item" effect="dark" v-if="item.prompt" :content="item.prompt"
  63. placement="bottom">
  64. <i class="el-icon-question stat_icon"></i>
  65. </el-tooltip>
  66. </div>
  67. <div class="price">
  68. {{item.value}}
  69. </div>
  70. </div>
  71. </div>
  72. </div>
  73. </div>
  74. <el-card shadow="never" style="border:0;min-width: 800px;"
  75. body-style="background-color: #f3f3f3;padding: 10px 0 0;">
  76. <div class="table-body">
  77. <template>
  78. <el-tabs v-model="actionName" type="card" @tab-click="change_tab">
  79. <el-tab-pane label="已结算" name="settlement">
  80. </el-tab-pane>
  81. <el-tab-pane label="未结算" name="noSettlement">
  82. </el-tab-pane>
  83. </el-tabs>
  84. </template>
  85. <div class="input-item">
  86. <el-input @keyup.enter.native="search" size="small" placeholder="请输入会员id"
  87. v-model="searchData.user_id" clearable>
  88. </el-input>
  89. </div>
  90. <div class="input-item">
  91. <el-input @keyup.enter.native="search" size="small" placeholder="会员昵称/手机号"
  92. v-model="searchData.keyword" clearable>
  93. </el-input>
  94. </div>
  95. <div class="input-item">
  96. <el-input @keyup.enter.native="search" size="small" placeholder="请输入订单编号"
  97. v-model="searchData.order_no" clearable>
  98. </el-input>
  99. </div>
  100. <el-select size="small" v-model="searchData.capital_type" @change='search' class="select">
  101. <el-option key="all" label="佣金类型" value=""></el-option>
  102. <el-option :key="index" :label="item" :value="index"
  103. v-for="(item, index) in incomeCapitalTypeList"></el-option>
  104. </el-select>
  105. <el-date-picker size="small" placeholder="选择日期" v-model="searchData.date" type="month"
  106. style="float: left" value-format="yyyy-MM" @change="selectDateTime">
  107. </el-date-picker>
  108. <el-input clearable style="width: 170px;margin-right: 20px;" size="small" type="text" @keyup.enter.native="search" v-model="searchData.contributor" placeholder="来源会员ID/手机号"></el-input>
  109. <div class="input-item">
  110. <el-button type="primary" size="small" icon="el-icon-search" @click="search"
  111. class="search_button">搜索
  112. </el-button>
  113. <com-export-dialog :field_list='exportList' :action_url="export_url" :params="searchData"
  114. @selected="exportConfirm"></com-export-dialog>
  115. </div>
  116. <el-table :data="form" style="width: 100%" v-loading="listLoading">
  117. <el-table-column prop="user_id" label="会员ID" min-width="100" align="center"></el-table-column>
  118. <el-table-column label="会员" width="180">
  119. <template slot-scope="scope">
  120. <div class="table-info-img-text">
  121. <el-image class="table-info-img circle" :src="scope.row.avatar_url">
  122. <div slot="error" class="image-slot">
  123. <com-image src="/resources/img/common/default-avatar.png"></com-image>
  124. </div>
  125. </el-image>
  126. <div class="table-info-text">
  127. <div v-if="scope.row.nickname">{{scope.row.nickname}}</div>
  128. <div>{{scope.row.mobile}}</div>
  129. </div>
  130. </div>
  131. </template>
  132. </el-table-column>
  133. <el-table-column prop="source_text" label="佣金类型" min-width="150" align="center">
  134. <template slot-scope="scope">
  135. <div v-if="scope.row.source_text">{{scope.row.source_text}}</div>
  136. <div v-else-if="scope.row.source">{{scope.row.source}}</div>
  137. <div v-else>--</div>
  138. </template>
  139. </el-table-column>
  140. <el-table-column label="结算金额" min-width="100" align="center">
  141. <template slot-scope="scope">
  142. <div style="font-size: 18px;color: #68CF3D" v-if="scope.row.change_type == 'add'">
  143. +{{scope.row.change_num}}
  144. </div>
  145. <div style="font-size: 18px;color: #F6AA5A" v-if="scope.row.change_type == 'sub'">
  146. -{{scope.row.change_num}}
  147. </div>
  148. </template>
  149. </el-table-column>
  150. <el-table-column prop="current_num" label="变动前佣金" min-width="100"
  151. align="center"></el-table-column>
  152. <el-table-column prop="current_num" label="变动后佣金" min-width="100" align="center">
  153. <template slot-scope="scope">
  154. <div v-if="scope.row.change_type == 'add'">{{Number((scope.row.current_num +
  155. scope.row.change_num)).toFixed(2)}}
  156. </div>
  157. <div v-if="scope.row.change_type == 'sub'">{{Number((scope.row.current_num -
  158. scope.row.change_num)).toFixed(2)}}
  159. </div>
  160. </template>
  161. </el-table-column>
  162. <el-table-column prop="desc" label="说明" min-width="200" align="center"></el-table-column>
  163. <el-table-column prop="order_no" label="订单编号" width="150" align="center"></el-table-column>
  164. <el-table-column label="来源会员" width="180">
  165. <template slot-scope="scope">
  166. <div class="table-info-img-text" v-if="scope.row.from_user">
  167. <el-image class="table-info-img circle" :src="scope.row.from_user.avatar_url">
  168. <div slot="error" class="image-slot">
  169. <com-image src="/resources/img/common/default-avatar.png"></com-image>
  170. </div>
  171. </el-image>
  172. <div class="table-info-text">
  173. <div v-if="scope.row.from_user.id">ID:{{scope.row.from_user.id}}</div>
  174. <div v-if="scope.row.from_user.nickname">昵称:{{scope.row.from_user.nickname}}
  175. </div>
  176. </div>
  177. </div>
  178. </template>
  179. </el-table-column>
  180. <el-table-column prop="scope" min-width="150" label="创建时间" align="center">
  181. <template slot-scope="scope">
  182. {{scope.row.created_at}}
  183. </template>
  184. </el-table-column>
  185. </el-table>
  186. <!--工具条 批量操作和分页-->
  187. <el-col :span="24" class="toolbar">
  188. <el-pagination
  189. background
  190. layout="prev, pager, next"
  191. @current-change="pageChange"
  192. :page-size="pageSize"
  193. :total="pagination.totalCount"
  194. style="float:right;margin:15px"
  195. v-if="pagination">
  196. </el-pagination>
  197. </el-col>
  198. </div>
  199. </el-card>
  200. </el-tab-pane>
  201. <el-tab-pane label="货款明细" name="second">
  202. <div class="order_stat">
  203. <div class="el-card is-never-shadow" style="border: 0px; min-width: 800px; margin-bottom: 10px;">
  204. <div class="stat_details">
  205. <div class="order_module" v-for="(item,index) in paymentTotalArr" :key="item.type">
  206. <div class="oirder_modul_title">
  207. <div class="text">{{item.name}}</div>
  208. <el-tooltip class="item" effect="dark" v-if="item.prompt" :content="item.prompt"
  209. placement="bottom">
  210. <i class="el-icon-question stat_icon"></i>
  211. </el-tooltip>
  212. </div>
  213. <div class="price">
  214. {{item.value}}
  215. </div>
  216. </div>
  217. </div>
  218. </div>
  219. </div>
  220. <el-card shadow="never" style="border:0;min-width: 800px;"
  221. body-style="background-color: #f3f3f3;padding: 10px 0 0;">
  222. <div class="table-body">
  223. <el-date-picker size="small" placeholder="选择日期" v-model="searchData.date" type="month"
  224. style="float: left" value-format="yyyy-MM" @change="selectDateTimePayment">
  225. </el-date-picker>
  226. <div class="input-item">
  227. <el-input @keyup.enter.native="search" size="small" placeholder="请输入会员id"
  228. v-model="searchData.user_id" clearable>
  229. </el-input>
  230. </div>
  231. <div class="input-item">
  232. <el-input @keyup.enter.native="search" size="small" placeholder="会员昵称/手机号"
  233. v-model="searchData.keyword" clearable>
  234. </el-input>
  235. </div>
  236. <div class="input-item">
  237. <el-input @keyup.enter.native="search" size="small" placeholder="请输入订单编号"
  238. v-model="searchData.order_no" clearable>
  239. </el-input>
  240. </div>
  241. <el-select size="small" v-model="searchData.status" class="select">
  242. <el-option key="all" label="全部" value="all"></el-option>
  243. <el-option key="0" label="未结算" value="0"></el-option>
  244. <el-option key="1" label="已结算" value="1"></el-option>
  245. </el-select>
  246. <el-input clearable style="width: 170px;margin-right: 20px;" size="small" type="text" @keyup.enter.native="search" v-model="searchData.contributor" placeholder="来源会员ID/手机号"></el-input>
  247. <div class="input-item">
  248. <el-button type="primary" size="small" icon="el-icon-search" @click="searchPayment"
  249. class="search_button">搜索
  250. </el-button>
  251. <com-export-dialog :field_list='exportList' :action_url="export_url" :params="searchData"
  252. @selected="exportConfirm"></com-export-dialog>
  253. </div>
  254. <el-table :data="form" style="width: 100%" v-loading="listLoading">
  255. <el-table-column prop="user_id" label="会员ID" min-width="100" align="center"></el-table-column>
  256. <el-table-column label="会员" align="center" width="180">
  257. <template slot-scope="scope">
  258. <div class="table-info-img-text">
  259. <el-image class="table-info-img circle" :src="scope.row.avatar_url">
  260. <div slot="error" class="image-slot">
  261. <com-image src="/resources/img/common/default-avatar.png"></com-image>
  262. </div>
  263. </el-image>
  264. <div class="table-info-text">
  265. <div v-if="scope.row.nickname">{{scope.row.nickname}}</div>
  266. <div>{{scope.row.mobile}}</div>
  267. </div>
  268. </div>
  269. </template>
  270. </el-table-column>
  271. <el-table-column prop="source_text" label="货款类型" min-width="150" align="center">
  272. <template slot-scope="scope">
  273. <div>云库存-{{scope.row.source_text}}</div>
  274. </template>
  275. </el-table-column>
  276. <el-table-column label="金额" min-width="100" align="center" prop="money"></el-table-column>
  277. <el-table-column label="状态" min-width="100" align="center">
  278. <template slot-scope="scope">
  279. <div v-if="scope.row.status == 0">
  280. 未结算
  281. </div>
  282. <div v-if="scope.row.status == 1">
  283. 已结算
  284. </div>
  285. </template>
  286. </el-table-column>
  287. <el-table-column prop="desc" label="说明" min-width="200" align="center"></el-table-column>
  288. <el-table-column prop="order_no" label="订单编号" width="150" align="center"></el-table-column>
  289. <el-table-column label="来源会员" width="180">
  290. <template slot-scope="scope">
  291. <div class="table-info-img-text" v-if="scope.row.from_user">
  292. <el-image class="table-info-img circle" :src="scope.row.from_user.avatar_url">
  293. <div slot="error" class="image-slot">
  294. <com-image src="/resources/img/common/default-avatar.png"></com-image>
  295. </div>
  296. </el-image>
  297. <div class="table-info-text">
  298. <div v-if="scope.row.from_user.id">ID:{{scope.row.from_user.id}}</div>
  299. <div v-if="scope.row.from_user.nickname">昵称:{{scope.row.from_user.nickname}}
  300. </div>
  301. </div>
  302. </div>
  303. </template>
  304. </el-table-column>
  305. <el-table-column prop="scope" min-width="150" label="创建时间" align="center">
  306. <template slot-scope="scope">
  307. {{scope.row.created_at}}
  308. </template>
  309. </el-table-column>
  310. </el-table>
  311. <!--工具条 批量操作和分页-->
  312. <el-col :span="24" class="toolbar">
  313. <el-pagination
  314. background
  315. layout="prev, pager, next"
  316. @current-change="pageChangePaymentLog"
  317. :page-size="pageSize"
  318. :total="pagination.totalCount"
  319. style="float:right;margin:15px"
  320. v-if="pagination">
  321. </el-pagination>
  322. </el-col>
  323. </div>
  324. </el-card>
  325. </el-tab-pane>
  326. </el-tabs>
  327. </div>
  328. <script>
  329. const app = new Vue({
  330. el: '#app',
  331. data() {
  332. return {
  333. actionName: 'settlement',
  334. actionNameDetail: 'first',
  335. status: 1,
  336. searchData: {
  337. keyword: '',
  338. date: '',
  339. user_id: '',
  340. // order_num: '',
  341. capital_type: '',
  342. order_no:'',
  343. status: '1',
  344. contributor: '',
  345. },
  346. export_url: 'mall/finance/commission-log',
  347. exportList:{},
  348. form: [],
  349. incomeFromTypeList:[],
  350. incomeCapitalTypeList:[],
  351. pagination: null,
  352. listLoading: false,
  353. orderTotalArr: [
  354. {
  355. type: 'commission_total',
  356. name: '总发放佣金',
  357. value: '0.00',
  358. prompt: '累计所有发放给会员的佣金(待结算+已结算)',
  359. },{
  360. type: 'frozen_capital_total',
  361. name: '待结算佣金',
  362. value: '0.00',
  363. prompt: '所有会员待结算的佣金',
  364. },
  365. ],
  366. paymentTotalArr: [
  367. {
  368. type: 'cloud_warehouse',
  369. name: '货款总额',
  370. value: '0.00',
  371. prompt: '',
  372. }, {
  373. type: 'cloud_warehouse_withdraw_price',
  374. name: '货款提现总数',
  375. value: '0.00',
  376. prompt: '',
  377. },
  378. ],
  379. pageSize: 20,
  380. };
  381. },
  382. methods: {
  383. handleClick(tab, event) {
  384. if (tab.name == 'first') {
  385. this.searchData.status = '1';
  386. this.getList();
  387. } else if (tab.name == 'second') {
  388. this.searchData.status = 'all';
  389. this.getPaymentLog();
  390. }
  391. console.log(tab.name, event);
  392. },
  393. exportConfirm() {
  394. this.search.status = this.status
  395. },
  396. pageChange(currentPage) {
  397. this.page = currentPage;
  398. this.getList();
  399. },
  400. pageChangePaymentLog(currentPage) {
  401. this.page = currentPage;
  402. this.getPaymentLog();
  403. },
  404. search() {
  405. this.page = 1;
  406. this.getList();
  407. },
  408. searchPayment() {
  409. this.page = 1;
  410. this.getPaymentLog();
  411. },
  412. selectDateTime(e) {
  413. this.searchData.date = e;
  414. this.page = 1;
  415. this.search();
  416. },
  417. selectDateTimePayment(e) {
  418. this.searchData.date = e;
  419. this.page = 1;
  420. this.getPaymentLog();
  421. },
  422. getList() {
  423. let params = {
  424. r: 'cloud-stock/default/price-log',
  425. page: this.page,
  426. user_id: this.searchData.user_id,
  427. keyword: this.searchData.keyword,
  428. status: this.status,
  429. date: this.searchData.date,
  430. capital_type: this.searchData.capital_type,
  431. order_no:this.searchData.order_no,
  432. contributor:this.searchData.contributor,
  433. };
  434. request({
  435. params,
  436. }).then(e => {
  437. if (e.data.code === 0) {
  438. this.pageSize = e.data.data.page_size;
  439. this.form = e.data.data.list;
  440. this.pagination = e.data.data.pagination;
  441. this.incomeCapitalTypeList = e.data.data.incomeCapitalTypeList;
  442. this.exportList = e.data.data.export_list;
  443. this.export_url = 'cloud-stock/default/price-log';
  444. for (const key in e.data.data.statistics_data) {
  445. let info = this.orderTotalArr.filter(v => v.type == key); //订单概况
  446. if(info.length){
  447. let index = this.orderTotalArr.findIndex(v => v.type==info[0].type);
  448. this.orderTotalArr[index].value = Number(e.data.data.statistics_data[key]).toFixed(2);
  449. }
  450. }
  451. } else {
  452. if(e.data.msg == 'User Id必须是整数。'){
  453. e.data.msg = '会员id必须是整数';
  454. }
  455. this.$message.error(e.data.msg);
  456. }
  457. this.listLoading = false;
  458. }).catch(e => {
  459. this.listLoading = false;
  460. });
  461. this.listLoading = true;
  462. },
  463. settlement(id){
  464. let self = this;
  465. self.$confirm('是否确认结算?', '提示', {
  466. confirmButtonText: '确定',
  467. cancelButtonText: '取消',
  468. type: 'warning'
  469. }).then(() => {
  470. request({
  471. params: {
  472. r: 'cloud-stock/default/settlement',
  473. },
  474. method: 'post',
  475. data:{
  476. id:id,
  477. }
  478. }).then(e => {
  479. self.loading = false;
  480. if (e.data.code == 0) {
  481. self.$message.success(e.data.msg);
  482. self.getList();
  483. } else {
  484. self.$message.error(e.data.msg);
  485. }
  486. }).catch(e => {
  487. self.loading = false;
  488. });
  489. }).catch(() => {
  490. //self.$message.info('已取消')
  491. });
  492. },
  493. change_tab(tab, event) {
  494. for(let i in this.searchData) {
  495. this.searchData[i] = '';
  496. }
  497. if (tab.name == 'settlement') {
  498. this.status = 1;
  499. this.searchData.status = 1;
  500. } else {
  501. this.status = 0;
  502. this.searchData.status = 0;
  503. }
  504. this.search();
  505. },
  506. exportData(){
  507. let self = this;
  508. self.listLoading = true;
  509. request({
  510. params: {
  511. r: 'mall/finance/commission-log',
  512. date: this.searchData.date,
  513. user_id: this.searchData.user_id,
  514. keyword: this.searchData.keyword,
  515. desc: this.searchData.remark,
  516. capital_type: this.searchData.capital_type,
  517. status: this.status,
  518. order_no:this.searchData.order_no,
  519. flag: 'EXPORT'
  520. },
  521. }).then(e => {
  522. // console.log(e);return null;
  523. if (e.data.code == 0) {
  524. this.$message.success(e.data.msg);
  525. } else {
  526. this.$message.error(e.data.msg);
  527. }
  528. self.listLoading = false;
  529. }).catch(e => {
  530. self.listLoading = false;
  531. });
  532. },
  533. getPaymentLog() {
  534. let params = {
  535. r: 'cloud-stock/default/payment-log',
  536. page: this.page,
  537. user_id: this.searchData.user_id,
  538. keyword: this.searchData.keyword,
  539. status: this.searchData.status,
  540. date: this.searchData.date,
  541. capital_type: this.searchData.capital_type,
  542. order_no: this.searchData.order_no,
  543. contributor: this.searchData.contributor,
  544. };
  545. request({
  546. params,
  547. }).then(e => {
  548. if (e.data.code === 0) {
  549. this.pageSize = e.data.data.page_size;
  550. this.form = e.data.data.list;
  551. this.pagination = e.data.data.pagination;
  552. this.exportList = e.data.data.export_list;
  553. this.export_url = e.data.data.export_url;
  554. for (const key in e.data.data.statistics_data) {
  555. let info = this.paymentTotalArr.filter(v => v.type == key); //订单概况
  556. if (info.length) {
  557. let index = this.paymentTotalArr.findIndex(v => v.type == info[0].type);
  558. this.paymentTotalArr[index].value = Number(e.data.data.statistics_data[key]).toFixed(2);
  559. }
  560. }
  561. } else {
  562. if (e.data.msg == 'User Id必须是整数。') {
  563. e.data.msg = '会员id必须是整数';
  564. }
  565. this.$message.error(e.data.msg);
  566. }
  567. this.listLoading = false;
  568. }).catch(e => {
  569. this.listLoading = false;
  570. });
  571. this.listLoading = true;
  572. },
  573. },
  574. mounted: function() {
  575. this.user_id = getQuery('user_id');
  576. this.searchData.user_id = getQuery('user_id');
  577. this.getList();
  578. }
  579. });
  580. </script>
  581. <style>
  582. .table-body {
  583. padding: 20px;
  584. background-color: #fff;
  585. }
  586. .input-item {
  587. display: inline-block;
  588. width: 250px;
  589. margin: 0 0 20px 20px;
  590. }
  591. .input-item .el-input__inner:hover{
  592. border: 1px solid #dcdfe6;
  593. border-right: 0;
  594. outline: 0;
  595. }
  596. .input-item .el-input__inner:focus{
  597. border: 1px solid #dcdfe6;
  598. border-right: 0;
  599. outline: 0;
  600. }
  601. .input-item .el-input-group__append {
  602. background-color: #fff;
  603. border-left: 0;
  604. width: 10%;
  605. padding: 0;
  606. }
  607. /* .input-item .el-input-group__append .el-button {
  608. padding: 0;
  609. }
  610. .input-item .el-input-group__append .el-button {
  611. margin: 0;
  612. }
  613. .table-body .el-button {
  614. padding: 0!important;
  615. border: 0;
  616. margin: 0 5px;
  617. } */
  618. .el-table th>.cell{
  619. color: #333;
  620. font-weight: bold;
  621. font-size: 14px;
  622. }
  623. .el-table__footer-wrapper, .el-table__header-wrapper{
  624. border-bottom: 1.4px solid #D6D6D6;
  625. }
  626. .statistical ul {
  627. float: left;
  628. }
  629. .statistical ul li.ul-li {
  630. width: 33%;
  631. float: left;
  632. list-style-type :none;
  633. padding-bottom: 10px;
  634. }
  635. .stat_details{
  636. /* padding-bottom: 30px; */
  637. padding-top: 20px;
  638. display: flex;
  639. }
  640. .order_module{
  641. flex: 1;
  642. background: #F2F2F2;
  643. margin: 0 5px;
  644. padding: 20px 25px;
  645. }
  646. .order_module:last-child{
  647. margin-right: 0;
  648. }
  649. .order_module:first-child{
  650. margin-left: 0;
  651. }
  652. .price{
  653. font-size: 22px;
  654. font-weight: bold;
  655. }
  656. .oirder_modul_title{
  657. font-size: 12px;
  658. margin-bottom: 10px;
  659. display: flex;
  660. align-items: center;
  661. }
  662. .oirder_modul_title .text{
  663. margin-right: 10px;
  664. }
  665. .stat_icon{
  666. font-size: 19px;
  667. color: #BFBFBF;
  668. }
  669. </style>