更新: 升级开发环境至 vue-cli3; 更新依赖库版本;解决 IE11 下不能正确显示问题;
This commit is contained in:
@@ -4,12 +4,14 @@
|
||||
<a-alert type="info" :show-icon="true">
|
||||
<div slot="message">
|
||||
已选择 <a style="font-weight: 600">{{selectedRows.length}}</a> 项
|
||||
<template v-for="(item, index) in needTotalList" v-if="item.needTotal">
|
||||
{{item.title}}总计
|
||||
<a :key="index" style="font-weight: 600">
|
||||
{{item.customRender ? item.customRender(item.total) : item.total}}
|
||||
</a>
|
||||
</template>
|
||||
<div v-for="(item, index) in needTotalList" :key="index">
|
||||
<div v-if="item.needTotal">
|
||||
{{item.title}}总计
|
||||
<a :key="index" style="font-weight: 600">
|
||||
{{item.customRender ? item.customRender(item.total) : item.total}}
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<a style="margin-left: 24px">清空</a>
|
||||
</div>
|
||||
</a-alert>
|
||||
|
||||
Reference in New Issue
Block a user