|
|
@@ -59,9 +59,9 @@
|
|
|
<div v-if="base == 'two'">
|
|
|
@include("customer.project.part._two")
|
|
|
</div>
|
|
|
- <div v-if="base == 'three'">
|
|
|
- <div v-show="isLoad">@include("customer.project.part._three")</div>
|
|
|
- <div class="row justify-content-center text-secondary" style="min-height: 200px;margin-left: -25%" v-show="!isLoad">
|
|
|
+ <div v-show="base == 'three'">
|
|
|
+ <div v-if="isLoad">@include("customer.project.part._three")</div>
|
|
|
+ <div class="row justify-content-center text-secondary" style="min-height: 200px;margin-left: -25%" v-if="!isLoad">
|
|
|
<div class="align-self-center h1">
|
|
|
<i class="fa fa-spinner fa-pulse"></i>
|
|
|
</div>
|
|
|
@@ -2552,11 +2552,11 @@
|
|
|
return data;
|
|
|
},
|
|
|
transformData(data,key,font=false){
|
|
|
- if (!data[key])return;
|
|
|
let html = '<div class="float-left small ';
|
|
|
if (font)html += "text-primary font-weight-bold";
|
|
|
else html += "text-secondary";
|
|
|
html+='">';
|
|
|
+ if (!data[key])return html+"无</div>";
|
|
|
switch (key) {
|
|
|
case "amount_interval":
|
|
|
data[key].forEach((am,i)=>{
|