初始化商家端
This commit is contained in:
140
pages/spgl/batchManagement/batchManagement.vue
Normal file
140
pages/spgl/batchManagement/batchManagement.vue
Normal file
@ -0,0 +1,140 @@
|
||||
<template>
|
||||
<view class="page" :style="themeColor">
|
||||
<view class="flex benben-position-layout flex flex-wrap align-center batchManagement_flex_0" :style="{height:(88+StatusBarRpx)+'rpx',paddingTop:StatusBarRpx+'rpx'}">
|
||||
<view class='flex flex-wrap align-center justify-between flex-sub batchManagement_fd0_0' >
|
||||
<view class='flex flex-wrap align-center batchManagement_fd0_0_c0' @tap.stop="handleJumpDiy" data-type="back" data-url="1" >
|
||||
<text class='fu-iconfont2 batchManagement_fd0_0_c0_c0' ></text>
|
||||
</view>
|
||||
<view class='flex flex-wrap align-center' >
|
||||
<text class='batchManagement_fd0_0_c1_c0' >商品管理</text>
|
||||
</view>
|
||||
<view class='flex flex-wrap align-center justify-end batchManagement_fd0_0_c2' >
|
||||
<benben-flex-switch-new class-name='flex flex batchManagement_fd0_0_c2_c0' v-model="is_tick" :disabled='false' :auto='true' >
|
||||
<template v-slot:checked>
|
||||
|
||||
<view class='flex flex position-relative align-center' >
|
||||
<image class='batchManagement_checkfd0_0_c2_c0_c0_c0' mode="aspectFit" :src='STATIC_URL+"44.png"'></image>
|
||||
</view>
|
||||
|
||||
</template>
|
||||
<template v-slot:unchecked>
|
||||
|
||||
<view class='flex flex position-relative justify-end align-center' >
|
||||
<image class='batchManagement_noCheckfd0_0_c2_c0_c1_c0' mode="aspectFit" :src='STATIC_URL+"117.png"'></image>
|
||||
</view>
|
||||
|
||||
</template>
|
||||
</benben-flex-switch-new>
|
||||
<text class='batchManagement_fd0_0_c2_c1' >全选</text>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
</view>
|
||||
<view :style="{height: (88+StatusBarRpx)+'rpx'}" ></view>
|
||||
<benben-goods-classify :top='88' >
|
||||
</benben-goods-classify>
|
||||
<view class="flex align-center justify-between benben-position-layout flex batchManagement_flex_2" >
|
||||
<button class='batchManagement_fd2_0' @tap.stop="handleJumpDiy" data-type="back" data-url="1" >下架</button>
|
||||
<button class='batchManagement_fd2_1' >删除</button>
|
||||
|
||||
</view>
|
||||
<view :style="{height: '128rpx'}" ></view>
|
||||
|
||||
|
||||
</view>
|
||||
</template>
|
||||
<script>
|
||||
|
||||
export default {
|
||||
components:{},
|
||||
|
||||
|
||||
data(){
|
||||
return {"is_tick":false};
|
||||
},
|
||||
computed:{
|
||||
themeColor() {
|
||||
return this.$store.getters.themeColor
|
||||
},
|
||||
|
||||
},
|
||||
watch:{},
|
||||
onLoad(options){
|
||||
|
||||
},
|
||||
onUnload() {
|
||||
|
||||
},
|
||||
onReady(){
|
||||
|
||||
},
|
||||
onShow(){
|
||||
|
||||
},
|
||||
onHide(){
|
||||
|
||||
},
|
||||
onResize(){
|
||||
|
||||
},
|
||||
onPullDownRefresh(){
|
||||
|
||||
},
|
||||
onReachBottom(e){
|
||||
|
||||
},
|
||||
onPageScroll(e){
|
||||
|
||||
},
|
||||
methods:{
|
||||
|
||||
}
|
||||
};
|
||||
</script>
|
||||
<style lang="scss" scoped>
|
||||
.page{
|
||||
width: 100vw;
|
||||
overflow-x: hidden;
|
||||
min-height: calc(100vh - var(--window-bottom));
|
||||
background:rgba(248, 248, 248, 1);background-size: 100% auto !important;
|
||||
}
|
||||
.batchManagement_flex_0{
|
||||
background:#fff;width:750rpx;height:88rpx;overflow:hidden;z-index:10;top:0rpx;background-size:100% auto !important;
|
||||
}
|
||||
.batchManagement_fd0_0_c2_c1{
|
||||
color:#373737;font-size:28rpx;font-weight:400;line-height:30rpx;
|
||||
}
|
||||
.batchManagement_noCheckfd0_0_c2_c0_c1_c0{
|
||||
width:32rpx;height:32rpx;
|
||||
}
|
||||
.batchManagement_checkfd0_0_c2_c0_c0_c0{
|
||||
width:32rpx;height:32rpx;
|
||||
}
|
||||
::v-deep .batchManagement_fd0_0_c2_c0{
|
||||
margin:0rpx 16rpx 0rpx 0rpx;
|
||||
}
|
||||
.batchManagement_fd0_0_c2{
|
||||
width:200rpx;
|
||||
}
|
||||
.batchManagement_fd0_0_c1_c0{
|
||||
font-size:36rpx;font-weight:500;color:#333;line-height:88rpx;
|
||||
}
|
||||
.batchManagement_fd0_0_c0_c0{
|
||||
font-size:32rpx;font-weight:500;color:#333;line-height:88rpx;
|
||||
}
|
||||
.batchManagement_fd0_0_c0{
|
||||
width:200rpx;
|
||||
}
|
||||
.batchManagement_fd0_0{
|
||||
margin:0rpx 32rpx 0rpx 32rpx;
|
||||
}
|
||||
.batchManagement_flex_2{
|
||||
background:rgba(255, 255, 255, 1);width:750rpx;height:128rpx;overflow:hidden;z-index:10;bottom:calc(0rpx + var(--window-bottom));background-size:100% auto !important;
|
||||
}
|
||||
.batchManagement_fd2_1{
|
||||
border:1px solid rgba(237, 64, 64, 1);background:rgba(255, 255, 255, 1);border-radius:100rpx 100rpx 100rpx 100rpx;font-size:28rpx;color:rgba(237, 64, 64, 1);width:339rpx;height:80rpx;line-height:80rpx;font-weight:500;margin:0rpx 24rpx 0rpx 0rpx;
|
||||
}
|
||||
.batchManagement_fd2_0{
|
||||
background:rgba(229, 229, 229, 1);border-radius:100rpx 100rpx 100rpx 100rpx;font-size:28rpx;color:rgba(102, 102, 102, 1);width:339rpx;height:80rpx;line-height:80rpx;font-weight:500;margin:0rpx 0rpx 0rpx 24rpx;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user