|
|
@@ -47,7 +47,9 @@
|
|
|
</div>
|
|
|
<div class="info-right">
|
|
|
<div class="brand">
|
|
|
- <!-- <div class="brand-logo" style="background: #eee;"></div> -->
|
|
|
+ <div class="brand-logo" style="background: #eee;">
|
|
|
+ <img :src="`${formData.merchantLogo}`" class="merchant-logo" />
|
|
|
+ </div>
|
|
|
<span>{{ formData.merchantName || '--' }}</span>
|
|
|
</div>
|
|
|
<div class="date-tag">{{ formData.timeRange && Array.isArray(formData.timeRange) ? formData.timeRange.join(' ~ ') : '?? ~ ??' }}</div>
|
|
|
@@ -302,6 +304,12 @@ export default {
|
|
|
height: 22px;
|
|
|
margin-right: 6px;
|
|
|
border-radius: 50%;
|
|
|
+
|
|
|
+ .merchant-logo {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ border-radius: 50%;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|