2022-04-20 11:48:27 +08:00
|
|
|
<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">
|
2022-04-20 15:08:58 +08:00
|
|
|
<u-input v-model="value" :type="number" :border="true" />
|
2022-04-20 11:48:27 +08:00
|
|
|
|
|
|
|
|
<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,
|
2022-04-20 15:08:58 +08:00
|
|
|
value: '',
|
2022-04-20 11:48:27 +08:00
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
onShow() {},
|
|
|
|
|
methods: {}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
.AppGreatPowerIntegral {
|
2022-04-20 15:08:58 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.dialog {
|
|
|
|
|
padding: 30px;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
}
|
2022-04-20 11:48:27 +08:00
|
|
|
}
|
|
|
|
|
</style>
|