Shehuizuzhifk.vue 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <template>
  2. <view>
  3. <customNav :shownav="true" :title="$t('user.fankuilb')" titledetl=""></customNav>
  4. <view class="contentColumnC" style="margin-top: 30rpx;">
  5. <view v-for="(item,index) in Fbacklist">
  6. <view class="contentColumnC" style="width: 750rpx;margin-top: 30rpx;">
  7. <text style="width: 90%;">{{$t('user.shehuizzmc')}}</text>
  8. <text class="textfbdt" style="width: 90%;">{{item.nameThe}}</text>
  9. <text style="width: 90%;margin-top: 16rpx;">{{$t('user.maijiamc')}}</text>
  10. <text class="textfbdt" style="width: 90%;">{{item.sellersName}}</text>
  11. <text style="width: 90%;margin-top: 16rpx;">{{$t('user.fankuishijian')}}</text>
  12. <text class="textfbdt" style="width: 90%;">{{item.feedbackTime}}</text>
  13. <text style="width: 90%;margin-top: 16rpx;">{{$t('user.fankuineir')}}</text>
  14. <text class="textfbdt" style="width: 90%;">{{item.feedback}}</text>
  15. </view>
  16. <view style="width: 750rpx;margin-top: 30rpx;height: 10rpx;background-color: lavender;"></view>
  17. </view>
  18. <view v-if="Fbacklist.length==0" class="contentColumnC">
  19. <text style="width: 600rpx;margin-top: 100rpx;">
  20. {{$t('user.wushehuizjfk')}}
  21. </text>
  22. </view>
  23. </view>
  24. <view style="height: 60rpx;"></view>
  25. </view>
  26. </template>
  27. <script>
  28. import api from "@/pages/api/api.js"
  29. export default {
  30. data() {
  31. return {
  32. Fbacklist:[]
  33. }
  34. },
  35. onShow() {
  36. this.getFeedbacklist();
  37. },
  38. methods: {
  39. getFeedbacklist(){
  40. api('Feedbacklist',{
  41. },res=>{
  42. console.log(res.data)
  43. if(res.data.code==200){
  44. this.Fbacklist=res.data.rows
  45. }
  46. },failc=>{
  47. //console.log('getadvertis----',failc)
  48. })
  49. }
  50. }
  51. }
  52. </script>
  53. <style>
  54. .textfbdt{
  55. margin-top: 10rpx;
  56. font-size: 28rpx;
  57. color: dimgray;
  58. }
  59. </style>