订单,商品,代客下单,分组,分类页面调整
删除批量修改库存数量
This commit is contained in:
@@ -13,13 +13,13 @@
|
||||
</view>
|
||||
<view class="">
|
||||
<uni-forms-item label="分类名称" required name="name">
|
||||
<uni-easyinput :placeholderStyle="placeholderStyle" :inputBorder="inputBorder"
|
||||
<uni-easyinput padding-none="true" :placeholderStyle="placeholderStyle" :inputBorder="inputBorder"
|
||||
v-model="category.name" placeholder="输入分类名称" />
|
||||
</uni-forms-item>
|
||||
</view>
|
||||
<template v-if="option.type==='edit'">
|
||||
<uni-forms-item label="排序" required name="sort">
|
||||
<uni-easyinput :placeholderStyle="placeholderStyle" :inputBorder="inputBorder"
|
||||
<uni-easyinput padding-none="true" :placeholderStyle="placeholderStyle" :inputBorder="inputBorder"
|
||||
v-model="category.sort" type="number" placeholder="排序越小越靠前" />
|
||||
</uni-forms-item>
|
||||
</template>
|
||||
@@ -72,18 +72,18 @@
|
||||
</view>
|
||||
<template v-if="option.type==='edit'">
|
||||
<view class="font-bold u-m-t-32 u-m-b-32">子分类</view>
|
||||
<view class="block u-p-t-30" v-if=" category.childrenList.length">
|
||||
<view class="u-flex u-text-center font-bold">
|
||||
<view class="u-flex-1">名称</view>
|
||||
<view class="block u-p-t-32 u-p-b-32" v-if=" category.childrenList.length">
|
||||
<view class="u-flex u-text-center u-font-24">
|
||||
<view class="u-flex-1 ">名称</view>
|
||||
<view class="u-flex-1">图片</view>
|
||||
<view class="u-flex-1">状态</view>
|
||||
<view class="u-flex-1">颜色</view>
|
||||
<view class="u-flex-1">操作</view>
|
||||
</view>
|
||||
<view class="bg-gray u-p-t-20">
|
||||
<view class="bg-gray u-p-t-20 u-m-t-24">
|
||||
<view class="u-flex u-p-t-10 u-p-b-10" v-for="(item,index) in category.childrenList"
|
||||
:key="index">
|
||||
<view class="u-flex-1 u-flex u-row-center">
|
||||
<view class="u-flex-1 u-flex u-p-l-24 ">
|
||||
{{item.name}}
|
||||
</view>
|
||||
<view class="u-flex-1 u-flex u-row-center">
|
||||
@@ -96,7 +96,7 @@
|
||||
<view class="u-flex-1 u-flex u-row-center">
|
||||
{{item.style}}
|
||||
</view>
|
||||
<view class="u-flex-1 u-flex u-row-center">
|
||||
<view class="u-flex-1 u-flex u-row-right u-p-r-24 u-flex ">
|
||||
<my-button @tap="moreShow(item,index)" :width="100" :height="40">
|
||||
<view class="u-font-24 no-wrap">更多</view>
|
||||
</my-button>
|
||||
@@ -747,13 +747,15 @@
|
||||
.lh40 {
|
||||
line-height: 40rpx;
|
||||
}
|
||||
|
||||
::v-deep .uni-forms-item.is-direction-top .uni-forms-item__label{
|
||||
padding-bottom: 24rpx;
|
||||
}
|
||||
.box {
|
||||
font-size: 28rpx;
|
||||
|
||||
.block {
|
||||
background: #FFFFFF;
|
||||
border-radius: 18rpx 18rpx 18rpx 18rpx;
|
||||
border-radius: 6px 18rpx 0 18rpx;
|
||||
padding: 12rpx 24rpx;
|
||||
margin-bottom: 32rpx;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user