123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510 |
- <template name="freight">
- <view class="freight-template">
- <!-- 运费信息 -->
- <view class="invoice-freight" @tap.stop="hanldOperationConfim">
- <view class="freight-left">运费</view>
- <view class="freight-right">
- <text class="text-l">{{freightText}}</text>
- <!-- <text class="text" v-if="freightData.freePostFlag == 1">¥{{orderPriceToFixed(freightMoney)}}</text> -->
- <!-- <text class="iconfont icon-chakangengduo"></text> -->
- </view>
- </view>
- <!--底部选择模态层弹窗组件 -->
- <view class="popup spec" :class="specClass" @touchmove.stop.prevent="discard" @click="freightConfim">
- <!-- 遮罩层 -->
- <view class="mask"></view>
- <view class="layer" @tap.stop="discard">
- <view class="content">
- <view class="freight-ltitle">选择运费</view>
- <view class="freight-radio">
- <radio-group class="row-group" @change="radioChange">
- <label class="row-input" v-for="(item, index) in freightList" :key="item.value">
- <radio class="row-radio" :value="item.value" :checked="index === current" color="#191919"/>
- <view class="row-text">{{item.name}}</view>
- </label>
- </radio-group>
- </view>
- <view class="freight-group" v-if="freightData.freePostFlag == 1">
- <view class="group-from">
- <input class="form-input" type="text" v-model="hanldFreight" @input="setFreightMoney" placeholder="请填写运费" maxlength="20">
- </view>
- </view>
- <view class="freight-group" v-if="freightData.freePostFlag == 0">
- <text class="text">{{freightText}}</text>
- </view>
- <view class="freight-group" v-if="freightData.freePostFlag == -1">
- <text class="text">{{freightText}}</text>
- </view>
- </view>
- <view class="btn">
- <view class="button add" @click="freightConfim">完成</view>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default{
- name:'freight',
- props:{
- freightDatas:{
- type:Object
- }
- },
- data() {
- return{
- freightText:'包邮',
- freightMoney:0,
- specClass: '',//规格弹窗css类,控制开关动画
- freightList:[
- {value:1,name:'不包邮'},
- {value:0,name:'包邮'},
- {value:-1,name:'到付'},
- ],
- current:0,
- hanldFreight:0,
- freightData:{
- freePostFlag:1,
- freight:0
- }
- }
- },
- created(){
- this.infoData(this.freightDatas)
- },
- methods:{
- infoData(data){//初始化运费
- // console.log(data)
- switch(data.freePostFlag){
- case 1:
- this.current = 0
- this.freightData.freePostFlag = data.freePostFlag
- if(data.freight == 0){
- this.hanldFreight = ''
- }else{
- this.hanldFreight = data.freight
- }
- this.freightData.freight = data.freight
- this.freightMoney = this.hanldFreight
- this.freightText = ''
- break
- case 0:
- this.current = 1
- this.freightData.freePostFlag = data.freePostFlag
- this.freightText = '包邮'
- break
- case -1:
- this.current = 2
- this.freightData.freePostFlag = data.freePostFlag
- this.freightText = '到付'
- break
- }
- },
- freightConfim(){//提交完成运费选择
- switch(this.freightData.freePostFlag){
- case 1:
- this.choiceaFreightFirst(this.freightData.freePostFlag)
- break
- case 0:
- this.choiceaFreightFirst(this.freightData.freePostFlag)
- break
- case -1:
- this.choiceaFreightFirst(this.freightData.freePostFlag)
- break
- }
- },
- choiceaFreightFirst(index){//校验运费形式及运费价
- if(index == 1){
- if(this.hanldFreight == 0 || this.hanldFreight== ''){
- this.$util.msg('请填写运费',2000)
- return
- }
- this.freightData.freight = this.hanldFreight
- this.$emit('handleChoiceaFreight',this.freightData)
- }else{
- this.freightData.freight = 0
- this.$emit('handleChoiceaFreight',this.freightData)
- }
- this.hideSpec()
- },
- showTip(){//显示运费弹窗
- this.$emit('showFreightAlert')
- },
- hideSpec() {//关闭选择数量确认弹窗
- this.specClass = 'hide'
- setTimeout(() => {
- this.specClass = 'none'
- }, 200)
- },
- hanldOperationConfim(data){//显示选择数量确认弹窗
- // this.specClass = 'show';
- // this.freightMoney = this.hanldFreight
- },
- radioChange(e) {//运费选择切换
- this.freightData.freePostFlag = parseInt(e.target.value)
- switch(this.freightData.freePostFlag){
- case 1:
- this.freightText = '不包邮'
- break
- case 0:
- this.freightText = '包邮'
- break
- case -1:
- this.freightText = '到付'
- break
- }
- for (let i = 0; i < this.freightList.length; i++) {
- if (this.freightList[i].value === this.freePostFlag) {
- this.current = i
- break
- }
- }
- },
- setFreightMoney(e){//处理邮费显示
- if(e.detail.value == ''){
- this.freightMoney=0
- this.freightData.freight=0
- }else{
- this.freightData.freight = e.detail.value
- this.freightMoney = this.orderPriceToFixed(e.detail.value)
- }
- },
- orderPriceToFixed (num){
- let price =''
- price = parseInt(num).toFixed(2)
- return price
- },
- discard(){
- //丢弃
- }
- }
- }
- </script>
- <style lang="scss">
- .freight-template{
- width: 100%;
- height: auto;
- background: #FFFFFF;
- margin: 24rpx 0 24rpx 0;
- .invoice-freight{
- width: 702rpx;
- padding: 0 24rpx;
- height: 88rpx;
- line-height: 88rpx;
- font-size: $font-size-28;
- color: $text-color;
- background: #FFFFFF;
- float: left;
- font-weight: bold;
- .freight-left{
- float: left;
- .icon-yunfeishuoming{
- height: 100%;
- padding:15rpx;
- color: $color-system;
- font-weight: normal;
- }
- }
- .freight-right{
- float: right;
- color: #2A81FF;
- .text-l{
- margin-right: 20rpx;
- }
- .text{
- line-height: 88rpx;
- color: #ff0000;
- margin:0 20rpx;
- font-weight: normal;
- }
- .icon-chakangengduo{
- line-height: 88rpx;
- color: #999999;
- font-weight: normal;
- }
- }
- }
- }
- .freight-ltitle{
- width: 100%;
- line-height: 60rpx;
- height: 60rpx;
- font-size: $font-size-28;
- color: #333333;
- }
- .freight-radio{
- width: 100%;
- height: 88rpx;
- line-height: 88rpx;
- display: flex;
- border-bottom: 1px solid #EBEBEB;
- .row-group{
- flex:1;
- display: flex;
- }
- .row-input{
- flex: 1;
- height: 88rpx;
- line-height: 88rpx;
- }
- .row-radio{
- float: left;
- transform: scale(0.6);
- }
- .row-text{
- font-size: $font-size-24;
- color: $text-color;
- }
- }
- .freight-group{
- width: 100%;
- height: 88rpx;
- display: flex;
- border-bottom: 1px solid #FFFFFF;
- flex-direction: row;
- .text{
- display: block;
- flex: 1;
- line-height: 88rpx;
- font-size: $font-size-24;
- color: #999999;
- text-align: left;
- padding-left: 10rpx;
- }
- .group-from{
- flex: 1;
- height: 40rpx;
- padding: 20rpx;
- line-height: 40rpx;
- align-items: flex-start;
- font-size: $font-size-24;
- color: $text-color;
- background: #F7F7F7;
- border-radius: 14rpx;
- margin-bottom: 20rpx;
- margin-top: 10rpx;
- .form-input{
- height: 40rpx;
- line-height: 40rpx;
- flex-grow: 1;
- }
- }
- }
- /* 加入购物模态层*/
- @keyframes showPopup {
- 0% {
- opacity: 0;
- }
- 100% {
- opacity: 1;
- }
- }
- @keyframes hidePopup {
- 0% {
- opacity: 1;
- }
- 100% {
- opacity: 0;
- }
- }
- @keyframes showLayer {
- 0% {
- transform: translateY(0);
- }
- 100% {
- transform: translateY(-100%);
- }
- }
- @keyframes hideLayer {
- 0% {
- transform: translateY(-100%);
- }
- 100% {
- transform: translateY(0);
- }
- }
- @keyframes showAmnation {
- 0% {
- top: -12rpx;
- opacity: 0;
- }
- 50% {
- top: -60rpx;
- opacity: 1;
- }
- 100% {
- top: -100rpx;
- opacity: 0;
- }
- }
- @keyframes hideAmnation {
- 0% {
- top: -100rpx;
- opacity: 0;
- }
- 100% {
- top: -12rpx;
- opacity: 0;
- }
- }
- .popup {
- position: fixed;
- top: 0;
- width: 100%;
- height: 100%;
- z-index: 999;
- display: none;
- .mask{
- position: fixed;
- top: 0;
- width: 100%;
- height: 100%;
- z-index: 21;
- background-color: rgba(0, 0, 0, 0.6);
- }
- .layer {
- position: fixed;
- z-index: 22;
- bottom: -460rpx;
- width: 702rpx;
- padding: 24rpx 24rpx 36rpx 24rpx;
- height: 400rpx;
- border-radius: 20rpx 20rpx 0 0;
- background-color: #fff;
- display: flex;
- flex-wrap: wrap;
- align-content: space-between;
- .content {
- width: 100%;
- }
- .btn {
- width: 100%;
- height: 88rpx;
- display: flex;
- .button {
- width: 702rpx;
- height: 88rpx;
- color: #fff;
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: $font-size-28;
- border-radius: 44rpx;
- background: $btn-confirm;
- }
- }
- }
-
- &.show {
- display: block;
- .mask{
- animation: showPopup 0.2s linear both;
- }
- .layer {
- animation: showLayer 0.2s linear both;
- }
- }
- &.hide {
- display: block;
- .mask{
- animation: hidePopup 0.2s linear both;
- }
-
- .layer {
- animation: hideLayer 0.2s linear both;
- }
- }
- &.none {
- display: none;
- }
- &.service {
- .row {
- margin: 30upx 0;
- .title {
- font-size: 30upx;
- margin: 10upx 0;
- }
- .description {
- font-size: 28upx;
- color: #999;
- }
- }
- }
- .layer-smimg{
- width: 114rpx;
- height: 114rpx;
- float: left;
- border-radius: 10rpx;
- margin-right: 24rpx;
- image{
- width: 114rpx;
- height: 114rpx;
- border-radius: 10rpx;
- }
- }
- .layer-nunbox{
- justify-content: space-between;
- align-items: center;
- width: 536rpx;
- height: 88rpx;
- padding: 13rpx 0 0 0;
- float: left;
- .layer-nunbox-t{
- width: 100%;
- height:44rpx;
- position:relative;
- display: flex;
- .layer-nunbox-text{
- line-height: 44rpx;
- font-size: $font-size-28;
- }
- .number-box{
- display: flex;
- justify-content: center;
- align-items: center;
- .iconfont{
- font-size: $font-size-32;
- padding:0 18rpx;
- font-size: $text-color;
- }
- .btn-input{
- width: 62rpx;
- height: 48rpx;
- line-height: 48rpx;
- background: #F8F8F8;
- border-radius: 4rpx;
- text-align: center;
- font-size: $font-size-28;
- }
- }
- .product-step{
- position: absolute;
- left: 45rpx;
- bottom: 0;
- height: 44rpx;
- background: #FFFFFF;
- }
- }
- .layer-nunbox-b{
- width: 100%;
- height:44rpx;
- margin-top: 13rpx;
- }
- .text{
- line-height: 44rpx;
- font-size: $font-size-28;
- .p{
- color: #ff457b;
- }
- .p:first-child{
- margin-left: 30rpx;
- }
- .p.sm{
- font-size: $font-size-24;
- }
- }
- }
- }
- </style>
|