zixun.vue 807 B

12345678910111213141516171819202122232425262728293031323334
  1. <template>
  2. <view>
  3. <textarea placeholder="请详细描述您需要咨询的内容(具体情况、时间长久、用药情况等)。" maxlength="500" name="" id="" rows="20" style="margin: 0 auto;width: 690rpx;height: calc( 100vh - 200rpx );" v-model="content"></textarea>
  4. <view class="" style="width: 650rpx;
  5. height: 88rpx;
  6. background: linear-gradient(270deg, #A890FE 0%, #FFAEAE 100%);
  7. border-radius: 46rpx;line-height: 80rpx;text-align: center;font-size: 36rpx;color: #fff;margin: 20rpx auto;" @click="submit">
  8. 立即咨询
  9. </view>
  10. </view>
  11. </template>
  12. <script>
  13. export default {
  14. data() {
  15. return {
  16. content:''
  17. }
  18. },
  19. methods: {
  20. submit(){
  21. if(!this.content){
  22. this.$u.toast('请输入要咨询的内容')
  23. return
  24. }
  25. }
  26. }
  27. }
  28. </script>
  29. <style>
  30. </style>