Commit 8d2877bb by lichengming

修改了模态框按钮间距

parent 86b5e66d
<template> <template>
<div class="btn-width"> <div class="btn-width">
<Button <Button
v-for="(item,index) in footer" v-for="(item,index) in footer"
v-show="item.id === undefined || item.id === '' ? true : $showBtn(item.id)" v-show="item.id === undefined || item.id === '' ? true : $showBtn(item.id)"
:key="item.name" :key="item.name"
:type="item.type?item.type:'default'" :type="item.type?item.type:'default'"
:loading="loading === true && currentIndex === index" :loading="loading === true && currentIndex === index"
@click="_footerClick(item.name,index)" @click="_footerClick(item.name,index)"
style="margin-left: 15px;"
>{{item.name}} >{{item.name}}
</Button> </Button>
</div> </div>
......
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