| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <template>
- <view>
- <u-popup v-model="show" mode="center" width="70%" border-radius="10" :mask-close-able="false">
- <view class="pay-popup">
- <view style="font-size: 34rpx; padding: 50rpx 0; text-align: center;">请确认微信支付是否已完成</view>
- <button>已完成支付</button>
- <button>支付遇到问题,重新支付</button>
- </view>
- </u-popup>
- </view>
- </template>
- <script>
- export default {
- name:"voteSuccess",
- data() {
- return {
- show: false,
- };
- },
- created() {},
- methods: {}
- }
- </script>
- <style lang="scss" scoped>
- button {
- border-top: 1rpx solid #ebebeb;
- width: 100%;
- font-size: 32rpx;
- background-color: #FFFFFF;
- color: #66656a;
- &:nth-child(2){
- color: var(--bgColor);
- }
- &::after {
- border: none;
- }
- }
- </style>
|