1234567891011121314151617181920212223242526272829303132 |
- <template>
- <modal v-model="vValue">
- <view class="screen_all center" @click="closeModal">
- <view class="fill-code center" @click.stop>
- <view class="fill-code-title">填写邀请码</view>
- <view class="fill-code-input-container">
- <input v-model="content" type="text" class="screen_all fill-code-input" maxlength="8" placeholder="请输入邀请码" />
- </view>
- <view @click="submit" class="fill-code-button center">确定</view>
- </view>
- </view>
- </modal>
- </template>
- <script>
- import modal from "@/components/modal/main";
- import mixins from './mixins';
- import props from "./props";
- export default {
- name: "fill-code",
- mixins,
- props,
- components:{
- modal
- }
- }
- </script>
- <style lang="scss" src="./style.scss">
- </style>
|