Merge remote-tracking branch 'origin/dev' into dev
This commit is contained in:
commit
bb6c8c539b
|
|
@ -35,7 +35,7 @@
|
|||
:tableColumns="tableColumns"
|
||||
:searchData="searchData"
|
||||
:scrollX="1200"
|
||||
rowKey="mchName"
|
||||
rowKey="appId"
|
||||
>
|
||||
<template slot="appIdSlot" slot-scope="{record}">
|
||||
<b>{{ record.appId }}</b>
|
||||
|
|
|
|||
|
|
@ -88,7 +88,8 @@
|
|||
<template slot="opSlot" slot-scope="{record}"> <!-- 操作列插槽 -->
|
||||
<JeepayTableColumns>
|
||||
<a-button type="link" v-if="$access('ENT_PAY_ORDER_VIEW')" @click="detailFunc(record.payOrderId)">详情</a-button>
|
||||
<a-button type="link" v-if="$access('ENT_PAY_ORDER_REFUND')" style="color: red" v-show="(record.state === 2)" @click="openFunc(record, record.payOrderId)">退款</a-button>
|
||||
|
||||
<a-button type="link" v-if="$access('ENT_PAY_ORDER_REFUND')" style="color: red" v-show="(record.state === 2 && record.refundState !== 2)" @click="openFunc(record, record.payOrderId)">退款</a-button>
|
||||
</JeepayTableColumns>
|
||||
</template>
|
||||
</JeepayTable>
|
||||
|
|
|
|||
|
|
@ -71,6 +71,7 @@ const vueConfig = {
|
|||
.use('file-loader')
|
||||
.loader('file-loader')
|
||||
.options({
|
||||
limit: 100000,
|
||||
name: 'assets/[name].[hash:8].[ext]'
|
||||
})
|
||||
|
||||
|
|
|
|||
|
|
@ -74,6 +74,7 @@ const vueConfig = {
|
|||
.use('file-loader')
|
||||
.loader('file-loader')
|
||||
.options({
|
||||
limit: 100000,
|
||||
name: 'assets/[name].[hash:8].[ext]'
|
||||
})
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue