index.vue 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542
  1. <template>
  2. <div class="app-container">
  3. <!-- 搜索工作栏 -->
  4. <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="120px">
  5. <el-form-item label="所属商户" prop="merchantId">
  6. <el-select
  7. v-model="queryParams.merchantId"
  8. clearable
  9. @clear="()=>{queryParams.merchantId = null}"
  10. filterable
  11. remote
  12. reserve-keyword
  13. placeholder="请选择所属商户"
  14. @change="handleGetAppListByMerchantId"
  15. :remote-method="handleGetMerchantListByName"
  16. :loading="merchantLoading">
  17. <el-option
  18. v-for="item in merchantList"
  19. :key="item.id"
  20. :label="item.name"
  21. :value="item.id">
  22. </el-option>
  23. </el-select>
  24. </el-form-item>
  25. <el-form-item label="应用编号" prop="appId">
  26. <el-select
  27. clearable
  28. v-model="queryParams.appId"
  29. filterable
  30. placeholder="请选择应用信息">
  31. <el-option
  32. v-for="item in appList"
  33. :key="item.id"
  34. :label="item.name"
  35. :value="item.id">
  36. </el-option>
  37. </el-select>
  38. </el-form-item>
  39. <el-form-item label="渠道编码" prop="channelCode">
  40. <el-select v-model="queryParams.channelCode" placeholder="请输入渠道编码" clearable
  41. size="small" @clear="()=>{queryParams.channelCode = null}">
  42. <el-option v-for="dict in payChannelCodeDictDatum" :key="dict.value" :label="dict.label" :value="dict.value"/>
  43. </el-select>
  44. </el-form-item>
  45. <el-form-item label="退款类型" prop="type">
  46. <el-select v-model="queryParams.type" placeholder="请选择退款类型" clearable size="small">
  47. <el-option v-for="dict in payRefundOrderTypeDictDatum" :key="parseInt(dict.value)"
  48. :label="dict.label" :value="parseInt(dict.value)"/>
  49. </el-select>
  50. </el-form-item>
  51. <el-form-item label="商户退款订单号" prop="merchantRefundNo">
  52. <el-input v-model="queryParams.merchantRefundNo" placeholder="请输入商户退款订单号" clearable size="small"
  53. @keyup.enter.native="handleQuery"/>
  54. </el-form-item>
  55. <el-form-item label="退款状态" prop="status">
  56. <el-select v-model="queryParams.status" placeholder="请选择退款状态" clearable size="small">
  57. <el-option v-for="dict in payRefundOrderDictDatum" :key="parseInt(dict.value)"
  58. :label="dict.label" :value="parseInt(dict.value)"/>
  59. </el-select>
  60. </el-form-item>
  61. <el-form-item label="退款回调状态" prop="notifyStatus">
  62. <el-select v-model="queryParams.notifyStatus" placeholder="请选择通知商户退款结果的回调状态" clearable size="small">
  63. <el-option v-for="dict in payOrderNotifyDictDatum" :key="parseInt(dict.value)"
  64. :label="dict.label" :value="parseInt(dict.value)"/>
  65. </el-select>
  66. </el-form-item>
  67. <el-form-item label="创建时间">
  68. <el-date-picker
  69. v-model="dateRangeCreateTime" size="small" style="width: 350px"
  70. value-format="yyyy-MM-dd HH:mm:ss" type="datetimerange" range-separator="-"
  71. :default-time="['00:00:00','23:59:59']" start-placeholder="开始日期" end-placeholder="结束日期">
  72. </el-date-picker>
  73. </el-form-item>
  74. <el-form-item>
  75. <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
  76. <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
  77. </el-form-item>
  78. </el-form>
  79. <!-- 操作工具栏 -->
  80. <el-row :gutter="10" class="mb8">
  81. <el-col :span="1.5">
  82. <el-button type="warning" plain icon="el-icon-download" size="mini" @click="handleExport"
  83. v-hasPermi="['pay:refund:export']">导出
  84. </el-button>
  85. </el-col>
  86. <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
  87. </el-row>
  88. <!-- 列表 -->
  89. <el-table v-loading="loading" :data="list">
  90. <el-table-column label="编号" align="center" prop="id"/>
  91. <!-- <el-table-column label="商户名称" align="center" prop="merchantName" width="120"/>-->
  92. <!-- <el-table-column label="应用名称" align="center" prop="appName" width="120"/>-->
  93. <el-table-column label="支付渠道" align="center" width="130">
  94. <template v-slot="scope">
  95. <el-popover trigger="hover" placement="top">
  96. <p>商户名称: {{ scope.row.merchantName }}</p>
  97. <p>应用名称: {{ scope.row.appName }}</p>
  98. <p>渠道名称: {{ scope.row.channelCodeName }}</p>
  99. <div slot="reference" class="name-wrapper">
  100. {{ scope.row.channelCodeName }}
  101. </div>
  102. </el-popover>
  103. </template>
  104. </el-table-column>
  105. <!-- <el-table-column label="交易订单号" align="center" prop="tradeNo" width="140"/>-->
  106. <!-- <el-table-column label="商户订单编号" align="center" prop="merchantOrderId" width="140"/>-->
  107. <el-table-column label="商户订单号" align="left" width="230">
  108. <template v-slot="scope">
  109. <p class="order-font">
  110. <el-tag size="mini">退款</el-tag>
  111. {{ scope.row.merchantRefundNo }}
  112. </p>
  113. <p class="order-font">
  114. <el-tag type="success">交易</el-tag>
  115. {{ scope.row.merchantOrderId }}
  116. </p>
  117. </template>
  118. </el-table-column>
  119. <el-table-column label="支付订单号" align="center" prop="merchantRefundNo" width="250">
  120. <template v-slot="scope">
  121. <p class="order-font">
  122. <el-tag size="mini">交易</el-tag>
  123. {{ scope.row.tradeNo }}
  124. </p>
  125. <p class="order-font">
  126. <el-tag size="mini" type="warning">渠道</el-tag>
  127. {{ scope.row.channelOrderNo }}
  128. </p>
  129. </template>
  130. </el-table-column>
  131. <el-table-column label="支付金额(元)" align="center" prop="payAmount" width="100">
  132. <template v-slot="scope" class="">
  133. ¥{{ parseFloat(scope.row.payAmount / 100).toFixed(2) }}
  134. </template>
  135. </el-table-column>
  136. <el-table-column label="退款金额(元)" align="center" prop="refundAmount" width="100">
  137. <template scope="scope">
  138. ¥{{ parseFloat(scope.row.refundAmount / 100).toFixed(2) }}
  139. </template>
  140. </el-table-column>
  141. <el-table-column label="退款类型" align="center" prop="type" width="80">
  142. <template v-slot="scope">
  143. <el-tag :type="findByRefundTypeGetStyle(scope.row.type)">
  144. {{ getDictDataLabel(DICT_TYPE.PAY_ORDER_REFUND_STATUS, scope.row.type) }}
  145. </el-tag>
  146. </template>
  147. </el-table-column>
  148. <el-table-column label="退款状态" align="center" prop="status">
  149. <template v-slot="scope">
  150. <el-tag :type="findByRefundStatusGetStyle(scope.row.status)">
  151. {{ getDictDataLabel(DICT_TYPE.PAY_REFUND_ORDER_STATUS, scope.row.status) }}
  152. </el-tag>
  153. </template>
  154. </el-table-column>
  155. <el-table-column label="回调状态" align="center" prop="notifyStatus">
  156. <template v-slot="scope">
  157. <el-tag :type="findByRefundStatusGetStyle(scope.row.notifyStatus)">
  158. {{ getDictDataLabel(DICT_TYPE.PAY_ORDER_NOTIFY_STATUS, scope.row.notifyStatus) }}
  159. </el-tag>
  160. </template>
  161. </el-table-column>
  162. <el-table-column label="退款原因" align="center" prop="reason" width="140" :show-overflow-tooltip="true"/>
  163. <el-table-column label="创建时间" align="center" prop="createTime" width="100">
  164. <template slot-scope="scope">
  165. <span>{{ parseTime(scope.row.createTime) }}</span>
  166. </template>
  167. </el-table-column>
  168. <el-table-column label="退款成功时间" align="center" prop="successTime" width="100">
  169. <template slot-scope="scope">
  170. <span>{{ parseTime(scope.row.successTime) }}</span>
  171. </template>
  172. </el-table-column>
  173. <el-table-column label="操作" align="center" fixed="right" class-name="small-padding fixed-width">
  174. <template slot-scope="scope">
  175. <el-button size="mini" type="text" icon="el-icon-search" @click="handleQueryDetails(scope.row)"
  176. v-hasPermi="['pay:order:query']">查看详情
  177. </el-button>
  178. </template>
  179. </el-table-column>
  180. </el-table>
  181. <!-- 分页组件 -->
  182. <pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNo" :limit.sync="queryParams.pageSize"
  183. @pagination="getList"/>
  184. <!-- 对话框(添加 / 修改) -->
  185. <el-dialog title="退款订单详情" :visible.sync="open" width="700px" append-to-body>
  186. <el-descriptions :column="2" label-class-name="desc-label">
  187. <el-descriptions-item label="商户名称">{{ refundDetail.merchantName }}</el-descriptions-item>
  188. <el-descriptions-item label="应用名称">{{ refundDetail.appName }}</el-descriptions-item>
  189. <el-descriptions-item label="商品名称">{{ refundDetail.subject }}</el-descriptions-item>
  190. </el-descriptions>
  191. <el-divider></el-divider>
  192. <el-descriptions :column="2" label-class-name="desc-label">
  193. <el-descriptions-item label="商户退款单号">
  194. <el-tag size="mini">{{ refundDetail.merchantRefundNo }}</el-tag>
  195. </el-descriptions-item>
  196. <el-descriptions-item label="商户订单号">{{ refundDetail.merchantOrderId }}</el-descriptions-item>
  197. <el-descriptions-item label="交易订单号">{{ refundDetail.tradeNo }}</el-descriptions-item>
  198. </el-descriptions>
  199. <el-divider></el-divider>
  200. <el-descriptions :column="2" label-class-name="desc-label">
  201. <el-descriptions-item label="支付金额">
  202. {{ parseFloat(refundDetail.payAmount / 100).toFixed(2) }}
  203. </el-descriptions-item>
  204. <el-descriptions-item label="退款金额" size="mini">
  205. <el-tag class="tag-purple" size="mini">{{ parseFloat(refundDetail.refundAmount / 100).toFixed(2) }}</el-tag>
  206. </el-descriptions-item>
  207. <el-descriptions-item label="退款类型">
  208. <el-tag size="mini" :type="findByRefundTypeGetStyle(refundDetail.type)">
  209. {{ getDictDataLabel(DICT_TYPE.PAY_ORDER_REFUND_STATUS, refundDetail.type) }}
  210. </el-tag>
  211. </el-descriptions-item>
  212. <el-descriptions-item label="退款状态">
  213. <el-tag size="mini" :type="findByRefundStatusGetStyle(refundDetail.status)">
  214. {{ getDictDataLabel(DICT_TYPE.PAY_REFUND_ORDER_STATUS, refundDetail.status) }}
  215. </el-tag>
  216. </el-descriptions-item>
  217. <el-descriptions-item label="创建时间">{{ parseTime(refundDetail.createTime) }}</el-descriptions-item>
  218. <el-descriptions-item label="退款成功时间">{{ parseTime(refundDetail.successTime) }}</el-descriptions-item>
  219. <el-descriptions-item label="退款失效时间">{{ parseTime(refundDetail.expireTime) }}</el-descriptions-item>
  220. <el-descriptions-item label="更新时间">{{ parseTime(refundDetail.updateTime) }}</el-descriptions-item>
  221. </el-descriptions>
  222. <el-divider></el-divider>
  223. <el-descriptions :column="2" label-class-name="desc-label">
  224. <el-descriptions-item label="支付渠道">
  225. {{ refundDetail.channelCodeName }}
  226. </el-descriptions-item>
  227. <el-descriptions-item label="支付IP" size="mini">
  228. {{refundDetail.userIp}}
  229. </el-descriptions-item>
  230. <el-descriptions-item label="回调地址">{{ refundDetail.notifyUrl }}</el-descriptions-item>
  231. <el-descriptions-item label="回调状态">
  232. <el-tag size="mini" :type="findByRefundStatusGetStyle(refundDetail.notifyStatus)">
  233. {{ getDictDataLabel(DICT_TYPE.PAY_ORDER_NOTIFY_STATUS, refundDetail.notifyStatus) }}
  234. </el-tag>
  235. </el-descriptions-item>
  236. <el-descriptions-item label="回调时间">{{ parseTime(refundDetail.notifyTime) }}</el-descriptions-item>
  237. </el-descriptions>
  238. <el-divider></el-divider>
  239. <el-descriptions :column="2" label-class-name="desc-label">
  240. <el-descriptions-item label="渠道订单号">{{ refundDetail.channelOrderNo }}</el-descriptions-item>
  241. <el-descriptions-item label="渠道退款单号">{{ refundDetail.channelRefundNo }}</el-descriptions-item>
  242. <el-descriptions-item label="渠道错误码">{{refundDetail.channelErrorCode}}</el-descriptions-item>
  243. <el-descriptions-item label="渠道错误码描述">{{refundDetail.channelErrorMsg}}</el-descriptions-item>
  244. </el-descriptions>
  245. <br>
  246. <el-descriptions :column="1" label-class-name="desc-label" direction="vertical" border>
  247. <el-descriptions-item label="渠道额外参数">{{ refundDetail.channelExtras }}</el-descriptions-item>
  248. <el-descriptions-item label="退款原因">{{ refundDetail.reason }}</el-descriptions-item>
  249. </el-descriptions>
  250. </el-dialog>
  251. </div>
  252. </template>
  253. <script>
  254. import {getRefundPage, exportRefundExcel, getRefund} from "@/api/pay/refund";
  255. import {getMerchantListByName} from "@/api/pay/merchant";
  256. import {getAppListByMerchantId} from "@/api/pay/app";
  257. import {DICT_TYPE, getDictDatas} from "@/utils/dict";
  258. import {
  259. PayOrderRefundStatusEnum,
  260. PayRefundStatusEnum
  261. } from "@/utils/constants";
  262. import {getNowDateTime} from "@/utils/ruoyi";
  263. const defaultRefundDetail = {
  264. id: null,
  265. appId: null,
  266. appName: '',
  267. channelCode: '',
  268. channelCodeName: '',
  269. channelErrorCode: '',
  270. channelErrorMsg: '',
  271. channelExtras: '',
  272. channelId: null,
  273. channelOrderNo: '',
  274. channelRefundNo: '',
  275. createTime: null,
  276. expireTime: null,
  277. merchantId: null,
  278. merchantName: '',
  279. merchantOrderId: '',
  280. merchantRefundNo: '',
  281. notifyStatus: null,
  282. notifyTime: null,
  283. notifyUrl: '',
  284. orderId: null,
  285. payAmount: null,
  286. reason: '',
  287. refundAmount: null,
  288. status: null,
  289. subject: '',
  290. successTime: null,
  291. tradeNo: '',
  292. type: null,
  293. userIp: ''
  294. }
  295. export default {
  296. name: "Refund",
  297. components: {},
  298. data() {
  299. return {
  300. // 遮罩层
  301. loading: true,
  302. // 显示搜索条件
  303. showSearch: true,
  304. // 总条数
  305. total: 0,
  306. // 退款订单列表
  307. list: [],
  308. // 弹出层标题
  309. title: "",
  310. // 是否显示弹出层
  311. open: false,
  312. dateRangeExpireTime: [],
  313. dateRangeSuccessTime: [],
  314. dateRangeNotifyTime: [],
  315. dateRangeCreateTime: [],
  316. // 查询参数
  317. queryParams: {
  318. pageNo: 1,
  319. pageSize: 10,
  320. merchantId: null,
  321. appId: null,
  322. channelId: null,
  323. channelCode: null,
  324. orderId: null,
  325. tradeNo: null,
  326. merchantOrderId: null,
  327. merchantRefundNo: null,
  328. notifyUrl: null,
  329. notifyStatus: null,
  330. status: null,
  331. type: null,
  332. payAmount: null,
  333. refundAmount: null,
  334. reason: null,
  335. userIp: null,
  336. channelOrderNo: null,
  337. channelRefundNo: null,
  338. channelErrorCode: null,
  339. channelErrorMsg: null,
  340. channelExtras: null,
  341. },
  342. // 商户加载遮罩层
  343. merchantLoading: false,
  344. // 商户列表集合
  345. merchantList: null,
  346. // 支付应用列表集合
  347. appList: null,
  348. // 支付渠道编码字典数据集合
  349. payChannelCodeDictDatum: getDictDatas(DICT_TYPE.PAY_CHANNEL_CODE_TYPE),
  350. // 订单退款状态字典数据集合
  351. payRefundOrderDictDatum: getDictDatas(DICT_TYPE.PAY_REFUND_ORDER_STATUS),
  352. // 退款订单类别字典数据集合
  353. payRefundOrderTypeDictDatum: getDictDatas(DICT_TYPE.PAY_REFUND_ORDER_TYPE),
  354. // 订单回调商户状态字典数据集合
  355. payOrderNotifyDictDatum: getDictDatas(DICT_TYPE.PAY_ORDER_NOTIFY_STATUS),
  356. // el-tag订单退款状态type值
  357. refundStatusType: '',
  358. // 退款订单详情
  359. refundDetail: JSON.parse(JSON.stringify(defaultRefundDetail)),
  360. };
  361. },
  362. created() {
  363. this.initTime();
  364. this.getList();
  365. this.handleGetMerchantListByName(null);
  366. },
  367. methods: {
  368. initTime(){
  369. this.dateRangeCreateTime = [getNowDateTime("00:00:00"), getNowDateTime("23:59:59")];
  370. },
  371. /** 查询列表 */
  372. getList() {
  373. // 判断选择的日期是否超过了一个月
  374. let oneMonthTime = 31 * 24 * 3600 * 1000;
  375. if (this.dateRangeCreateTime == null){
  376. this.initTime();
  377. } else {
  378. let minDateTime = new Date(this.dateRangeCreateTime[0]).getTime();
  379. let maxDateTime = new Date(this.dateRangeCreateTime[1]).getTime()
  380. if (maxDateTime - minDateTime > oneMonthTime) {
  381. this.$message.error('时间范围最大为 31 天!');
  382. return false;
  383. }
  384. }
  385. this.loading = true;
  386. // 处理查询参数
  387. let params = {...this.queryParams};
  388. this.addBeginAndEndTime(params, this.dateRangeExpireTime, 'expireTime');
  389. this.addBeginAndEndTime(params, this.dateRangeSuccessTime, 'successTime');
  390. this.addBeginAndEndTime(params, this.dateRangeNotifyTime, 'notifyTime');
  391. this.addDateRange(params, this.dateRangeCreateTime, 'CreateTime');
  392. // 执行查询
  393. getRefundPage(params).then(response => {
  394. this.list = response.data.list;
  395. this.total = response.data.total;
  396. this.loading = false;
  397. });
  398. },
  399. /** 取消按钮 */
  400. cancel() {
  401. this.open = false;
  402. },
  403. /** 搜索按钮操作 */
  404. handleQuery() {
  405. this.queryParams.pageNo = 1;
  406. this.getList();
  407. },
  408. /** 重置按钮操作 */
  409. resetQuery() {
  410. this.dateRangeExpireTime = [];
  411. this.dateRangeSuccessTime = [];
  412. this.dateRangeNotifyTime = [];
  413. this.dateRangeCreateTime = [];
  414. this.resetForm("queryForm");
  415. this.handleQuery();
  416. },
  417. /** 导出按钮操作 */
  418. handleExport() {
  419. // 处理查询参数
  420. let params = {...this.queryParams};
  421. params.pageNo = undefined;
  422. params.pageSize = undefined;
  423. this.addBeginAndEndTime(params, this.dateRangeExpireTime, 'expireTime');
  424. this.addBeginAndEndTime(params, this.dateRangeSuccessTime, 'successTime');
  425. this.addBeginAndEndTime(params, this.dateRangeNotifyTime, 'notifyTime');
  426. this.addDateRange(params, this.dateRangeCreateTime, 'CreateTime');
  427. // 执行导出
  428. this.$confirm('是否确认导出所有退款订单数据项?', "警告", {
  429. confirmButtonText: "确定",
  430. cancelButtonText: "取消",
  431. type: "warning"
  432. }).then(function () {
  433. return exportRefundExcel(params);
  434. }).then(response => {
  435. this.downloadExcel(response, '退款订单.xls');
  436. })
  437. },
  438. /**
  439. * 根据商户名称模糊匹配商户信息
  440. * @param name 商户名称
  441. */
  442. handleGetMerchantListByName(name) {
  443. getMerchantListByName(name).then(response => {
  444. this.merchantList = response.data;
  445. this.merchantLoading = false;
  446. });
  447. },
  448. /**
  449. * 根据商户 ID 查询支付应用信息
  450. */
  451. handleGetAppListByMerchantId() {
  452. this.queryParams.appId = null;
  453. getAppListByMerchantId(this.queryParams.merchantId).then(response => {
  454. this.appList = response.data;
  455. });
  456. },
  457. /**
  458. * 根据退款类别得到样式名称
  459. * @param refundType 退款类别
  460. */
  461. findByRefundTypeGetStyle(refundType) {
  462. switch (refundType) {
  463. case PayOrderRefundStatusEnum.NO.status:
  464. return "success";
  465. case PayOrderRefundStatusEnum.SOME.status:
  466. return "warning";
  467. case PayOrderRefundStatusEnum.ALL.status:
  468. return "danger";
  469. }
  470. },
  471. /**
  472. * 根据退款状态得到样式名称
  473. * @param refundStatus 退款状态
  474. */
  475. findByRefundStatusGetStyle(refundStatus) {
  476. switch (refundStatus) {
  477. case PayRefundStatusEnum.CREATE.status:
  478. return "info";
  479. case PayRefundStatusEnum.SUCCESS.status:
  480. return "success";
  481. case PayRefundStatusEnum.FAILURE.status:
  482. case PayRefundStatusEnum.CLOSE.status:
  483. return "danger";
  484. case PayRefundStatusEnum.PROCESSING_NOTIFY.status:
  485. case PayRefundStatusEnum.PROCESSING_QUERY.status:
  486. case PayRefundStatusEnum.UNKNOWN_RETRY.status:
  487. case PayRefundStatusEnum.UNKNOWN_QUERY.status:
  488. return "warning";
  489. }
  490. },
  491. /**
  492. * 查看订单详情
  493. */
  494. handleQueryDetails(row) {
  495. this.refundDetail = JSON.parse(JSON.stringify(defaultRefundDetail));
  496. getRefund(row.id).then(response => {
  497. this.refundDetail = response.data;
  498. this.open = true;
  499. });
  500. },
  501. }
  502. };
  503. </script>
  504. <style>
  505. .desc-label {
  506. font-weight: bold;
  507. }
  508. .tag-purple {
  509. color: #722ed1;
  510. background: #f9f0ff;
  511. border-color: #d3adf7;
  512. }
  513. .tag-cyan {
  514. color: #13c2c2;
  515. background: #e6fffb;
  516. border-color: #87e8de;
  517. }
  518. .tag-pink {
  519. color: #eb2f96;
  520. background: #fff0f6;
  521. border-color: #ffadd2;
  522. }
  523. .order-font {
  524. font-size: 12px;
  525. padding: 2px 0;
  526. }
  527. </style>