|
|
|
@ -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 }} |
|
|
|
@ -165,7 +170,7 @@ import Config from '@/core/config' |
|
|
|
|
import * as feedback from '@/api/feedback' |
|
|
|
|
export default { |
|
|
|
|
data() { |
|
|
|
|
return { |
|
|
|
|
return { |
|
|
|
|
action: '', |
|
|
|
|
header: '', |
|
|
|
|
OrderType: 0, |
|
|
|
@ -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) |
|
|
|
@ -566,7 +583,7 @@ page { |
|
|
|
|
// width: calc(100% - 100rpx); |
|
|
|
|
.fbFlag { |
|
|
|
|
background: #FFFFFF; |
|
|
|
|
border-radius: 3px; |
|
|
|
|
border-radius: 3px; |
|
|
|
|
padding: 5rpx; |
|
|
|
|
border: 1px solid #FF4D4D; |
|
|
|
|
font-size: 26rpx; |
|
|
|
@ -594,7 +611,7 @@ page { |
|
|
|
|
overflow: hidden; |
|
|
|
|
text-overflow: ellipsis; |
|
|
|
|
color: #000; |
|
|
|
|
font-weight: bold; |
|
|
|
|
font-weight: bold; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|