123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <template>
- <view>
- <iframe src="https://www.baidu.com/" class="iframe-box" frameborder="0" allowfullscreen>
- </iframe>
- <gap />
- <view class="operate">
- <view class="operate-item">
- 买入/做多
- </view>
- <view class="operate-item">
- 卖出/做空
- </view>
- </view>
-
- <openPopup ref="openPopupRef" />
- <popupHint />
- </view>
- </template>
- <script>
- import openPopup from "./open.vue"
- import popupHint from "../modules/popup-hint.vue"
- export default {
- name: 'login',
- components:{openPopup , popupHint},
- data() {
- return {
- };
- }
- }
- </script>
- <style lang="scss" scoped>
- .iframe-box {
- width: 100%;
- min-height: 800rpx;
- }
- .operate {
- padding: 30rpx $pages-padding 0;
- width: 100%;
- display: flex;
- justify-content: space-between;
- align-items: center;
- .operate-item{
- width: 338rpx;
- height: 80rpx;
- text-align: center;
- line-height: 80rpx;
- background: #05c175;
- border-radius: 8rpx;
- font-size: 28rpx;
- font-family: PingFang SC, PingFang SC-Bold;
- font-weight: 700;
- color: #ffffff;
- & + .operate-item{
- background-color: #EF3E58;
- }
- }
- }
- </style>
|