shish 8 месяцев назад
Родитель
Сommit
0c754d5fd9
2 измененных файлов с 5 добавлено и 1 удалено
  1. 1 1
      hdApp/src/admin/goods/goodsSort.vue
  2. 4 0
      hdApp/src/api/item/index.js

+ 1 - 1
hdApp/src/admin/goods/goodsSort.vue

@@ -27,7 +27,7 @@
             </view>
 
             <view class="list-det" style="position: absolute; bottom: 15upx; left: 122upx">
-              <view v-if="item.priceType == 1" class="app-size-28 app-color-0" style="font-size:30upx">¥{{ item.price?parseFloat(item.price):0 }}</view>
+              <view v-if="item.priceType == 1" class="app-size-28 app-color-0" style="font-size:30upx;color:red;font-weight:bold;">¥{{ item.price?parseFloat(item.price):0 }}</view>
               <view v-else></view>
             </view>
             <view

+ 4 - 0
hdApp/src/api/item/index.js

@@ -18,4 +18,8 @@ export const getCostChangeList = data => {
 
 export const getPoster = data => {
 	return https.get('/item/get-poster', data)
+}
+
+export const changeFrontHide = data => {
+	return https.get('/item/change-front-hide', data)
 }