You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
732 B
32 lines
732 B
7 months ago
|
<template>
|
||
|
<el-dialog class="payDialog" title="" v-if="dialogVisible" :visible.sync="dialogVisible" width="width">
|
||
|
<div style="text-align: center;">
|
||
|
<img src="" alt="">
|
||
|
<div>请使用支付宝或微信扫描付款</div>
|
||
|
</div>
|
||
|
<!-- <div slot="footer">
|
||
|
<el-button @click="dialogVisible = false">取 消</el-button>
|
||
|
<el-button type="primary" @click="dialogVisible = false">确 定</el-button>
|
||
|
</div> -->
|
||
|
</el-dialog>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
dialogVisible: false
|
||
|
}
|
||
|
},
|
||
|
methods: {
|
||
|
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style>
|
||
|
/* .payDialog {
|
||
|
width: 892px;
|
||
|
margin: 0 auto;
|
||
|
} */
|
||
|
</style>
|