Commit 48d77ffe by 李嘉林

无用代码删除

parent d3354a5a
...@@ -19,15 +19,15 @@ exports.cssLoaders = function (options) { ...@@ -19,15 +19,15 @@ exports.cssLoaders = function (options) {
var cssLoader = { var cssLoader = {
loader: 'css-loader', loader: 'css-loader',
options: { options: {
minimize: (process.env.NODE_ENV === 'production' || process.env.NODE_ENV == 'xhyx_prod'), minimize: true,
sourceMap: options.sourceMap sourceMap: false
} }
} }
var postcssLoader = { var postcssLoader = {
loader: 'postcss-loader', loader: 'postcss-loader',
options: { options: {
sourceMap: true sourceMap: false
} }
} }
......
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -33,8 +33,6 @@ ...@@ -33,8 +33,6 @@
"mayi-front-tools": "^1.0.3", "mayi-front-tools": "^1.0.3",
"mpvue": "^2.0.0", "mpvue": "^2.0.0",
"mpvue-wxparse": "^0.6.5", "mpvue-wxparse": "^0.6.5",
"posthog-js": "^1.39.1",
"posthog-node": "^2.2.3",
"sa-sdk-miniprogram": "^1.20.2", "sa-sdk-miniprogram": "^1.20.2",
"vuex": "^3.0.1", "vuex": "^3.0.1",
"we-cropper": "^1.4.0", "we-cropper": "^1.4.0",
......
<template>
<!-- 视频组件 -->
<div class="video-player">
<div class="title" v-if="datas.componentData['title']">
<p>{{datas.componentData['title']}}</p>
</div>
<div class="main">
<!-- url展示 -->
<div class="isVideo" v-show="datas.componentData['type']<3">
<video
bindplay="pauseVideo"
bindended="videoEnd"
ref="videoPlayer"
:show-center-play-btn="isPlay&&!datas.componentData['nativeControl']?true:false"
type="video/mp4"
width="100%"
:src="videoUrl"
:loop="datas.componentData['loopPlay']"
:controls="datas.componentData['nativeControl']"
:webkit-playsinline="true"
:x5-video-player-type="'h5-page'"
:x5-video-player-fullscreen="true"
:playsinline="true"
:poster="videoPoster"
></video>
</div>
<!-- 代码片段展示 -->
<div
class="isCodeSnippets"
v-show="datas.componentData['type']==3&&datas.componentData['codeSnippet']!=''"
>
<wxParse :content="datas.componentData['codeSnippet']" />
</div>
</div>
</div>
</template>
<script type="text/ecmascript-6">
import wxParse from 'mpvue-wxparse'
export default {
name: "video-player",
props: {
datas: {
type: Object,
default: function() {
return {
id: "",
pageCode: 0,
pageType: 0,
queueNumber: 0,
componentName: "视频",
componentCode: "video-player",
code: 1,
componentData: {
// 1:手动上传 2:网络地址 3:代码片段
type: 1,
// 是否展示原生控件
nativeControl: false,
// 是否循环播放
loopPlay: false,
// 是否全屏播放
fullScreenPlay: false,
title: "视频",
videoUrl: "",
codeSnippet: ""
}
};
}
}
},
components: {
wxParse
},
data() {
return {
isPlay: true
};
},
watch: {
videoUrl() {
this.$refs.videoPlayer.src = this.videoUrl;
},
videoPoster(){
this.$refs.videoPlayer.poster = this.videoPoster;
this.$refs.videoPlayer.src = this.videoUrl;
}
},
computed: {
videoUrl() {
return this.datas.componentData["videoUrl"];
},
videoPoster() {
return this.datas.componentData["poster"];
}
},
created() {},
mounted() {},
methods: {
// 播放暂停
pauseVideo() {
if(this.datas.componentData['nativeControl'])return;
this.$refs.videoPlayer.pause();
this.isPlay = true;
},
// 播放开始
playVideo() {
if(!this.render)return;
this.$refs.videoPlayer.play();
this.isPlay = false;
},
// 播放结束
videoEnd(){
if(!this.datas.componentData['nativeControl']){
this.isPlay=true;
}
}
}
};
</script>
<style lang="scss" scoped>
@import url("~mpvue-wxparse/src/wxParse.css");
.video-player {
.title {
font-size: 18px;
padding: 10px 20px;
color: #333;
font-weight: bold;
}
.main {
width: 100%;
.isVideo {
width: 100%;
position: relative;
.playerBtn {
position: absolute;
top: 50%;
left: 50%;
width: 60px;
height: 60px;
margin-top: -30px;
margin-left: -30px;
border-radius: 50%;
overflow: hidden;
img {
width: 60px;
height: 60px;
}
}
video{
width:100%;
}
}
.isCodeSnippets {
width: 100%;
video{
width: 100%;
}
}
}
}
</style>
<template>
<div class="mpvueCropper">
<div class="canvasBg">
<canvas
v-if="_canvasId"
:canvasId="_canvasId"
@touchstart="touchstart"
@touchmove="touchmove"
@touchend="touchend"
disable-scroll
:style="{
width: _width + 'px',
height: _height + 'px',
background: 'rgba(0, 0, 0, .8)',
}"
>
</canvas>
<canvas
v-if="_targetId"
:canvas-id="_targetId"
disable-scroll
:style="{
position: 'fixed',
top: -_width * _pixelRatio + 'px',
left: -_height * _pixelRatio + 'px',
width: _width * _pixelRatio + 'px',
height: _height * _pixelRatio + 'px',
}"
>
</canvas>
</div>
<div class="btn flex">
<div class="btn-cont flex">
<div class="cancel" @click="cancelSelect">取消</div>
<div @click="selectImg">确定</div>
</div>
</div>
</div>
</template>
<script>
import WeCropper from "we-cropper";
import index from "@/api/index";
export default {
name: "mpvue-cropper",
props: {
option: {
type: Object,
},
},
data() {
return {
_wecropper: null,
selectImgUrl: "",
ossConfig: {},
};
},
computed: {
_canvasId() {
return this.option.id;
},
_targetId() {
return this.option.targetId;
},
_width() {
return this.option.width;
},
_height() {
return this.option.height;
},
_pixelRatio() {
return this.option.pixelRatio;
},
},
methods: {
touchstart($event) {
this._wecropper.touchStart($event.mp);
},
touchmove($event) {
this._wecropper.touchMove($event.mp);
},
touchend($event) {
this._wecropper.touchEnd($event.mp);
},
pushOrigin(src) {
this._wecropper.pushOrign(src);
},
updateCanvas() {
this._wecropper.updateCanvas();
},
getCropperBase64(fn) {
return this._wecropper.getCropperBase64(fn);
},
getCropperImage(opt, fn) {
return this._wecropper.getCropperImage(opt, fn);
},
init() {
console.log(this.option.src, "-----------97");
this._wecropper = new WeCropper(
Object.assign(this.option, {
id: this._canvasId,
targetId: this._targetId,
pixelRatio: this._pixelRatio,
})
)
.on("ready", (...args) => {
this.$emit("ready", ...args);
})
.on("beforeImageLoad", (...args) => {
this.$emit("beforeImageLoad", ...args);
})
.on("imageLoad", (...args) => {
this.$emit("imageLoad", ...args);
})
.on("beforeDraw", (...args) => {
this.$emit("beforeDraw", ...args);
});
},
selectImg() {
let _this = this;
this._wecropper.getCropperImage().then((path) => {
console.log(path, "---path");
wx.showLoading({
title: "生成中...",
});
this.fileName = `${_this.ossConfig.dir}${path.split('/')[path.split('/').length-1]}`
wx.uploadFile({
url: `${ _this.ossConfig.host}`,
filePath: path,
name: "file",
formData: {
key: _this.fileName,
OSSAccessKeyId: _this.ossConfig.accessid,
policy: _this.ossConfig.policy,
signature: _this.ossConfig.signature,
success_action_status: "200",
},
success(res) {
console.log(res, "-----------118--success");
if (res.statusCode == 200) {
let host = _this.ossConfig.host.substr(-1) == '/'?_this.ossConfig.host:`${_this.ossConfig.host}/`
_this.selectImgUrl = `${host}${_this.fileName}`;
wx.setStorageSync("wo-selectImgUrl", _this.selectImgUrl);
wx.hideLoading();
wx.showToast({
title: "成功",
icon: "success",
duration: 1000,
});
setTimeout(() => {
wx.navigateBack();
}, 1000);
} else {
wx.showToast({
title: "生成失败",
icon: "error",
duration: 1000,
});
}
//do something
},
fail(res) {
console.log(res, "-----------------fail");
wx.showToast({
title: "生成失败",
icon: "error",
duration: 1000,
});
},
});
});
},
cancelSelect() {
// this.$emit("cancelSelect");
wx.navigateBack();
},
get_oss_config() {
console.log("-----get_oss_config")
index.get_oss_config().then((res) => {
this.ossConfig = res.data;
console.log(this.ossConfig,'--ossConfig')
});
},
random_string(len) {
len = len || 32;
let chars = "ABCDEFGHJKMNPQRSTWXYZabcdefhijkmnprstwxyz2345678";
let maxPos = chars.length;
let pwd = "";
for (let i = 0; i < len; i++) {
pwd += chars.charAt(Math.floor(Math.random() * maxPos));
}
return pwd;
}
},
onLoad() {
console.log('------mc---onLoad')
this.get_oss_config();
if (!this.option) {
return console.warn(
"[mpvue-cropper] 请传入option参数\n参数配置见文档:https://we-plugin.github.io/we-cropper/#/api"
);
}
this.init();
},
};
</script>
<style lang="scss" scoped>
.mpvueCropper {
width: 100vw;
height: 100vh;
background: #000;
}
.btn {
position: fixed;
bottom: 0;
padding: 20px 0;
width: 100%;
justify-content: center;
.btn-cont {
width: 90%;
height: 46px;
border: 1px solid #fff;
border-radius: 46px;
align-items: center;
justify-content: space-around;
overflow: hidden;
.cancel {
border-right: 1px solid #fff;
}
& > div {
display: flex;
align-items: center;
justify-content: center;
font-size: 16px;
color: #fff;
width: 50%;
height: 46px;
&:active {
background: #229df1;
}
}
}
}
</style>
\ No newline at end of file
<template>
<div class="popup-wrap">
<van-popup
:show="productDialogStatus"
position="bottom"
:overlay="true"
@close="close"
custom-style="height:399px;border-top-left-radius: 16px;border-top-right-radius: 16px;z-index:100;"
lock-scoll= "true"
>
<div class="product-title" v-if="productList.length">商品列表({{productList.length}})</div>
<div class="product-list" v-if="productList.length">
<div class="item" v-for="(item,index) in productList" :key="index">
<div class="item-index">{{item.number}}</div>
<div class="item-img">
<image :src="item.productImgUrl" mode="aspectFill" alt=""></image>
</div>
<div class="item-detail">
<div class="product-name text-overflow2">
{{item.productName}}
</div>
<div class="product-bottom">
<div class="product-price">{{item.minPrice}}</div>
<div
class="product-do product-up"
@click="setProductStatus(1,item.productId,item)"
v-if="item.upperScreenState == 0 || item.upperScreenState == 2"
>
上屏
</div>
<div
class="product-do product-down"
@click="setProductStatus(0,item.productId,item)"
v-if="item.upperScreenState == 1"
>
下屏
</div>
</div>
</div>
<van-divider customStyle="height:1px;margin:0"></van-divider>
</div>
</div>
<div class="product-no-list" v-else >
暂无商品
</div>
</van-popup>
</div>
</template>
<script>
export default {
props:{
productDialogStatus:{
type:Boolean,
default:false
},
productList:{
type:Array,
default:null
}
},
data(){
return {
list : [],
}
},
watch:{
productList(newVal){
this.productList = newVal
}
},
created(){
},
methods:{
close(){
this.$emit('hideProductPopup',false)
},
setProductStatus(type,id,item,index){
this.$emit('changeProduct',type,id,item)
}
}
}
</script>
<style scoped lang="scss">
.popup-wrap{
position: relative;
z-index: 100;
}
.product-title{
width: 100%;
height: 45px;
line-height: 45px;
font-size: 16px;
color: #333333;
padding-left: 16.5px;
box-sizing: border-box;
}
.product-list{
width: 100%;
height: 350px;
overflow-y: auto;
.item{
display: flex;
justify-content: space-between;
padding: 16px 16.5px;
border-bottom: 1rpx solid #EEEEED;
position: relative;
.item-index{
position: absolute;
width: 19px;
height: 16px;
color: white;
text-align: center;
line-height: 16px;
background-color: #999;
border-top-left-radius: 4px;
border-bottom-right-radius: 4px;
font-size: 12px;
}
.item-img{
width: 90px;
height: 90px;
border-radius:4px;
background-color: #B1B1B1;
margin-right: 16.5px;
overflow: hidden;
image{
width: 100%;
height: 100%;
object-fit: cover;
}
}
.item-detail{
width: 220.5px;
position: relative;
.product-name{
font-size: 15px;
color: #333333;
}
.product-bottom{
width: 100%;
margin-top: 25px;
position: absolute;
bottom: 0;
left: 0;
.product-price{
font-size: 18px;
color: #FF0000;
float: left;
}
.product-do{
width: 64px;
height: 24px;
text-align: center;
line-height: 24px;
border-radius: 12px;
font-size: 15px;
box-sizing: border-box;
float: right;
}
.product-up{
color: white;
background-image:-webkit-linear-gradient(to right,#FF877D, #FB566D);
background-image:-moz-linear-gradient(to right,#FF877D, #FB566D);
background-image:-o-linear-gradient(to right,#FF877D, #FB566D);
background-image: linear-gradient(to right,#FF877D, #FB566D);
}
.product-down{
color: #FF4240;
border: 1px solid #FF4240;
}
}
}
}
}
.product-no-list{
text-align: center;
padding-top: 40px;
line-height: 18px;
color: #999;
}
</style>
\ No newline at end of file
<template>
<div class="main">
<div class="restaurant-list">
<div class="header_box">
<div class="card_title">餐馆推荐</div>
<div class="see_more">
<span @click="viewMore">查看更多</span>
<i class="iconfont icon-tubiao_jiyao-xiangyou"></i>
</div>
</div>
<div v-if="!isLoading && showList">
<image class="picture" :src="sourceData.restaurantLogo" mode="aspectFill" alt="" />
<div class="title_box">
<div class="title_text">{{ sourceData.restaurantName }}</div>
<div class="title_tag">{{ sourceData.restaurantLabel }}</div>
</div>
<div class="price_box flex">
<div class="count">
<span>承接次数</span>
<span class="price_text">{{ sourceData.receiveCount }}</span>
</div>
<div class="average">
<span>人均</span>
<span class="price_text">{{ sourceData.perCapitaConsumption }}</span>
</div>
</div>
<div class="address">
<div><i class="iconfont icon-dingwei2"></i></div>
<div class="address_text">{{ merchantAddress }}</div>
</div>
<div class="btn_box">
<div class="left_btn" @click="linkMerchant">联系商家</div>
<div class="right_btn" @click="orderNow">立即预订</div>
</div>
</div>
<div class="noList" v-else-if="!isLoading">
<image src="http://cdn.mayi888.com/public/jpg/0aac085c-aa79-4ef2-94c8-7bce73f94943.jpg" mode="widthFix" />
<p class="info">当前城市暂无入驻商家,敬请期待</p>
</div>
</div>
</div>
</template>
<script>
const app = getApp()
import goods from "@/api/goods.js"
import { DFSImg } from "@/utils/index";
export default {
name: "restaurant-list",
props: {
datas: {
type: Object,
default: () => {
return {};
}
}
},
data() {
return {
showList: false,
isLoading: true,
sourceData: {
address: "",
restaurantLabel: "",
restaurantLogo: "",
restaurantName: "",
},
}
},
components: {},
computed: {
merchantAddress() {
const {
provinceName = "",
cityName = "",
areaName = "",
address = ""
} = this.sourceData
return provinceName + cityName + areaName + address
}
},
created() {
this.DFSImg = app.DFSImg;
},
onLoad(options) {
// console.log(options,'商家推荐options')
console.log("当前的地址", wx.getStorageSync('location'));
let _this = this
wx.getLocation({
type: 'wgs84',
success: function (res) {
_this.getList(res);
},
fail: function (err) {
_this.isLoading = false;
_this.showList = true;
console.log('定位失败', err)
wx.showModal({
title: '提示',
content: '定位失败,请检查是否开启了定位服务',
success(res) {
if (res.confirm) {
console.log('用户点击确定')
} else if (res.cancel) {
console.log('用户点击取消')
}
_this.getList({
longitude: "",
latitude: ""
});
}
})
}
})
},
methods: {
getList(res) {
let query = {
longitude: res.longitude, // 经度
latitude: res.latitude // 纬度
}
console.log('定位数据', res)
goods.getWlyList(query).then((res) => {
console.log(res,'---res')
this.isLoading = false;
if (res.data.code == 200 && res.data.data) {
this.showList = true;
this.sourceData = res.data.data;
this.sourceData.restaurantLogo = DFSImg(res.data.data.restaurantLogo);
console.log(this.sourceData,DFSImg(res.data.data.restaurantLogo), "商家数据");
} else {
this.showList = false;
}
})
},
viewMore() {
let url = "/pages/wxArticle/main?link=" + encodeURIComponent(process.env.WLY_PROD_MARKETING+"/#/pages/restaurantList/index");
app.$themeToLink({
type: 1.2,
link: url
});
},
linkMerchant() {
wx.makePhoneCall({
phoneNumber: this.sourceData.linkPhone
})
},
orderNow() {
let url = process.env.WLY_PROD_MARKETING + '/#/pages/restaurantInfo/index?restaurantId=' + this.sourceData.id + `${wx.getStorageSync("sessionid") ? `&sessionid=${wx.getStorageSync("sessionid")}` : ''}`
console.log(url, "立即预订的接口地址");
let link = "/pages/wxArticle/main?link=" + encodeURIComponent(url);
app.$themeToLink({
type: 1.2,
link: link
});
},
}
}
</script>
<style lang="scss" scoped>
.main {
overflow: hidden;
box-sizing: border-box !important;
}
.restaurant-list {
// height: 320px;
padding: 12px;
background: #ffffff;
border-radius: 4px;
margin: 10px;
.header_box {
display: flex;
align-items: center;
justify-content: space-between;
}
.noList{
image{
width: 40%;
margin: 20px auto 0;
}
.info{
text-align: center;
color: #999;
font-size: 13px;
margin-bottom: 20px;
}
}
.card_title {
text-align: center;
text-transform: uppercase;
font-size: 18px;
color: #0a0a0a;
font-weight: 600;
}
.see_more {
height: 30px;
color: #999999;
display: flex;
align-items: center;
// margin-bottom: 12px;
.jt {
display: inline-block;
border-top: 1px solid;
border-right: 1px solid;
width: 10px;
height: 10px;
-webkit-transform: rotate(-135deg);
transform: rotate(405deg);
margin-left: 0;
}
}
.picture {
width: 100%;
height: 180px;
margin-top: 12px;
}
.title_box {
display: flex;
// font-weight: 500;
font-size: 18px;
color: #333333;
align-items: center;
margin-top: 12px;
.title_text {
font-weight: 600;
}
.title_tag {
margin-left: 8px;
height: 18px;
font-size: 10px;
line-height: 18px;
border-radius: 2px;
background: #ffe5e7;
color: #e1000f;
text-align: center;
padding: 0 6px;
}
}
.price_box {
margin-top: 6px;
font-size: 12px;
color: #666666;
.count {
margin-right: 12px;
}
.price_text {
margin-left: 6px;
color: #e1000f;
}
}
.address {
margin-top: 12px;
font-size: 14px;
display: flex;
align-items: center;
.address_text {
margin-left: 8px;
}
}
.btn_box {
display: flex;
justify-content: flex-end;
font-size: 16px;
margin-top: 12px;
.left_btn {
padding: 4px 16px;
background: #ffffff;
border-radius: 22px;
color: #e1000f;
border: 1px solid #e1000f;
margin-right: 12px;
}
.right_btn {
padding: 4px 16px;
background: #e1000f;
border-radius: 22px;
color: #ffffff;
border: 1px solid #e1000f;
}
}
}
</style>
<template>
<div class="setting-wrap">
<div class="set-box">
<div class="set-content" :style="{'bottom':isLive ? '150px' : '190px'}">
<div class="beauty" v-show="active == 1">
<slider
left-icon="cancel"
right-icon="success_no_circle"
min="0"
max="9"
:value="beauty"
activeColor="#FF9900"
block-color="#FF9900"
block-size="24"
@changing="setBeauty"
/>
</div>
<div class="whitening" v-show="active == 2">
<slider
left-icon="cancel"
right-icon="success_no_circle"
min="0"
max="9"
:value="whiteness"
activeColor="#FF9900"
block-color="#FF9900"
block-size="24"
@changing="setWhiteness"
/>
</div>
<div class="clear" v-show="active == 3">
<div class="clear-content">
<div class="clear-item" v-for="(item,index) in clearList" @click="setClear(item)" :key="index">
<div class="clear-item-name" :class="item.id == clearActive ? 'clear-active' :''">{{item.name}}</div>
</div>
</div>
</div>
<div class="equipment-wrap" v-show="active == 4">
<div class="equipment">
<div class="equ-item" v-for="(item,index) in equipmentList" :key="index" @click="equipmentSet(item,index)">
<div class="equ-item-img">
<!-- <img :src="item.imgActive" v-if="item.active" alt=""> -->
<img :src="item.img" alt="">
</div>
<div class="equ-item-name">
{{item.name}}
</div>
</div>
</div>
</div>
</div>
<div class="select-wrap">
<div class="select-list">
<div class="item" v-for="(item,index) in selectList" :key="index" @click="active = item.id">
<div class="item-img">
<img :src="item.img" v-show="item.id != active" alt="">
<img :src="item.activeImg" v-show="item.id == active" alt="">
</div>
<div class="item-name">
{{item.name}}
</div>
</div>
</div>
<div class="start-btn" @click="startLive" v-if="!isLive && liveInfo.liveBroadcastState == 0">
确认开始
</div>
</div>
</div>
</div>
</template>
<script>
export default {
props:{
pusher:{
type:Object,
default:null
},
//美颜
beauty:{
type:Number,
default:0
},
//美白
whiteness:{
type:Number,
default:0
},
//清晰度
clear:{
type:String,
default:'HD'
},
//前置或后置
devicePosition:{
type:String,
default:'front'
},
//麦克风是否开启
enableMic:{
type:Boolean,
default : true
},
//镜像
remoteMirror:{
type:String,
default : 'enable'
},
//是否在直播
isLive:{
type:Boolean,
default:false
},
liveInfo:{
type:Object,
default:null
}
},
data(){
return{
selectList:[
{
id : 1,
name : '美颜',
img : require('../../../static/images/meiyan.png'),
activeImg : require('../../../static/images/meiyan1.png')
},
{
id : 2,
name : '美白',
img : require('../../../static/images/meibai.png'),
activeImg : require('../../../static/images/meibai1.png')
},
{
id : 3,
name : '清晰度',
img : require('../../../static/images/qingxi.png'),
activeImg : require('../../../static/images/qingxi1.png')
},
{
id : 4,
name : '设备',
img : require('../../../static/images/shebei.png'),
activeImg : require('../../../static/images/shebei1.png')
}
],
active : 1,
equipmentList :[
{
id : 1,
name : '反转',
img :require('../../../static/images/xiangji.png'),
imgActive : require('../../../static/images/xiangji1.png'),
active : true,
},
{
id : 2,
name : '镜像',
img :require('../../../static/images/jingxiang.png'),
imgActive : require('../../../static/images/jingxiang1.png'),
active : false,
},
{
id : 3,
name : '声音',
img :require('../../../static/images/shengyin.png'),
imgActive : require('../../../static/images/shengyin1.png'),
active : true,
}
],
clearList:[
{
id : 1,
name : '标清',
val : 'SD'
},
{
id : 2,
name : '高清',
val : 'HD'
},
{
id : 3,
name : '超清',
val : 'FHD'
}
],
clearActive:2,
}
},
methods:{
setBeauty(e){
this.$emit('updateBeauty',e.mp.detail.value)
},
setWhiteness(e){
this.$emit('updateWhiteness',e.mp.detail.value)
},
setClear(item){
this.clearActive = item.id;
this.$emit('updateClear',item.val)
},
equipmentSet(item,index){
//反转
if(item.id == 1){
this.pusher.switchCamera({
success : (res) => {
if(res.errMsg == 'operateXWebLivePusher:ok'){
this.$set(this.equipmentList[index],'active',!item.active)
}
}
})
}else if(item.id == 2){
this.$set(this.equipmentList[index],'active',!item.active)
this.$emit('updateRemoteMirror',this.remoteMirror == 'disable' ? 'enable' : 'disable')
}else if(item.id == 3){
this.$set(this.equipmentList[index],'active',!item.active)
this.$emit('updateEnableMic',this.enableMic == true ? false : true)
}
},
//开始直播
startLive(){
this.$emit('setBeautyStart','start')
}
}
}
</script>
<style lang="scss" scoped>
.set-content{
width: 289px;
position: fixed;
left: 50%;
margin-bottom: 60px;
margin-left: -149px;
.beauty,.whitening{
padding: 0 18px;
box-sizing: border-box;
}
.clear{
.clear-content{
display: flex;
justify-content:space-between;
.clear-item{
display: flex;
align-items: flex-end;
.clear-item-name{
font-size: 19px;
color: white;
}
.clear-active{
font-size: 30px;
position: relative;
&::after{
content: "";
position: absolute;
width: 7px;
height: 7px;
background-color: #FF9900;
border-radius: 50%;
bottom: -12px;
left: 50%;
margin-left: -3.5px;
}
}
}
}
}
.equipment-wrap{
.equipment{
display: flex;
justify-content: space-around;
align-items: center;
.equ-item{
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
&:nth-child(1){
.equ-item-img{
width: 26.5px;
height: 21px;
}
}
&:nth-child(2){
.equ-item-img{
width: 27px;
height: 24.5px;
}
}
&:nth-child(3){
.equ-item-img{
width: 25px;
height: 21.5px;
}
}
&:nth-child(4){
.equ-item-img{
width: 24.5px;
height: 24px;
}
}
.equ-item-img{
img{
width: 100%;
height: 100%;
}
}
.equ-item-name{
font-size: 12px;
color: white;
margin-top: 13px;
}
.name-active{
color: #FF9900;
}
}
}
}
}
.select-wrap{
width: 289px;
// height: 265px;
padding-bottom: 15px;
background-color: rgba(0,0,0,.5);
border-radius: 5px;
position: fixed;
bottom: 82px;
left: 50%;
margin-left: -145.5px;
box-sizing: border-box;
.select-list{
display: flex;
justify-content: space-around;
align-items: center;
padding-top: 13px;
.item{
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
&:nth-child(1){
.item-img{
width: 28px;
height:27px;
}
}
&:nth-child(2){
.item-img{
width: 23px;
height: 30px;
}
}
&:nth-child(3){
.item-img{
width:30px;
height: 30px;
}
}
&:nth-child(4){
.item-img{
width: 29px;
height: 29px;
}
}
.item-img{
img{
width: 100%;
height: 100%;
}
}
.item-name{
font-size: 12px;
color: white;
margin-top: 10px;
}
}
}
.start-btn{
width: 144px;
height: 39.5px;
text-align: center;
line-height: 39.5px;
font-size: 18px;
color: white;
border-radius: 5px;
margin: 10px auto 0;
background-image:-webkit-linear-gradient(to right,#FF877D, #FB566D);
background-image:-moz-linear-gradient(to right,#FF877D, #FB566D);
background-image:-o-linear-gradient(to right,#FF877D, #FB566D);
background-image: linear-gradient(to right,#FF877D, #FB566D);
}
}
</style>
\ No newline at end of file
...@@ -165,7 +165,6 @@ import bottomCont from "../../components/bottomCont" ...@@ -165,7 +165,6 @@ import bottomCont from "../../components/bottomCont"
import ThemeDataPlant from "../../components/ThemeDataPlant" import ThemeDataPlant from "../../components/ThemeDataPlant"
import links from '@/components/basicTool/link/index.vue' import links from '@/components/basicTool/link/index.vue'
import interval from '@/components/basicTool/interval/index.vue' import interval from '@/components/basicTool/interval/index.vue'
import restaurantList from '../../components/restaurantList'
import partition from '@/components/basicTool/partition/index.vue' import partition from '@/components/basicTool/partition/index.vue'
import shopPopup from '@/components/basicTool/shop-popup/index.vue' import shopPopup from '@/components/basicTool/shop-popup/index.vue'
import woTimeout from '@/components/basicTool/wo-timeout/index.vue' import woTimeout from '@/components/basicTool/wo-timeout/index.vue'
...@@ -193,7 +192,6 @@ import SWQUserSelectTag from "../../components/common/SWQUserSelectTag"; ...@@ -193,7 +192,6 @@ import SWQUserSelectTag from "../../components/common/SWQUserSelectTag";
import { setTabBarActive, checkTabbarPage,themeColor, checkShowConditionIds, setStoreInfo, getStoreInfo } from "../../utils/mayi.js"; import { setTabBarActive, checkTabbarPage,themeColor, checkShowConditionIds, setStoreInfo, getStoreInfo } from "../../utils/mayi.js";
import indexApi from "@/api/index.js"; import indexApi from "@/api/index.js";
import { throttle, concatUrl } from "../../utils/index.js" import { throttle, concatUrl } from "../../utils/index.js"
import mpvueCropper from '@/components/mpvue-cropper'
import tool from '../../utils/tool.js' import tool from '../../utils/tool.js'
import StoreAddr from "@/components/common/StoreAddr.vue"; import StoreAddr from "@/components/common/StoreAddr.vue";
import pageLoading from "@/components/common/pageLoading.vue"; import pageLoading from "@/components/common/pageLoading.vue";
...@@ -239,7 +237,6 @@ export default { ...@@ -239,7 +237,6 @@ export default {
}; };
}, },
components:{ components:{
"restaurant-list":restaurantList,
links, links,
interval, interval,
partition, partition,
...@@ -258,7 +255,6 @@ export default { ...@@ -258,7 +255,6 @@ export default {
NewUser, NewUser,
NewPolite, NewPolite,
birthPopup, birthPopup,
mpvueCropper,
woTimeout, woTimeout,
"custom-list": customList, "custom-list": customList,
"rich-text": richText, "rich-text": richText,
......
import posthog from "posthog-js";
console.log("config.POSTHOG_HOST", process.env.POSTHOG_HOST);
posthog.init(process.env.POSTHOG_KEY, {
api_host: process.env.POSTHOG_HOST,
loaded: posthog => {
// 注册全局属性
posthog.register({
env: process.env.ENV_CONFIG,
project: "ant-responsive-shop"
});
console.log(posthog, "---posthog");
}
});
@import "/static/css/iconfont.wxss"; @import '../../nicon/iconfont.wxss';
@font-face {
font-family: "ant";
src: url('//cdn.mayi888.com/static/font/ant-1841ed06d9.eot');
src: url('//cdn.mayi888.com/static/font/ant-1841ed06d9.eot') format('embedded-opentype'),
url('//cdn.mayi888.com/static/font/ant-001cbaaf89.ttf') format('truetype'),
url('//cdn.mayi888.com/static/font/ant-0d2df1533f.woff') format('woff'),
url('//cdn.mayi888.com/static/font/ant-39fb1c5464.svg') format('svg');
font-weight: normal;
font-style: normal;
}
.antt {
font-family: "ant" !important;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-style: normal;
font-variant: normal;
font-weight: normal;
text-decoration: none;
text-transform: none;
line-height: 1;
}
[class^="ant-"], [class*=" ant-"]{
font-family: "ant" !important;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-style: normal;
font-variant: normal;
font-weight: normal;
text-decoration: none;
text-transform: none;
line-height: 1;
}
.ant-anli:before {
content: "\EA01";
}
.ant-anniu:before {
content: "\EA02";
}
.ant-bangdan:before {
content: "\EA03";
}
.ant-banner-01:before {
content: "\EA04";
}
.ant-bianji:before {
content: "\EA05";
}
.ant-bofang:before {
content: "\EA06";
}
.ant-canting:before {
content: "\EA07";
}
.ant-cart-empty:before {
content: "\EA08";
}
.ant-cha:before {
content: "\EA09";
}
.ant-changjianwenti-line:before {
content: "\EA0A";
}
.ant-chanpinfenlei:before {
content: "\EA0B";
}
.ant-chenggong:before {
content: "\EA0C";
}
.ant-chengweifenxiaoyuan:before {
content: "\EA0D";
}
.ant-daifahuo:before {
content: "\EA0E";
}
.ant-daifukuan:before {
content: "\EA0F";
}
.ant-daipinglun:before {
content: "\EA10";
}
.ant-daishenhedingdan:before {
content: "\EA11";
}
.ant-daishiyong:before {
content: "\EA12";
}
.ant-daishouhuo:before {
content: "\EA13";
}
.ant-danchuang:before {
content: "\EA14";
}
.ant-danmu:before {
content: "\EA15";
}
.ant-daohang:before {
content: "\EA16";
}
.ant-dazhuanpan:before {
content: "\EA17";
}
.ant-dianhua:before {
content: "\EA18";
}
.ant-dianpu-xian:before {
content: "\EA19";
}
.ant-dianpu:before {
content: "\EA1A";
}
.ant-dianzan-line:before {
content: "\EA1B";
}
.ant-dianzan:before {
content: "\EA1C";
}
.ant-dingzhikaquan:before {
content: "\EA1D";
}
.ant-diqudaohang:before {
content: "\EA1E";
}
.ant-dizhi:before {
content: "\EA1F";
}
.ant-dizhiguanli-line:before {
content: "\EA20";
}
.ant-dizhiguanli:before {
content: "\EA21";
}
.ant-dizhiguanlibalack-red:before {
content: "\EA22";
}
.ant-duihuanzhongxinbalack-red:before {
content: "\EA23";
}
.ant-erweima:before {
content: "\EA24";
}
.ant-fanhui-line:before {
content: "\EA25";
}
.ant-fanxianjilu:before {
content: "\EA26";
}
.ant-fanzhuanjingtou:before {
content: "\EA27";
}
.ant-fengexian:before {
content: "\EA28";
}
.ant-fenlei-line:before {
content: "\EA29";
}
.ant-fenxiang-line:before {
content: "\EA2A";
}
.ant-fenxiang-zhibojian:before {
content: "\EA2B";
}
.ant-fenxiang:before {
content: "\EA2C";
}
.ant-fenxiaoshangzhongxinbalack-red:before {
content: "\EA2D";
}
.ant-fenxiaoyuan:before {
content: "\EA2E";
}
.ant-fenxiaoyuanzhongxinbalack-red:before {
content: "\EA2F";
}
.ant-fukuan:before {
content: "\EA30";
}
.ant-fuwenben:before {
content: "\EA31";
}
.ant-fuzhujiange:before {
content: "\EA32";
}
.ant-gerenzhongxin:before {
content: "\EA33";
}
.ant-gonggao:before {
content: "\EA34";
}
.ant-gonglve:before {
content: "\EA35";
}
.ant-gongnengzhida-01:before {
content: "\EA36";
}
.ant-gongnengzhida-kaoxia:before {
content: "\EA37";
}
.ant-gongsidizhi:before {
content: "\EA38";
}
.ant-gongzhonghao:before {
content: "\EA39";
}
.ant-goumaihuiyuanka:before {
content: "\EA3A";
}
.ant-goumaishangpin:before {
content: "\EA3B";
}
.ant-gouwuche-line:before {
content: "\EA3C";
}
.ant-gouwuche-xian:before {
content: "\EA3D";
}
.ant-gouwuche:before {
content: "\EA3E";
}
.ant-gouwudanmu:before {
content: "\EA3F";
}
.ant-haoyoulingqu:before {
content: "\EA40";
}
.ant-hengxiangbiaoqian:before {
content: "\EA41";
}
.ant-home-line:before {
content: "\EA42";
}
.ant-home:before {
content: "\EA43";
}
.ant-hongbao:before {
content: "\EA44";
}
.ant-huanhuo:before {
content: "\EA45";
}
.ant-hufushuang:before {
content: "\EA46";
}
.ant-huiyuan:before {
content: "\EA47";
}
.ant-huiyuanlogo:before {
content: "\EA48";
}
.ant-huiyuanxinxikapian:before {
content: "\EA49";
}
.ant-jiangpai1:before {
content: "\EA4A";
}
.ant-jiangpai2:before {
content: "\EA4B";
}
.ant-jiangpai3:before {
content: "\EA4C";
}
.ant-jiangpinbalack-red:before {
content: "\EA4D";
}
.ant-jifen-colorful:before {
content: "\EA4E";
}
.ant-jifen:before {
content: "\EA4F";
}
.ant-jifenfanbei:before {
content: "\EA50";
}
.ant-jifenzhongxinbalack-red:before {
content: "\EA51";
}
.ant-jingxiang:before {
content: "\EA52";
}
.ant-kaibo:before {
content: "\EA53";
}
.ant-kefu-line:before {
content: "\EA54";
}
.ant-kefu-xian:before {
content: "\EA55";
}
.ant-kefu:before {
content: "\EA56";
}
.ant-kefudianhua:before {
content: "\EA57";
}
.ant-kuaidipeisong-line:before {
content: "\EA58";
}
.ant-kuaidipeisong:before {
content: "\EA59";
}
.ant-lajitong:before {
content: "\EA5A";
}
.ant-leijixiaofeidanshu:before {
content: "\EA5B";
}
.ant-leijixiaofeijine:before {
content: "\EA5C";
}
.ant-lianjie:before {
content: "\EA5D";
}
.ant-lianxikefu:before {
content: "\EA5E";
}
.ant-lianxikefubalack-red:before {
content: "\EA5F";
}
.ant-lipinkadingzhibalack-red:before {
content: "\EA60";
}
.ant-lishizhibo:before {
content: "\EA61";
}
.ant-liwuduose:before {
content: "\EA62";
}
.ant-lunbotu:before {
content: "\EA63";
}
.ant-mima:before {
content: "\EA64";
}
.ant-mofangdaohang:before {
content: "\EA65";
}
.ant-paihangbang:before {
content: "\EA66";
}
.ant-pingjiawujiaoxing:before {
content: "\EA67";
}
.ant-pinglun:before {
content: "\EA68";
}
.ant-pinpailiebiao:before {
content: "\EA69";
}
.ant-pintu:before {
content: "\EA6A";
}
.ant-pintuan:before {
content: "\EA6B";
}
.ant-pintuandingdanbalack-red:before {
content: "\EA6C";
}
.ant-qiandao:before {
content: "\EA6D";
}
.ant-qiyedingdanbalack-red:before {
content: "\EA6E";
}
.ant-quanbushangpin-line:before {
content: "\EA6F";
}
.ant-renzhengxinxi:before {
content: "\EA70";
}
.ant-right:before {
content: "\EA71";
}
.ant-sanjiaoxing:before {
content: "\EA72";
}
.ant-shaitu:before {
content: "\EA73";
}
.ant-shaixuan:before {
content: "\EA74";
}
.ant-shanchu:before {
content: "\EA75";
}
.ant-shanghu:before {
content: "\EA76";
}
.ant-shangjiazhongxin:before {
content: "\EA77";
}
.ant-shangjiazhongxinbalack-red:before {
content: "\EA78";
}
.ant-shangpin:before {
content: "\EA79";
}
.ant-shangpinfenlei:before {
content: "\EA7A";
}
.ant-shangpinliebiao:before {
content: "\EA7B";
}
.ant-shangpintuiguang:before {
content: "\EA7C";
}
.ant-shebei:before {
content: "\EA7D";
}
.ant-shengchenglianjie:before {
content: "\EA7E";
}
.ant-shengchengtupian:before {
content: "\EA7F";
}
.ant-shezhi-:before {
content: "\EA80";
}
.ant-shezhi:before {
content: "\EA81";
}
.ant-shezhibalack-red:before {
content: "\EA82";
}
.ant-shibai:before {
content: "\EA83";
}
.ant-shijian:before {
content: "\EA84";
}
.ant-shimingrenzhengbalack-red:before {
content: "\EA85";
}
.ant-shipin:before {
content: "\EA86";
}
.ant-shoucang-line:before {
content: "\EA87";
}
.ant-shoucang:before {
content: "\EA88";
}
.ant-shouhou:before {
content: "\EA89";
}
.ant-shouji:before {
content: "\EA8A";
}
.ant-shouting-line:before {
content: "\EA8B";
}
.ant-shouting:before {
content: "\EA8C";
}
.ant-shouye:before {
content: "\EA8D";
}
.ant-shuoming:before {
content: "\EA8E";
}
.ant-songlidingdan:before {
content: "\EA8F";
}
.ant-songlidingdanbalack-red:before {
content: "\EA90";
}
.ant-sousuo:before {
content: "\EA91";
}
.ant-sousuomokuai:before {
content: "\EA92";
}
.ant-tansuo-xuanzhong:before {
content: "\EA93";
}
.ant-tianjiatupian:before {
content: "\EA94";
}
.ant-time:before {
content: "\EA95";
}
.ant-tixianjilu:before {
content: "\EA96";
}
.ant-tuanchangdaoshi:before {
content: "\EA97";
}
.ant-tuanchangzhongxin-line:before {
content: "\EA98";
}
.ant-tuanchangzhongxin:before {
content: "\EA99";
}
.ant-tuihuotuikuan:before {
content: "\EA9A";
}
.ant-tuikuan:before {
content: "\EA9B";
}
.ant-tuku:before {
content: "\EA9C";
}
.ant-tupian:before {
content: "\EA9D";
}
.ant-tupianhualang:before {
content: "\EA9E";
}
.ant-tuwen:before {
content: "\EA9F";
}
.ant-wechat:before {
content: "\EAA0";
}
.ant-weishoucang:before {
content: "\EAA1";
}
.ant-weixin-line:before {
content: "\EAA2";
}
.ant-weixinzengsong:before {
content: "\EAA3";
}
.ant-wenben:before {
content: "\EAA4";
}
.ant-wenchuang:before {
content: "\EAA5";
}
.ant-wenzhangkapian-01:before {
content: "\EAA6";
}
.ant-wenzhangkapian:before {
content: "\EAA7";
}
.ant-wode-line:before {
content: "\EAA8";
}
.ant-wode:before {
content: "\EAA9";
}
.ant-wodedingdan:before {
content: "\EAAA";
}
.ant-wodejiangpin:before {
content: "\EAAB";
}
.ant-wodekaquanbalack-red:before {
content: "\EAAC";
}
.ant-wodeshoucangbalack-red:before {
content: "\EAAD";
}
.ant-wodetuandui:before {
content: "\EAAE";
}
.ant-wodeyongjinbalack-red:before {
content: "\EAAF";
}
.ant-wodezuji:before {
content: "\EAB0";
}
.ant-wodezujibalack-red:before {
content: "\EAB1";
}
.ant-wrong:before {
content: "\EAB2";
}
.ant-xiangji:before {
content: "\EAB3";
}
.ant-xianshihuodong:before {
content: "\EAB4";
}
.ant-xianxiamendianbalack-red:before {
content: "\EAB5";
}
.ant-xiaodian:before {
content: "\EAB6";
}
.ant-xiaofeijilu:before {
content: "\EAB7";
}
.ant-xiaofeijilubalack-red:before {
content: "\EAB8";
}
.ant-xiazai:before {
content: "\EAB9";
}
.ant-xiuxizhong:before {
content: "\EABA";
}
.ant-xuanfuanniu:before {
content: "\EABB";
}
.ant-xuanzelianjie:before {
content: "\EABC";
}
.ant-yanzhengma:before {
content: "\EABD";
}
.ant-yidayang:before {
content: "\EABE";
}
.ant-yidong:before {
content: "\EABF";
}
.ant-yijianmaiyang:before {
content: "\EAC0";
}
.ant-yinliang:before {
content: "\EAC1";
}
.ant-yishoucang:before {
content: "\EAC2";
}
.ant-yongjin:before {
content: "\EAC3";
}
.ant-youhuiquan:before {
content: "\EAC4";
}
.ant-zhanghao:before {
content: "\EAC5";
}
.ant-zhaoren:before {
content: "\EAC6";
}
.ant-zhekou:before {
content: "\EAC7";
}
.ant-zhibo:before {
content: "\EAC8";
}
.ant-zhiboshezhi:before {
content: "\EAC9";
}
.ant-zhifuchenggong:before {
content: "\EACA";
}
.ant-zhifushibai:before {
content: "\EACB";
}
.ant-zhinengbiaodan:before {
content: "\EACC";
}
.ant-zhouqiyouhuiquan:before {
content: "\EACD";
}
.ant-zhuangxiushangpinliebiao:before {
content: "\EACE";
}
.ant-zhuangxiuyouhuiquan:before {
content: "\EACF";
}
.ant-zidongdankuangguanggao:before {
content: "\EAD0";
}
.ant-zixun:before {
content: "\EAD1";
}
.ant-zuji:before {
content: "\EAD2";
}
.ant-anli-after:after {
content: "\EA01";
}
.ant-anniu-after:after {
content: "\EA02";
}
.ant-bangdan-after:after {
content: "\EA03";
}
.ant-banner-01-after:after {
content: "\EA04";
}
.ant-bianji-after:after {
content: "\EA05";
}
.ant-bofang-after:after {
content: "\EA06";
}
.ant-canting-after:after {
content: "\EA07";
}
.ant-cart-empty-after:after {
content: "\EA08";
}
.ant-cha-after:after {
content: "\EA09";
}
.ant-changjianwenti-line-after:after {
content: "\EA0A";
}
.ant-chanpinfenlei-after:after {
content: "\EA0B";
}
.ant-chenggong-after:after {
content: "\EA0C";
}
.ant-chengweifenxiaoyuan-after:after {
content: "\EA0D";
}
.ant-daifahuo-after:after {
content: "\EA0E";
}
.ant-daifukuan-after:after {
content: "\EA0F";
}
.ant-daipinglun-after:after {
content: "\EA10";
}
.ant-daishenhedingdan-after:after {
content: "\EA11";
}
.ant-daishiyong-after:after {
content: "\EA12";
}
.ant-daishouhuo-after:after {
content: "\EA13";
}
.ant-danchuang-after:after {
content: "\EA14";
}
.ant-danmu-after:after {
content: "\EA15";
}
.ant-daohang-after:after {
content: "\EA16";
}
.ant-dazhuanpan-after:after {
content: "\EA17";
}
.ant-dianhua-after:after {
content: "\EA18";
}
.ant-dianpu-xian-after:after {
content: "\EA19";
}
.ant-dianpu-after:after {
content: "\EA1A";
}
.ant-dianzan-line-after:after {
content: "\EA1B";
}
.ant-dianzan-after:after {
content: "\EA1C";
}
.ant-dingzhikaquan-after:after {
content: "\EA1D";
}
.ant-diqudaohang-after:after {
content: "\EA1E";
}
.ant-dizhi-after:after {
content: "\EA1F";
}
.ant-dizhiguanli-line-after:after {
content: "\EA20";
}
.ant-dizhiguanli-after:after {
content: "\EA21";
}
.ant-dizhiguanlibalack-red-after:after {
content: "\EA22";
}
.ant-duihuanzhongxinbalack-red-after:after {
content: "\EA23";
}
.ant-erweima-after:after {
content: "\EA24";
}
.ant-fanhui-line-after:after {
content: "\EA25";
}
.ant-fanxianjilu-after:after {
content: "\EA26";
}
.ant-fanzhuanjingtou-after:after {
content: "\EA27";
}
.ant-fengexian-after:after {
content: "\EA28";
}
.ant-fenlei-line-after:after {
content: "\EA29";
}
.ant-fenxiang-line-after:after {
content: "\EA2A";
}
.ant-fenxiang-zhibojian-after:after {
content: "\EA2B";
}
.ant-fenxiang-after:after {
content: "\EA2C";
}
.ant-fenxiaoshangzhongxinbalack-red-after:after {
content: "\EA2D";
}
.ant-fenxiaoyuan-after:after {
content: "\EA2E";
}
.ant-fenxiaoyuanzhongxinbalack-red-after:after {
content: "\EA2F";
}
.ant-fukuan-after:after {
content: "\EA30";
}
.ant-fuwenben-after:after {
content: "\EA31";
}
.ant-fuzhujiange-after:after {
content: "\EA32";
}
.ant-gerenzhongxin-after:after {
content: "\EA33";
}
.ant-gonggao-after:after {
content: "\EA34";
}
.ant-gonglve-after:after {
content: "\EA35";
}
.ant-gongnengzhida-01-after:after {
content: "\EA36";
}
.ant-gongnengzhida-kaoxia-after:after {
content: "\EA37";
}
.ant-gongsidizhi-after:after {
content: "\EA38";
}
.ant-gongzhonghao-after:after {
content: "\EA39";
}
.ant-goumaihuiyuanka-after:after {
content: "\EA3A";
}
.ant-goumaishangpin-after:after {
content: "\EA3B";
}
.ant-gouwuche-line-after:after {
content: "\EA3C";
}
.ant-gouwuche-xian-after:after {
content: "\EA3D";
}
.ant-gouwuche-after:after {
content: "\EA3E";
}
.ant-gouwudanmu-after:after {
content: "\EA3F";
}
.ant-haoyoulingqu-after:after {
content: "\EA40";
}
.ant-hengxiangbiaoqian-after:after {
content: "\EA41";
}
.ant-home-line-after:after {
content: "\EA42";
}
.ant-home-after:after {
content: "\EA43";
}
.ant-hongbao-after:after {
content: "\EA44";
}
.ant-huanhuo-after:after {
content: "\EA45";
}
.ant-hufushuang-after:after {
content: "\EA46";
}
.ant-huiyuan-after:after {
content: "\EA47";
}
.ant-huiyuanlogo-after:after {
content: "\EA48";
}
.ant-huiyuanxinxikapian-after:after {
content: "\EA49";
}
.ant-jiangpai1-after:after {
content: "\EA4A";
}
.ant-jiangpai2-after:after {
content: "\EA4B";
}
.ant-jiangpai3-after:after {
content: "\EA4C";
}
.ant-jiangpinbalack-red-after:after {
content: "\EA4D";
}
.ant-jifen-colorful-after:after {
content: "\EA4E";
}
.ant-jifen-after:after {
content: "\EA4F";
}
.ant-jifenfanbei-after:after {
content: "\EA50";
}
.ant-jifenzhongxinbalack-red-after:after {
content: "\EA51";
}
.ant-jingxiang-after:after {
content: "\EA52";
}
.ant-kaibo-after:after {
content: "\EA53";
}
.ant-kefu-line-after:after {
content: "\EA54";
}
.ant-kefu-xian-after:after {
content: "\EA55";
}
.ant-kefu-after:after {
content: "\EA56";
}
.ant-kefudianhua-after:after {
content: "\EA57";
}
.ant-kuaidipeisong-line-after:after {
content: "\EA58";
}
.ant-kuaidipeisong-after:after {
content: "\EA59";
}
.ant-lajitong-after:after {
content: "\EA5A";
}
.ant-leijixiaofeidanshu-after:after {
content: "\EA5B";
}
.ant-leijixiaofeijine-after:after {
content: "\EA5C";
}
.ant-lianjie-after:after {
content: "\EA5D";
}
.ant-lianxikefu-after:after {
content: "\EA5E";
}
.ant-lianxikefubalack-red-after:after {
content: "\EA5F";
}
.ant-lipinkadingzhibalack-red-after:after {
content: "\EA60";
}
.ant-lishizhibo-after:after {
content: "\EA61";
}
.ant-liwuduose-after:after {
content: "\EA62";
}
.ant-lunbotu-after:after {
content: "\EA63";
}
.ant-mima-after:after {
content: "\EA64";
}
.ant-mofangdaohang-after:after {
content: "\EA65";
}
.ant-paihangbang-after:after {
content: "\EA66";
}
.ant-pingjiawujiaoxing-after:after {
content: "\EA67";
}
.ant-pinglun-after:after {
content: "\EA68";
}
.ant-pinpailiebiao-after:after {
content: "\EA69";
}
.ant-pintu-after:after {
content: "\EA6A";
}
.ant-pintuan-after:after {
content: "\EA6B";
}
.ant-pintuandingdanbalack-red-after:after {
content: "\EA6C";
}
.ant-qiandao-after:after {
content: "\EA6D";
}
.ant-qiyedingdanbalack-red-after:after {
content: "\EA6E";
}
.ant-quanbushangpin-line-after:after {
content: "\EA6F";
}
.ant-renzhengxinxi-after:after {
content: "\EA70";
}
.ant-right-after:after {
content: "\EA71";
}
.ant-sanjiaoxing-after:after {
content: "\EA72";
}
.ant-shaitu-after:after {
content: "\EA73";
}
.ant-shaixuan-after:after {
content: "\EA74";
}
.ant-shanchu-after:after {
content: "\EA75";
}
.ant-shanghu-after:after {
content: "\EA76";
}
.ant-shangjiazhongxin-after:after {
content: "\EA77";
}
.ant-shangjiazhongxinbalack-red-after:after {
content: "\EA78";
}
.ant-shangpin-after:after {
content: "\EA79";
}
.ant-shangpinfenlei-after:after {
content: "\EA7A";
}
.ant-shangpinliebiao-after:after {
content: "\EA7B";
}
.ant-shangpintuiguang-after:after {
content: "\EA7C";
}
.ant-shebei-after:after {
content: "\EA7D";
}
.ant-shengchenglianjie-after:after {
content: "\EA7E";
}
.ant-shengchengtupian-after:after {
content: "\EA7F";
}
.ant-shezhi--after:after {
content: "\EA80";
}
.ant-shezhi-after:after {
content: "\EA81";
}
.ant-shezhibalack-red-after:after {
content: "\EA82";
}
.ant-shibai-after:after {
content: "\EA83";
}
.ant-shijian-after:after {
content: "\EA84";
}
.ant-shimingrenzhengbalack-red-after:after {
content: "\EA85";
}
.ant-shipin-after:after {
content: "\EA86";
}
.ant-shoucang-line-after:after {
content: "\EA87";
}
.ant-shoucang-after:after {
content: "\EA88";
}
.ant-shouhou-after:after {
content: "\EA89";
}
.ant-shouji-after:after {
content: "\EA8A";
}
.ant-shouting-line-after:after {
content: "\EA8B";
}
.ant-shouting-after:after {
content: "\EA8C";
}
.ant-shouye-after:after {
content: "\EA8D";
}
.ant-shuoming-after:after {
content: "\EA8E";
}
.ant-songlidingdan-after:after {
content: "\EA8F";
}
.ant-songlidingdanbalack-red-after:after {
content: "\EA90";
}
.ant-sousuo-after:after {
content: "\EA91";
}
.ant-sousuomokuai-after:after {
content: "\EA92";
}
.ant-tansuo-xuanzhong-after:after {
content: "\EA93";
}
.ant-tianjiatupian-after:after {
content: "\EA94";
}
.ant-time-after:after {
content: "\EA95";
}
.ant-tixianjilu-after:after {
content: "\EA96";
}
.ant-tuanchangdaoshi-after:after {
content: "\EA97";
}
.ant-tuanchangzhongxin-line-after:after {
content: "\EA98";
}
.ant-tuanchangzhongxin-after:after {
content: "\EA99";
}
.ant-tuihuotuikuan-after:after {
content: "\EA9A";
}
.ant-tuikuan-after:after {
content: "\EA9B";
}
.ant-tuku-after:after {
content: "\EA9C";
}
.ant-tupian-after:after {
content: "\EA9D";
}
.ant-tupianhualang-after:after {
content: "\EA9E";
}
.ant-tuwen-after:after {
content: "\EA9F";
}
.ant-wechat-after:after {
content: "\EAA0";
}
.ant-weishoucang-after:after {
content: "\EAA1";
}
.ant-weixin-line-after:after {
content: "\EAA2";
}
.ant-weixinzengsong-after:after {
content: "\EAA3";
}
.ant-wenben-after:after {
content: "\EAA4";
}
.ant-wenchuang-after:after {
content: "\EAA5";
}
.ant-wenzhangkapian-01-after:after {
content: "\EAA6";
}
.ant-wenzhangkapian-after:after {
content: "\EAA7";
}
.ant-wode-line-after:after {
content: "\EAA8";
}
.ant-wode-after:after {
content: "\EAA9";
}
.ant-wodedingdan-after:after {
content: "\EAAA";
}
.ant-wodejiangpin-after:after {
content: "\EAAB";
}
.ant-wodekaquanbalack-red-after:after {
content: "\EAAC";
}
.ant-wodeshoucangbalack-red-after:after {
content: "\EAAD";
}
.ant-wodetuandui-after:after {
content: "\EAAE";
}
.ant-wodeyongjinbalack-red-after:after {
content: "\EAAF";
}
.ant-wodezuji-after:after {
content: "\EAB0";
}
.ant-wodezujibalack-red-after:after {
content: "\EAB1";
}
.ant-wrong-after:after {
content: "\EAB2";
}
.ant-xiangji-after:after {
content: "\EAB3";
}
.ant-xianshihuodong-after:after {
content: "\EAB4";
}
.ant-xianxiamendianbalack-red-after:after {
content: "\EAB5";
}
.ant-xiaodian-after:after {
content: "\EAB6";
}
.ant-xiaofeijilu-after:after {
content: "\EAB7";
}
.ant-xiaofeijilubalack-red-after:after {
content: "\EAB8";
}
.ant-xiazai-after:after {
content: "\EAB9";
}
.ant-xiuxizhong-after:after {
content: "\EABA";
}
.ant-xuanfuanniu-after:after {
content: "\EABB";
}
.ant-xuanzelianjie-after:after {
content: "\EABC";
}
.ant-yanzhengma-after:after {
content: "\EABD";
}
.ant-yidayang-after:after {
content: "\EABE";
}
.ant-yidong-after:after {
content: "\EABF";
}
.ant-yijianmaiyang-after:after {
content: "\EAC0";
}
.ant-yinliang-after:after {
content: "\EAC1";
}
.ant-yishoucang-after:after {
content: "\EAC2";
}
.ant-yongjin-after:after {
content: "\EAC3";
}
.ant-youhuiquan-after:after {
content: "\EAC4";
}
.ant-zhanghao-after:after {
content: "\EAC5";
}
.ant-zhaoren-after:after {
content: "\EAC6";
}
.ant-zhekou-after:after {
content: "\EAC7";
}
.ant-zhibo-after:after {
content: "\EAC8";
}
.ant-zhiboshezhi-after:after {
content: "\EAC9";
}
.ant-zhifuchenggong-after:after {
content: "\EACA";
}
.ant-zhifushibai-after:after {
content: "\EACB";
}
.ant-zhinengbiaodan-after:after {
content: "\EACC";
}
.ant-zhouqiyouhuiquan-after:after {
content: "\EACD";
}
.ant-zhuangxiushangpinliebiao-after:after {
content: "\EACE";
}
.ant-zhuangxiuyouhuiquan-after:after {
content: "\EACF";
}
.ant-zidongdankuangguanggao-after:after {
content: "\EAD0";
}
.ant-zixun-after:after {
content: "\EAD1";
}
.ant-zuji-after:after {
content: "\EAD2";
}
/* ------- */ /* ------- */
.tab-bar { .tab-bar {
position: fixed; position: fixed;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment