12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <template>
- <view class="unSubscribe">
- <view class="content">
- <view class="title">
- 如需取消移动套餐代扣服务,请通过短信发送0000到
- 10086
- </view>
-
- <button class="close" @click="close">关闭</button>
- </view>
- </view>
- </template>
- <script>
- export default {
- methods: {
- close() {
- uni.navigateBack()
- }
- },
- }
- </script>
- <style lang="scss" scoped>
- .unSubscribe{
- padding: 20rpx 24rpx;
- min-height: 100vh;
- background: #F9F9F9;
- .content{
- background: #FFFFFF;
- border-radius: 12rpx 12rpx 12rpx 12rpx;
- padding: 36rpx 24rpx;
- .title{
- font-size: 28rpx;
- color: #181818;
- line-height: 40rpx;
- }
- .close{
- width: 340rpx;
- height: 80rpx;
- line-height: 80rpx;
- text-align: center;
- background: #DDDDDD;
- border-radius: 46rpx 46rpx 46rpx 46rpx;
- font-weight: 600;
- font-size: 28rpx;
- color: #FFFFFF;
- margin-top: 80rpx;
- }
- }
- }
- </style>
|