123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155 |
- <template>
- <view class="container product clearfix">
- <view class="superv-header">
- <view class="superv-header-click" v-if="!isSuperv">
- <view class="oltext" @click="supervClickFn">管理</view>
- <view class="ortext" @click="searchClickFn">筛选</view>
- </view>
- <view class="superv-header-checked" v-else>
- <view class="oltext" @click="isCheckedAll">
- <view class="checkbox iconfont" :class="[isAllChecked ?'icon-yixuanze':'icon-weixuanze']"></view>
- <view class="text">全选</view>
- </view>
- <view class="ortext" @click="closeSupervFn">完成</view>
- </view>
- </view>
- <view class="product-content">
- <view :class="{'tui-order-list':scrollTop >= 0}" class="clearfix">
- <!-- 空白页 -->
- <view class="empty-container" v-if="isEmpty">
- <image class="empty-container-image" src="https://img.caimei365.com/group1/M00/03/71/Cmis2F3wna6AY2ZjAABpmnBICH4247.png"></image>
- <text class="error-text">暂未发布任何商品~</text>
- </view>
- <!-- 列表 -->
- <checkbox-group @change="buyChange" class="tui-group">
- <view class="tui-cart-cell tui-mtop" v-for="(item,index) in dataList" :key="index">
- <tui-swipe-actions :actions="item.actions" @click="handlerButton($event,item)" :params="item">
- <template v-slot:content>
- <view class="tui-goods-item">
- <view class="tui-goods-checkBox" v-if="isSuperv">
- <view class="checkbox iconfont" :class="[item.isChecked ?'icon-yixuanze':'icon-weixuanze']" @click="checkedSoperv(item)"></view>
- </view>
- <view class="tui-goods-image">
- <image :src="item.image" class="tui-goods-img"/>
- </view>
- <view class="tui-goods-info" :style="{width:isSuperv ? '360rpx' : '420rpx'}">
- <view class="tui-goods-title">{{ item.name }}</view>
- <view class="tui-price-box">
- <view class="tui-goods-price">¥{{item.price | NumFormat}}</view>
- </view>
- <view class="tui-goods-pip">市场价:¥{{item.normalPrice | NumFormat}}</view>
- <view class="tui-goods-pip">分类:{{ item.typeName ? item.typeName : '无' }}</view>
- </view>
- <view class="tui-goods-status">
- <view class="status-text" :style="{ color: verifyColorFilter(item.validFlag)}">
- {{ item.validFlag | verifyStatusFilter }}
- </view>
- </view>
- </view>
- </template>
- </tui-swipe-actions>
- </view>
- </checkbox-group>
- <!--加载loadding-->
- <tui-loadmore :visible="loadding" :index="3" type="black"></tui-loadmore>
- <tui-nomore :visible="!pullUpOn" :backgroundColor="'#ffffff'" :text='nomoreText'></tui-nomore>
- <!--加载loadding-->
- </view>
- </view>
- <tui-modal :show="modal" @click="handleClick" @cancel="hideMobel" :content="contentModalText" color="#333" :size="32" shape="circle" :maskClosable="false"></tui-modal>
- <!--右抽屉-->
- <tui-drawer mode="right" :visible="rightDrawer" @close="closeDrawer">
- <view class="d-container clearfix" :style="{paddingTop:CustomBar+10+'px'}">
- <view class="d-label">商品名称:</view>
- <view class="d-input">
- <input class="input" type="text" value="" v-model="listQuery.name" placeholder="输入商品名称"/>
- </view>
- <view class="d-label">商品货号:</view>
- <view class="d-input">
- <input class="input" type="text" value="" v-model="listQuery.productCode" placeholder="输入商品货号"/>
- </view>
- <view class="d-label">状态:</view>
- <view class="d-input">
- <picker @change="bindPickerChange(1,$event)" :value="index" :range="statusActions" range-key="name">
- <input class="input" type="text" disabled="false" v-model="validFlagText" value="" placeholder="请选择审核状态"/>
- <text class="iconfont icon-xiangyou"></text>
- </picker>
- </view>
- <view class="d-label">主推商品:</view>
- <view class="d-input">
- <picker @change="bindPickerChange(2,$event)" :value="index" :range="recommendActions" range-key="name">
- <input class="input" type="text" disabled="false" v-model="featuredFlagText" value="" placeholder="请选择"/>
- <text class="iconfont icon-xiangyou"></text>
- </picker>
- </view>
- <view class="d-label">商品属性:</view>
- <view class="d-input">
- <picker @change="bindPickerChange(0,$event)" :value="index" :range="commodityTypeActons" range-key="name">
- <input class="input" type="text" disabled="false" v-model="commodityTypeText" value="" placeholder="请选择"/>
- <text class="iconfont icon-xiangyou"></text>
- </picker>
- </view>
- <view class="d-label">商品分类:</view>
- <view class="d-input">
- <picker @change="bindPickerChange(3,$event)" :value="index" :range="classificationFirstList" range-key="name">
- <input class="input" type="text" disabled="false" v-model="firstClassificationText" value="" placeholder="请选择一分类"/>
- <text class="iconfont icon-xiangyou"></text>
- </picker>
- </view>
- <view class="d-input">
- <picker @change="bindPickerChange(4,$event)" :value="index" :range="classificationTwoList" range-key="name">
- <input class="input" type="text" disabled="false" v-model="twoClassificationText" value="" placeholder="请选择二级分类"/>
- <text class="iconfont icon-xiangyou"></text>
- </picker>
- </view>
- <view class="d-input">
- <picker @change="bindPickerChange(5,$event)" :value="index" :range="classificationThreeList" range-key="name">
- <input class="input" type="text" disabled="false" v-model="threeClassificationText" value="" placeholder="请选择三级分类"/>
- <text class="iconfont icon-xiangyou"></text>
- </picker>
- </view>
- <view class="d-input btn">
- <view class="d-btn comfrim" @click="handSearchList">确定</view>
- <view class="d-btn clear" @click="handSearchClear">重置</view>
- </view>
- </view>
- </tui-drawer>
- <!-- 批量操作 -->
- <tui-bottom-popup :radius="false" :mask="false" :show="isSuperv">
- <view class="tui-popup-box clearfix">
- <view class="tui-right-flex tui-popup-btn" :style="{ paddingBottom :isIphoneX ? '68rpx' : '0rpx' }">
- <view class="tui-flex-1">
- <view class="tui-button" :class="isProductChecked ? 'active' : ''" @click="handleAllUnder()">批量下架</view>
- </view>
- </view>
- </view>
- </tui-bottom-popup>
- </view>
- </template>
- <script>
- import tuiLoadmore from "@/components/tui-components/loadmore/loadmore"
- import tuiNomore from "@/components/tui-components/nomore/nomore"
- import modalLayer from "@/components/modal-layer"
- import { mapState,mapMutations } from 'vuex'
- const defaultListQuery = {
- shopId:'',
- pageNum:1,
- pageSize:10,
- productCode:'',//货号
- name:'',//商品名称
- validFlag:'',//状态
- featuredFlag:'',//是否主推
- commodityType:'',//商品属性
- bigTypeId:0,//一级
- smallTypeId:0,//二级
- tinyTypeId:0//三级
- };
- export default{
- components: {
- tuiLoadmore,
- tuiNomore
- },
- data() {
- return{
- shopId:0,
- isSuperv:false,
- isProductChecked:false,
- validFlagText:'',
- featuredFlagText:'',
- commodityTypeText:'产品',//预览商品属性
- firstClassificationText:'',
- twoClassificationText:'',
- threeClassificationText:'',
- recommendActions: [{name:'是',value:1},{name: '否',value:0}],
- commodityTypeActons: [{name:'产品',value:1},{name: '仪器',value:2}],
- statusActions: [
- {name:'全部',value:''},
- {name: '未审核',value:1},
- {name: '审核未通过',value:8},
- {name: '已上架',value:2},
- {name: '已下架',value:3},
- {name: '已冻结',value:10},
- {name: '已隐身',value:9},
- {name: '已删除',value:0},
- ],
- classificationFirstList:[],
- classificationTwoList:[],
- classificationThreeList:[],
- currents:0,
- userID:0,
- listQuery:Object.assign({}, defaultListQuery),
- dataList: [],
- btnoRderID: 0, //点击按钮传入的的订单ID
- scrollTop: 0,
- deteleType:'',
- skeletonShow: true,
- isEmpty: false,
- isDelete:false,
- isAllChecked:false,
- isModalLayer: false,
- loadding: false,
- pullUpOn: true,
- pullFlag: true,
- hasNextPage: false,
- navbarHeight:'',
- nomoreText: '上拉显示更多',
- contentModalText:'',//操作文字提示语句
- modal:false,
- rightDrawer: false,
- handlerProduct:{},//储存监听商品信息
- OperationType:'',//操作类型
- isCmcustomClass : 'left',
- featuredNum:0,
- productIds:'',//批量下架操作商品ID
-
- }
- },
- onLoad(option){
- switch(option.listType){
- case '0':
- this.listQuery.validFlag =''
- break;
- case '1':
- this.listQuery.validFlag = 2
- break;
- case '2':
- this.listQuery.validFlag = 3
- break;
- }
- this.$api.getComStorage('userInfo').then((resolve) =>{
- this.listQuery.shopId = this.shopId = resolve.shopId
- this.GetProductListInfo()
- this.GetPrimaryClassification(this.listQuery.commodityType)
- })
- },
- filters: {
- NumFormat:function(text) {//处理金额
- return Number(text).toFixed(2);
- },
- verifyStatusFilter: function(state){
- let stateText = '',
- stateTextObject={
- 0:'已删除',
- 1:'待审核',
- 2:'已上架',
- 3:'已下架',
- 8:'审核未通过',
- 9:'已隐身',
- 10:'已冻结',
-
- };
- Object.keys(stateTextObject).forEach(function(key) {
- if(key == state){
- stateText = stateTextObject[key]
- }
- });
- return stateText;
- },
- },
- computed: {
- ...mapState(['hasLogin','userInfo'])
- },
- methods:{
- ...mapMutations(['login','logout']),
- GetProductListInfo(){
- this.listQuery.pageNum = 1
- this.ShopService.GetSupplierPyProduct(this.listQuery).then(response =>{
- let data = response.data.productPage
- this.featuredNum = response.data.featuredNum
- this.hasNextPage = data.hasNextPage
- if(data.results && data.results.length > 0){
- this.isEmpty = false;
- this.dataList = data.results;
- this.handleDataList()
- if(this.hasNextPage){
- this.pullUpOn = false
- this.nomoreText = '上拉显示更多'
- }else{
- if(this.dataList.length < 5){
- this.pullUpOn = true
- }else{
- this.pullUpOn = false
- this.nomoreText = '已至底部'
- }
- }
- }else{
- this.dataList = []
- this.isEmpty = true
- this.pullUpOn = true
- }
- }).catch(error =>{
- this.$util.msg(error.msg,2000);
- })
- },
- GetOnReachBottomData(index){//上拉加载
- this.listQuery.pageNum += 1
- this.ShopService.GetSupplierPyProduct(this.listQuery).then(response =>{
- let data = response.data.productPage
- this.featuredNum = response.data.featuredNum
- this.hasNextPage = data.hasNextPage;
- this.dataList = this.dataList.concat(data.results)
- this.handleDataList()
- this.pullFlag = false;// 防上拉暴滑
- setTimeout(()=>{this.pullFlag = true;},500)
- if(this.hasNextPage){
- this.pullUpOn = false
- this.nomoreText = '上拉显示更多'
- }else{
- this.loadding = false
- this.pullUpOn = false
- this.nomoreText = '已至底部'
- }
- })
- },
- handleDataList(){//根据商品状态set不同的tabAction返回新的数据
- this.dataList.forEach(item =>{
- if(item.validFlag === 0 || item.validFlag === 3 || item.validFlag === 8 || item.validFlag === 9){
- item.actions = [
- {name: '无操作',color: '#fff',fontsize: 26,width: 50,background: '#e1e1e1'},
- ]
- }else if(item.validFlag === 1 || item.validFlag === 10){
- item.actions = [
- {name: '查看详情',color: '#fff',fontsize: 26,width: 50,background: '#f9a94b'},
- ]
- }else if(item.validFlag === 2){
- if(item.featuredFlag ===1){
- item.actions = [
- {name: '查看详情',color: '#fff',fontsize: 26,width: 50,background: '#f9a94b'},
- {name: '删除主页推荐',color: '#fff',fontsize: 26,width: 50,background: '#ff7a51'},
- {name: '下架',color: '#fff',fontsize: 26,width: 50,background: '#fea785'},
- ]
- }else{
- item.actions = [
- {name: '查看详情',color: '#fff',fontsize: 26,width: 50,background: '#f9a94b'},
- {name: '添加主页推荐',color: '#fff',fontsize: 26,width: 50,background: '#ff7a51'},
- {name: '下架',color: '#fff',fontsize: 26,width: 50,background: '#fea785'},
- ]
- }
- }
- })
- console.log(this.dataList)
- },
- handSearchList(){//搜索
- this.GetProductListInfo()
- this.leftDrawer = false;
- this.rightDrawer = false;
- },
- handSearchClear(){//重置搜索条件
- this.listQuery = Object.assign({}, defaultListQuery)
- this.listQuery.shopId = this.shopId
- this.validFlagText='';
- this.featuredFlagText='';
- this.commodityTypeText='';
- this.firstClassificationText='';
- this.twoClassificationText='';
- this.threeClassificationText='';
- this.classificationTwoList = [];
- this.classificationThreeList = [];
- },
- handlerButton(e,item){//监听侧滑按钮点击事件
- if(item.validFlag === 0 || item.validFlag === 3 || item.validFlag === 8 || item.validFlag === 9){
- if(e.index == 0){
- return
- }
- }else if(item.validFlag === 1 || item.validFlag === 10){
- if(e.index == 0){
- this.$api.navigateTo(`/pages/goods/product?id=${item.productId}`)
- }
- }else if(item.validFlag === 2){
- switch(e.index){
- case 0:
- this.$api.navigateTo(`/pages/goods/product?id=${item.productId}`)
- break;
- case 1:
- if(item.featuredFlag === 1){
- this.handleDeleteShopRemb(item)
- }else{
- this.handleAddShopRemb(item)
- }
- break;
- case 2:
- this.handleUnder(item)
- }
- }
- },
- handleAddShopRemb(item){//添加主页推荐
- let num = 4- this.featuredNum;
- this.OperationType = 'add'
- this.handlerProduct = item
- this.modal = true;
- this.contentModalText = `总共能添加4个主推商品,您还能添加${num}个确定将该商品添加为主推商品吗?`;
- },
- handleDeleteShopRemb(item){//删除主页推荐
- this.OperationType = 'delete'
- this.handlerProduct = item
- this.modal = true;
- this.contentModalText = '是否把该商品从主推商品中删除?';
- },
- handleUnder(item){//下架操作
- this.OperationType = 'under'
- this.handlerProduct = item
- this.modal = true;
- this.contentModalText = '确定下架该商品吗?';
- },
- handleAllUnder(){//批量下架操作
- let checkedArray = [];
- let isValidFlag = false;
- this.productIds = '';
- if(this.isProductChecked){
- this.dataList.forEach(el => {
- if(el.isChecked) {
- checkedArray.push(el)
- }
- })
- checkedArray.forEach(el =>{
- if(el.validFlag == 2){
- this.productIds += el.productId+','
- }
- if(el.validFlag != 2){
- isValidFlag = true;
- }
- })
- if(isValidFlag){
- this.$util.modal('','部分选中的商品暂未上架,不能进行下架操作','确定','',false,() =>{})
- return;
- }
- this.OperationType = 'allunder'
- this.modal = true;
- this.contentModalText = '确定下架选中的商品吗?';
- }
- },
- handleClick(e) {//弹窗提示用户操作
- if(e.index == 1){
- switch(this.OperationType){
- case 'delete'://删除主页推荐
- this.SupplierDeleteSwitchFeatured(this.handlerProduct)
- break;
- case 'add'://添加主页推荐
- this.SupplierAddSwitchFeatured(this.handlerProduct)
- break;
- case 'under'://下架商品
- this.SupplierSoldOutProduct(this.handlerProduct)
- break;
- case 'allunder'://批量下架
- this.SupplierAllSoldOutProduct(this.productIds)
- break;
- }
- }
- this.modal = false;
- },
- SupplierDeleteSwitchFeatured(item){//操作删除主页推荐
- this.ShopService.SupplierSwitchFeaturedyProduct({productId:item.productId,featuredFlag:0}).then(response =>{
- this.$util.msg('删除成功',2000,true,'success');
- setTimeout(() => {
- this.GetProductListInfo()
- },2000)
- }).catch(error =>{
- this.$util.msg(error.msg,2000)
- })
- },
- SupplierAddSwitchFeatured(item){//操作添加主页推荐
- this.ShopService.SupplierSwitchFeaturedyProduct({productId:item.productId,featuredFlag:1}).then(response =>{
- this.$util.msg('添加成功',2000,true,'success');
- setTimeout(() => {
- this.GetProductListInfo()
- },2000)
- }).catch(error =>{
- this.$util.msg(error.msg,2000)
- })
- },
- SupplierSoldOutProduct(item){//操作下架商品
- this.ShopService.SupplierSoldOutProduct({productIds:item.productId}).then(response =>{
- this.$util.msg('下架成功',2000,true,'success');
- setTimeout(() => {
- this.GetProductListInfo()
- },2000)
- }).catch(error =>{
- this.$util.msg(error.msg,2000)
- })
- },
- SupplierAllSoldOutProduct(ids){//操作批量下架商品
- this.ShopService.SupplierSoldOutProduct({productIds:ids}).then(response =>{
- this.$util.msg('下架成功',2000,true,'success');
- this.productIds = '';
- setTimeout(() => {
- this.GetProductListInfo()
- },2000)
- }).catch(error =>{
- this.$util.msg(error.msg,2000)
- })
- },
- bindPickerChange: function(type,e) {//选择筛选条件
- switch(type){
- case 0:
- this.commodityTypeText = this.statusActions[e.target.value].name
- this.listQuery.commodityType = this.commodityTypeActons[e.target.value].value
- break;
- case 1:
- this.validFlagText = this.statusActions[e.target.value].name
- this.listQuery.validFlag = this.statusActions[e.target.value].value
- break;
- case 2:
- this.featuredFlagText = this.recommendActions[e.target.value].name
- this.listQuery.featuredFlag = this.recommendActions[e.target.value].value
- break;
- case 3:
- this.firstClassificationText = this.classificationFirstList[e.target.value].name
- this.listQuery.bigTypeId = this.classificationFirstList[e.target.value].value
- this.GetPrimarySecondaryClassification(this.listQuery.bigTypeId)
- this.twoClassificationText = ''
- this.threeClassificationText=''
- break;
- case 4:
- if(this.listQuery.bigTypeId == 0){
- this.$util.msg('请先选择一级分类',2000)
- return
- }
- this.twoClassificationText = this.classificationTwoList[e.target.value].name
- this.listQuery.smallTypeId = this.classificationTwoList[e.target.value].value
- this.GetPrimaryThreeLevelClassification(this.listQuery.smallTypeId)
- break;
- case 5:
- if(this.listQuery.smallTypeId == 0){
- this.$util.msg('请先选择二级分类',2000)
- return
- }
- this.threeClassificationText = this.classificationThreeList[e.target.value].name
- this.listQuery.tinyTypeId = this.classificationThreeList[e.target.value].value
- break;
- }
- },
- GetPrimaryClassification(value){//获取筛选条件一级分类
- this.ShopService.GetPrimaryClassification({typeSort:value}).then(response =>{
- const data = response.data
- data.forEach(item =>{
- let _obj = {name:item.name,value:item.bigTypeID}
- this.classificationFirstList.push(_obj)
- })
- }).catch(error =>{
- this.$util.msg(error.msg,2000)
- })
- },
- GetPrimarySecondaryClassification(value){//获取筛选条件二级分类
- this.classificationTwoList = []
- this.ShopService.GetPrimarySecondaryClassification({bigTypeId:value}).then(response =>{
- const data = response.data
- data.forEach(item =>{
- let _obj = {name:item.name,value:item.smallTypeID}
- this.classificationTwoList.push(_obj)
- })
- }).catch(error =>{
- this.$util.msg(error.msg,2000)
- })
- },
- GetPrimaryThreeLevelClassification(value){//获取筛选条件三级分类
- this.classificationThreeList = []
- this.ShopService.GetPrimaryThreeLevelClassification({smallTypeId:value}).then(response =>{
- const data = response.data
- data.forEach(item =>{
- let _obj = {name:item.name,value:item.tinyTypeID}
- this.classificationThreeList.push(_obj)
- })
- }).catch(error =>{
- this.$util.msg(error.msg,2000)
- })
- },
- hideMobel(){
- this.modal = false;
- },
- updateCheckAllBtn() {//勾选单个判断全选
- let goodsCheckedLength = 0
- this.dataList.forEach(item => {
- if(item.isChecked) { goodsCheckedLength++; }
- })
- this.isAllChecked = goodsCheckedLength === this.dataList.length;
- if(goodsCheckedLength>0){
- this.isProductChecked = true
- }else{
- this.isProductChecked = false
- }
- },
- updateBothCheckBtn() {//全选勾选判断
- this.dataList.forEach((item)=>{
- item.isChecked = this.isAllChecked
- })
- },
- isCheckedAll(){//全选
- this.isAllChecked = !this.isAllChecked
- if(this.isAllChecked){
- this.isProductChecked = true
- }else{
- this.isProductChecked = false
- }
- this.updateBothCheckBtn()
- },
- checkedSoperv(item){//选择
- item.isChecked = !item.isChecked
- console.log(item)
- this.updateCheckAllBtn()
- },
- supervClickFn(){//管理全选
- this.isSuperv = true
- },
- closeSupervFn(){
- this.isSuperv = false
- },
- searchClickFn() {//弹出抽屉
- this.rightDrawer = true;
- },
- closeDrawer(e) {//关闭抽屉
- this.leftDrawer = false;
- this.rightDrawer = false;
- },
- orderPriceToFixed (n){
- let price ='';
- price = Number(n).toFixed(2);
- return price
- },
- verifyColorFilter: function(state){
- let stateColor = '',
- stateColorObject={
- 0:'#FFB12A',
- 1:'#f9a94b',
- 2:'#1890f9',
- 3:'#627386',
- 8:'#FF2A2A',
- 9:'#f94b4b'
- };
- Object.keys(stateColorObject).forEach(function(key){
- if(key == state){
- stateColor = stateColorObject[key]
- }
- });
- return stateColor;
- },
- },
- onPageScroll(e){//实时获取到滚动的值
- if(e.scrollTop>30){
- this.isCmcustomClass = 'fiexd'
- }else{
- this.isCmcustomClass = 'left'
- }
- },
- onReachBottom() {
- if(this.hasNextPage){
- this.loadding = true
- this.pullUpOn = true
- this.GetOnReachBottomData()
- }
- },
- onPullDownRefresh() {
- setTimeout(() => {
- this.listQuery.pageNum = 1
- uni.stopPullDownRefresh()
- }, 200)
- },
- onShow(){
-
- }
- }
- </script>
- <style lang="scss">
- @import "@/uni.scss";
- page{
- background:#FFF;
- }
- .empty-container{
- z-index: 9999;
- }
- .superv-header{
- width: 100%;
- height: 80rpx;
- background-color: #F7F7F7;
- line-height: 80rpx;
- position: fixed;
- top: 0;
- left: 0;
- box-sizing: border-box;
- padding: 0 24rpx;
- z-index: 999;
- .superv-header-click{
- width: 100%;
- height: 80rpx;
- font-size: $font-size-30;
- .oltext{
- width: 120rpx;
- float: left;
- color: #666666;
- }
- .ortext{
- width: 120rpx;
- float: right;
- color: $color-system;
- text-align: right;
- }
- }
- .superv-header-checked{
- width: 100%;
- height: 80rpx;
- font-size: $font-size-30;
- .oltext{
- width: 120rpx;
- float: left;
- color: #666666;
- display: flex;
- margin-left: 10rpx;
- .checkbox{
- display: flex;
- margin: 0;
- padding: 0;
- display: flex;
- flex-direction: column;
- align-items: center;
- box-sizing: border-box;
- text-align: center;
- text-decoration: none;
- border-radius: 0;
- -webkit-tap-highlight-color: transparent;
- overflow: hidden;
- font-size: 34rpx;
- color:$color-system;
- line-height: 80rpx;
- }
- .text{
- float: left;
- line-height: 80rpx;
- margin-left: 15rpx;
- }
- }
- .ortext{
- width: 120rpx;
- float: right;
- color: $color-system;
- text-align: right;
- }
- }
- }
- .d-container {
- width: 560rpx;
- padding: 80rpx 30rpx;
- .d-title{
- width: 100%;
- height:80rpx;
- line-height: 80rpx;
- text-align: center;
- color: #4688fa;
- font-size: $font-size-32;
- float: left;
- }
- .d-time{
- width: 100%;
- height: 70rpx;
- float: left;
- box-sizing: border-box;
- padding: 0 10rpx;
- border: 1px solid rgba(0,0,0,0.2);
- border-radius: 4rpx;
- margin-bottom: 30rpx;
- .iconfont{
- width:70rpx;
- height: 60rpx;
- display: block;
- float: left;
- font-size: 50rpx;
- color: #666666;
- line-height: 70rpx;
- text-align: left;
- }
- .input{
- width: 220rpx;
- height: 70rpx;
- line-height: 70rpx;
- float: left;
- box-sizing: border-box;
- font-size: $font-size-24;
- color: #333333;
- padding: 0 10rpx;
- }
- }
- .d-label{
- width: 100%;
- height: 44rpx;
- line-height: 44rpx;
- text-align: left;
- color: #666666;
- font-size: $font-size-26;
- float: left;
- }
- .d-input{
- width: 100%;
- height: 70rpx;
- float: left;
- box-sizing: border-box;
- padding: 0 10rpx;
- border: 1px solid rgba(0,0,0,0.2);
- border-radius: 4rpx;
- margin-bottom: 30rpx;
- position: relative;
- &.btn{
- border: none;
- margin-top: 40rpx;
- }
- .input{
- width: 100%;
- height: 70rpx;
- line-height: 70rpx;
- float: left;
- box-sizing: border-box;
- font-size: $font-size-24;
- color: #333333;
- padding: 0 10rpx;
- padding-right: 68rpx;
- }
- .iconfont{
- width: 50rpx;
- height: 68rpx;
- display: block;
- line-height: 68rpx;
- text-align: center;
- font-size: 30rpx;
- color: #999999;
- position: absolute;
- right: 0;
- top: 0;
- }
- .d-btn{
- width: 210rpx;
- height: 84rpx;
- border-radius: 42rpx;
- background: $btn-confirm;
- line-height: 84rpx;
- text-align: center;
- font-size: $font-size-26;
- color: #FFFFFF;
- float: right;
- &.comfrim{
- background: $btn-confirm;
- margin-left: 20rpx;
- }
- &.clear{
- background: #e1e1e1;
- }
- }
- }
- }
- .tui-header {
- width: 100%;
- font-size: 16px;
- font-weight: 500;
- height: 32px;
- display: flex;
- align-items: center;
- justify-content: center;
- position: relative;
- padding: 0 40rpx;
- }
- .header-sit{
- width:100%;
- box-sizing: border-box;
- height: 80rpx;
- line-height: 80rpx;
- box-sizing: border-box;
- padding:0 40rpx;
- text-align: left;
- font-size: $font-size-40;
- color: #FFFFFF;
- font-weight: 600;
- font-family: '正楷';
- margin-top: 30rpx;
- .iconfont{
- font-size: 42rpx;
- margin-left: 30rpx;
- }
- }
- .mine{
- width: 100%;
- height: 100%;
- position:relative;
- }
- .product-content{
- width: 100%;
- height: auto;
- position: relative;
- padding:0;
- padding-top: 80rpx;
- box-sizing: border-box;
- .header-tabs{
- width: 100%;
- height: auto;
- margin-bottom: 40rpx;
- padding: 20rpx;
- border-radius: 20rpx;
- background:#4688fa;
- box-sizing: border-box;
- &.day{
- background:#FFFFFF;
- padding:40rpx 20rpx;
- box-shadow:0px 3px 6px rgba(0,0,0,0.2);
- }
- .title{
- font-size: $font-size-36;
- line-height: 60rpx;
- color: #FFF;
- font-weight: bold;
- margin-bottom: 20rpx;
- }
- .main{
- width: 100%;
- height: 110rpx;
- .main-item{
- float: left;
- width:20%;
- text-align: center;
- color: #FFFFFF;
- box-sizing: border-box;
- &.active{
- .iconfont{
- color: #576efa;
- }
- .text{
- font-weight: bold;
- color:#576efa ;
- font-size: $font-size-28;
- }
- }
- .text{
- width: 100%;
- height:60rpx;
- line-height: 60rpx;
- display: block;
- float: left;
- font-size:$font-size-24;
- color: #666666;
- text-align: center;
- &.nm{
- color: #222222;
- height:40rpx;
- line-height: 40rpx;
- font-size: $font-size-32;
- font-weight: bold;
- }
- }
- .iconfont{
- font-size:50rpx;
- color: #7aa5fa ;
- position: relative;
- .badg{
- padding: 0 10rpx;
- height: 30rpx;
- display: inline-block;
- font-size: $font-size-24;
- text-align: center;
- line-height: 30rpx;
- background-color: #ff4759;
- color: #FFF;
- position: absolute;
- top: -15rpx;
- right:20rpx;
- border-radius: 15rpx;
- }
- }
- }
- }
- }
- .tui-header-btm {
- width: 100%;
- padding: 0 30rpx;
- box-sizing: border-box;
- display: flex;
- align-items: center;
- justify-content: space-between;
- color: #fff;
- }
- .tui-btm-item {
- flex: 1;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- }
-
- .tui-btm-num {
- font-size: 32rpx;
- font-weight: 600;
- position: relative;
- }
- .tui-btm-text {
- font-size: 24rpx;
- opacity: 0.85;
- padding-top: 4rpx;
- }
- }
- .tui-goods-item {
- display: flex;
- padding: 30rpx 20rpx;
- box-sizing: border-box;
- border-bottom: 1px solid #EBEBEB;
- position: relative;
- }
- .tui-goods-checkBox{
- display: flex;
- align-items: center;
- margin: 0 15rpx;
- .checkbox{
- display: flex;
- margin: 0;
- padding: 0;
- display: flex;
- flex-direction: column;
- align-items: center;
- box-sizing: border-box;
- text-align: center;
- text-decoration: none;
- border-radius: 0;
- -webkit-tap-highlight-color: transparent;
- overflow: hidden;
- background-color:#FFFFFF;
- font-size: 36rpx;
- color:$color-system;
- }
- .text{
- font-size: $font-size-24;
- margin-left: 10rpx;
- }
- }
- .tui-goods-image{
- width: 180rpx;
- height: 180rpx !important;
- border-radius: 12rpx;
- .tui-goods-img {
- width: 180rpx;
- height: 180rpx !important;
- border-radius: 12rpx;
- flex-shrink: 0;
- display: block;
- }
- }
- .tui-goods-info {
- padding-left: 20rpx;
- display: flex;
- flex-direction: column;
- align-items: flex-start;
- justify-content: space-between;
- box-sizing: border-box;
- overflow: hidden;
- position: relative;
- }
- .tui-goods-status{
- width: 160rpx;
- position: absolute;
- right: 0;
- .status-text{
- font-size: $font-size-24;
- line-height: 44rpx;
- text-align: center;
- color: #666666;
- }
- }
- .tui-goods-title {
- white-space: normal;
- word-break: break-all;
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- font-size: 26rpx;
- color: #333;
- line-height: 44rpx;
- }
- .tui-goods-pip{
- white-space: normal;
- word-break: break-all;
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- font-size: 24rpx;
- color: #999;
- line-height: 44rpx;
- }
- .tui-goods-ediet{
- width: 60rpx;
- height: 60rpx;
- background: linear-gradient(90deg,rgba(122,165,250,1) 0%,rgba(87,110,250,1) 100%);
- border-radius: 50%;
- line-height: 60rpx;
- text-align: center;
- position: absolute;
- right: 0;
- top: 50%;
- .icon-bianji1 {
- flex-shrink: 0;
- display: flex;
- align-items: center;
- justify-content: center;
- color: #FFFFFF;
- font-size: 24rpx;
- }
- }
- .tui-goods-model {
- max-width: 100%;
- color: #FFFFFF;
- background: #4688fa;
- border-radius: 40rpx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 0 20rpx;
- box-sizing: border-box;
- margin-top: 10rpx;
- }
-
- .tui-model-text {
- max-width: 100%;
- transform: scale(0.9);
- transform-origin: 0 center;
- font-size: 24rpx;
- line-height: 40rpx;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
-
- .tui-price-box {
- width: 100%;
- display: flex;
- align-items: flex-end;
- justify-content: space-between;
- }
-
- .tui-goods-price {
- font-size: $font-size-28;
- font-weight: 500;
- color: #FF201F;
- }
- .tui-popup-box {
- position: relative;
- box-sizing: border-box;
- min-height: 200rpx;
- padding:6rpx 24rpx;
- }
- .tui-popup-btn {
- width: 100%;
- height: auto;
- float: left;
- box-sizing: border-box;
- padding: 0 75rpx;
- margin-top: 30rpx;
- .tui-button{
- width: 600rpx;
- height: 88rpx;
- background: #e1e1e1;
- line-height: 88rpx;
- text-align: center;
- color: #FFFFFF;
- font-size: $font-size-28;
- border-radius: 44rpx;
- &.active{
- background: $btn-confirm;
- }
- }
- }
- </style>
|