Kaynağa Gözat

首页优化

shish 3 yıl önce
ebeveyn
işleme
579a44d42e

+ 0 - 6
hdApp/src/admin/home/workbench.vue

@@ -41,12 +41,6 @@
             {{ $util.numberFormat(data.todayData.bouquet) || 0 }}
           </div>
         </div>
-        <div class="info-list" @click="goToWastage" >
-          <div class="info-list-name">损耗</div>
-          <div class="info-list-value">
-            {{ $util.numberFormat(data.todayData.wastage) || 0 }}
-          </div>
-        </div>
       </div>
     </div>
 

+ 3 - 3
hdApp/src/admin/stat/kind.vue

@@ -3,7 +3,7 @@
 	<view class="ex-page">
 		<view class="top-bar">
 			<DateSelect class="bar" top="0" @selectDateFn="selectDateFn" />
-			<text style="margin-left:150upx;color:#3385FF;font-weight:bold;">员工制作统计</text>
+			<text style="margin-left:120upx;color:#3385FF;font-weight:bold;font-size:30upx;" @click="pageTo('/admin/stat/makeStat')">员工生产统计</text>
 		</view>
 		<scroll-view scroll-y scroll-with-animation class="main-view">
 			<view class="space-view ex-table">
@@ -11,7 +11,7 @@
 					<t-table :headerBackgroundColor="'#F0F2F6'">
 						<t-tr header>
 							<t-th><view style="color:black;">类型</view></t-th>
-							<t-th><view style="color:black;">制作数量</view></t-th>
+							<t-th><view style="color:black;">生产数量</view></t-th>
 							<t-th><view style="color:black;">销售数量</view></t-th>
 						</t-tr>
 						<t-tr v-for="(item, inIndex) in profit.kindStat" :key="inIndex">
@@ -24,7 +24,7 @@
 						</t-tr>
 
 						<t-tr>
-							<t-td><view style="color:black;font-size:30upx;font-weight:bold;margin-top:70upx;">拆散花材量</view></t-td>
+							<t-td><view style="color:black;font-size:30upx;font-weight:bold;margin-top:70upx;">拆散花材量</view></t-td>
 						</t-tr>
 						<!--同个节点v-for key重复会报错,所以再包一层-->
 						<view>

+ 4 - 2
hdApp/src/admin/stat/makeStat.vue

@@ -14,10 +14,12 @@
 							<t-th><view style="color:black;">操作</view></t-th>
 						</t-tr>
 						<t-tr v-for="(item, inIndex) in profit.makeStat" :key="inIndex">
-							<t-td><view style="color:black;font-size:25upx;">{{inIndex}}支</view></t-td>
+							<t-td>
+								<view style="color:black;font-size:28upx;">{{inIndex}}支</view>
+							</t-td>
 							<t-td>
 								<block v-for="(it, ix) in item" :key="ix">
-								<view style="color:black;font-size:20upx;">{{it.name}} {{it.num}}</view>
+									<view style="color:black;font-size:28upx;">{{it.name}} {{it.num}}</view>
 								</block>
 							</t-td>
 							<t-td>-</t-td>