|
|
@@ -57,7 +57,9 @@
|
|
|
<div class="ts-form-item">
|
|
|
<div class="form-title">回复结果 </div>
|
|
|
<div class="form-input-text">
|
|
|
- <div class="data" v-html="orderData.remark"></div>
|
|
|
+ <div class="content-data">
|
|
|
+ <div v-html="orderData.remark"></div>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
@@ -130,7 +132,7 @@ export default {
|
|
|
}
|
|
|
</script>
|
|
|
|
|
|
-<style>
|
|
|
+<style scoped>
|
|
|
.nopadding{background: #f8f8f8 !important;}
|
|
|
.ts-header{padding: 10px 0;margin-bottom: 10px;}
|
|
|
.ts-header .ts-h-title{font-size: 14px;color: #666;padding: 10px;}
|
|
|
@@ -139,6 +141,13 @@ export default {
|
|
|
.ts-header .store-info .store-left .address{font-size: 12px;color: #999;}
|
|
|
.ts-body{background-color: #fff;padding: 10px;position: relative;}
|
|
|
|
|
|
+.content-data {
|
|
|
+ /deep/ img{
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
.ts-body .order-status{position: absolute;right: 10px;top: 10px;}
|
|
|
.ts-body .order-status img{width: 110px;height: 110px;transform: rotate(45deg);}
|
|
|
|