Browse Source

反馈表单

master
parent
commit
388229b588
  1. 3
      pages.json
  2. 29
      sub/task/enforce.vue
  3. 1462
      uni_modules/uni-easyinput/components/uni-easyinput/uni-easyinput.vue

3
pages.json

@ -133,7 +133,8 @@
"van-action-sheet": "/wxcomponents/vant/action-sheet/index" "van-action-sheet": "/wxcomponents/vant/action-sheet/index"
}, },
"componentPlaceholder": { "componentPlaceholder": {
"u-modal": "view" "u-modal": "view",
"uni-easyinput": "view"
} }
} }
} }

29
sub/task/enforce.vue

@ -1,6 +1,6 @@
<template> <template>
<view class="view-container"> <view class="view-container">
<view class="box"> <view class="box wd-flex wd-flex-col" style="gap: 12px">
<view <view
class="wd-flex" class="wd-flex"
style="justify-content: space-between; align-items: center" style="justify-content: space-between; align-items: center"
@ -14,8 +14,30 @@
<uni-easyinput <uni-easyinput
type="textarea" type="textarea"
v-model="form.advice" v-model="form.advice"
placeholder="请输入内容" placeholder="请输入..."
:maxlength="500"
:autoHeight="true"
:styles="{
backgroundColor: '#F9F9F9',
borderColor: '#F1F1F4'
}"
></uni-easyinput> ></uni-easyinput>
<view
class="wd-flex"
style="justify-content: space-between; align-items: center"
>
<view style="font-weight: bold">
<text style="color: #f8285a; margin-right: 4px">*</text>
上传证明
</view>
</view>
<u-upload
:fileList="fileList1"
@afterRead="afterRead"
@delete="deletePic"
multiple
:maxCount="10"
></u-upload>
</view> </view>
<cs-bottom-wrapper> <cs-bottom-wrapper>
@ -81,4 +103,7 @@ export default {
} }
} }
} }
::v-deep .uni-easyinput__content-textarea {
min-height: 400rpx;
}
</style> </style>

1462
uni_modules/uni-easyinput/components/uni-easyinput/uni-easyinput.vue

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save