123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005 |
- <template>
- <view class="app-container" :class="isNoticebar ? 'hasNoticebar':''">
- <view class="noticebar" v-if="isNoticebar">
- <uni-notice-bar v-if="noticeContent" scrollable="true" single="true" showClose="true" :text="noticeContent" background-color="#f6e6e7" color="#de3749" @close="closeNoticebar"></uni-notice-bar>
- </view>
-
- <view class="address-container" @tap="chooseAddress">
- <view class="left">
- <view class="icon"><image src="../../static/icon/address.png"></image></view>
- <view class="nodata" v-if="!hasAddress">选择收货地址</view>
- <view class="hasdata" v-else>
- <view class="name">{{addressInfo.name}}<text>{{addressInfo.phone}}</text></view>
- <view class="address ellipsis-2">{{addressInfo.province}}{{addressInfo.city}}{{addressInfo.area}}{{addressInfo.street}}{{addressInfo.address}}{{addressInfo.houseNo}}</view>
- </view>
- </view>
- <image class="right" src="../../static/icon/right.png"></image>
- </view>
-
- <view class="card goods-container">
- <view class="title">商品信息</view>
- <block v-for="(item, index) in goodsList" :key='index'>
- <view class="item">
- <image :src="item.imgUrl"></image>
- <view class="right">
- <view class="name ellipsis-2">{{item.goodsName}}</view>
- <view class="des">{{item.specValue}}</view>
- <view class="bottom">
- <view class="price">
- <view class="price-1">¥{{item.price | numToFixed}}</view>
- <view class="price-2">¥{{item.orgPrice | numToFixed}}</view>
- </view>
-
- <u-number-box
- @tap.stop
- v-model="item.num"
- :min="1"
- :buttonSize="26"
- iconStyle="font-size: 12px;"
- :disabled="!hasAddress"
- @change="changeCount($event, index)">
- </u-number-box>
- </view>
- </view>
- </view>
- </block>
- </view>
-
- <view class="card row-container">
- <view class="item">
- <view class="title">优惠券</view>
- <view class="coupon" @tap="chooseCoupon">
- <text v-if="hasCoupon">{{couponInfo.couponName}}</text>
- <text v-else style="color: #666666;">未使用优惠券</text>
- <image src="../../static/icon/right.png"></image>
- </view>
- </view>
- <view class="item">
- <view class="title">配送方式</view>
- <view class="right" v-if="freight == 0">快递包邮</view>
- <view class="right" v-if="freight != 0">快递自费</view>
- </view>
- <view class="item" v-if="isServiceUser">
- <view class="title">工单派单方式</view>
- <view class="radio-group">
- <view class="radio" @tap="dispatchType = 1">
- <text class="iconfont" :class="dispatchType === 1 ? 'icon-danxuan2 active':'icon-danxuan'"></text>
- 自卖自装
- </view>
- <view class="radio" @tap="dispatchType = 2">
- <text class="iconfont" :class="dispatchType === 2 ? 'icon-danxuan2 active':'icon-danxuan'"></text>
- 当地安装
- </view>
- </view>
- </view>
- <view class="item">
- <view class="title">买家留言</view>
- <view class="remark"><textarea auto-height :placeholder="isApplyDialog ? '':'选填,留言建议50字内'" v-model="remark"></textarea></view>
- </view>
- </view>
-
- <view class="card row-container">
- <view class="item">
- <view class="title">商品金额</view>
- <view class="orange">¥{{orderInfo.totalAmount | numToFixed}}</view>
- </view>
- <view class="item">
- <view class="title">运费</view>
- <view class="orange">¥{{freight | numToFixed}}</view>
- </view>
- <view class="item">
- <view class="title">优惠</view>
- <view class="orange">-¥{{(couponInfo.couponValue ? couponInfo.couponValue : (orderInfo.exchangeAmount || 0)) | numToFixed}}</view>
- </view>
- <view class="item" v-if="orderInfo.promotionDiscountRate">
- <view class="title">折扣优惠</view>
- <view class="orange">-¥{{orderInfo.discountAmount | numToFixed}}({{orderInfo.promotionDiscountRate*10}}折)</view>
- </view>
- </view>
-
- <view class="card row-container">
- <view class="item">
- <view class="title">优惠码</view>
- <view class="input"><input placeholder="请输入优惠码" v-model="exchangeCode" @blur="exchangeCodeBlur()" /></view>
- </view>
- </view>
-
- <view class="card row-container">
- <view class="item">
- <view class="title">订单总金额</view>
- <view class="orange">¥{{orderInfo.payAmount | numToFixed}}</view>
- </view>
- <!-- <view class="item">
- <view class="title">减免金额申请</view>
- <view class="orange">-¥0.00</view>
- </view>
- <view class="item">
- <view class="title">应付总金额</view>
- <view class="orange">¥{{orderInfo.payAmount | numToFixed}}</view>
- </view> -->
- </view>
-
- <view class="bottom-container">
- <!-- <view class="left">共{{orderInfo.totalNum}}件,合计:<text>¥{{orderInfo.payAmount | numToFixed}}</text></view> -->
- <view class="btn-group">
- <view class="button3" @tap="toApply" v-if="(isServiceUser && isInnerrUser) && !isGiftGoods">申请减免金额</view>
- <view class="button2" @tap="replaceOrder" v-if="(isServiceUser || isHeadUser) && !isGiftGoods">代客下单</view>
- <view class="button" @tap="submitOrder">提交订单</view>
- </view>
- </view>
-
- <!-- 代客下单 -->
- <view class="global-mask" v-show="isCodeDialog"></view>
- <view class="codeDialog" v-show="isCodeDialog">
- <view class="close"><image src="@/static/icon/close.png" @tap="isCodeDialog = false"></image></view>
- <!-- <view class="code"><image :src="'data:image/jpeg;base64,' + codeUrl" mode="aspectFill"></image></view> -->
- <view class="code"><image :src="codeUrl" mode="aspectFill"></image></view>
- <view class="tips">请让客户扫码下单</view>
- </view>
-
- <modal-dialog showTitle="提示" showText="优惠券和优惠码只能使用其中一个" :isShowDialog="isBothDialog" @cancel="chooseDiscountWay(1)" @confirm="chooseDiscountWay(2)" cancelText="使用优惠券" confirmText="使用优惠码"></modal-dialog>
-
- <modal-dialog showTitle="提示" :showText="errorMsg" :isShowDialog="isErrorDialog" :isShowCancel="false" @confirm="isErrorDialog = false"></modal-dialog>
-
- <view class="apply-dialog" v-show="isApplyDialog">
- <view class="dialog">
- <view class="title">减免金额申请</view>
- <view class="content">
- <view class="row">
- <text>订单金额:¥{{orderInfo.payAmount | numToFixed}}</text>
- </view>
- <view class="row">
- <text>减免金额:</text><input type="digit" v-model="applyForm.amount" /><text></text>
- </view>
- <view class="row">
- <text>应付金额:¥{{((orderInfo.payAmount*100 - applyForm.amount*100)/100) | numToFixed}}</text>
- </view>
- <view class="row">
- <text>申请备注:</text><input type="text" v-model="applyForm.remark" /><text></text>
- </view>
- </view>
- <view class="btn">
- <view class="left" @tap="cancelApplyForm">取消</view>
- <view class="right" @tap="confirmApplyForm">提交</view>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- import {mapState} from 'vuex';
- import EventBus from '@/utils/eventbus.js';
- import modalDialog from '@/components/modalDialog.vue';
-
- export default {
- components:{
- modalDialog
- },
- data() {
- return {
- configInfo: uni.getStorageSync('configInfo'),
- hasAddress: false, // 是否有收货地址
- addressInfo: {}, // 收货地址信息
- hasCoupon: false, // 是否有优惠券
- couponInfo: {}, // 优惠券信息
- buyList: [], // 商品列表(从商品详情带入,用于请求订单信息接口)
- orderInfo: {}, // 订单信息
- goodsList: [], // 商品列表(从订单信息接口获取,用于渲染)
- freight: 0, // 运费
- remark: '', // 买家留言
- isCodeDialog: false, // 代客下单弹窗
- codeUrl: '', // 代客下单二维码
- isSeckill: false, // 是否秒杀订单
- secKillId: null, // 秒杀id
- secKillSpecId: null,
- secToken: null,
- orderId: null, // 订单id
- isGiftGoods: false, // 是否福利商品
- exchangeCode: '', // 优惠码
- isNoticebar: false, // 是否显示公告栏
- noticeContent: '', // 公告内容
- groupbuyId: null, // 团购id
- isBothDialog: false, // 优惠券和优惠码都选择的提示
- packageId: null, // 套购id
-
- isErrorDialog: false,
- errorMsg: '',
-
- dispatchType: 1,
- isApplyDialog: false,
- applyForm: {
- amount: '',
- remark: '',
- },
- }
- },
- computed:{
- ...mapState(['userInfo', 'isLogin', 'userId']),
-
- isServiceUser() { // 是否业务员
- return this.userInfo.type === 'SERVICE';
- },
- isHeadUser() { // 是否团长
- return this.userInfo.promotionGroupLeader;
- },
- isInnerrUser() { // 是否内部人员
- return this.userInfo.innerr;
- },
-
- total() {
- let price = Number(this.orderInfo.totalAmount); // 商品金额
- let freight = Number(this.freight); // 运费
- let coupon = this.couponInfo.couponValue ? Number(this.couponInfo.couponValue) : Number((this.orderInfo.exchangeAmount || 0)); // 优惠金额
- let total = price + freight - coupon; // 合计
- return total < 0 ? 0 : total;
- },
- },
- async onLoad({buyList, secKillId, secKillSpecId, secToken, groupbuyId, packageId}) {
- this.getNoticebar();
-
- this.buyList = JSON.parse(buyList);
- console.log(this.buyList);
- this.secKillId = secKillId;
- this.secKillSpecId = secKillSpecId;
- this.secToken = secToken;
- this.groupbuyId = groupbuyId;
- this.packageId = packageId;
-
- // 进入页面先获取默认地址
- await this.getAddress();
-
- // 获取订单信息
- this.getOrderInfo();
-
- // 接收地址信息
- EventBus.$on('chooseAddress',(result) => {
- this.hasAddress = true;
- this.addressInfo = result;
- this.getOrderInfo();
- })
-
- // 接收优惠券信息
- EventBus.$on('chooseCoupon',(result) => {
- if(result) {
- this.hasCoupon = true;
- this.couponInfo = result;
- }else {
- this.hasCoupon = false;
- this.couponInfo = {};
- }
- this.getOrderInfo();
- })
- },
- destroyed() {
- EventBus.$off(['chooseAddress', 'chooseCoupon']);
- },
- methods: {
- findElem(array, attr, val) {
- for (var i = 0; i < array.length; i++) {
- if (array[i][attr] == val) {
- return i; //返回当前索引值
- }
- }
- return -1;
- },
-
- // 获取公告栏
- getNoticebar() {
- this.$axios({
- url: '/shpping/cart/notice',
- method: 'get',
- params: {
- userId: this.userId
- }
- }).then(res => {
- this.noticeContent = res.data;
- this.isNoticebar = res.data ? true : false;
- })
- },
-
- // 关闭通告栏
- closeNoticebar() {
- this.isNoticebar = false;
- },
-
- // 获取订单信息
- getOrderInfo(type) {
- this.$axios({
- url: '/order/ackdata',
- type: 'application/json',
- params: {
- buyGoods: this.buyList,
- userAddressId: this.addressInfo.userAddressId,
- userCouponId: this.hasCoupon ? this.couponInfo.id : '',
- exchangeCode: this.exchangeCode,
- promotionGroupId: this.groupbuyId || '',
- goodsPackageId: this.packageId || '',
- },
- }).then(res => {
- if(res.code == 1100) {
- this.errorMsg = res.message;
- this.isErrorDialog = true;
- return false;
- // return this.$toast(res.message);
- }else if(res.code !== 200) {
- setTimeout(()=> {
- uni.navigateBack({
- delta: 1
- })
- }, 1000)
- }
- this.orderInfo = res.data;
- this.goodsList = res.data.goods;
- this.isSeckill = res.data.isSecKill;
- this.freight = res.data.freight;
- this.isGiftGoods = this.findElem(res.data.goods, 'isGift', true) >= 0;
- }).catch(res => {
- setTimeout(()=> {
- uni.navigateBack({
- delta: 1
- })
- }, 1000)
- })
- },
-
- // 获取地址信息
- async getAddress() {
- const result = new Promise((resolve, reject) => {
- this.$axios({
- url: '/user/address/list',
- method: 'get',
- params: {
- pageNum: 1,
- pageSize: 100,
- userId: this.userId
- }
- }).then(res => {
- let hasDefault = this.findElem(res.data.records, 'defaultAddr', true);
- if(hasDefault >= 0) {
- this.hasAddress = true;
- this.addressInfo = res.data.records[hasDefault];
- }else {
- this.hasAddress = false;
- }
- resolve();
- })
- })
- return result;
- },
-
- findElem(array, attr, val) {
- for (var i = 0; i < array.length; i++) {
- if (array[i][attr] == val) {
- return i; //返回当前索引值
- }
- }
- return -1;
- },
-
- // 去选择优惠券
- chooseCoupon() {
- // if(this.isSeckill) {
- // return this.$toast('秒杀商品不可使用优惠券');
- // }
- let goodsIds = [];
- this.goodsList.forEach(item => {
- goodsIds.push(item.goodsId)
- })
-
- let amount = Number(this.orderInfo.totalAmount) + Number(this.freight);
-
- uni.navigateTo({
- url: '/packageGoods/pages/coupon?orderAmount=' + amount + '&goodsIds=' + JSON.stringify(goodsIds)
- })
- },
-
- // 去选择地址
- chooseAddress() {
- uni.navigateTo({
- url:'/pages/mine/address/list?isChoose=' + true
- })
- },
-
- // 更改数量
- changeCount(e, index) {
- this.buyList[index].num = e.value;
- this.getOrderInfo();
- },
-
- // 礼品卡密码失去光标
- exchangeCodeBlur() {
- if(this.exchangeCode.length >= 8) {
- this.getOrderInfo('psw');
- }
- },
-
- // 选择优惠方式
- chooseDiscountWay(type) {
- if(type === 1) {
- this.exchangeCode = '';
- }else {
- this.hasCoupon = false;
- this.couponInfo = {};
- }
- this.isBothDialog = false;
- this.getOrderInfo();
- this.orderPay();
- },
-
- // 提交订单
- submitOrder() {
- let that = this;
- if(!this.hasAddress) {
- return this.$toast('请先选择收货地址');
- }
- if(!this.orderInfo.openId) {
- return uni.redirectTo({
- url: '/pages/login/index?isNotOpenid=' + true
- })
- }
-
- if(this.exchangeCode && this.hasCoupon) {
- return this.isBothDialog = true;
- }
-
- this.orderPay();
- },
-
- // 下单支付
- orderPay() {
- let that = this;
- this.$axios({
- url: '/order/buy',
- type: 'application/json',
- params: {
- userId: this.userId,
- buyGoods: this.buyList,
- buyerMsg: this.remark,
- userAddressId: this.addressInfo.userAddressId,
- userCouponId: this.hasCoupon ? this.couponInfo.id : '',
- exchangeCode: this.exchangeCode,
- promotionGroupId: this.groupbuyId || '',
- goodsPackageId: this.packageId || '',
- dispatchType: this.isServiceUser ? (this.dispatchType === 1 ? '自卖自装' : '当地安装') : '',
- },
- isLoading: 1,
- }).then(res => {
- if(res.code === 1100) {
- this.errorMsg = res.message;
- this.isErrorDialog = true;
- return false;
- // return this.$toast(res.message);
- }
- if(res.data.isPay === false) {
- this.$successToast('购买成功');
- this.orderId = res.data.id;
- this.requestMessage();
- }else {
- uni.getProvider({
- service: 'payment',
- success: (e) => {
- uni.requestPayment({
- provider: e.provider[0],
- orderInfo: res.data,
- timeStamp: res.data.timeStamp,
- nonceStr: res.data.nonceStr,
- package: res.data.payPackage,
- signType: 'MD5',
- paySign: res.data.paySign,
- success: (payRes) => {
- that.$successToast('购买成功');
- that.orderId = res.data.id;
- that.requestMessage();
- },
- fail: (err) => {
- that.$toast('支付失败');
- }
- })
- }
- })
- }
- })
- },
-
- // 消息推送
- requestMessage() {
- let that = this;
- uni.showModal({
- title: '温馨提示',
- content: '为更好的促进您与买家的交流,需要在您的订单成交时向您发送消息',
- confirmText: "同意",
- cancelText: "拒绝",
- success: function (res) {
- if (res.confirm) {
- let tmplIds = [that.configInfo.template];
- uni.requestSubscribeMessage({
- tmplIds: tmplIds,
- success (res) {
- let status = null;
- tmplIds.map((item, index) => {
- if(res[item] == 'accept') {
- status = 'accept';
- }
- })
- if(status == 'accept') {
- that.$successToast('订阅成功');
- }else {
- that.$toast('订阅取消');
- }
- setTimeout(() => {
- uni.reLaunch({
- url: '/pages/mine/order/list?tab=DFH' + '&orderId=' + that.orderId
- });
- }, 1000)
- },
- fail (res) {
- console.log(res);
- that.$toast('订阅失败');
- setTimeout(() => {
- uni.reLaunch({
- url: '/pages/mine/order/list?tab=DFH' + '&orderId=' + that.orderId
- });
- }, 1000)
- }
- })
- } else if (res.cancel) {
- uni.showModal({
- title: '温馨提示',
- content: '拒绝后您将无法获取实时的与卖家(买家)的交易消息',
- confirmText: "知道了",
- showCancel: false,
- success: function (res) {
- uni.reLaunch({
- url: '/pages/mine/order/list?tab=DFH' + '&orderId=' + that.orderId
- });
- }
- });
- }
- }
- });
- },
-
- // 代客下单
- replaceOrder() {
- if(!this.hasAddress) {
- return this.$toast('请先选择收货地址');
- }
- this.$axios({
- url: '/order/buy',
- type: 'application/json',
- params: {
- userId: this.userId,
- buyGoods: this.buyList,
- buyerMsg: this.remark,
- userAddressId: this.addressInfo.userAddressId,
- userCouponId: this.hasCoupon ? this.couponInfo.id : '',
- exchangeCode: this.exchangeCode,
- proxyUser: true,
- dispatchType: this.isServiceUser ? (this.dispatchType === 1 ? '自卖自装' : '当地安装') : '',
- },
- isLoading: 1,
- }).then(res => {
- if(res.code === 1100) {
- this.errorMsg = res.message;
- this.isErrorDialog = true;
- return false;
- // return this.$toast(res.message);
- }
- this.codeUrl = res.data.codeUrl.replace(/[\r\n]/g, "");
- this.isCodeDialog = true;
- })
- },
-
- // 打开申请减免金额表单
- toApply(id) {
- this.isApplyDialog = true;
- },
-
- // 取消申请减免金额表单
- cancelApplyForm() {
- this.applyForm.amount = '';
- this.isApplyDialog = false;
- },
-
- // 提交申请减免金额表单
- confirmApplyForm() {
- if(!this.applyForm.amount) {
- return this.$toast('请填写优惠金额');
- }
- if(this.applyForm.amount > this.orderInfo.payAmount) {
- return this.$toast('优惠金额不能大于订单总金额');
- }
- this.$axios({
- url: '/promotion/apply/apply',
- method: 'post',
- type: 'application/json',
- params: {
- userId: this.userId,
- buyGoods: this.buyList,
- buyerMsg: this.remark,
- userAddressId: this.addressInfo.userAddressId,
- userCouponId: this.hasCoupon ? this.couponInfo.id : '',
- exchangeCode: this.exchangeCode,
- promotionGroupId: this.groupbuyId || '',
- goodsPackageId: this.packageId || '',
-
- applyAmount: this.applyForm.amount,
- applyRemark: this.applyForm.remark,
- },
- isLoading: 1
- }).then(res => {
- this.cancelApplyForm();
- this.$successToast('提交成功');
- setTimeout(() => {
- uni.redirectTo({
- url: '/pages/mine/discount/list'
- });
- }, 500)
- })
- },
- }
- }
- </script>
- <style lang="scss">
- .app-container {
- background: #F4F2F2;
- padding: 20rpx 20rpx 160rpx;
- box-sizing: border-box;
- &.hasNoticebar {
- padding-top: 84rpx;
- }
- .noticebar {
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- z-index: 100;
- }
- }
- .card {
- background: #FFFFFF;
- border-radius: 20rpx;
- margin-top: 20rpx;
- padding: 0 20rpx;
- }
- .address-container {
- background: #FFFFFF;
- border-radius: 20rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- height: 150rpx;
- padding: 0 20rpx;
- .right {
- width: 16rpx;
- height: 28rpx;
- flex-shrink: 0;
- }
- .left {
- display: flex;
- align-items: center;
- margin-right: 20rpx;
- .icon {
- width: 52rpx;
- height: 52rpx;
- border-radius: 50%;
- background: linear-gradient(-90deg,#ff4042 0%, #fe781f 100%);
- display: flex;
- flex-shrink: 0;
- justify-content: center;
- align-items: center;
- margin-right: 20rpx;
- image {
- width: 28rpx;
- height: 36rpx;
- }
- }
- .nodata {
- font-size: 28rpx;
- color: #999999;
- }
- .hasdata {
- .name {
- font-size: 32rpx;
- color: #333333;
- text {
- color: #999999;
- font-size: 28rpx;
- margin-left: 16rpx;
- }
- }
- .address {
- font-size: 28rpx;
- color: #666666;
- line-height: 34rpx;
- margin-top: 10rpx;
- }
- }
- }
- }
- .goods-container {
- .title {
- font-size: 32rpx;
- color: #333333;
- line-height: 32rpx;
- padding-top: 20rpx;
- }
- .item {
- padding: 20rpx 0;
- display: flex;
- align-items: center;
- background: #FFFFFF;
- border-bottom: 1px solid #eaeaea;
- &:last-child {
- border: none;
- }
- image {
- width: 180rpx;
- height: 180rpx;
- display: block;
- margin-right: 20rpx;
- flex-shrink: 0;
- }
- .right {
- width: 470rpx;
- height: 190rpx;
- display: flex;
- justify-content: space-between;
- flex-direction: column;
- .name {
- font-size: 28rpx;
- color: #333333;
- line-height: 36rpx;
- height: 72rpx;
- }
- .des {
- font-size: 24rpx;
- color: #999999;
- line-height: 36rpx;
- }
- .bottom {
- display: flex;
- justify-content: space-between;
- align-items: center;
- .price {
- display: flex;
- flex-direction: column;
- }
- .price-1 {
- font-size: 32rpx;
- color: #FF3F42;
- line-height: 36rpx;
- }
- .price-2 {
- font-size: 26rpx;
- color: #666666;
- line-height: 30rpx;
- text-decoration: line-through;
- }
- }
- }
- }
- }
- .row-container {
- .item {
- display: flex;
- justify-content: space-between;
- align-items: center;
- min-height: 88rpx;
- border-bottom: 1px solid #eaeaea;
- &:last-child {
- border: none;
- }
- .title {
- font-size: 28rpx;
- color: #333333;
- }
- .coupon {
- display: flex;
- align-items: center;
- image {
- width: 16rpx;
- height: 28rpx;
- margin-left: 15rpx;
- }
- }
- .input {
- width: 500rpx;
- input {
- width: 500rpx;
- height: 88rpx;
- text-align: right;
- }
- }
- .radio-group {
- display: flex;
- height: 48rpx;
- align-items: center;
- .radio {
- display: flex;
- align-items: center;
- margin-left: 30rpx;
- .iconfont {
- font-size: 36rpx;
- color: #999999;
- margin-right: 10rpx;
- &.active {
- color: #FF3F42;
- }
- }
- }
- }
- .remark {
- width: 500rpx;
- textarea {
- width: 500rpx;
- padding: 20rpx 0;
- }
- }
- .orange {
- font-size: 28rpx;
- color: #FE781F;
- }
- }
- }
- .bottom-container {
- position: fixed;
- bottom: 0;
- left: 0;
- z-index: 99;
- width: 100%;
- box-sizing: border-box;
- background: #FFFFFF;
- padding: 0 20rpx;
- display: flex;
- justify-content: flex-end;
- align-items: center;
- height: 100rpx;
- .left {
- font-size: 28rpx;
- color: #333333;
- text {
- color: #FF3F42;
- }
- }
- .btn-group {
- display: flex;
- }
- .button {
- width: 190rpx;
- height: 80rpx;
- border-radius: 80rpx;
- background: linear-gradient(-90deg,#ff3f42 0%, #fe781f 100%);
- font-size: 28rpx;
- color: #FFFFFF;
- text-align: center;
- line-height: 80rpx;
- }
- .button2 {
- width: 190rpx;
- height: 80rpx;
- border-radius: 80rpx;
- font-size: 28rpx;
- color: #FF3F42;
- text-align: center;
- line-height: 80rpx;
- margin-right: 10rpx;
- border: 1px solid #FF3F42;
- box-sizing: border-box;
- }
- .button3 {
- width: 220rpx;
- height: 80rpx;
- border-radius: 80rpx;
- font-size: 28rpx;
- color: #ffffff;
- text-align: center;
- line-height: 80rpx;
- margin-right: 10rpx;
- border: 1px solid #FF3F42;
- background: #FF3F42;
- box-sizing: border-box;
- }
- }
- .codeDialog {
- position: fixed;
- top: 40%;
- left: 150rpx;
- z-index: 999;
- width: 400rpx;
- background: #FFFFFF;
- border-radius: 10rpx;
- box-sizing: border-box;
- padding: 20rpx 20rpx 40rpx;
- display: flex;
- flex-direction: column;
- align-items: center;
- .close {
- width: 100%;
- display: flex;
- justify-content: flex-end;
- image {
- width: 32rpx;
- height: 32rpx;
- display: block;
- }
- }
- .code {
- margin-top: 10rpx;
- image {
- width: 280rpx;
- height: 280rpx;
- display: block;
- }
- }
- .tips {
- font-size: 28rpx;
- color: #666666;
- margin-top: 20rpx;
- }
- }
- .apply-dialog {
- position: fixed;
- top: 0;
- left: 0;
- z-index: 9999;
- width: 100%;
- height: 100%;
- background: rgba(0, 0, 0, 0.3);
- display: flex;
- align-items: center;
- justify-content: center;
- .dialog {
- width: 600rpx;
- background: #FFFFFF;
- border-radius: 20rpx;
- overflow: hidden;
- .title {
- font-size: 36rpx;
- font-weight: 500;
- text-align: center;
- line-height: 100rpx;
- padding-bottom: 10rpx;
- }
- .content {
- padding: 0 40rpx 30rpx;
- .row {
- height: 50rpx;
- display: flex;
- align-items: center;
- margin-bottom: 10rpx;
- font-size: 28rpx;
- color: #333333;
- input {
- flex: 1;
- height: 50rpx;
- border: 1px solid #E5E5E5;
- margin-right: 16rpx;
- padding: 0 12rpx;
- font-size: 28rpx;
- }
- }
- }
- .btn {
- border-top: 1px solid #eaeaea;
- display: flex;
- &> view {
- flex: 1;
- text-align: center;
- line-height: 100rpx;
- font-size: 32rpx;
- &.left {
- color: #666666;
- }
- &.right {
- color: #FFFFFF;
- background: #FF3F42;
- }
- }
- }
- }
-
- }
- </style>
|