123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228 |
- <template>
- <view>
- <view class="tabr">
- <view :class="{on:typeClass=='luck'}" @tap="switchType('luck')">拼手气红包</view><view :class="{on:typeClass=='normal'}" @tap="switchType('normal')">普通红包</view>
- <view class="border" :class="typeClass"></view>
- </view>
- <view class="content" :class="typeClass">
- <view class="luck">
- <view class="row">
- <view class="term">
- 红包个数
- </view>
- <view class="input">
- <input type="number" v-model="redPacket.number" placeholder="输入红包个数" /> 个
- </view>
- </view>
- <view class="row">
- <view class="term">
- 总金额
- </view>
- <view class="input">
- <input type="number" v-model="redPacket.money" placeholder="输入金额" /> 元
- </view>
- </view>
- <view class="tis">
- 小伙伴领取的金额随机
- </view>
- <view class="blessing">
- <input type="text" maxlength="12" placeholder="恭喜发财" v-model="redPacket.title" />
- </view>
- <view class="hand" @tap="hand('luck')">
- 发红包
- </view>
- </view>
- <view class="normal">
- <view class="row">
- <view class="term">
- 红包个数
- </view>
- <view class="input">
- <input type="number" v-model="redPacket.number" placeholder="输入红包个数" /> 个
- </view>
- </view>
- <view class="row">
- <view class="term">
- 单个金额
- </view>
- <view class="input">
- <input type="number" v-model="redPacket.money" placeholder="输入金额" /> 元
- </view>
- </view>
- <view class="tis">
- 小伙伴领取的金额相同
- </view>
- <view class="blessing">
- <input type="text" maxlength="12" placeholder="恭喜发财" v-model="redPacket.title" />
- </view>
- <view class="hand" @tap="hand('normal')">
- 发红包
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- name:'red-envelope',
- props: {
- },
- data() {
- return {
- typeClass:'luck',//normal
- redPacket: {
- title: '恭喜发财,大吉大利',
- money: 0.00,
- number: 0,
- status: 0
- }
- };
- },
- methods:{
- switchType(type){
- this.typeClass = type;
- },
- hand(type){
- //判断数据有效性
- if((!this.redPacket.money)||this.redPacket.money<=0)
- {
- return uni.showToast({title:"金额不能为空",icon:'none'});
- }
- if(this.redPacket.number!=Math.abs(parseInt(this.redPacket.number))){
- return uni.showToast({title:"数量填写大于0的整数",icon:'none'});
- }
- this.redPacket.title = this.redPacket.title ||'恭喜发财';
- this.$emit('sendRedPacket',this.redPacket)
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- page{
- background-color: #F6F7F8;
- }
- view{
- display: flex;
- flex-wrap: wrap;
- }
- .tabr{
- width: 94%;
- height: 105upx;
- padding: 0 5%;
- border-bottom: solid 1upx #dedede;
- view{
- width: 50%;
- height: 100upx;
- justify-content: center;
- align-items: center;
- font-size: 16px;
- font-weight: 600;
- color: #171717;
- }
- .on{
- color: #E3653E;
- font-size: 16px;
- font-weight: 600;
- }
- .border{
- height: 4px;
- background-color: #E3653E;
- -webkit-transition: all .3s ease-out;
- transition: all .3s ease-out;
- margin-top: -3px;
- border-radius: 10px;
- &.normal{
- transform: translate3d(100%,0,0);
- }
- }
-
- }
- .content{
- width: 100%;
- height: 80vh;
- overflow: hidden;
- &.normal{
- .luck{
- transform: translate3d(-100%,0,0);
- }
- .normal{
- transform: translate3d(0,-100%,0);
- }
- }
- .luck,.normal{
-
- transition: all .3s ease-out;
- }
- .luck{
-
- }
- .normal{
- transform: translate3d(100%,-100%,0);
- }
- .row,.tis,.blessing,.hand{
- width: 94%;
- }
- .row,.tis,.blessing{
- border-bottom: #eeeeee solid 3upx;
- }
- .row,.blessing{
- padding: 0 3%;
- background-color: #fff;
- }
- .row,.blessing,.hand{
- height: 100upx;
- align-items: center;
- }
- .row{
- font-size: 25rpx;
- font-weight: 600;
- color: #171717;
- justify-content: space-between;
- flex-wrap: nowrap;
- .term,.input{
- width: 50%;
- }
- .input{
- flex-shrink: 0;
- flex-wrap: nowrap;
- justify-content: flex-end;
- align-items: center;
- input{
- height: 50upx;
- display: flex;
- justify-content: flex-end;
- align-items: center;
- text-align: right;
- margin-right: 20upx;
- font-size: 30upx;
- }
- }
- }
- .tis{
- height: 100upx;
- padding: 30upx 3%;
- font-size: 30upx;
- color: #919191;
- }
- .blessing{
- input{
- width: 100%;
- height: 50upx;
- font-size: 30upx;
- font-weight: 600;
- }
- }
- .hand{
- margin: 30upx 30%;
- color: #fff;
- font-size: 34upx;
- justify-content: center;
- background-color: #F5A48A;
- border-radius: 100upx;
- height: 90upx;
- }
- }
-
- </style>
|