You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
152 lines
3.0 KiB
152 lines
3.0 KiB
<template>
|
|
<view class="goods-box">
|
|
<view class="box" v-for="(item,index) in list" :key='item.id'>
|
|
<view class="item">
|
|
<view class="title">
|
|
<view class="left">
|
|
<view class="dot" :class="index===0?'active':''"></view>
|
|
</view>
|
|
<view class="flex justify-between align-center" style="flex: 1;">
|
|
<view>{{item.title}} </view>
|
|
<view class="time-txt">{{item.ctime}} </view>
|
|
</view>
|
|
</view>
|
|
<view class="line-box">
|
|
<view class="left">
|
|
<view class="line" v-if="index!==list.length-1"></view>
|
|
</view>
|
|
<view class="" style="padding: 20rpx 0rpx 30rpx 0;flex: 1;">
|
|
<view class="txt">
|
|
<view style="padding: 10rpx 0;" v-for="(txt,i) in item.content" :key='i'>
|
|
<rich-text :nodes="txt"></rich-text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
list: [],
|
|
}
|
|
},
|
|
methods: {
|
|
getData(asId) {
|
|
this.$u.post('/api/v1/order/after_sales/log', {
|
|
asGoodsId: asId
|
|
}).then(res => {
|
|
console.log(res.data);
|
|
if (res.data.code == "FAIL") {
|
|
this.$u.toast(res.data.msg);
|
|
return
|
|
}
|
|
this.list = res.data.data
|
|
this.list.map(item => {
|
|
item.content = this.repE(item.content)
|
|
})
|
|
});
|
|
},
|
|
// 替换标签
|
|
repE(str) {
|
|
let strArr = str.replace(/<black>(.*?)<\/black>/g, '<span class="font-black">$1</span>')
|
|
.replace(/<gray>(.*?)<\/gray>/g, '<div class="gray-box">$1</div>')
|
|
.replace(/<address>(.*?)<\/address>/g,'<span class="font-black">$1</span>')
|
|
return strArr.split("|")
|
|
}
|
|
},
|
|
onLoad(options) {
|
|
console.log(options)
|
|
if (options.asId) {
|
|
let asid = parseInt(options.asId)
|
|
this.getData(asid)
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.gray-box {
|
|
background: #F8F8F8;
|
|
border-radius: 8rpx;
|
|
padding: 10rpx 0;
|
|
font-size: 28rpx;
|
|
font-family: PingFangSC-Regular, PingFang SC;
|
|
font-weight: 400;
|
|
color: #999999;
|
|
}
|
|
|
|
.font-black {
|
|
font-weight: bold;
|
|
font-size: 28rpx;
|
|
color: #333333;
|
|
}
|
|
|
|
.goods-box {
|
|
background: #FFFFFF;
|
|
min-height: 100vh;
|
|
|
|
padding: 30rpx;
|
|
height: auto;
|
|
}
|
|
|
|
.box {
|
|
.left {
|
|
width: 40rpx;
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
.dot {
|
|
width: 16rpx;
|
|
height: 16rpx;
|
|
border-radius: 50%;
|
|
background: #E5E5E5;
|
|
z-index: 10;
|
|
|
|
&.active {
|
|
background: #DB2D2D;
|
|
}
|
|
}
|
|
|
|
.line {
|
|
width: 4rpx;
|
|
height: auto;
|
|
background: #E5E5E5;
|
|
}
|
|
|
|
.title {
|
|
display: flex;
|
|
align-items: center;
|
|
vertical-align: middle;
|
|
font-size: 28rpx;
|
|
font-family: PingFangSC-Medium, PingFang SC;
|
|
font-weight: 500;
|
|
color: #333333;
|
|
|
|
.time-txt {
|
|
font-size: 24rpx;
|
|
font-weight: 400;
|
|
color: #999999;
|
|
}
|
|
}
|
|
|
|
.line-box {
|
|
display: flex;
|
|
|
|
.txt {
|
|
flex: 1;
|
|
font-size: 28rpx;
|
|
|
|
font-family: PingFangSC-Regular, PingFang SC;
|
|
font-weight: 400;
|
|
color: #666666;
|
|
}
|
|
}
|
|
}
|
|
</style>
|