|
|
@@ -48,9 +48,10 @@
|
|
|
</view>
|
|
|
</view>
|
|
|
<text class="bottom-button" @click.stop="moreAction(info)">更多</text>
|
|
|
- <text class="bottom-button" @click.stop="goToStockDetail(info)">库存明细</text>
|
|
|
- <text class="bottom-button" @click.stop="doPrintLabel(info,0)">打标签</text>
|
|
|
- <text class="bottom-button" @click.stop="doPrintLabel(info,1)">打价码</text>
|
|
|
+ <text class="bottom-button" @click.stop="goToStockDetail(info)">库明细</text>
|
|
|
+ <text class="bottom-button" @click.stop="hideChangeFn(info)">{{ frontHide == 0 ? '隐藏' : '显示' }}</text>
|
|
|
+ <text class="bottom-button" @click.stop="doPrintLabel(info,0)">标签</text>
|
|
|
+ <text class="bottom-button" @click.stop="doPrintLabel(info,1)">价码</text>
|
|
|
</view>
|
|
|
</template>
|
|
|
<script>
|
|
|
@@ -74,7 +75,8 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
methods: {
|
|
|
- hideChangeFn(item,status){
|
|
|
+ hideChangeFn(item){
|
|
|
+ let status = this.frontHide == 0 ? 1 : 0
|
|
|
this.$emit("hideChangeFn",item,status)
|
|
|
},
|
|
|
cancelPreSellFn(item){
|
|
|
@@ -110,8 +112,8 @@ export default {
|
|
|
border:2upx solid #cccccc;
|
|
|
font-size:24upx;
|
|
|
border-radius: 20upx;
|
|
|
- padding:13upx 23upx 13upx 23upx;
|
|
|
- margin:0 15upx 0 0;
|
|
|
+ padding:13upx 22upx 13upx 22upx;
|
|
|
+ margin:0 12upx 0 0;
|
|
|
float:right;
|
|
|
color:#aaa9a9;
|
|
|
}
|