|
|
|
@ -104,6 +104,11 @@ |
|
|
|
|
<u-read-more showHeight="160" textIndent="0" fontSize="26rpx" color="#9E9E9E" :toggle="true" |
|
|
|
|
close-text="展开"> |
|
|
|
|
<rich-text :nodes="item.content"></rich-text> |
|
|
|
|
<view v-if="item.file_path"> |
|
|
|
|
<u-upload width="180" height="180" max-count="1" :file-list="item.file_paths" :deletable="false"> |
|
|
|
|
</u-upload> |
|
|
|
|
</view> |
|
|
|
|
|
|
|
|
|
</u-read-more> |
|
|
|
|
<view class="timefb" v-if="OrderType == 1"> |
|
|
|
|
<text>反馈人:</text> {{ item.user_name }} |
|
|
|
@ -342,7 +347,19 @@ export default { |
|
|
|
|
.then(res => { |
|
|
|
|
if (res.status == 200) { |
|
|
|
|
that.total = res.data.list.total |
|
|
|
|
that.feedBackList = that.feedBackList.concat(res.data.list.data) |
|
|
|
|
let end = res.data.list.data |
|
|
|
|
end.map(itme=>{ |
|
|
|
|
if(itme.file_path){ |
|
|
|
|
itme.file_paths = [] |
|
|
|
|
let img_arr = itme.file_path.split(',') |
|
|
|
|
img_arr.map(src=>{ |
|
|
|
|
itme.file_paths.push({ |
|
|
|
|
url:src |
|
|
|
|
}) |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
that.feedBackList = that.feedBackList.concat(end) |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
.catch(reject) |
|
|
|
|