| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <template>
- <div class="wx">
- <p class="title">绑定微信</p>
- <div class="no-bind">
- <div class="left">
- <img src="@/assets/vx.png" alt="">
- <span>未绑定</span>
- </div>
- <div class="right">
- <slot name="wxBind"></slot>
- </div>
- </div>
- </div>
- </template>
- <script>
- export default {
- name: '',
- data() {
- return {
- };
- },
- computed:{
- },
- watch:{
- },
- methods: {},
- };
- </script>
- <style scoped>
- .wx {
- }
- .wx .title {
- font-size: 16px;
- font-weight: bold;
- color: #333333;
- margin-bottom: 30px;
- }
- .wx .no-bind {
- display: flex;
- }
- .wx .no-bind img {
- vertical-align: middle;
- margin-right: 10px;
- }
- .wx .no-bind span {
- font-size: 14px;
- font-weight: 400;
- color: #666666;
- }
- </style>
|