index.vue 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. <template>
  2. <view :style="viewColor">
  3. <!-- 选择送货方式 -->
  4. <view class="mask-box">
  5. <view class="bg" v-if="isShowBox"></view>
  6. <view class="mask-content animated" :class="{slideInUp:isShowBox}">
  7. <view class="title-bar">
  8. 配送方式
  9. <view class="close" @click="closeShowBox"><text class="iconfont icon-guanbi"></text></view>
  10. </view>
  11. <view class="box">
  12. <view class="check-item" v-for="(item,index) in radioList" :key="index" :class="{on:index == radioIndex}">
  13. <view>{{item.title}}</view>
  14. <view class="radio" @click="bindCheck(item,index)">
  15. <block v-if="index == newData.order.isTake">
  16. <view class="iconfont icon-xuanzhong1"></view>
  17. </block>
  18. <block v-else>
  19. <view class="iconfont icon-weixuanzhong"></view>
  20. </block>
  21. </view>
  22. </view>
  23. </view>
  24. <view class="foot">
  25. <view class="btn" @click="confirmBtn">确定</view>
  26. </view>
  27. </view>
  28. </view>
  29. </view>
  30. </template>
  31. <script>
  32. // +----------------------------------------------------------------------
  33. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  34. // +----------------------------------------------------------------------
  35. // | Copyright (c) 2016~2021 https://www.crmeb.com All rights reserved.
  36. // +----------------------------------------------------------------------
  37. // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
  38. // +----------------------------------------------------------------------
  39. // | Author: CRMEB Team <admin@crmeb.com>
  40. // +----------------------------------------------------------------------
  41. import { mapGetters } from "vuex";
  42. export default{
  43. name:'checkDelivery',
  44. props:{
  45. isShowBox:{
  46. type:Boolean,
  47. default:false
  48. },
  49. activeObj:{
  50. type:Object,
  51. default:function(){
  52. return {}
  53. }
  54. },
  55. deliveryName:{
  56. type:String,
  57. default:'快递配送'
  58. },
  59. radioList:{
  60. type:Array,
  61. default: [
  62. {
  63. title:'快递配送',
  64. check:true
  65. },
  66. {
  67. title:'到店核销',
  68. check:false
  69. }
  70. ],
  71. },
  72. },
  73. computed: mapGetters(['viewColor']),
  74. data(){
  75. return {
  76. // radioList:[
  77. // {
  78. // title:this.deliveryName,
  79. // check:true
  80. // },
  81. // {
  82. // title:'到店核销',
  83. // check:false
  84. // }
  85. // ],
  86. radioIndex:0,
  87. oldRadioIndex:'', //旧的索引
  88. newData:{}
  89. }
  90. },
  91. created() {
  92. this.newData = JSON.parse(JSON.stringify(this.activeObj))
  93. },
  94. methods:{
  95. // 关闭配送方式弹窗
  96. closeShowBox(){
  97. this.$emit('close')
  98. },
  99. // 选择配送方式
  100. bindCheck(item,index){
  101. this.newData.order.isTake = index
  102. },
  103. confirmBtn(){
  104. this.$emit('confirmBtn',this.newData)
  105. }
  106. }
  107. }
  108. </script>
  109. <style lang="scss">
  110. .mask-box{
  111. .bg{
  112. z-index: 30;
  113. position: fixed;
  114. left: 0;
  115. bottom: 0;
  116. width: 100%;
  117. height: 100%;
  118. background: rgba(0,0,0,0.5);
  119. }
  120. .mask-content{
  121. z-index: 40;
  122. position: fixed;
  123. left: 0;
  124. bottom: 0;
  125. width: 100%;
  126. background-color: #fff;
  127. border-radius: 16rpx 16rpx 0 0;
  128. transform: translate3d(0, 100%, 0);
  129. transition: all .3s cubic-bezier(.25, .5, .5, .9);
  130. .title-bar{
  131. position: relative;
  132. text-align: center;
  133. padding: 30rpx 0;
  134. margin-bottom: 20rpx;
  135. font-size: 32rpx;
  136. color: #282828;
  137. .close{
  138. position: absolute;
  139. right: 30rpx;
  140. top: 50%;
  141. transform: translateY(-50%);
  142. .iconfont{
  143. color: #8A8A8A;
  144. }
  145. }
  146. }
  147. .box{
  148. padding: 0 30rpx;
  149. .check-item{
  150. display: flex;
  151. align-items: center;
  152. justify-content: space-between;
  153. height: 40rpx;
  154. margin-bottom: 50rpx;
  155. font-size: 28rpx;
  156. .iconfont{
  157. font-size: 38rpx;
  158. color: #CCCCCC;
  159. &.icon-xuanzhong1{
  160. color: var(--view-theme);
  161. }
  162. }
  163. }
  164. }
  165. .foot{
  166. padding: 15rpx 30rpx;
  167. border-top: 1px solid #F5F5F5;
  168. .btn{
  169. width: 100%;
  170. height: 70rpx;
  171. line-height: 70rpx;
  172. text-align: center;
  173. border-radius: 35rpx;
  174. color: #fff;
  175. font-size: 30rpx;
  176. background: var(--view-theme);
  177. }
  178. }
  179. }
  180. }
  181. .animated {
  182. animation-duration: .3s
  183. }
  184. </style>