|
@@ -4,9 +4,12 @@
|
|
|
<view class="topInfo-item">
|
|
|
<view class="flex info">
|
|
|
<view class="logo">
|
|
|
- <image src="../../../static/img/reject.png" mode="" v-if="list.priceStatus == '已驳回'" style="height: 40rpx;"></image><!-- 驳回 -->
|
|
|
- <image src="../../../static/img/tongguo.png" mode="" v-if="list.priceStatus == '已通过'" style="height: 40rpx;"></image><!-- 通过 -->
|
|
|
- <image src="../../../static/img/daishenhe.png" mode="" v-if="list.priceStatus == '审核中'" style="height: 40rpx;"></image><!-- 待审核 -->
|
|
|
+ <image src="../../../static/img/reject.png" mode="" v-if="list.priceStatus == '已驳回'"
|
|
|
+ style="height: 40rpx;"></image><!-- 驳回 -->
|
|
|
+ <image src="../../../static/img/tongguo.png" mode="" v-if="list.priceStatus == '已通过'"
|
|
|
+ style="height: 40rpx;"></image><!-- 通过 -->
|
|
|
+ <image src="../../../static/img/daishenhe.png" mode="" v-if="list.priceStatus == '审核中'"
|
|
|
+ style="height: 40rpx;"></image><!-- 待审核 -->
|
|
|
</view>
|
|
|
<view class="infoText">{{list.priceStatus}}</view>
|
|
|
</view>
|
|
@@ -55,7 +58,8 @@
|
|
|
this.getList()
|
|
|
},
|
|
|
computed: {
|
|
|
- ...mapState(['hasLogin', 'userInfo']),},
|
|
|
+ ...mapState(['hasLogin', 'userInfo']),
|
|
|
+ },
|
|
|
methods: {
|
|
|
getList() {
|
|
|
this.$api.doRequest('get', '/tranProcessInfo/getTranProcess', {
|
|
@@ -72,13 +76,13 @@
|
|
|
tranProcessInfo.tranPriceIng = this.list.tranPriceIng
|
|
|
tranProcessInfo.reviewer = this.userInfo.userName
|
|
|
this.$api.doRequest('post', '/tranProcessInfo/api/setUpTranPrice', tranProcessInfo).then(res => {
|
|
|
- if(res.data.code == 200){
|
|
|
- this.$api.msg('审核通过成功!')
|
|
|
- that.setTimeout(function() {
|
|
|
- uni.navigateBack()
|
|
|
- },1000);
|
|
|
+ if (res.data.code == 200) {
|
|
|
+ this.$api.msg('审核通过成功!')
|
|
|
+ this.setTimeout(function() {
|
|
|
+ uni.navigateBack()
|
|
|
+ }, 1000);
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
})
|
|
|
}
|
|
|
}
|
|
@@ -113,6 +117,7 @@
|
|
|
height: 210rpx;
|
|
|
background: linear-gradient(270deg, #22C572 0%, #34DE8A 100%);
|
|
|
padding: 30rpx;
|
|
|
+
|
|
|
.topInfo-item {
|
|
|
height: 158rpx;
|
|
|
background-color: #FFFFFF;
|
|
@@ -124,18 +129,21 @@
|
|
|
height: 40rpx;
|
|
|
margin-top: 8rpx;
|
|
|
}
|
|
|
+
|
|
|
.infoText {
|
|
|
font-size: 36rpx;
|
|
|
font-weight: 600;
|
|
|
margin-left: 20rpx;
|
|
|
}
|
|
|
- .infoData{
|
|
|
+
|
|
|
+ .infoData {
|
|
|
color: #878C9C;
|
|
|
font-size: 26rpx;
|
|
|
margin-top: 10rpx;
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
.submit {
|
|
|
width: 98%;
|
|
|
background: #22C572;
|