Browse Source

采购-按钮修改

jf 5 years ago
parent
commit
695e2a275b
1 changed files with 7 additions and 9 deletions
  1. 7 9
      ghsApp/src/pagesPurchase/components/CommodityPurchase.vue

+ 7 - 9
ghsApp/src/pagesPurchase/components/CommodityPurchase.vue

@@ -4,7 +4,9 @@
 			<app-img :src="info.cover" alt="商品图" mode="aspectFit" :height="160" />
 		</view>
 		<view class="cmd-info_bx">
-			<view class="tit">{{ info.itemName || "" }}</view>
+			<view class="tit">
+				{{ info.itemName || "" }}
+			</view>
 
 			<view class="kc">{{ info.rank }}级</view>
 			<view class="num-open_bx">
@@ -12,17 +14,13 @@
 					<text class="unit">¥</text><text>{{ info.price }}</text>
 				</view>
 				<view class="open-bx">
-					<i
-						class="iconfont iconjianqu"
-						@click="delEvent"
-						v-if="bigCount > 0 || smallCount > 0"
-					></i>
+					<i class="iconfont iconjian" @click="delEvent" v-if="bigCount > 0 || smallCount > 0"></i>
 					<text class="num" @click="customNum" v-if="bigCount > 0 || smallCount > 0">
 						<text v-if="bigCount > 0 || smallCount > 0">{{ `${bigCount}` }}</text>
 						<text v-if="smallCount > 0">/</text>
 						<text v-if="smallCount > 0">{{ `${smallCount}` }}</text>
 					</text>
-					<i class="iconfont icontianjia" @click="addEvent"></i>
+					<i class="iconfont iconzeng" @click="addEvent"></i>
 				</view>
 			</view>
 		</view>
@@ -136,14 +134,14 @@ export default {
 				display: flex;
 				align-items: center;
 				& .iconfont {
-					color: #3385ff;
+					color: #4db0e4;
 					font-size: 40px;
 				}
 				.icondelete {
 					margin: 0 10px 0 30px;
 					color: #ccc;
 					&.edit {
-						color: #3385ff;
+						color: #4db0e4;
 					}
 				}
 				& > .num {