ylong 7 miesięcy temu
rodzic
commit
0376183478

+ 1 - 1
prettier.config.js

@@ -1,6 +1,6 @@
 export default {
   printWidth: 80,
-  tabWidth: 2,
+  tabWidth: 4,
   useTabs: false,
   semi: true,
   singleQuote: true,

+ 4 - 7
src/views/recycleOrder/detail/order-book-list.vue

@@ -74,7 +74,7 @@
             >
           </div>
         </div>
-        <div class="base-info-right w-50 shrink-0" style="min-width: 210px;">
+        <div class="base-info-right w-36 shrink-0">
           <div class="common-text flex">
             <el-text>定  价:</el-text>
             <el-text>¥ {{ row.bookPrice }}</el-text>
@@ -82,9 +82,6 @@
           <div class="common-text flex">
             <el-text>回收折扣:</el-text>
             <el-text>¥ {{ row.recycleDiscount }}折</el-text>
-            <el-text v-if="row.sugDiscountStr" style="color: #f56c6c;margin-left: 10px;"
-              >{{ row.sugDiscountStr }}</el-text
-            >
           </div>
           <div class="common-text flex">
             <el-text>预估金额:</el-text>
@@ -424,7 +421,7 @@
     {
       label: '数量',
       prop: 'num',
-      minWidth: 80,
+      minWidth: 90,
       align: 'center',
       formatter: (row) => {
         return `× ${row.num}`;
@@ -435,13 +432,13 @@
       prop: 'auditInfo',
       slot: 'auditInfo',
       align: 'center',
-      minWidth: 260
+      minWidth: 317
     },
     {
       label: '审核金额',
       prop: 'recyclePrice',
       align: 'center',
-      minWidth: 90,
+      minWidth: 100,
       formatter: (row) => {
         return row.sts == 1 ? `¥ ${row.recyclePrice}` : '0';
       }