update 修复商品列表按钮问题,改成原样不动,
This commit is contained in:
parent
8d36524457
commit
365358c2cd
@ -141,26 +141,35 @@
|
|||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="commodity-btn-content">
|
<view class="commodity-btn-content">
|
||||||
<view
|
<u-button
|
||||||
@click="handerShowPricePopup(item)"
|
@click="handerShowPricePopup(item)"
|
||||||
class="commodity-btn-item"
|
class="commodity-btn-item"
|
||||||
|
:hairline="true"
|
||||||
|
:plain="true"
|
||||||
|
shape="circle"
|
||||||
>
|
>
|
||||||
价格/库存
|
价格/库存
|
||||||
</view>
|
</u-button>
|
||||||
<view
|
<u-button
|
||||||
v-if="item.product_state_id == 1002"
|
v-if="item.product_state_id == 1002"
|
||||||
class="commodity-btn-item"
|
class="commodity-btn-item commodity-btn-item-2"
|
||||||
|
:hairline="true"
|
||||||
|
:plain="true"
|
||||||
|
shape="circle"
|
||||||
@click="updateProductPutaway(item, index, 1001)"
|
@click="updateProductPutaway(item, index, 1001)"
|
||||||
>
|
>
|
||||||
上架
|
上架
|
||||||
</view>
|
</u-button>
|
||||||
<view
|
<u-button
|
||||||
v-if="item.product_state_id == 1001"
|
v-if="item.product_state_id == 1001"
|
||||||
class="commodity-btn-item"
|
class="commodity-btn-item commodity-btn-item-2"
|
||||||
|
:hairline="true"
|
||||||
|
:plain="true"
|
||||||
|
shape="circle"
|
||||||
@click="updateProductPutaway(item, index, 1002)"
|
@click="updateProductPutaway(item, index, 1002)"
|
||||||
>
|
>
|
||||||
下架
|
下架
|
||||||
|
</u-button>
|
||||||
<u-button
|
<u-button
|
||||||
class="commodity-btn-item commodity-btn-item-2"
|
class="commodity-btn-item commodity-btn-item-2"
|
||||||
:hairline="true"
|
:hairline="true"
|
||||||
@ -173,7 +182,6 @@
|
|||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
|
||||||
<view
|
<view
|
||||||
class="m-loading-box"
|
class="m-loading-box"
|
||||||
v-if="commodityList.length > 0 && !isNoCommodityData"
|
v-if="commodityList.length > 0 && !isNoCommodityData"
|
||||||
@ -1110,20 +1118,16 @@ page {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.commodity-btn-content {
|
.commodity-btn-content {
|
||||||
border-bottom: 2rpx solid #eee;
|
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: flex-end;
|
justify-content: flex-end;
|
||||||
float: right;
|
|
||||||
padding-bottom: 20rpx;
|
|
||||||
|
|
||||||
.commodity-btn-item {
|
.commodity-btn-item {
|
||||||
padding: 8rpx 12rpx;
|
margin: 0;
|
||||||
|
margin-right: 20rpx;
|
||||||
|
width: 160rpx;
|
||||||
|
height: 60rpx;
|
||||||
font-size: 24rpx;
|
font-size: 24rpx;
|
||||||
border: 2rpx solid #d2d2d2;
|
border-color: #d2d2d2;
|
||||||
color: #333;
|
color: #000;
|
||||||
text-align: center;
|
|
||||||
margin-left: 24rpx;
|
|
||||||
border-radius: 40rpx;
|
|
||||||
|
|
||||||
&::after {
|
&::after {
|
||||||
border: none;
|
border: none;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user