|
123456789101112131415161718192021222324 |
- <template>
- <view class="content">
- <view class="value">
- 尊敬的用户: 一旦注销九州ETC会员账号,您将无法通过九州ETC小程序、九州ETC公众号等会员登录渠道查看及找回账户
- </view>
- <view class="subBtn">
- <submit-button title="注销账户" form-type="submit" @submit="formSubmit">
- </submit-button>
- </view>
- </view>
- </template>
-
- <script>
- </script>
-
- <style lang="scss" scoped>
- .content {
- padding: 100rpx 50rpx 0rpx 50rpx;
- font-size: 30rpx;
- .subBtn{
- margin-top: 100rpx;
- }
- }
- </style>
|