12345678910111213141516171819202122232425262728293031323334 |
- <template>
- <u-input style="margin:77rpx 35rpx 0rpx;padding:0;border-radius:0"
- :style="{'margin-bottom': marginBottom + 'rpx'}"
- height="418.75"
- type="textarea"
- border
- border-color="#C2C2C2"
- :custom-style="{'background-color':'#fff'}"
- placeholder="请输入......."
- placeholder-style="margin-left:265rpx;margin-top:194rpx"
- :isExistIcon="false"
- :clearable="false"
- v-model="value" />
- </template>
-
- <script>
- export default {
- data() {
- return {
- value: ''
- }
- },
- props: {
- // 下边距
- marginBottom: {
- type: String,
- default: '398'
- }
- }
- }
- </script>
- <style>
- </style>
|