dingdan.vue 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. <template>
  2. <view class="page">
  3. <view class="top">
  4. 订单疑问
  5. </view>
  6. <textarea :maxlength="300" style="width: 100%;" name="" id="" cols="30" rows="10" placeholder="请描述您的问题"
  7. v-model="desc"></textarea>
  8. <view class="num" style="text-align: right;">
  9. <text>{{ desc.length }}/300</text>
  10. </view>
  11. <view class="phone">
  12. 联系电话
  13. <text style="color: red;">*</text>
  14. <input style="margin-top: 32rpx;" type="text" placeholder="请输入您的联系电话" v-model="phone"></input>
  15. </view>
  16. <view class="bottom1">
  17. <view class="bottom" @click="next">
  18. 提交
  19. </view>
  20. <view class="safe-area-inset-bottom"></view>
  21. </view>
  22. </view>
  23. </template>
  24. <script>
  25. import {commission_feedback} from "@/units/inquire.js"
  26. export default {
  27. data() {
  28. return {
  29. desc:"",
  30. phone:"",
  31. id:""
  32. }
  33. },
  34. // watch() {
  35. // descInput(e){
  36. // this.remnant = e.detail.value.length;
  37. // },
  38. // },
  39. onLoad(options) {
  40. this.id = options.id
  41. },
  42. methods: {
  43. next() {
  44. if(!this.desc){
  45. this.$u.toast("请输入疑问内容")
  46. return
  47. }
  48. if(!this.phone){
  49. this.$u.toast("请输入联系方式")
  50. return
  51. }
  52. commission_feedback({
  53. order_commission_id:this.id,
  54. content:this.desc,
  55. mobile:this.phone
  56. }).then(res=>{
  57. console.log(res);
  58. if(res.code==1){
  59. this.$u.toast("提交成功,请耐心等待反馈")
  60. uni.navigateBack()
  61. }
  62. })
  63. }
  64. }
  65. }
  66. </script>
  67. <style lang="scss" scoped>
  68. .page {
  69. padding: 32rpx 32rpx 0;
  70. }
  71. .bottom1 {
  72. background: #FFFFFF;
  73. height: 166rpx;
  74. position: fixed;
  75. bottom: 0;
  76. left: 0;
  77. width: 750rpx;
  78. padding: 8rpx 32rpx 0;
  79. box-sizing: border-box;
  80. }
  81. .bottom {
  82. background: #0C66C2;
  83. border-radius: 16rpx;
  84. font-size: 32rpx;
  85. font-weight: 500;
  86. color: #FFFFFF;
  87. height: 84rpx;
  88. line-height: 84rpx;
  89. text-align: center;
  90. box-sizing: border-box;
  91. }
  92. .phone {
  93. height: 168rpx;
  94. border-top: 2rpx solid #F0F0F0;
  95. border-bottom: 2rpx solid #F0F0F0;
  96. padding: 26rpx 0;
  97. box-sizing: border-box;
  98. }
  99. .top {
  100. height: 44rpx;
  101. font-size: 32rpx;
  102. font-family: PingFangSC, PingFang SC;
  103. font-weight: 500;
  104. color: #222222;
  105. }
  106. </style>