Commit 9b41ee73 by liang ce

导航样式

parent 6361e18d
......@@ -5,7 +5,7 @@
<img src="../../assets/logo.png" />
</div>
<a-menu
theme="dark"
theme="light"
mode="horizontal"
:defaultSelectedKeys="['accountManagement']"
:style="{ lineHeight: '64px' }"
......
<template>
<div class="PaymentManagementHome">
<a-layout style="padding: 24px 0; background: #fff; min-height: calc(100vh - 218px)">
<a-layout style="padding: 24px 0; background: #fff; min-height: calc(100vh - 186px)">
<a-layout-sider width="200" style="background: #fff">
<a-menu
mode="inline"
......
......@@ -33,7 +33,7 @@
<span slot="agent" slot-scope="agent, record">
{{ agent === '' && record.payTypeCode === 'EXTERNAL_ALI_RECHAGE' ? '支付宝自充' : agent }}
</span>
<span slot="orderNo">单号</span>
<!-- <span slot="orderNo">单号</span> -->
<span slot="orderStatus" slot-scope="orderStatus">
<a-badge v-if="orderStatus === MINGPAY_CHARGE_ORDERSTATUS.WAITING_PERMIT" status="processing" text="审批中" />
<a-badge v-else-if="orderStatus === MINGPAY_CHARGE_ORDERSTATUS.SUCCESS" status="success" text="已完成" />
......@@ -72,10 +72,12 @@ export default {
title: '经办人',
dataIndex: 'agent',
scopedSlots: { customRender: 'agent' }
}, {
title: '单号',
dataIndex: 'orderNo'
}, {
},
// {
// title: '单号',
// dataIndex: 'orderNo'
// },
{
title: '状态',
dataIndex: 'orderStatus',
scopedSlots: { customRender: 'orderStatus' }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment