Commit 9b41ee73 by liang ce

导航样式

parent 6361e18d
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
<img src="../../assets/logo.png" /> <img src="../../assets/logo.png" />
</div> </div>
<a-menu <a-menu
theme="dark" theme="light"
mode="horizontal" mode="horizontal"
:defaultSelectedKeys="['accountManagement']" :defaultSelectedKeys="['accountManagement']"
:style="{ lineHeight: '64px' }" :style="{ lineHeight: '64px' }"
......
<template> <template>
<div class="PaymentManagementHome"> <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-layout-sider width="200" style="background: #fff">
<a-menu <a-menu
mode="inline" mode="inline"
......
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
<span slot="agent" slot-scope="agent, record"> <span slot="agent" slot-scope="agent, record">
{{ agent === '' && record.payTypeCode === 'EXTERNAL_ALI_RECHAGE' ? '支付宝自充' : agent }} {{ agent === '' && record.payTypeCode === 'EXTERNAL_ALI_RECHAGE' ? '支付宝自充' : agent }}
</span> </span>
<span slot="orderNo">单号</span> <!-- <span slot="orderNo">单号</span> -->
<span slot="orderStatus" slot-scope="orderStatus"> <span slot="orderStatus" slot-scope="orderStatus">
<a-badge v-if="orderStatus === MINGPAY_CHARGE_ORDERSTATUS.WAITING_PERMIT" status="processing" text="审批中" /> <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="已完成" /> <a-badge v-else-if="orderStatus === MINGPAY_CHARGE_ORDERSTATUS.SUCCESS" status="success" text="已完成" />
...@@ -72,10 +72,12 @@ export default { ...@@ -72,10 +72,12 @@ export default {
title: '经办人', title: '经办人',
dataIndex: 'agent', dataIndex: 'agent',
scopedSlots: { customRender: 'agent' } scopedSlots: { customRender: 'agent' }
}, { },
title: '单号', // {
dataIndex: 'orderNo' // title: '单号',
}, { // dataIndex: 'orderNo'
// },
{
title: '状态', title: '状态',
dataIndex: 'orderStatus', dataIndex: 'orderStatus',
scopedSlots: { customRender: '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