12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <template>
- <view :class="['tm-button-container', true ? 'pramary' : '']">
- <text class="btn-text">确定</text>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- }
- },
- methods: {
-
- }
- }
- </script>
- <style lang="less">
- .tm-button-container {
- display: flex;
- justify-content: center;
- align-items: center;
- width: 312.5rpx;
- height: 62.5rpx;
- background: #3377FF;
- border-radius: 37.5rpx;
- border: 1.25rpx solid #3377FF;
-
- .btn-text {
- font-size: 22.5rpx;
- letter-spacing: 2.5rpx;
- color: #fff;
- }
- }
-
- .tm-button-container.pramary {
- background-color: #FFFFFF;
-
- .btn-text {
- color: #3377FF;
- }
- }
- </style>
|