|
@ -0,0 +1,47 @@ |
|
|
|
|
|
<template> |
|
|
|
|
|
<view class="methods-bar"> |
|
|
|
|
|
<view class="mb-top"> |
|
|
|
|
|
<view class="mt-method">现场人数统计方式:按门店</view> |
|
|
|
|
|
<view class="mt-date">{{ date || '' }}</view> |
|
|
|
|
|
</view> |
|
|
|
|
|
<view class="mb-tip">统计方式如需修改请前往后台“散客开关灯规则”处修改</view> |
|
|
|
|
|
</view> |
|
|
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
|
|
<script> |
|
|
|
|
|
export default { |
|
|
|
|
|
data(){ |
|
|
|
|
|
return { |
|
|
|
|
|
date: '' |
|
|
|
|
|
} |
|
|
|
|
|
}, |
|
|
|
|
|
mounted(){ |
|
|
|
|
|
this.$nextTick(() => { |
|
|
|
|
|
this.date = new Date().toLocaleDateString() |
|
|
|
|
|
}) |
|
|
|
|
|
}, |
|
|
|
|
|
methods: { |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
</script> |
|
|
|
|
|
|
|
|
|
|
|
<style lang="scss"> |
|
|
|
|
|
.methods-bar{ |
|
|
|
|
|
padding: 0 24upx; |
|
|
|
|
|
.mb-top{ |
|
|
|
|
|
@include ctf(space-between); |
|
|
|
|
|
.mt-method{ |
|
|
|
|
|
@include flcw(28upx, 40upx, #1A1A1A); |
|
|
|
|
|
} |
|
|
|
|
|
.mt-date{ |
|
|
|
|
|
flex-shrink: 0; |
|
|
|
|
|
@include flcw(28upx, 40upx, #1A1A1A); |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
.mb-tip{ |
|
|
|
|
|
@include flcw(20upx, 28upx, #9C9C9F); |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
</style> |