123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- <template>
- <uni-popup ref="popupRef" :isMaskClick="false">
- <!-- @change="popupChange" -->
- <view class="hint-box">
- <view class="hint-title">赠金交易</view>
- <view class="hint-content">
- <view class="">
- 赠金交易是BiKing交易所的赠品交易系统,交易盈利部分可实时划转至合约钱包。
- </view>
- <view class="">
- 赠金获取方式:
- </view>
- <view class="content-list">
- <text>1. 完成任务中心的各项任务</text>
- <text>2. 参与平台活动</text>
- <text>3. 不定期新老用户赠金空投</text>
- </view>
- <view class="">
- 更多内容请点击<text class="explain">《赠金交易》</text>
- </view>
- <view class="hite-box">
- <text class="box">
- <text class="iconfont"></text>
- </text>
- <text>不在提示</text>
- </view>
- <view class="confirm-btn" @click.stop="confirmBtn">
- 确定
- </view>
- </view>
- </view>
- </uni-popup>
- </template>
- <script>
- export default {
- data() {
- return {
- };
- },
- watch: {
- },
- mounted() {
- this.open();
- },
- methods: {
- open() {
- this.$nextTick(() => {
- this.$refs.popupRef.open()
- })
- },
- confirmBtn(){
- this.$refs.popupRef.close()
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .hint-box {
- width: 650rpx;
- background-color: #fff;
- .hint-title {
- width: 100%;
- height: 80rpx;
- line-height: 80rpx;
- text-align: center;
- border-bottom: 1rpx solid $border-color;
- }
- .hint-content {
- width: 100%;
- padding: 80rpx 60rpx;
- font-size: 28rpx;
- .content-list {
- text {
- display: block;
- }
- }
- .explain {
- color: $Theme-Color;
- }
- // <view class="hite-box">
- // <text class="box"></text>
- // <text>不在提示</text>
- // </view>
- .hite-box {
- display: flex;
- align-items: center;
- padding-top: 20rpx;
- .box {
- border: 1rpx solid #ccc;
- width: 30rpx;
- height: 30rpx;
- margin-right: 10rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- .iconfont{
- font-size: 32rpx;
- color: $Theme-Color;
- }
- }
- }
- .confirm-btn{
- width: 100%;
- height: 80rpx;
- text-align: center;
- line-height: 80rpx;
- background-color: $Theme-Color;
- margin-top: 50rpx;
- color: #fff;
- font-size: 28rpx;
- }
- }
- }
- </style>
|