snow 1 gadu atpakaļ
vecāks
revīzija
5add46fdf4

Failā izmaiņas netiks attēlotas, jo tās ir par lielu
+ 0 - 0
dist/static/css/app.f3f48f04.css


Failā izmaiņas netiks attēlotas, jo tās ir par lielu
+ 0 - 0
dist/static/js/app.ad544db3.js


BIN
dist/static/js/app.ad544db3.js.gz


+ 4 - 4
src/components/newResults/company-month.vue

@@ -42,16 +42,16 @@
           </template>
         </el-table-column>
 
-        <template v-if="costField">
+        <!-- <template v-if="costField"> -->
           <el-table-column label="毛利目标" align="center" min-width="115px">
             <template slot-scope="scope">
-              {{ unit2TenThousand(scope.row.cost_tips, isTenThound) }}
+              {{  costField ? unit2TenThousand(scope.row.cost_tips, isTenThound) : '***' }}
             </template>
           </el-table-column>
           <el-table-column label="毛利完成" align="center" min-width="115px">
             <template slot-scope="scope">
               <div :style="getCurrentValueStyle(scope.row.pure_profit, scope.row.cost_tips, scope.row.month)">
-                {{ unit2TenThousand(scope.row.pure_profit, isTenThound) }}
+                {{ costField ? unit2TenThousand(scope.row.pure_profit, isTenThound) : '***' }}
               </div>
             </template>
           </el-table-column>
@@ -62,7 +62,7 @@
               </div>
             </template>
           </el-table-column>
-        </template>
+        <!-- </template> -->
       </el-table>
       <div style="height:100px"></div>
     </el-row>

+ 8 - 6
src/components/newResults/company.vue

@@ -78,17 +78,17 @@
           </el-table-column>
 
 
-          <template v-if="costField">
+          <!-- <template v-if="costField"> -->
             <el-table-column label="毛利目标" align="center" min-width="90px">
               <template slot-scope="scope">
-                {{ unit2TenThousand(scope.row.cost_tips, isTenThound) }}
+                {{ costField ? unit2TenThousand(scope.row.cost_tips, isTenThound) : '***' }}
               </template>
             </el-table-column>
 
             <el-table-column label="毛利完成" align="center" min-width="90px">
               <template slot-scope="scope">
                 <div :style="`${getCurrentValueStyle(scope.row.gross_completion, scope.row.cost_tips)}`">
-                  {{ unit2TenThousand(scope.row.gross_completion, isTenThound) }}
+                  {{ costField ? unit2TenThousand(scope.row.gross_completion, isTenThound) : '***' }}
                 </div>
               </template>
             </el-table-column>
@@ -104,7 +104,7 @@
 
             <el-table-column label="成本合计" align="center" min-width="125px">
               <template slot-scope="scope">
-                <div style="display:flex;justify-content:center">
+                <div style="display:flex;justify-content:center" v-if="costField">
                   {{ unit2TenThousand(scope.row.mcost_total, isTenThound) }}
                   <el-popover placement="right" :width="200" trigger="click">
                     <div class="table-size">
@@ -118,17 +118,19 @@
                     </template>
                   </el-popover>
                 </div>
+
+                <p v-else>***</p>
               </template>
             </el-table-column>
 
             <el-table-column label="实际毛利率" align="center" width="85px">
               <template slot-scope="scope">
                 <!-- <div :style="`${getCurrentRateStyle(scope.row.gross_sale_completion_rate)}`"> -->
-                {{ unit2TenThousand(scope.row.gross_sale_completion_rate) + "%" }}
+                {{ costField ? unit2TenThousand(scope.row.gross_sale_completion_rate) + "%" : '***' }}
                 <!-- </div> -->
               </template>
             </el-table-column>
-          </template>
+          <!-- </template> -->
       </el-table>
     </el-row>
 

+ 8 - 6
src/components/newResults/department.vue

@@ -100,9 +100,9 @@
           </template>
         </el-table-column>
 
-        <el-table-column label="当月成本" align="center" min-width="120px" v-if="costField">
+        <el-table-column label="当月成本" align="center" min-width="120px">
           <template slot-scope="scope">
-            <div style="display:flex;justify-content:center;align-items:center">
+            <div style="display:flex;justify-content:center;align-items:center"  v-if="costField">
               {{
               unit2TenThousand(Number(addition(scope.row.zy_cost, scope.row.qd_cost)).toFixed(2), isTenThound) }}
               <el-popover placement="right" :width="200" trigger="click">
@@ -120,15 +120,15 @@
                 </template>
               </el-popover>
             </div>
+
+            <p v-else>***</p>
           </template>
         </el-table-column>
 
         <el-table-column align="center" label="当月毛利" min-width="120px">
           <template slot-scope="scope">
-            <div style="display:flex;justify-content:center;align-items:center">
-              {{
-              unit2TenThousand(Number(addition(scope.row.zy_gross, scope.row.qd_gross)).toFixed(2), isTenThound)
-              }}
+            <div style="display:flex;justify-content:center;align-items:center" v-if="costField">
+              {{unit2TenThousand(Number(addition(scope.row.zy_gross, scope.row.qd_gross)).toFixed(2), isTenThound)}}
               <el-popover placement="right" :width="200" trigger="click">
                 <div class="table-size">
                   <p>直营/自营: {{ unit2TenThousand(scope.row.zy_gross, isTenThound) }}</p>
@@ -141,6 +141,8 @@
                 </template>
               </el-popover>
             </div>
+
+            <p v-else>***</p>
           </template>
         </el-table-column>
       </el-table>

Daži faili netika attēloti, jo izmaiņu fails ir pārāk liels