Files
dvcp_v2_wechat_app/project/sanjianxi/AppGreatPowerIntegral/AppGreatPowerIntegral.vue
shijingjing 5f23c94af8 29182
2022-04-20 11:48:27 +08:00

37 lines
752 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<div class="AppGreatPowerIntegral">
<u-button type="primary" class="" @click="show = true" >按钮</u-button>
<!-- 弹框 -->
<u-popup v-model="show" mode="center" :closeable="false">
<div class="dialog">
<view>出淤泥而不染濯清涟而不妖</view>
<div style="display: flex;">
<u-button type="primary" >取消</u-button>
<u-button type="primary" >确认</u-button>
</div>
</div>
</u-popup>
</div>
</template>
<script>
export default {
name: 'AppGreatPowerIntegral',
appName: '强国积分',
data() {
return {
show: false,
}
},
onShow() {},
methods: {}
}
</script>
<style lang="scss" scoped>
.AppGreatPowerIntegral {
}
</style>