1
0
mirror of https://github.com/PanJiaChen/vue-element-admin.git synced 2025-04-05 11:18:42 +08:00

Merge aab3057be33a8a09ce0b5ae910e9abb2d959a3a1 into 6858a9ad67483025f6a9432a926beb9327037be3

This commit is contained in:
Thaycacac 2024-11-28 00:29:01 +00:00 committed by GitHub
commit 398deb8431
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3,7 +3,7 @@
<el-button :style="{background:color,borderColor:color}" icon="el-icon-upload" size="mini" type="primary" @click=" dialogVisible=true">
upload
</el-button>
<el-dialog :visible.sync="dialogVisible">
<el-dialog title="Upload" :visible.sync="dialogVisible">
<el-upload
:multiple="true"
:file-list="fileList"
@ -19,12 +19,14 @@
Click upload
</el-button>
</el-upload>
<el-button @click="dialogVisible = false">
Cancel
</el-button>
<el-button type="primary" @click="handleSubmit">
Confirm
</el-button>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="handleSubmit">
Confirm
</el-button>
<el-button @click="dialogVisible = false">
Cancel
</el-button>
</div>
</el-dialog>
</div>
</template>