|
@@ -69,7 +69,7 @@
|
|
|
</a-alert>
|
|
|
<div v-if="$hasPermissions('B_financialCollectionPl')" style="margin-bottom: 15px">
|
|
|
<a-button type="primary" id="financialCollectionList-export" :loading="loading" @click="handleCollection">批量收款</a-button>
|
|
|
- <span style="margin-left: 8px">
|
|
|
+ <span style="margin-left: 8px" v-if="$hasPermissions('B_financialCollectionPl')">
|
|
|
<template v-if="hasSelected">
|
|
|
{{ `已选 ${selectedRowKeys.length} 项` }}
|
|
|
</template>
|
|
@@ -80,7 +80,7 @@
|
|
|
class="sTable"
|
|
|
ref="table"
|
|
|
size="default"
|
|
|
- :row-selection="rowSelection"
|
|
|
+ :row-selection="$hasPermissions('B_financialCollectionPl') ? rowSelection : null"
|
|
|
:rowKey="record => record.id"
|
|
|
:columns="columns"
|
|
|
:data="loadData"
|