1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <template>
- <view class="container">
- <input placeholder="请输入标题" class="tui-modal-input" v-model="title" />
- <textarea placeholder="请输入内容" class="tui-modal-input" v-model="textarea" />
- <view style="padding: 0 20rpx;margin-top: 20rpx;">
- <tui-button>提交</tui-button>
- </view>
- </view>
- </template>
- <script>
- import tuiButton from "@/components/thorui/tui-button/tui-button"
- export default {
- components: {
- tuiButton
- },
- data() {
- return {
- title: '',
- textarea:''
- };
- },
- methods: {
- }
- };
- </script>
- <style>
- .container {
- padding-bottom: env(safe-area-inset-bottom);
- width: 100%;
- }
-
- .tui-modal-input {
- width: 80%;
- border-bottom: 1rpx solid #e6e6e6;
- margin: 30rpx auto 50rpx;
- padding-bottom: 20rpx;
- font-size: 32rpx;
- }
- </style>
|