Commit efb5427c by 兰国旗

laolan

parent 316f6940
......@@ -1417,6 +1417,14 @@ class RegCenterOrderService {
deliveryFlowList = deliveryContent[ab.productType].solutionFlowList || [];
}
else {//如果交付信息不存在的话就去进行赋值
let startTime
let endTime
if (ab.startTime) {
startTime = (new Date(ab.startTime * 1000)).Format("yyyy-MM-dd hh:mm:ss")
}
if(ab.startTime){
endTime = (new Date(ab.endTime * 1000)).Format("yyyy-MM-dd hh:mm:ss")
}
if (ab.consultType == "QYJYTC1") {
bizTypeName = "企业经营套餐一"
}
......@@ -1476,8 +1484,8 @@ class RegCenterOrderService {
bizTypeName: bizTypeName,
productType: productType,
productTypeName: "代理记账",
startTime: ab.startTime || "",
endTime: ab.endTime || "",
startTime: startTime || "",
endTime: endTime || "",
status: ab.ApplicationStatus,
statusName: this.regDeliveryStatusName[ab.ApplicationStatus],
channelStatus: this.regDeliveryStatus[ab.ApplicationStatus],
......@@ -1493,8 +1501,8 @@ class RegCenterOrderService {
bizTypeName: bizTypeName,
productType: productType,
productTypeName: "地址服务",
startTime: ab.startTime || "",
endTime: ab.endTime || "",
startTime: startTime || "",
endTime: endTime || "" ,
status: ab.ApplicationStatus,
statusName: this.regDeliveryStatusName[ab.ApplicationStatus],
channelStatus: this.regDeliveryStatus[ab.ApplicationStatus],
......
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 to comment