| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <template>
- <view>
- <customNav :shownav="true" :title="$t('user.fankuilb')" titledetl=""></customNav>
- <view class="contentColumnC" style="margin-top: 30rpx;">
- <view v-for="(item,index) in Fbacklist">
- <view class="contentColumnC" style="width: 750rpx;margin-top: 30rpx;">
- <text style="width: 90%;">{{$t('user.shehuizzmc')}}</text>
- <text class="textfbdt" style="width: 90%;">{{item.nameThe}}</text>
- <text style="width: 90%;margin-top: 16rpx;">{{$t('user.maijiamc')}}</text>
- <text class="textfbdt" style="width: 90%;">{{item.sellersName}}</text>
- <text style="width: 90%;margin-top: 16rpx;">{{$t('user.fankuishijian')}}</text>
- <text class="textfbdt" style="width: 90%;">{{item.feedbackTime}}</text>
- <text style="width: 90%;margin-top: 16rpx;">{{$t('user.fankuineir')}}</text>
- <text class="textfbdt" style="width: 90%;">{{item.feedback}}</text>
- </view>
- <view style="width: 750rpx;margin-top: 30rpx;height: 10rpx;background-color: lavender;"></view>
- </view>
-
- <view v-if="Fbacklist.length==0" class="contentColumnC">
- <text style="width: 600rpx;margin-top: 100rpx;">
- {{$t('user.wushehuizjfk')}}
- </text>
- </view>
- </view>
- <view style="height: 60rpx;"></view>
- </view>
- </template>
- <script>
- import api from "@/pages/api/api.js"
- export default {
- data() {
- return {
- Fbacklist:[]
- }
- },
- onShow() {
- this.getFeedbacklist();
- },
- methods: {
- getFeedbacklist(){
- api('Feedbacklist',{
- },res=>{
- console.log(res.data)
- if(res.data.code==200){
- this.Fbacklist=res.data.rows
- }
-
- },failc=>{
- //console.log('getadvertis----',failc)
- })
- }
- }
- }
- </script>
- <style>
- .textfbdt{
- margin-top: 10rpx;
- font-size: 28rpx;
- color: dimgray;
- }
- </style>
|