Commit b1ed8608 by liangjianmin

css

parent bb4a9a87
......@@ -174,3 +174,18 @@
font-weight: bold;
}
}
.fadeInRightBig{
animation:fadeInRightBig 0.4s 1;
}
@keyframes fadeInRightBig {
0% {
opacity: 0;
transform: translateX(500px);
}
100% {
opacity: 1;
transform: translateX(0);
}
}
......@@ -197,38 +197,37 @@
font-size: 32rpx;
color: #1e2021;
font-weight: bold;
}
.progress-list {
padding-left: 24rpx;
margin-top: 32rpx;
.box {
position: relative;
border-left: 1rpx dashed #197ADB;
border-left: 1px dashed #197adb;
padding-left: 37rpx;
padding-bottom: 55rpx;
&:last-child{
&:last-child {
padding-bottom: 30rpx;
}
&::after{
&::after {
position: absolute;
left: -17rpx;
left: -16rpx;
top: 0;
width: 28rpx;
height: 28rpx;
width: 24rpx;
height: 24rpx;
border-radius: 50%;
background: #FFFFFF;
border: 4rpx solid #197ADB;
background: #ffffff;
border: 4rpx solid #197adb;
content: '';
}
.t1 {
.t2 {
font-size: 24rpx;
color: #404547;
margin-bottom: 12rpx;
}
.t2 {
.t3 {
font-size: 22rpx;
color: #6E767A;
color: #6e767a;
}
}
}
......
......@@ -132,13 +132,7 @@ export default {
this.flag = true;
this.more = 'noMore';
}
} else if (res.err_code === 20046) {
this.is_login = true;
this.flag = true;
this.more = 'noMore';
this.list = [];
this.total = 0;
} else if (res.err_code === 20045) {
} else if (res.err_code === 20045) {
this.is_login = false;
this.flag = true;
this.more = 'noMore';
......
......@@ -127,8 +127,8 @@
<text class="t1">订单问题进度跟踪</text>
<view class="progress-list">
<view class="box column" v-for="item in detail.action_log">
<text class="t1">{{ item.content }}</text>
<text class="t2">{{ item.create_time }}</text>
<text class="t2">{{ item.content }}</text>
<text class="t3">{{ item.create_time }}</text>
</view>
</view>
</view>
......
......@@ -286,8 +286,12 @@ export default {
}
},
toChat() {
this.request(API.turnManualProcessing, 'POST', {}, true).then(res => {
this.request(API.turnManualProcessing, 'POST', {ask_customer_problem_list_id:this.ask_customer_problem_list_id}, true).then(res => {
if (res.err_code === 0) {
uni.showToast({
title: res.err_msg,
icon: 'success'
});
} else {
uni.showToast({
title: res.err_msg,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment