This commit is contained in:
wangshiming
2022-05-13 13:59:44 +08:00
parent 9051e5a49f
commit 85ebb019bc
3 changed files with 19 additions and 19 deletions

View File

@ -4,7 +4,7 @@
* @Author : Shiming * @Author : Shiming
* @Date : 2022-01-18 09:51:21 * @Date : 2022-01-18 09:51:21
* @LastEditors : Shiming * @LastEditors : Shiming
* @LastEditTime : 2022-05-13 09:36:19 * @LastEditTime : 2022-05-13 13:38:02
* @FilePath : \\tms-obc-web\\proxy.conf.js * @FilePath : \\tms-obc-web\\proxy.conf.js
* Copyright (C) 2022 huzhenhong. All rights reserved. * Copyright (C) 2022 huzhenhong. All rights reserved.
*/ */
@ -30,7 +30,7 @@ module.exports = {
// }, // },
'//api': { '//api': {
target: { target: {
host: 'tms-api-test.eascs.com', host: 'tms-api-dev.eascs.com',
protocol: 'https:', protocol: 'https:',
port: 443 port: 443
}, },

View File

@ -36,53 +36,53 @@ export class PartnerRecordedDetailComponent implements OnInit {
console.log(res); console.log(res);
// submitTime creattime // submitTime creattime
let isEnd = false; let isEnd = false;
if (res.reAuditTime) { if (res.modifyTime) {
isEnd = true; isEnd = true;
if (res.sts === '3') { if (res.sts === '3') {
this.timeLineData.push({ time: res.successTime, value: `账成功`, color: 'green' }); this.timeLineData.push({ time: res.modifyTime, value: `账成功`, color: 'green' });
} else { } else {
this.timeLineData.push({ time: res.successTime, value: `提现失败`, color: 'red' }); this.timeLineData.push({ time: res.modifyTime, value: `入账失败`, color: 'red' });
} }
} }
if (res.agreeTime && res.refundStatus !== '4') { // if (res.agreeTime && res.refundStatus !== '4') {
this.timeLineData.push({ time: res.agreeTime, value: `银行处理中`, color: 'gray' }); // this.timeLineData.push({ time: res.agreeTime, value: `银行处理中`, color: 'gray' });
} // }
if (res.reAuditTime) { if (res.reAuditTime) {
if (res.refundStatus === '4') { if (res.refundStatus === '4') {
isEnd = true; isEnd = true;
this.timeLineData.push({ this.timeLineData.push({
time: res.reAuditTime, time: res.reAuditTime,
value: `拒绝提现<br/>操作人员:${res.handlerUserIdLabel}`, value: `拒绝申请<br/>操作人员:${res.reAuditName}`,
color: 'red' color: 'red'
}); });
} else { } else {
this.timeLineData.push({ this.timeLineData.push({
time: res.reAuditTime, time: res.reAuditTime,
value: `审核通过<br/>操作人员:${res.handlerUserIdLabel}`, value: `审核通过<br/>操作人员:${res.reAuditName}`,
color: 'gray' color: 'gray'
}); });
} }
} }
if (res.agreeTime) { if (res.firstAuditTime) {
if (res.refundStatus === '4') { if (res.refundStatus === '4') {
isEnd = true; isEnd = true;
this.timeLineData.push({ this.timeLineData.push({
time: res.agreeTime, time: res.firstAuditTime,
value: `拒绝提现<br/>操作人员:${res.handlerUserIdLabel}`, value: `拒绝申请<br/>操作人员:${res.fristAuditName}`,
color: 'red' color: 'red'
}); });
} else { } else {
this.timeLineData.push({ this.timeLineData.push({
time: res.agreeTime, time: res.firstAuditTime,
value: `审核通过<br/>操作人员:${res.handlerUserIdLabel}`, value: `审核通过<br/>操作人员:${res.fristAuditName}`,
color: 'gray' color: 'gray'
}); });
} }
} }
if (res.createTime) { if (res.submitTime) {
this.timeLineData.push({ this.timeLineData.push({
time: res.createTime, time: res.submitTime,
value: `提交提现申请<br/>提现${res.amount}元至${res.bankName}(${res.bankCardNumber})<br/>操作人员:${res.userIdLabel}`, value: `提交入账申请<br/>入账${res.entryAmount}元至${res.fictitiousAccount}<br/>操作人员:${res.submitUserName}`,
color: 'gray' color: 'gray'
}); });
} }

View File

@ -354,7 +354,7 @@ export class NetworkFreightNewComponent implements OnInit {
type: 'string', type: 'string',
title: '行业', title: '行业',
enum: [ enum: [
{ label: '道路运输', value: 54}, { label: '普通货物道路运输', value: 5431},
], ],
default: 0, default: 0,
ui: { ui: {