oil-station/fuintCashierWeb/src/views/cashier/NewComponents/homeindex.vue

2922 lines
107 KiB
Vue
Raw Normal View History

2023-10-26 09:32:37 +08:00
<template>
<div class="app-center">
2023-11-16 19:00:57 +08:00
<!-- 支付金额会员登录-->
2023-10-26 09:32:37 +08:00
<div class="center-left">
<div class="center-vh">
<div class="center-left-top">
2023-11-07 18:12:17 +08:00
<div class="vip-bottom" v-if="isMember == false" @click="dialogVisiblevip = true">
2023-10-26 09:32:37 +08:00
<div>会员登录</div>
</div>
2023-11-07 18:12:17 +08:00
<div v-else style="width: 96%;margin: 0 auto;display: flex;justify-content: space-between">
<div
style="display: flex;color: white;justify-content: space-around;width: 55%;
height: 90%;border-radius: 10px;
padding-top: 10px;
background-color: rgb(67,119,204)">
<div>
<template>
<img v-if="member.avatar" class="list-avatar" :src="member.avatar">
<img v-else class="list-avatar" src="@/assets/images/avatar.png">
</template>
</div>
<div style="text-align: center">
<span style="margin-bottom: 10px">{{ member.name }}</span><br/>
<span>{{ member.mobile }}</span>
</div>
<div style="background-color: rgba(46,82,142,0.65);width: 50px;height: 45px;padding-top: 5px;
border-radius: 5px;text-align: center">
<el-tooltip placement="top">
<div slot="content">
<p>会员储值账户余额{{ member.cardBalance }}</p>
<p>积分余额{{ member.points }}</p>
</div>
<i class="el-icon-bank-card" style="font-size: 35px"></i>
</el-tooltip>
</div>
<div style="background-color: rgba(46,82,142,0.65);width: 50px;height: 45px;padding-top: 5px;
border-radius: 5px;text-align: center">
<el-tooltip placement="top">
<div slot="content">
2023-11-16 19:00:57 +08:00
会员等级{{ gradeName }}
2023-11-07 18:12:17 +08:00
</div>
<i class="el-icon-medal" style="font-size: 35px"></i>
</el-tooltip>
</div>
</div>
<div class="vip-bottom" style="height: 40px;margin-top: 10px" @click="resetMember">
<div>重置会员</div>
</div>
</div>
2023-10-26 09:32:37 +08:00
</div>
<div class="center-left-hj">
2023-11-07 18:12:17 +08:00
<div class="hj-box" style="justify-content: left">油品:{{ oilAmount }}</div>
<div class="hj-box" style="border-left: 1px solid #d1d1d4; border-right: 1px solid #d1d1d4;">商品:{{ goodsAmount }}</div>
<div class="hj-box" style="justify-content: flex-end">合计: {{ oilAmount + goodsAmount }}</div>
2023-10-26 09:32:37 +08:00
</div>
<div class="center-left-hj">
2023-11-17 16:33:36 +08:00
<div>
<el-popover
placement="bottom-start"
width="400"
trigger="click">
<div>
2023-11-21 18:18:35 +08:00
<div v-if="fullReduceDiscount.length>0">
<el-checkbox-group v-model="checkedCities1" @change="handleCheckedCitiesChange1">
<el-checkbox v-for="(item,index) in fullReduceDiscount" :label="item.type" :key="index">
<div style="display: flex;justify-content: space-between;height: 40px;line-height: 40px;">
<div style="width: 200px">{{item.type}}</div>
<div style="line-height: 20px;width:150px;font-size: 12px;text-align: right">
2023-11-22 18:10:36 +08:00
<div style="color: red">-{{ item.reduce }}</div>
2023-11-21 18:18:35 +08:00
<div style="color: grey" v-if="item.discount!=0">{{ item.full }}{{ item.discount }}</div>
<div style="color: grey" v-else>{{ item.full }}{{ item.reduce }}</div>
</div>
2023-11-17 16:33:36 +08:00
</div>
2023-11-21 18:18:35 +08:00
</el-checkbox>
</el-checkbox-group>
</div>
<div v-else>
暂无满减油品信息
</div>
2023-11-17 16:33:36 +08:00
</div>
<div slot="reference">
2023-11-21 18:18:35 +08:00
<el-checkbox :disabled="fullReduceDiscount.length==0"
2023-11-17 16:33:36 +08:00
style="color: black;font-size: 16px"
v-model="checkAll1" @change="handleCheckAllChange1">
2023-11-21 18:18:35 +08:00
</el-checkbox><!--:indeterminate="isIndeterminate1"-->
2023-11-17 16:33:36 +08:00
满减活动
</div>
</el-popover>
</div>
2023-11-21 18:18:35 +08:00
<div>-{{ fullReduction }}</div>
2023-10-26 09:32:37 +08:00
</div>
2023-11-21 18:18:35 +08:00
<div class="center-left-hj" v-show="isMember && gradeDiscount.length>0">
2023-11-17 16:33:36 +08:00
<div>
<el-popover
placement="bottom-start"
width="400"
trigger="click">
<div>
<el-checkbox-group v-model="checkedCities2" @change="handleCheckedCitiesChange2">
<el-checkbox v-for="(item,index) in gradeDiscount" :label="item.type" :key="index">
<div style="display: flex;justify-content: space-between;height: 40px;line-height: 40px;">
<div style="width: 200px">{{item.type}}</div>
<div style="line-height: 20px;width:150px;font-size: 12px;text-align: right">
<div style="color: red">-{{ oilDiscount }}</div>
<div v-if="item.type=='满减优惠'" style="color: grey">消费满{{ item.full }}立减{{ item.reduce }}</div>
2023-11-22 18:10:36 +08:00
<div v-else style="color: grey">消费满{{ item.full }}每升优惠{{ item.liters }}</div>
2023-11-17 16:33:36 +08:00
</div>
</div>
</el-checkbox>
</el-checkbox-group>
</div>
<div slot="reference">
2023-11-22 18:10:36 +08:00
<el-checkbox
2023-11-17 16:33:36 +08:00
style="color: black;font-size: 16px"
v-model="checkAll2" @change="handleCheckAllChange2">
2023-11-22 18:10:36 +08:00
</el-checkbox><!-- :indeterminate="isIndeterminate2"-->
2023-11-17 16:33:36 +08:00
等级优惠
</div>
</el-popover>
</div>
2023-11-22 18:10:36 +08:00
<div>-{{ oilDiscount }}</div>
2023-11-09 13:51:57 +08:00
</div>
2023-11-16 19:00:57 +08:00
<div class="center-left-hj" v-show="isMember && refuelMoney!=null">
<div>
2023-11-21 18:18:35 +08:00
<el-checkbox
style="color: black;font-size: 16px"
v-model="checkAll3" @change="handleCheckAllChange3">
</el-checkbox><!--:indeterminate="isIndeterminate3"-->
囤油卡
<div style="margin: 5px 0" v-for="(item,index) in refuelMoney" :key="index">
{{ item.type }}
<span style="color: #00afff">{{ item.oilType }}</span>
余额{{ item.refuelMoney }}L
</div>
2023-11-16 19:00:57 +08:00
</div>
<div>- {{ consumeRefuelMoney }}L</div>
</div>
2023-11-09 18:52:12 +08:00
<div class="center-left-hj" v-show="isMember">
2023-11-09 13:51:57 +08:00
<div>
2023-11-21 18:18:35 +08:00
<el-checkbox style="color: black;font-size: 16px"
v-model="checkAll4" @change="handleCheckAllChange4">
</el-checkbox>
储值卡
<span>账户余额{{ balance }}</span>
2023-11-09 13:51:57 +08:00
</div>
<div>-{{ consumeAmount }}</div>
</div>
2023-11-22 18:10:36 +08:00
<div class="center-left-hj" v-show="isMember && couponDiscount.length>0">
2023-11-17 16:33:36 +08:00
<div>
<el-popover
placement="bottom-start"
width="400"
trigger="click">
<div>
2023-11-23 18:37:40 +08:00
<!-- <el-checkbox-group v-model="checkedCities5" @change="handleCheckedCitiesChange5">-->
<!-- <el-checkbox v-for="(item,index) in couponDiscount" :label="item.name" :key="index">-->
<!-- <div style="display: flex;justify-content: space-between;height: 40px;line-height: 40px;">-->
<!-- <div style="width: 200px">{{item.name}}</div>-->
<!-- <div style="line-height: 20px;width:150px;font-size: 12px;text-align: right">-->
<!-- <div style="color: red">-{{ item.reduce }}</div>-->
<!-- <div style="color: grey">{{ item.full }}{{ item.reduce }}</div>-->
<!-- </div>-->
<!-- </div>-->
<!-- </el-checkbox>-->
<!-- </el-checkbox-group>-->
<el-radio-group v-model="checkedCities5" @input="handleCheckedCitiesChange5">
<el-radio v-for="(item,index) in couponDiscount"
:label="item.name" :key="index" style="display: flex;">
2023-11-17 16:33:36 +08:00
<div style="display: flex;justify-content: space-between;height: 40px;line-height: 40px;">
2023-11-21 18:18:35 +08:00
<div style="width: 200px">{{item.name}}</div>
2023-11-17 16:33:36 +08:00
<div style="line-height: 20px;width:150px;font-size: 12px;text-align: right">
2023-11-21 18:18:35 +08:00
<div style="color: red">-{{ item.reduce }}</div>
<div style="color: grey">{{ item.full }}{{ item.reduce }}</div>
2023-11-17 16:33:36 +08:00
</div>
</div>
2023-11-23 18:37:40 +08:00
</el-radio>
</el-radio-group>
2023-11-17 16:33:36 +08:00
</div>
<div slot="reference">
2023-11-22 18:10:36 +08:00
<el-checkbox
2023-11-17 16:33:36 +08:00
style="color: black;font-size: 16px"
v-model="checkAll5" @change="handleCheckAllChange5">
2023-11-22 18:10:36 +08:00
</el-checkbox><!-- :indeterminate="isIndeterminate5"-->
2023-11-17 16:33:36 +08:00
优惠券
</div>
</el-popover>
</div>
<div>-{{ couponAmount }}</div>
</div>
2023-10-26 09:32:37 +08:00
<div class="center-left-th">
<div class="th-box">
<div>扫码支付</div>
2023-12-04 16:35:09 +08:00
<div class="bule">{{ +oilActualPay + (+goodsActualPay) }}</div>
2023-10-26 09:32:37 +08:00
</div>
<div class="th-box">
<div>找零</div>
2023-11-17 16:33:36 +08:00
<div class="bule">{{ seekZero }}</div>
2023-10-26 09:32:37 +08:00
</div>
<div class="th-box">
2023-11-07 18:12:17 +08:00
<div @click="dialogVisible = true">加油员</div>
<div style="cursor: pointer;color: crimson" @click="dialogVisible = true" >{{ staff.realName }}</div>
2023-10-26 09:32:37 +08:00
</div>
</div>
</div>
<div class="bottom-posi">
<div class="center-left-wrap">
2023-11-03 15:59:38 +08:00
<div class="wrap-box" v-for="item in payList"
:key="item.dictValue"
:value="item.dictValue">
<span @click="payMethod(item.dictValue)">{{ item.dictLabel }}</span>
2023-10-26 09:32:37 +08:00
</div>
2023-11-20 19:53:05 +08:00
<div class="wrap-box" >
<span @click="addCredits">挂账</span>
</div>
2023-10-26 09:32:37 +08:00
</div>
<div class="center-left-bottom">
<div>
2023-12-04 16:35:09 +08:00
<div class="bottom-price">{{ +oilActualPay + (+goodsActualPay) }}</div>
2023-11-16 19:00:57 +08:00
<div class="price-red">优惠合计{{ oilDiscount + goodsDiscount }}/{{consumeRefuelMoney}}L</div>
2023-10-26 09:32:37 +08:00
</div>
2023-11-24 18:13:11 +08:00
<el-button class="center-left-lv" :disabled="(oilAmount + goodsAmount)==0" @click="settlement">立即结算</el-button>
2023-10-26 09:32:37 +08:00
</div>
</div>
</div>
2023-11-06 18:06:29 +08:00
2023-11-16 19:00:57 +08:00
<!-- 油品选择-->
2023-10-26 09:32:37 +08:00
<div class="center-right">
<div class="center-top">
<div class="center-top-tab">
<el-tabs v-model="activeName" @tab-click="handleClick">
2023-11-28 18:33:35 +08:00
<el-tab-pane label="全部" name="-1"></el-tab-pane>
<!-- <el-tab-pane v-for="item in oilNameList" :key="item.id"-->
<!-- :label="item.oilName" :name="item.id+''"></el-tab-pane>-->
<el-tab-pane v-for="(item,index) in oilNumberList" :key="index"
:label="getOilNamess(oilNameList,item.oilName)" :name="item.oilName+''">
<!-- {{getOilNamess(oilNameList,item.oilName)}}-->
</el-tab-pane>
2023-10-26 09:32:37 +08:00
</el-tabs>
</div>
<div class="center-top-data">
2023-11-06 18:06:29 +08:00
<div class="center-top-of">
2023-10-26 09:32:37 +08:00
<div class="wrap-wrap">
2023-11-17 16:33:36 +08:00
<div class="of-box" v-for="(item,index) in gunList" :key="index"
:style="{'background-color': colorList[index%5].color}"
@click="refuel(item)">
2023-11-21 18:18:35 +08:00
<div>{{ getName(oilNameList,getOilNames(oilNumberList,item.numberId)) }}</div>
<!-- <div>{{ getOilNames(oilNumberList,item.numberId) }}</div>-->
<!-- <div>{{ item.oilNumber }}</div>-->
2023-11-17 16:33:36 +08:00
<div class="of-title" >{{item.gunName}}</div>
<div style="display: flex;justify-content: space-between">
<img src="../../../assets/images/jya.png" style="width: 18px;height: 18px;">
<span style="font-size: 12px">{{ item.tankName }}</span>
</div>
2023-11-22 18:10:36 +08:00
<!-- <div style="display: flex;justify-content: space-between">-->
<!-- <span>-->
<!-- <svg t="1700561564710" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="9686" width="16" height="16"><path d="M661.8 868.4V455.8h27.9c15.3-0.1 27.8 12.3 27.9 27.6V746c-0.1 67.5 54.5 122.3 121.9 122.4S961.9 813.9 962 746.5V241.6c0.1-25.4-10.1-49.8-28.3-67.5l-99.4-98.5c-18-18-47.2-18-65.2 0s-18 47.2 0 65.2l64.3 64.8-47.7 49.5c-15.8 16-15.8 41.6 0 57.6 7.4 7.8 17.6 12.2 28.3 12.1h54v422.1c0 15.4-12.5 27.9-27.9 27.9-15.4 0-27.9-12.5-27.9-27.9V484.1c0.1-67.3-54.3-121.8-121.6-121.9H662.3v-225c-0.1-41.5-33.7-75.1-75.1-75.1H193.4c-41.5 0.1-75.1 33.7-75.1 75.1v731.2h-9.4c-25.8 0-46.8 21-46.8 46.8C62 941 83 962 108.8 962h562.5c25.8 0 46.8-20.9 46.8-46.8 0-25.8-20.9-46.8-46.8-46.8h-9.5zM253.2 155.6h273.6c22.8 0 41.3 18.4 41.4 41.2v199.1c0 22.8-18.4 41.3-41.2 41.4H253.2c-22.8 0-41.3-18.4-41.4-41.2V197c0-22.8 18.4-41.3 41.2-41.4h0.2z" fill="#FFFFFF" p-id="9687"></path></svg>-->
<!-- </span>-->
<!-- <span>-->
<!-- <svg t="1700561410052" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5197" width="16" height="16"><path d="M365.714286 365.714286h109.714285v365.714285H365.714286V365.714286z m182.857143 0H658.285714v365.714285H548.571429V365.714286z m329.142857-36.571429v438.857143A182.857143 182.857143 0 0 1 694.857143 950.857143h-365.714286A182.857143 182.857143 0 0 1 146.285714 768v-438.857143h109.714286v416.256c0 45.129143 47.104 95.744 93.037714 95.744h326.217143c57.563429 0 92.745143-52.370286 92.745143-95.744V329.142857H877.714286zM676.571429 146.285714h182.857142a54.857143 54.857143 0 0 1 54.857143 54.857143v54.857143h-804.571428v-54.857143A54.857143 54.857143 0 0 1 164.571429 146.285714h182.857142l38.4-51.2a54.857143 54.857143 0 0 1 43.885715-21.942857h164.571428a54.857143 54.857143 0 0 1 43.885715 21.942857l38.4 51.2z" fill="#FFFFFF" p-id="5198"></path></svg>-->
<!-- </span>-->
<!-- </div>-->
2023-11-17 16:33:36 +08:00
</div>
2023-11-21 18:18:35 +08:00
<!-- 点击之后样式测试-->
2023-11-22 18:10:36 +08:00
<!-- <div class="after-box">-->
<!-- <div>11</div>-->
2023-11-16 19:00:57 +08:00
2023-11-22 18:10:36 +08:00
<!-- <div class="of-title" >1号枪</div>-->
<!-- <div style="display: flex;justify-content: space-between">-->
<!--&lt;!&ndash; <img src="../../../assets/images/jya.png" style="width: 18px;height: 18px;">&ndash;&gt;-->
<!-- <span>-->
<!-- <svg t="1700561564710" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="9686" width="16" height="16"><path d="M661.8 868.4V455.8h27.9c15.3-0.1 27.8 12.3 27.9 27.6V746c-0.1 67.5 54.5 122.3 121.9 122.4S961.9 813.9 962 746.5V241.6c0.1-25.4-10.1-49.8-28.3-67.5l-99.4-98.5c-18-18-47.2-18-65.2 0s-18 47.2 0 65.2l64.3 64.8-47.7 49.5c-15.8 16-15.8 41.6 0 57.6 7.4 7.8 17.6 12.2 28.3 12.1h54v422.1c0 15.4-12.5 27.9-27.9 27.9-15.4 0-27.9-12.5-27.9-27.9V484.1c0.1-67.3-54.3-121.8-121.6-121.9H662.3v-225c-0.1-41.5-33.7-75.1-75.1-75.1H193.4c-41.5 0.1-75.1 33.7-75.1 75.1v731.2h-9.4c-25.8 0-46.8 21-46.8 46.8C62 941 83 962 108.8 962h562.5c25.8 0 46.8-20.9 46.8-46.8 0-25.8-20.9-46.8-46.8-46.8h-9.5zM253.2 155.6h273.6c22.8 0 41.3 18.4 41.4 41.2v199.1c0 22.8-18.4 41.3-41.2 41.4H253.2c-22.8 0-41.3-18.4-41.4-41.2V197c0-22.8 18.4-41.3 41.2-41.4h0.2z" fill="#FFFFFF" p-id="9687"></path></svg>-->
<!-- </span>-->
<!-- <span>-->
<!-- <svg t="1700561410052" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5197" width="16" height="16"><path d="M365.714286 365.714286h109.714285v365.714285H365.714286V365.714286z m182.857143 0H658.285714v365.714285H548.571429V365.714286z m329.142857-36.571429v438.857143A182.857143 182.857143 0 0 1 694.857143 950.857143h-365.714286A182.857143 182.857143 0 0 1 146.285714 768v-438.857143h109.714286v416.256c0 45.129143 47.104 95.744 93.037714 95.744h326.217143c57.563429 0 92.745143-52.370286 92.745143-95.744V329.142857H877.714286zM676.571429 146.285714h182.857142a54.857143 54.857143 0 0 1 54.857143 54.857143v54.857143h-804.571428v-54.857143A54.857143 54.857143 0 0 1 164.571429 146.285714h182.857142l38.4-51.2a54.857143 54.857143 0 0 1 43.885715-21.942857h164.571428a54.857143 54.857143 0 0 1 43.885715 21.942857l38.4 51.2z" fill="#FFFFFF" p-id="5198"></path></svg>-->
<!-- </span>-->
<!-- </div>-->
<!-- </div>-->
2023-10-26 09:32:37 +08:00
</div>
</div>
<!-- -->
<div class="content-top-bottom">
2023-11-07 18:12:17 +08:00
<div>订单笔数 <span class="bule">{{ oilTotal }}</span> </div>
<div>订单金额 <span class="bule">{{ oilAmount }}</span> </div>
2023-10-26 09:32:37 +08:00
</div>
</div>
</div>
<div class="center-left-bottom">
2023-11-09 13:51:57 +08:00
<div class="bottom-gd" @click="resetting">重置</div>
<!-- <div class="bottom-qk">解锁</div>-->
2023-10-26 09:32:37 +08:00
</div>
</div>
2023-11-06 18:06:29 +08:00
2023-11-16 19:00:57 +08:00
<!-- 商品选择-->
2023-10-26 09:32:37 +08:00
<div class="center-app">
<div class="center-top">
<div class="center-top-title">非油商品</div>
<div class="center-top-input">
2023-11-07 18:12:17 +08:00
<template>
2023-11-09 18:52:12 +08:00
<el-autocomplete
2023-11-10 18:10:23 +08:00
popper-class="my-autocomplete"
style="width: 94%"
2023-11-09 18:52:12 +08:00
v-model="goods"
:fetch-suggestions="querySearch"
2023-11-10 18:10:23 +08:00
placeholder="商品名称,商品关键词,商品条码"
@select="changeGoods">
<template slot-scope="{ item }">
<div style="display: flex;justify-content: space-between">
<span class="name">{{ item.name }}</span>
<span v-if="isMember" class="addr">{{ item.memberPrice }}</span>
<span v-else class="addr">{{ item.retailPrice }}</span>
</div>
</template>
</el-autocomplete>
2023-11-09 18:52:12 +08:00
<!-- <el-select v-model="goods" filterable-->
<!-- style="width: 95%;font-size: 20px;"-->
<!-- @change="changeGoods"-->
<!-- @keydown.enter.native="queryGoods"-->
<!-- clearable-->
<!-- placeholder="请输入商品名称,商品关键词">-->
<!-- <el-option-->
<!-- v-for="item in goodsList"-->
<!-- :key="item.id"-->
<!-- :label="item.name"-->
<!-- :value="item.id">-->
<!-- <span style="float: left">{{ item.name }}</span>-->
<!-- <span style="float: right; color: #8492a6; font-size: 13px">{{ item.retailPrice }}</span>-->
<!-- </el-option>-->
<!-- </el-select>-->
2023-11-07 18:12:17 +08:00
</template>
2023-10-26 09:32:37 +08:00
</div>
<div class="center-top-data">
<div class="data-top">
<div class="data-top-title">商品</div>
<div class="data-top-three">
2023-11-25 18:08:20 +08:00
<div>库存</div>
2023-11-09 13:51:57 +08:00
<div v-if="isMember == false">单价</div>
<div v-else>会员价</div>
2023-10-26 09:32:37 +08:00
<div>数量</div>
<div>操作</div>
</div>
</div>
2023-11-07 18:12:17 +08:00
<div class="data-top-box" v-for="(item,index) in goodsOrder" :key="index">
<div class="data-top-title">{{ item.name }}</div>
2023-10-26 09:32:37 +08:00
<div class="data-top-three">
2023-11-25 18:08:20 +08:00
<div>{{ item.stock }}</div>
2023-11-09 13:51:57 +08:00
<div v-if="isMember == false">{{ item.retailPrice }}</div>
<div v-else>{{ item.memberPrice }}</div>
2023-11-07 18:12:17 +08:00
<div>
<el-input-number v-model="item.num" size="small" controls-position="right"
@change="handleChange" :min="1" :max="10"></el-input-number>
</div>
<div @click="delGoods(index)"><i class="el-icon-circle-close" style="font-size: 22px"></i></div>
2023-10-26 09:32:37 +08:00
</div>
</div>
<div class="content-top-bottom">
2023-11-07 18:12:17 +08:00
<div>商品数量 <span class="bule">{{ goodsTotal }}</span> </div>
<div>商品总额 <span class="bule">{{ goodsAmount }}</span> </div>
2023-10-26 09:32:37 +08:00
</div>
</div>
</div>
<div class="center-left-bottom">
2023-11-07 18:12:17 +08:00
<div class="bottom-qk" @click="empty">清空</div>
2023-10-26 09:32:37 +08:00
<div style="display: flex">
2023-11-08 18:07:17 +08:00
<div class="bottom-qd" @click="dialogTakeOrder = true">取单</div>
<div class="bottom-gd" @click="dialogRegistration = true">挂单</div>
2023-10-26 09:32:37 +08:00
</div>
</div>
</div>
2023-11-06 18:06:29 +08:00
2023-10-26 09:32:37 +08:00
<!-- 加油员姓名-->
<el-dialog
2023-11-06 18:06:29 +08:00
title="选择加油员"
2023-10-26 09:32:37 +08:00
:visible.sync="dialogVisible"
width="30%"
2023-11-06 18:06:29 +08:00
:close-on-click-modal="false">
<div class="wrap-wrap">
<div class="of-box" v-for="(item,index) in staffList" :key="index"
2023-11-07 18:12:17 +08:00
@click="chooseStaff(item)"
2023-11-06 18:06:29 +08:00
:style="{'background-color': item.color}">
2023-11-07 18:12:17 +08:00
<div class="of-title">{{ item.realName }}</div>
<div style="text-align: center;font-size: 17px">{{ item.mobile }}</div>
2023-10-26 09:32:37 +08:00
</div>
</div>
<span slot="footer" class="dialog-footer">
2023-11-07 18:12:17 +08:00
<el-button @click="dialogVisible = false"> </el-button>
2023-11-06 18:06:29 +08:00
<!-- <el-button type="primary" @click="dialogVisible = false"> </el-button>-->
2023-10-26 09:32:37 +08:00
</span>
</el-dialog>
2023-11-16 19:00:57 +08:00
2023-11-08 18:07:17 +08:00
<!-- 挂单-->
<el-dialog
title="挂单提示"
:visible.sync="dialogRegistration"
width="20%"
style="margin-top: 200px"
:close-on-click-modal="false">
<div class="wrap-wrap">
<p>
挂单只可将非油商品进行挂单,挂单成功后可在取单页面进行取单操作挂单备注为选填
</p>
<div>
<el-input
type="textarea"
:rows="2"
style="width: 180%"
placeholder="请输入挂单备注(选填)"
v-model="registrationRemark">
</el-input>
</div>
</div>
<span slot="footer" class="dialog-footer">
<el-button @click="dialogRegistration = false"> </el-button>
<el-button type="primary" @click="registration"> </el-button>
</span>
</el-dialog>
2023-11-16 19:00:57 +08:00
2023-11-08 18:07:17 +08:00
<!-- 挂单成功提示-->
<el-dialog
title="挂单成功"
:visible.sync="dialogSuccess"
width="20%"
style="margin-top: 200px"
:close-on-click-modal="false">
<span>商品记录挂单成功</span>
<span slot="footer" class="dialog-footer">
<!-- <el-button @click="dialogVisible = false"> </el-button>-->
<el-button type="primary" @click="dialogSuccess = false"> </el-button>
</span>
</el-dialog>
2023-11-16 19:00:57 +08:00
2023-11-08 18:07:17 +08:00
<!-- 取单提示-->
<el-dialog
title="取单"
:visible.sync="dialogTakeOrder"
width="50%"
:close-on-click-modal="false">
<div style="height: 500px">
<el-row class="tac">
<el-col :span="6">
<el-input v-model="putRemark" placeholder="挂单备注检索" style="margin-bottom: 20px;width: 80%"></el-input>
<el-menu
default-active="2"
v-for="(item,index) in registrationList"
:key="index"
class="el-menu-vertical-demo">
<el-menu-item :index="index+''" @click="getTakeGoods(item,index)">
<span slot="title">{{ item.menu }}</span>
</el-menu-item>
</el-menu>
</el-col>
<el-col :span="18">
<el-table ref="tables" :data="takeList">
<el-table-column label="商品名称" align="center" prop="name" />
<el-table-column label="零售价" align="center" prop="retailPrice"/>
<el-table-column label="数量" align="center" prop="num"/>
<el-table-column label="金额" align="center">
<template slot-scope="scope">
2023-11-21 18:18:35 +08:00
<span>{{ (scope.row.retailPrice * scope.row.num).toFixed(2) }}</span>
2023-11-08 18:07:17 +08:00
</template>
</el-table-column>
</el-table>
</el-col>
</el-row>
</div>
<span style="display: flex;justify-content: space-between">
<el-button class="elBut" @click="dialogTakeOrder = false" round> </el-button>
<span>
<el-button class="elBut" type="danger" @click="cancel" round> </el-button>
<el-button class="elBut" type="success" @click="pickOrder" round> </el-button>
</span>
</span>
</el-dialog>
2023-11-16 19:00:57 +08:00
2023-10-26 09:32:37 +08:00
<!-- 立即结算-->
<el-dialog
2023-11-07 18:12:17 +08:00
title="扫码支付"
2023-10-26 09:32:37 +08:00
:visible.sync="dialogVisiblej"
width="30%"
2023-11-06 18:06:29 +08:00
:close-on-click-modal="false">
2023-11-09 18:52:12 +08:00
<div v-if="isPay == true"
v-loading="loading">
2023-11-08 18:07:17 +08:00
<div style="text-align: center;font-size: 15px;font-weight: bold">应收金额</div>
<div style="text-align: center;font-size: 30px;font-weight: bold;color: red;margin: 10px 0">
2023-12-04 16:35:09 +08:00
{{ +oilActualPay + (+goodsActualPay) }}
2023-11-08 18:07:17 +08:00
</div>
<div style="text-align: center;margin-bottom: 10px">
2023-11-16 19:00:57 +08:00
合计金额{{ oilAmount + goodsAmount }}优惠合计{{ oilDiscount + goodsDiscount }}
2023-11-08 18:07:17 +08:00
</div>
2023-11-17 16:33:36 +08:00
<div v-if="map.payType != 'CASH'">
<div>
<el-input v-model="authCode"
2023-11-27 18:28:41 +08:00
v-focus
autofocus
2023-11-17 16:33:36 +08:00
@keydown.enter.native="collection"
placeholder="扫描或输入付款码、支持微信、支付宝、云闪付">
<i
slot="suffix">
<svg t="1697791915471" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1479" width="32" height="32"><path d="M149.333333 170.858667A21.546667 21.546667 0 0 1 170.858667 149.333333H384V106.666667H170.858667A64.213333 64.213333 0 0 0 106.666667 170.858667V384h42.666666V170.858667zM170.858667 874.666667A21.546667 21.546667 0 0 1 149.333333 853.141333V640H106.666667v213.141333A64.213333 64.213333 0 0 0 170.858667 917.333333H384v-42.666666H170.858667zM853.12 149.333333A21.546667 21.546667 0 0 1 874.666667 170.858667V384h42.666666V170.858667A64.213333 64.213333 0 0 0 853.141333 106.666667H640v42.666666h213.141333zM874.666667 853.141333A21.546667 21.546667 0 0 1 853.141333 874.666667H640v42.666666h213.141333A64.213333 64.213333 0 0 0 917.333333 853.141333V640h-42.666666v213.141333zM106.666667 490.666667h810.666666v42.666666H106.666667v-42.666666z" fill="#3D3D3D" p-id="1480"></path></svg>
</i>
</el-input>
</div>
<div class="demo-image"></div>
2023-11-08 18:07:17 +08:00
<div class="block" style="text-align: center">
<el-image
style="width: 200px; height: 200px"
fit="cover"
src="https://oil.wudb.cn/static/img/scan-demo.fcb8b1ab.png"></el-image>
</div>
</div>
2023-11-17 16:33:36 +08:00
<div v-else>
<div>
<el-input v-model="authCode"
2023-11-27 18:28:41 +08:00
v-focus ref="getFocus"
autofocus
2023-11-17 16:33:36 +08:00
@input="changeSeekZero"
@keydown.enter.native="collection"
placeholder="请输入收款金额">
</el-input>
</div>
<div style="text-align: right;margin: 10px 0">
<span>应找零</span>
<span style="color: red;font-size: 18px"> {{ seekZero }}</span>
</div>
</div>
2023-11-08 18:07:17 +08:00
<el-divider></el-divider>
<span slot="footer" class="dialog-footer" style="display: flex;justify-content: space-around">
2023-11-25 18:08:20 +08:00
<el-button @click="clear" class="but"> </el-button>
2023-11-08 18:07:17 +08:00
<el-button type="primary" class="but" @click="collection"> </el-button>
</span>
2023-11-03 15:59:38 +08:00
</div>
2023-11-09 18:52:12 +08:00
<div v-else>
2023-11-08 18:07:17 +08:00
<div v-if="isPaySuccess">
<el-result icon="success" title="收款成功">
<template slot="extra">
<el-button type="primary" @click="handClose"> </el-button>
</template>
</el-result>
</div>
<div v-else>
<el-result icon="error" title="支付失败,请重新支付">
<template slot="extra">
<el-button type="primary" @click="handClose"> </el-button>
</template>
</el-result>
2023-11-03 15:59:38 +08:00
</div>
</div>
2023-10-26 09:32:37 +08:00
</el-dialog>
2023-11-16 19:00:57 +08:00
2023-10-26 09:32:37 +08:00
<!-- 会员登录-->
<el-dialog
2023-11-06 18:06:29 +08:00
title="会员信息"
2023-10-26 09:32:37 +08:00
:visible.sync="dialogVisiblevip"
width="30%"
2023-11-06 18:06:29 +08:00
:close-on-click-modal="false">
2023-10-26 09:32:37 +08:00
<div >
2023-11-07 18:12:17 +08:00
<el-input placeholder="会员手机号、用户昵称" v-model="userNo"
clearable
@keyup.enter.native="getUser"
2023-11-06 18:06:29 +08:00
class="input-with-select" style="text-align: center;">
<el-select v-model="select1" slot="prepend" placeholder="请选择" style="width: 120px">
<el-option label="会员手机号" value="会员手机号"></el-option>
<el-option label="用户昵称" value="用户昵称"></el-option>
</el-select>
<el-button slot="append" @click="getUser">查询</el-button>
</el-input>
2023-10-26 09:32:37 +08:00
</div>
2023-11-06 18:06:29 +08:00
<el-row>
<el-descriptions title="会员信息" :column="2">
<el-descriptions-item label="手机号">{{member.mobile ? member.mobile : "--"}}</el-descriptions-item>
<el-descriptions-item label="会员昵称">{{member.name ? member.name : "--"}}</el-descriptions-item>
<el-descriptions-item label="积分">{{member.points ? member.points : "--"}}</el-descriptions-item>
<!-- <el-descriptions-item label="加油金余额">0</el-descriptions-item>-->
<el-descriptions-item label="车牌号">{{member.carNo ? member.carNo : "--"}}</el-descriptions-item>
<el-descriptions-item label="会员备注">{{member.remark ? member.remark : "--"}}</el-descriptions-item>
</el-descriptions>
<el-descriptions title="会员等级">
2023-11-17 16:33:36 +08:00
<el-descriptions-item label="等级名称">{{member.gradeId ? getGradeName(gradeList,member.gradeId) : "--"}}</el-descriptions-item>
2023-11-06 18:06:29 +08:00
</el-descriptions>
<el-descriptions title="储值余额">
<template slot="extra">
2023-11-16 19:00:57 +08:00
<span style="color: red;margin-right: 20px">余额充值</span>
<span style="font-weight: bold">{{member.cardBalance ? member.cardBalance : "--"}}</span>
2023-11-06 18:06:29 +08:00
</template>
<el-descriptions-item v-if="member.cardBalance!=0" label="账户余额">{{member.cardBalance ? member.cardBalance : "--"}}</el-descriptions-item>
</el-descriptions>
</el-row>
2023-10-26 09:32:37 +08:00
<span slot="footer" class="dialog-footer">
<el-button @click="dialogVisiblevip = false"> </el-button>
2023-11-17 16:33:36 +08:00
<el-button type="primary" :disabled="isSure" @click="chooseUser(member)"> </el-button>
2023-10-26 09:32:37 +08:00
</span>
</el-dialog>
2023-11-06 18:06:29 +08:00
<!-- 加油枪加油金额-->
<el-dialog
title="加油金额"
:close-on-click-modal="false"
:visible.sync="dialogVisibleamount"
width="30%">
<div class="amount">
<span>已选油品</span>
<span class="amountBlue">{{ getName(oilNameList,form.oilName) }}</span>
</div>
<div class="amount">
<span>已选油枪</span>
2023-11-17 16:33:36 +08:00
<span class="amountBlue">{{ form.gunName }}</span>
2023-11-06 18:06:29 +08:00
</div>
<div class="amount">
<span>油品单价</span>
<span class="amountBlue">{{ form.oilPrice }}/L</span>
</div>
<div >
2023-11-09 13:51:57 +08:00
<el-input v-model="amount" @input="form.amount = amount" placeholder="请输入加油金额"
2023-11-06 18:06:29 +08:00
style="font-weight: 700;text-align: center;font-size: 20px;">
<el-select v-model="select" style="width: 70px" @change="changeSelect" slot="append" placeholder="请选择">
<el-option label="元" value="元"></el-option>
<el-option label="L" value="L"></el-option>
</el-select>
</el-input>
2023-11-09 13:51:57 +08:00
<!-- <el-input v-model="form.amount"></el-input>-->
2023-11-06 18:06:29 +08:00
</div>
<el-row :gutter="20">
<el-col :span="6" v-for="(item,index) in rise" :key="index">
<el-button class="grid-content bg-purple" @click="changeAmount(item.value)">{{ item.value }}</el-button>
</el-col>
</el-row>
<span slot="footer" class="dialog-footer" style="display: flex;justify-content: space-around">
<el-button @click="dialogVisibleamount = false" class="but"> </el-button>
<el-button type="primary" @click="getOilOrder" class="but"> </el-button>
</span>
</el-dialog>
2023-10-26 09:32:37 +08:00
2023-11-07 18:12:17 +08:00
<!-- 模糊查询会员列表信息-->
<el-dialog
title="请选择会员"
:visible.sync="dialogVisibleMember"
:close-on-click-modal="false">
<div class="wrap-wrap">
<el-table ref="tables" :data="memberList">
<el-table-column label="ID" align="center" prop="id" width="80" />
<el-table-column label="头像" align="center" width="70">
<template slot-scope="scope">
<img v-if="scope.row.avatar" class="list-avatar" :src="scope.row.avatar">
<img v-else class="list-avatar" src="@/assets/images/avatar.png">
</template>
</el-table-column>
<el-table-column label="姓名" align="center" prop="name" />
<el-table-column label="手机号" align="center" prop="mobile"/>
<el-table-column label="注册时间" align="center" prop="createTime">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.createTime) }}</span>
</template>
</el-table-column>
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
<template slot-scope="scope">
<el-button
type="primary" round
@click="handleChoose(scope.row)"
>选择</el-button>
</template>
</el-table-column>
</el-table>
</div>
</el-dialog>
2023-11-20 19:53:05 +08:00
<!-- 新增挂账信息-->
<el-dialog
title="挂账" width="700px"
:visible.sync="dialogVisibleCredit"
:close-on-click-modal="false">
<el-form ref="form" :model="form1" :rules="rules" label-width="120px">
<el-row>
<el-col :span="24">
<el-form-item label="挂账单位" prop="unitName" style="width: 420px">
<el-autocomplete
popper-class="my-autocomplete"
v-model="form1.unitName"
style="width: 180%"
:fetch-suggestions="querySearch1"
placeholder="请选择挂账单位"
@select="changeUnit">
<template slot-scope="{ item }">
<div style="display: flex;justify-content: space-between">
{{item.unitName}}{{item.personCredit}} {{item.contactMobile}}
</div>
</template>
<el-button slot="append" @click="open1 = true">新增挂账单位</el-button>
</el-autocomplete>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="24">
<el-form-item label="可用额度" prop="creditLimit">
<el-input v-model="form1.creditLimit" placeholder="请先选择挂账单位" disabled>
<template slot="append"></template>
</el-input>
<span style="font-size: 12px;color: grey;">
可用额度为挂账人的最大可用额度,如挂账金额大于可用额度,将无法进行挂账,0为不限额
</span>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="24">
<el-form-item label="挂账金额" prop="amount">
<el-input v-model="form1.amount" placeholder="请输入挂账金额" maxlength="30" >
<template slot="append"></template>
</el-input>
</el-form-item>
</el-col>
</el-row>
<el-form-item label="备注信息" prop="remark">
<el-input v-model="form1.remark" type="textarea" placeholder="请输入内容"></el-input>
</el-form-item>
</el-form>
<span slot="footer" class="dialog-footer">
<el-button @click="dialogVisibleCredit = false"> </el-button>
<el-button type="primary" @click="addHangbill"> </el-button>
</span>
</el-dialog>
<!-- 新增挂账单位信息-->
<el-dialog title="新增挂账单位" :visible.sync="open1" width="700px" append-to-body>
<el-form ref="formName" :model="form2" :rules="rules1" label-width="120px">
<el-row>
<el-col :span="24">
<el-form-item label="挂账单位" prop="unitName">
<el-input v-model="form2.unitName" show-word-limit placeholder="请输入挂账单位名称" maxlength="50" />
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="24">
<el-form-item label="负责人" prop="personCredit">
<el-input v-model="form2.personCredit" show-word-limit placeholder="请输入挂账单位负责人姓名" maxlength="10" />
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="24">
<el-form-item label="联系电话" prop="contactMobile">
<el-input v-model="form2.contactMobile" show-word-limit placeholder="请输入挂账单位联系电话" maxlength="15" />
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="24">
<el-form-item label="挂账额度" prop="creditLimit">
<el-input v-model="form2.creditLimit" placeholder="请输入挂账额度为0则不限额" maxlength="30">
<template slot="append"></template>
</el-input>
<span style="font-size: 12px;color: grey;">
0为不限额,额度为当前单位最大可挂账金额,如已挂账金额归还,额度将也同步返还
</span>
</el-form-item>
</el-col>
</el-row>
<el-form-item label="备注信息" prop="remark">
<el-input v-model="form2.remark" type="textarea" placeholder="请输入内容"></el-input>
</el-form-item>
<el-row>
<el-col :span="24">
<el-form-item label="单位状态" prop="status">
<el-radio-group v-model="form2.status">
<el-radio label="qy" value="qy">启用</el-radio>
<el-radio label="jy" value="jy">禁用</el-radio>
</el-radio-group>
</el-form-item>
</el-col>
</el-row>
</el-form>
<span slot="footer" class="dialog-footer">
<el-button @click="open1 = false"> </el-button>
<el-button type="primary" @click="addCredit"> </el-button>
</span>
</el-dialog>
2023-10-26 09:32:37 +08:00
</div>
</template>
<script>
2023-11-03 15:59:38 +08:00
import {getDicts} from "@/api/dict/data";
2023-11-20 19:53:05 +08:00
import {getOilNameList, getOilNumGun, listOilNumGun} from "@/api/cashier/oilnumgun";
2023-11-10 18:10:23 +08:00
import {listgoods} from "@/api/cashier/ljgoods";
2023-11-07 18:12:17 +08:00
import {getUserVoMobile, getUserVoName} from "@/api/cashier/user";
import {queryStaffs, staffInfo} from "@/api/cashier/staff";
2023-11-08 18:07:17 +08:00
import {addLJGoods, goodsOrder, oilOrder} from "@/api/cashier/oilorder";
2023-11-25 10:27:36 +08:00
import {getUserGrade, listUserGrade, userGradeInfo} from "@/api/cashier/usergrade";
2023-11-25 18:08:20 +08:00
import {getOilGun, getOilTank} from "@/api/cashier/oilGuns";
2023-11-16 19:00:57 +08:00
import {listCardFavorableRecord} from "@/api/cashier/cardfavorablerecord";
2023-11-21 18:18:35 +08:00
import {getOilNumberById, oilNumberList} from "@/api/cashier/oilnumber";
import {selectCoupon, selectPreferential} from "@/api/cashier/preferential";
2023-11-20 19:53:05 +08:00
import {addHangBill} from "@/api/cashier/hangbill";
import {addCreditUnit, listCreditUnit} from "@/api/cashier/creditunit";
2023-11-24 18:13:11 +08:00
import {getSysConfig} from "@/api/staff/user/sysconfig";
2023-10-26 09:32:37 +08:00
2023-11-17 16:33:36 +08:00
const cityOptions = ['上海', '北京'];
2023-11-03 15:59:38 +08:00
export default {
name: "homeindex",
data(){
return{
2023-11-17 16:33:36 +08:00
// 满减全选
checkAll1: false,
isIndeterminate1: true,
2023-11-20 19:53:05 +08:00
checkedCities1: [],
2023-11-17 16:33:36 +08:00
cities1: cityOptions,
2023-11-20 19:53:05 +08:00
fullReduceDiscount: [],
2023-11-17 16:33:36 +08:00
// 等级全选
checkAll2: false,
isIndeterminate2: true,
checkedCities2: [],
cities2: cityOptions,
gradeDiscount: [],
// 囤油卡全选
2023-11-24 18:13:11 +08:00
checkAll3: false,
2023-11-17 16:33:36 +08:00
isIndeterminate3: true,
2023-11-21 18:18:35 +08:00
checkedCities3: [],
2023-11-17 16:33:36 +08:00
cities3: cityOptions,
// 储值卡全选
2023-11-21 18:18:35 +08:00
checkAll4: true,
2023-11-17 16:33:36 +08:00
isIndeterminate4: true,
2023-11-21 18:18:35 +08:00
checkedCities4: [],
2023-11-17 16:33:36 +08:00
cities4: cityOptions,
// 优惠券全选
checkAll5: false,
isIndeterminate5: true,
2023-11-23 18:37:40 +08:00
checkedCities5: "",
2023-11-17 16:33:36 +08:00
cities5: cityOptions,
2023-11-21 18:18:35 +08:00
couponDiscount: [],
2023-11-16 19:00:57 +08:00
// 优惠券列表
couponList:[],
// 消费升数
consumeRefuelMoney:0,
2023-11-17 16:33:36 +08:00
// 满减优惠
fullReduction:0,
2023-11-16 19:00:57 +08:00
// 囤油卡信息
refuelMoney:null,
2023-11-09 13:51:57 +08:00
// 会员消费金额(储值卡需要减少的金额)
consumeAmount:0,
// 账户余额
balance:0,
2023-11-17 16:33:36 +08:00
// 绑定金额数据
2023-11-16 19:00:57 +08:00
amount:0,
2023-11-17 16:33:36 +08:00
// 找零金额
seekZero:0,
2023-11-09 13:51:57 +08:00
// 等待中
2023-11-08 18:07:17 +08:00
loading:false,
2023-11-22 18:10:36 +08:00
// 油号
2023-11-08 18:07:17 +08:00
oilType:'',
2023-11-22 18:10:36 +08:00
// 油品类型
type:"",
2023-11-08 18:07:17 +08:00
// 取单列表
takeList:[],
// 挂单备注检索
putRemark:"",
// 挂单备注
registrationRemark:"",
// 挂单列表
registrationList:[],
2023-11-06 18:06:29 +08:00
// 油品订单
oilOrder:[],
2023-11-07 18:12:17 +08:00
// 油品金额
oilAmount:0,
2023-11-06 18:06:29 +08:00
// 油品订单数
oilTotal:0,
2023-11-08 18:07:17 +08:00
// 油品实付金额
oilActualPay:0,
// 油品优惠金额
oilDiscount:0,
2023-11-24 18:13:11 +08:00
// 扣除升数后需要消费的金额
2023-11-21 18:18:35 +08:00
hoardAmount:0,
2023-11-24 18:13:11 +08:00
// 是否使用囤油卡
isOilStorageCard:false,
2023-11-08 18:07:17 +08:00
// 商品优惠金额
goodsDiscount:0,
// 商品实付金额
goodsActualPay:0,
2023-11-07 18:12:17 +08:00
// 商品订单
goodsOrder:[],
// 商品金额
goodsAmount:0,
// 商品订单数
goodsTotal:0,
2023-11-06 18:06:29 +08:00
// 加油金额
rise:[
{value:"¥100"},
{value:"¥150"},
{value:"¥200"},
{value:"¥300"},
],
// 会员信息
member:{},
2023-11-07 18:12:17 +08:00
// 会员列表信息
memberList:[],
2023-11-06 18:06:29 +08:00
select1:'会员手机号',
2023-11-17 16:33:36 +08:00
// 查询会员信息参数
2023-11-06 18:06:29 +08:00
userNo:"",
// 查询的商品信息
goods:"",
select:"元",
2023-11-22 18:10:36 +08:00
form:{ amount : 0,exist:false },
2023-11-20 19:53:05 +08:00
form1:{},
form2:{
unitName:"",
personCredit:"",
contactMobile:"",
creditLimit:0,
remark:'',
status:'qy',
},
2023-11-06 18:06:29 +08:00
oilNumGunList:[],
2023-11-03 15:59:38 +08:00
authCode:'',
// 油号列表
oilNumList:[],
2023-11-06 18:06:29 +08:00
// 商品列表
goodsList:[],
2023-11-03 15:59:38 +08:00
// 油枪列表
oilGunList:[],
// 支付方式列表
payList:[],
dialogVisible: false,
dialogVisiblej: false,
dialogVisiblevip:false,
2023-11-06 18:06:29 +08:00
dialogVisibleamount:false,
2023-11-07 18:12:17 +08:00
dialogVisibleMember:false,
2023-11-08 18:07:17 +08:00
dialogRegistration:false,
dialogSuccess:false,
dialogTakeOrder:false,
2023-11-20 19:53:05 +08:00
dialogVisibleCredit:false,
open1:false,
2023-11-28 18:33:35 +08:00
activeName: '-1',
2023-11-03 15:59:38 +08:00
tabarr:[
{name:'收银台',icon:'el-icon-s-platform'},
{name:'充值',icon: 'el-icon-s-finance'},
{name:'订单',icon: 'el-icon-s-order'},
{name:'会员',icon: 'el-icon-s-custom'},
{name:'核销',icon: 'el-icon-s-check'},
{name:'挂账',icon:'el-icon-s-claim'},
{name:'积分',icon:'el-icon-s-data'},
{name:'交班',icon: 'el-icon-s-flag'},
],
leftindex:0,
2023-11-09 18:52:12 +08:00
oilList:[],
2023-11-03 15:59:38 +08:00
colorList:[
{color:'#e5f0ff'},
{color:'#fff2e5'},
{color:'#e5edf1'},
{color:'#ecfae5'},
{color:'#fafafa'}
],
2023-11-07 18:12:17 +08:00
restaurants:'',
2023-11-03 15:59:38 +08:00
num: 1,
2023-11-16 19:00:57 +08:00
// 油号名称
2023-11-06 18:06:29 +08:00
oilNameList:'',
2023-11-16 19:00:57 +08:00
// 员工列表
2023-11-06 18:06:29 +08:00
staffList:[],
2023-11-07 18:12:17 +08:00
isMember: false,
// 员工信息
staff:"",
2023-11-23 18:37:40 +08:00
// 优惠券id
couponIds:[],
// 使用的优惠券id
2023-11-24 18:13:11 +08:00
useCouponIds:"",
2023-11-07 18:12:17 +08:00
map:{
2023-11-08 18:07:17 +08:00
allAmount:0,
// 用户支付条码信息
authCode:'',
2023-11-07 18:12:17 +08:00
// 油品订单
oilOrder:"",
// 商品订单
goodsOrder:"",
// 支付方式
2023-11-17 16:33:36 +08:00
payType:"CASH",
2023-11-07 18:12:17 +08:00
// 油品订单金额
2023-11-08 18:07:17 +08:00
oilAmount:0,
2023-11-07 18:12:17 +08:00
// 商品订单金额
2023-11-08 18:07:17 +08:00
goodsAmount:0,
2023-11-07 18:12:17 +08:00
// 油品实付金额
2023-11-08 18:07:17 +08:00
oilActualPay:0,
2023-11-07 18:12:17 +08:00
// 商品实付金额
2023-11-08 18:07:17 +08:00
goodsActualPay:0,
2023-11-07 18:12:17 +08:00
// 付款用户
payUser:"",
// 油品优惠金额
2023-11-08 18:07:17 +08:00
oilDiscount:0,
2023-11-07 18:12:17 +08:00
// 商品优惠金额
2023-11-08 18:07:17 +08:00
goodsDiscount:0,
// 员工id
staffId:"",
// 优惠券id
couponId:"",
// 会员id
userId:"",
// 提成金额
commissionAmount:0,
// 使用积分数量
usePoint:0,
// 积分金额
pointAmount:0,
// 终端
terminal:"PC",
// 商品数量
goodsNum:0,
2023-11-09 13:51:57 +08:00
// 会员消费金额(储值卡需要减少的金额)
consumeAmount:0,
2023-11-16 19:00:57 +08:00
// 消费后的升数json
refuelMoney:"",
2023-11-17 16:33:36 +08:00
// 找零金额
seekZero:0,
2023-11-07 18:12:17 +08:00
},
2023-11-17 16:33:36 +08:00
// 会员等级名称
2023-11-07 18:12:17 +08:00
gradeName:"",
2023-11-17 16:33:36 +08:00
// 会员等级列表
gradeList:"",
2023-11-08 18:07:17 +08:00
menu:1,
index:0,
2023-11-17 16:33:36 +08:00
// 是否支付
2023-11-08 18:07:17 +08:00
isPay:true,
isPaySuccess:false,
2023-11-17 16:33:36 +08:00
// 订单号
2023-11-09 13:51:57 +08:00
orderNo:'',
2023-11-09 18:52:12 +08:00
timer: null,
2023-11-17 16:33:36 +08:00
// 是否一直查询
2023-11-09 18:52:12 +08:00
isQuery:true,
2023-11-17 16:33:36 +08:00
// 油枪列表
2023-11-16 19:00:57 +08:00
gunList:[],
2023-11-21 18:18:35 +08:00
// 油号列表
oilNumberList:[],
2023-11-17 16:33:36 +08:00
// 是否可以点会员确定按钮
isSure:true,
// 优惠券消费金额
couponAmount:0,
2023-11-21 18:18:35 +08:00
// 是否为满减互斥
isUseFull:false,
// 是否为储值卡互斥
isUseBalance:false,
2023-11-22 18:10:36 +08:00
// 互斥限制 -1没有限制 0满减互斥 1储值卡互斥
exclusion:-1,
isExistOilOrder:false,
2023-11-20 19:53:05 +08:00
// 查询优惠活动信息所需参数
preferentialData:{
userId:"",
storeId:"",
gradeId:"",
oilName:"",
oilPrice:"",
oilLiters:"",
},
// 挂账单位信息
unitList:[],
// 表单校验
rules: {
unitName: [ { required: true, message: "请选择挂账单位", trigger: "blur" }, ],
amount: [{ required: true, message: "请输入挂账金额", trigger: "blur" }],
creditLimit: [{ required: true, message: "可用额度不可为空", trigger: "blur" }],
},
rules1: {
unitName: [ { required: true, message: "请填写挂账单位名称", trigger: "blur" }, ],
personCredit: [{ required: true, message: "请填写挂账单位负责人姓名", trigger: "blur" }],
contactMobile: [ { required: true, message: "请填写挂账单位联系电话", trigger: "blur" }, ],
creditLimit: [ { required: true, message: "请填写挂账额度", trigger: "blur" }, ],
status: [ { required: true, message: "请选择挂账单位状态", trigger: "blur" }, ],
},
2023-11-03 15:59:38 +08:00
}
},
created() {
this.getPayList();
2023-11-06 18:06:29 +08:00
this.getOilName();
2023-11-07 18:12:17 +08:00
this.getGoods();
this.getStaffList();
this.getStaff();
2023-11-16 19:00:57 +08:00
this.getList();
this.getCouponList();
2023-11-20 19:53:05 +08:00
this.getUnitList();
2023-11-09 18:52:12 +08:00
},
2023-11-27 18:28:41 +08:00
directives: {
// 注册一个局部的自定义指令 v-focus
focus: {
// 指令的定义
inserted: function (el) {
// 聚焦元素
el.querySelector('input').focus()
// this.$nextTick( () =>{
// this.$refs.getFocus.focus()
// })
},
},
},
2023-11-03 15:59:38 +08:00
methods:{
2023-11-25 18:08:20 +08:00
clear(){
this.dialogVisiblej = false
this.seekZero = 0
},
2023-11-21 18:18:35 +08:00
getOilNames(list,id){
let name = ""
let _this = this;
if(list!=null && list!=""){
list.forEach(item => {
if (item.numberId == id){
name = item.oilName;
// _this.oilType = item.oilName;
}
})
}
return name;
},
2023-11-28 18:33:35 +08:00
getOilNamess(list,id){
let name = ""
if(list!=null && list!=""){
list.forEach(item => {
if (item.id == id){
name = item.oilName;
}
})
}
return name;
},
2023-11-20 19:53:05 +08:00
// 挂账
addCredits(){
this.dialogVisibleCredit = true
this.form1.amount = this.oilAmount + this.goodsAmount
},
// 获取挂账单位列表
getUnitList(){
let obj = {};
let _this = this;
listCreditUnit().then( response => {
response.data.forEach(item => {
obj = item;
obj.value = `${item.unitName}${item.personCredit} ${item.contactMobile}`
_this.unitList.push(obj)
})
})
},
// 添加挂账单位信息
addCredit(){
this.$refs["formName"].validate((valid) => {
if (valid) {
addCreditUnit(this.form2).then( response => {
this.$modal.msgSuccess("挂账单位信息创建成功");
this.open1 = false;
this.getUnitList();
})
}else {
return false;
}
})
},
// 添加挂账记录
addHangbill(){
this.$refs["form"].validate((valid) => {
if (valid) {
addHangBill(this.form1).then( response => {
if (response.data==0){
this.$modal.msgError("挂账单位可用额度不足,无法进行挂账");
}else {
this.$modal.msgSuccess("挂账记录添加成功");
this.dialogVisibleCredit = false;
this.resetMember();
this.resetting();
this.empty();
}
})
}else {
return false;
}
})
},
// 选择挂账单位
changeUnit(val){
this.form1.creditUnitId = val.id;
this.form1.creditLimit = val.creditLimit
return val.id
},
querySearch1(queryString, cb) {
let _this = this;
let obj = {};
let results = _this.unitList
if (queryString != "" && queryString!=undefined){
results = [];
_this.unitList.forEach(item => {
if (item.unitName.includes(queryString)){
obj = item;
obj.value = `${item.unitName}${item.personCredit} ${item.contactMobile}`
results.push(obj)
}
if (item.personCredit.includes(queryString)){
obj = item;
obj.value = `${item.unitName}${item.personCredit} ${item.contactMobile}`
results.push(obj)
}
if (item.contactMobile.includes(queryString)){
obj = item;
obj.value = `${item.unitName}${item.personCredit} ${item.contactMobile}`
results.push(obj)
}
})
}
cb(results);
},
2023-11-17 16:33:36 +08:00
// 计算找零金额
changeSeekZero(){
2023-11-25 18:08:20 +08:00
this.seekZero = (this.authCode - this.oilActualPay - this.goodsActualPay).toFixed(2)
2023-11-17 16:33:36 +08:00
},
// 获取会员等级id
getGradeName(list,id){
let name = "";
list.forEach(item => {
if (item.id == id){
name = item.name
}
})
this.gradeName = name;
return name;
},
// 选择优惠信息
handleCheckAllChange1(val) {
2023-11-22 18:10:36 +08:00
if (this.exclusion == 0){
if (val){
this.checkAll5 = false;
this.couponAmount = 0;
}
}
2023-11-20 19:53:05 +08:00
let list = []
this.fullReduceDiscount.forEach(item => {
list.push(item.type)
})
2023-11-21 18:18:35 +08:00
if (val){
2023-11-22 18:10:36 +08:00
this.fullReduction = 0;
2023-11-21 18:18:35 +08:00
this.fullReduceDiscount.forEach(item => {
2023-11-24 18:13:11 +08:00
this.fullReduction += +item.reduce
2023-11-21 18:18:35 +08:00
})
2023-11-22 18:10:36 +08:00
this.isUseFull = false;
2023-11-21 18:18:35 +08:00
}else {
this.fullReduction = 0;
2023-11-22 18:10:36 +08:00
this.isUseFull = true;
2023-11-21 18:18:35 +08:00
}
2023-11-20 19:53:05 +08:00
this.checkedCities1 = val ? list : [];
2023-11-17 16:33:36 +08:00
this.isIndeterminate1 = false;
2023-11-22 18:10:36 +08:00
this.isExclusion();
2023-11-17 16:33:36 +08:00
},
handleCheckedCitiesChange1(value) {
2023-11-22 18:10:36 +08:00
this.fullReduction = 0;
this.fullReduceDiscount.forEach(item => {
let reduces = 0
for (let i = 0; i < value.length; i++){
if (item.type == value[i]){
reduces = item.reduce
}
}
2023-11-24 18:13:11 +08:00
this.fullReduction += +reduces
2023-11-22 18:10:36 +08:00
})
2023-11-17 16:33:36 +08:00
let checkedCount = value.length;
2023-11-20 19:53:05 +08:00
this.checkAll1 = checkedCount === this.fullReduceDiscount.length;
this.isIndeterminate1 = checkedCount > 0 && checkedCount < this.fullReduceDiscount.length;
2023-11-22 18:10:36 +08:00
this.isExclusion();
2023-11-17 16:33:36 +08:00
},
handleCheckAllChange2(val) {
let list = []
this.gradeDiscount.forEach(item => {
list.push(item.type)
})
2023-11-22 18:10:36 +08:00
if (val){
this.gradeDiscount.forEach(item => {
this.oilDiscount += +item.reduce
})
}else {
this.oilDiscount = 0
}
2023-11-17 16:33:36 +08:00
this.checkedCities2 = val ? list : [];
this.isIndeterminate2 = false;
2023-11-22 18:10:36 +08:00
this.isExclusion();
2023-11-17 16:33:36 +08:00
},
handleCheckedCitiesChange2(value) {
2023-11-22 18:10:36 +08:00
this.oilDiscount = 0
this.gradeDiscount.forEach(item => {
let reduces = 0
for (let i = 0; i < value.length; i++){
if (item.type == value[i]){
reduces = item.reduce
}
}
this.oilDiscount += +reduces
})
2023-11-17 16:33:36 +08:00
let checkedCount = value.length;
this.checkAll2 = checkedCount === this.gradeDiscount.length;
this.isIndeterminate2 = checkedCount > 0 && checkedCount < this.gradeDiscount.length;
2023-11-22 18:10:36 +08:00
this.isExclusion();
2023-11-17 16:33:36 +08:00
},
handleCheckAllChange3(val) {
2023-11-21 18:18:35 +08:00
if (val==false){
2023-11-22 18:10:36 +08:00
this.consumeRefuelMoney = 0;
2023-11-24 18:13:11 +08:00
// this.hoardAmount = 0;
this.isOilStorageCard = false;
2023-11-21 18:18:35 +08:00
}else {
2023-11-24 18:13:11 +08:00
this.isOilStorageCard = true;
2023-11-21 18:18:35 +08:00
this.changeRefuelMoney()
}
2023-11-22 18:10:36 +08:00
this.isExclusion();
2023-11-17 16:33:36 +08:00
},
handleCheckedCitiesChange3(value) {
let checkedCount = value.length;
this.checkAll3 = checkedCount === this.cities3.length;
this.isIndeterminate3 = checkedCount > 0 && checkedCount < this.cities3.length;
},
handleCheckAllChange4(val) {
2023-11-21 18:18:35 +08:00
if (val==false){
this.consumeAmount = 0;
2023-11-22 18:10:36 +08:00
this.isUseBalance = true;
}else {
this.isUseBalance = false;
2023-11-21 18:18:35 +08:00
}
2023-11-22 18:10:36 +08:00
this.isExclusion();
2023-11-17 16:33:36 +08:00
},
handleCheckedCitiesChange4(value) {
let checkedCount = value.length;
this.checkAll4 = checkedCount === this.cities4.length;
this.isIndeterminate4 = checkedCount > 0 && checkedCount < this.cities4.length;
},
handleCheckAllChange5(val) {
2023-11-22 18:10:36 +08:00
if (this.exclusion == 0){
if (val){
this.checkAll1 = false;
this.fullReduction = 0;
this.isUseFull = true;
2023-11-23 18:37:40 +08:00
this.checkedCities5 = this.couponDiscount[0].name;
2023-11-22 18:10:36 +08:00
}else {
this.isUseFull = false;
2023-11-23 18:37:40 +08:00
this.checkedCities5 = ""
2023-11-22 18:10:36 +08:00
}
}else if (this.exclusion == 0){
if (val){
this.checkAll4 = false;
this.consumeAmount = 0;
this.isUseBalance = true;
2023-11-23 18:37:40 +08:00
this.checkedCities5 = this.couponDiscount[0].name;
2023-11-22 18:10:36 +08:00
}else {
this.isUseBalance = false;
2023-11-23 18:37:40 +08:00
this.checkedCities5 = ""
2023-11-22 18:10:36 +08:00
}
}
2023-11-21 18:18:35 +08:00
if (val){
this.couponAmount = 0
2023-11-23 18:37:40 +08:00
this.couponAmount = this.couponDiscount[0].reduce
this.useCouponIds = ""
this.couponIds.forEach(item => {
if (item.name = this.couponDiscount[0].name){
this.useCouponIds = item.id
}
2023-11-21 18:18:35 +08:00
})
2023-11-23 18:37:40 +08:00
this.checkedCities5 = this.couponDiscount[0].name;
2023-11-21 18:18:35 +08:00
}else {
2023-11-23 18:37:40 +08:00
this.useCouponIds = ""
2023-11-21 18:18:35 +08:00
this.couponAmount = 0
2023-11-23 18:37:40 +08:00
this.checkedCities5 = ""
2023-11-21 18:18:35 +08:00
}
2023-11-22 18:10:36 +08:00
this.isExclusion();
2023-11-17 16:33:36 +08:00
},
handleCheckedCitiesChange5(value) {
2023-11-21 18:18:35 +08:00
this.couponAmount = 0;
2023-11-22 18:10:36 +08:00
this.couponDiscount.forEach(item => {
2023-11-23 18:37:40 +08:00
if (item.name == value){
this.couponAmount = item.reduce
2023-11-21 18:18:35 +08:00
}
2023-11-22 18:10:36 +08:00
})
2023-11-23 18:37:40 +08:00
this.useCouponIds = ""
this.couponIds.forEach(item => {
if (item.name == value){
this.useCouponIds = item.id
}
})
this.checkAll5 = true;
2023-11-22 18:10:36 +08:00
this.isExclusion();
2023-11-17 16:33:36 +08:00
},
2023-11-16 19:00:57 +08:00
// 模糊查询商品信息
2023-11-09 18:52:12 +08:00
querySearch(queryString, cb) {
let _this = this;
2023-11-10 18:10:23 +08:00
let results = _this.goodsList;
if (queryString != ""){
results = [];
_this.goodsList.forEach(item => {
if(item.name.includes(queryString)){
results.push(item)
}
if(item.goodsNo.includes(queryString)){
results.push(item)
}
2023-11-09 18:52:12 +08:00
})
}
2023-11-10 18:10:23 +08:00
cb(results);
2023-11-09 18:52:12 +08:00
},
2023-11-08 18:07:17 +08:00
// 取单
pickOrder(){
let list = this.takeList
this.goodsOrder = list;
let num = 0;
let amount = 0;
2023-11-09 13:51:57 +08:00
let _this = this;
2023-11-08 18:07:17 +08:00
list.forEach(item => {
num += item.num;
2023-11-09 13:51:57 +08:00
if (_this.isMember){
2023-11-24 18:13:11 +08:00
amount += +item.memberPrice;
2023-11-09 13:51:57 +08:00
}else {
2023-11-24 18:13:11 +08:00
amount += +item.retailPrice;
2023-11-09 13:51:57 +08:00
}
2023-11-08 18:07:17 +08:00
})
this.goodsTotal = num;
this.goodsAmount = amount;
2023-11-10 18:10:23 +08:00
this.goodsActualPay = this.goodsAmount - this.goodsDiscount;
2023-11-08 18:07:17 +08:00
this.dialogTakeOrder = false;
},
// 作废
cancel(){
this.registrationList.splice(this.index,1);
this.takeList = [];
},
// 取单列表
getTakeGoods(data,index){
this.takeList = data.children;
this.index = index;
},
// 挂单
registration(){
this.dialogRegistration = false;
this.registrationList.push({menu:this.menu,children:this.goodsOrder})
this.menu++;
this.goodsOrder = [];
this.goodsTotal = 0;
this.goodsAmount = 0;
2023-11-10 18:10:23 +08:00
this.goodsActualPay = this.goodsAmount - this.goodsDiscount;
2023-11-08 18:07:17 +08:00
this.getTakeGoods(this.registrationList[0]);
this.dialogSuccess = true;
},
2023-11-07 18:12:17 +08:00
// 重置会员
resetMember(){
this.member = {};
this.isMember = false;
2023-11-09 13:51:57 +08:00
this.map.payUser == "";
this.balance = 0;
2023-11-16 19:00:57 +08:00
this.oilDiscount = 0;
this.goodsDiscount = 0;
2023-11-09 13:51:57 +08:00
this.userNo = "";
2023-12-04 16:35:09 +08:00
this.oilActualPay = (this.oilAmount - this.oilDiscount).toFixed(2)
2023-11-16 19:00:57 +08:00
this.goodsActualPay = this.goodsAmount - this.goodsDiscount
2023-11-17 16:33:36 +08:00
this.isSure = true;
2023-11-09 13:51:57 +08:00
this.handleChange();
2023-11-07 18:12:17 +08:00
},
2023-11-20 19:53:05 +08:00
// 根据会员等级信息获取等级优惠信息
2023-11-07 18:12:17 +08:00
getGrade(id){
2023-11-16 19:00:57 +08:00
let _this = this;
this.oilDiscount = 0;
2023-11-17 16:33:36 +08:00
this.gradeDiscount = [];
2023-12-04 16:35:09 +08:00
userGradeInfo(id).then(response => {
let gasolineDiscount = 0;
let dieselDiscount = 0;
let naturalGasDiscount = 0;
_this.gradeDiscount = [];
if (response.data!=null) {
_this.oilOrder.forEach(item => {
let discount = {type: "", full: 0, reduce: 0, liters: 0}
if (item.type == "汽油") {
let gasolineRule = JSON.parse(response.data.gasolineRule);
if (response.data.preferential == '自定义优惠' && response.data.status == 'qy') {
if (response.data.gasolineDiscount == "满减优惠") {
let oilDiscount = 0;
discount.type = "满减优惠"
for (let i = 1; i <= gasolineRule.length; i++) {
// 将满减条件加入等级优惠列表
if (gasolineRule.length > 1) {
if (item.amount >= gasolineRule[gasolineRule.length - 1].gasolineRule1) {
discount.full = gasolineRule[gasolineRule.length - 1].gasolineRule1
oilDiscount = gasolineRule[gasolineRule.length - 1].gasolineRule2
discount.reduce = gasolineRule[gasolineRule.length - 1].gasolineRule2
break;
2023-11-24 18:13:11 +08:00
}
2023-12-04 16:35:09 +08:00
if (item.amount >= gasolineRule[i - 1].gasolineRule1 && item.amount < gasolineRule[i].gasolineRule1) {
discount.full = gasolineRule[i - 1].gasolineRule1
oilDiscount = gasolineRule[i - 1].gasolineRule2
discount.reduce = gasolineRule[i - 1].gasolineRule2
2023-11-25 10:27:36 +08:00
}
2023-12-04 16:35:09 +08:00
} else {
if (item.amount >= gasolineRule[i - 1].gasolineRule1) {
discount.full = gasolineRule[i - 1].gasolineRule1
oilDiscount = gasolineRule[i - 1].gasolineRule2
discount.reduce = gasolineRule[i - 1].gasolineRule2
2023-11-24 18:13:11 +08:00
}
2023-12-04 16:35:09 +08:00
}
}
if (discount.reduce != 0) {
_this.gradeDiscount.push(discount)
_this.checkedCities2.push('满减优惠')
}
gasolineDiscount += +oilDiscount
} else if (response.data.gasolineDiscount == "每升优惠") {
discount.type = "每升优惠"
let oilDiscount = 0;
for (let i = 1; i <= gasolineRule.length; i++) {
// 将满减条件加入等级优惠列表
if (gasolineRule.length > 1) {
if (item.amount >= gasolineRule[gasolineRule.length - 1].gasolineRule1) {
discount.full = gasolineRule[gasolineRule.length - 1].gasolineRule1
oilDiscount = (item.liters * gasolineRule[gasolineRule.length - 1].gasolineRule3).toFixed(2);
discount.reduce = (item.liters * gasolineRule[gasolineRule.length - 1].gasolineRule3).toFixed(2);
discount.liters = gasolineRule[i - 1].gasolineRule3
break;
}
if (item.amount >= gasolineRule[i - 1].gasolineRule1 && item.amount < gasolineRule[i].gasolineRule1) {
discount.full = gasolineRule[i - 1].gasolineRule1
oilDiscount = (item.liters * gasolineRule[i - 1].gasolineRule3).toFixed(2)
discount.reduce = (item.liters * gasolineRule[i - 1].gasolineRule3).toFixed(2)
discount.liters = gasolineRule[i - 1].gasolineRule3
2023-11-25 10:27:36 +08:00
}
} else {
2023-12-04 16:35:09 +08:00
if (item.amount >= gasolineRule[i - 1].gasolineRule1) {
discount.full = gasolineRule[i - 1].gasolineRule1
oilDiscount = (item.liters * gasolineRule[i - 1].gasolineRule3).toFixed(2)
discount.reduce = (item.liters * gasolineRule[i - 1].gasolineRule3).toFixed(2)
discount.liters = gasolineRule[i - 1].gasolineRule3
}
2023-11-16 19:00:57 +08:00
}
}
2023-12-04 16:35:09 +08:00
if (discount.reduce != 0) {
_this.gradeDiscount.push(discount)
_this.checkedCities2.push('每升优惠')
}
gasolineDiscount += +oilDiscount
} else {
gasolineDiscount = 0;
2023-11-16 19:00:57 +08:00
}
2023-12-04 16:35:09 +08:00
}
}
if (item.type == "柴油") {
let dieselRule = JSON.parse(response.data.dieselRule);
if (response.data.preferential == '自定义优惠' && response.data.status == 'qy') {
if (response.data.dieselDiscount == "满减优惠") {
let oilDiscount = 0;
discount.type = "满减优惠"
for (let i = 1; i <= dieselRule.length; i++) {
// 将满减条件加入等级优惠列表
if (dieselRule.length > 1) {
if (item.amount >= dieselRule[dieselRule.length - 1].dieselRule1) {
discount.full = dieselRule[dieselRule.length - 1].dieselRule1
oilDiscount = dieselRule[dieselRule.length - 1].dieselRule2
discount.reduce = dieselRule[dieselRule.length - 1].dieselRule2
break;
}
if (item.amount >= dieselRule[i - 1].dieselRule1 && item.amount < dieselRule[i].dieselRule1) {
discount.full = dieselRule[i - 1].dieselRule1
oilDiscount = dieselRule[i - 1].dieselRule2
discount.reduce = dieselRule[i - 1].dieselRule2
2023-11-24 18:13:11 +08:00
}
2023-12-04 16:35:09 +08:00
} else {
discount.full = dieselRule[i - 1].dieselRule1
if (item.amount >= dieselRule[i - 1].dieselRule1) {
oilDiscount = dieselRule[i - 1].dieselRule2
discount.reduce = dieselRule[i - 1].dieselRule2
2023-11-25 10:27:36 +08:00
}
2023-12-04 16:35:09 +08:00
}
}
if (discount.reduce != 0) {
_this.gradeDiscount.push(discount)
_this.checkedCities2.push('满减优惠')
}
dieselDiscount += +oilDiscount
} else if (response.data.dieselDiscount == "每升优惠") {
let oilDiscount = 0;
for (let i = 1; i <= dieselRule.length; i++) {
discount.type = "每升优惠"
// 将满减条件加入等级优惠列表
if (dieselRule.length > 1) {
if (item.amount >= dieselRule[dieselRule.length - 1].dieselRule1) {
discount.full = dieselRule[dieselRule.length - 1].dieselRule1
oilDiscount = (item.liters * dieselRule[dieselRule.length - 1].dieselRule3).toFixed(2);
discount.reduce = (item.liters * dieselRule[dieselRule.length - 1].dieselRule3).toFixed(2);
discount.liters = dieselRule[dieselRule.length - 1].dieselRule3
break;
2023-11-24 18:13:11 +08:00
}
2023-12-04 16:35:09 +08:00
if (item.amount >= dieselRule[i - 1].dieselRule1 && item.amount < dieselRule[i].dieselRule1) {
discount.full = dieselRule[i - 1].dieselRule1
oilDiscount = (item.liters * dieselRule[i - 1].dieselRule3).toFixed(2)
discount.reduce = (item.liters * dieselRule[i - 1].dieselRule3).toFixed(2)
discount.liters = dieselRule[i - 1].dieselRule3
2023-11-25 10:27:36 +08:00
}
} else {
2023-12-04 16:35:09 +08:00
discount.full = dieselRule[i - 1].dieselRule1
if (item.amount >= dieselRule[i - 1].dieselRule1) {
oilDiscount = (item.liters * dieselRule[i - 1].dieselRule3).toFixed(2)
discount.reduce = (item.liters * dieselRule[i - 1].dieselRule3).toFixed(2)
discount.liters = dieselRule[i - 1].dieselRule3
}
2023-11-16 19:00:57 +08:00
}
}
2023-12-04 16:35:09 +08:00
if (discount.reduce != 0) {
_this.gradeDiscount.push(discount)
_this.checkedCities2.push('每升优惠')
}
dieselDiscount += +oilDiscount
} else {
dieselDiscount = 0;
2023-11-16 19:00:57 +08:00
}
2023-12-04 16:35:09 +08:00
}
}
if (item.type == "天然气") {
let naturalGasRule = JSON.parse(response.data.naturalGasRule);
if (response.data.preferential == '自定义优惠' && response.data.status == 'qy') {
if (response.data.naturalGasDiscount == "满减优惠") {
let oilDiscount = 0;
discount.type = "满减优惠"
for (let i = 1; i <= naturalGasRule.length; i++) {
// 将满减条件加入等级优惠列表
if (naturalGasRule.length > 1) {
if (item.amount >= naturalGasRule[naturalGasRule.length - 1].naturalGasRule1) {
discount.full = naturalGasRule[naturalGasRule.length - 1].naturalGasRule1
oilDiscount = naturalGasRule[naturalGasRule.length - 1].naturalGasRule2;
discount.reduce = naturalGasRule[naturalGasRule.length - 1].naturalGasRule2
break;
2023-11-24 18:13:11 +08:00
}
2023-12-04 16:35:09 +08:00
if (item.amount >= naturalGasRule[i - 1].naturalGasRule1 && item.amount < naturalGasRule[i].naturalGasRule1) {
discount.full = naturalGasRule[i - 1].naturalGasRule1
oilDiscount = naturalGasRule[i - 1].naturalGasRule2
discount.reduce = naturalGasRule[i - 1].naturalGasRule2
2023-11-25 10:27:36 +08:00
}
2023-12-04 16:35:09 +08:00
} else {
if (item.amount >= naturalGasRule[i - 1].naturalGasRule1) {
discount.full = naturalGasRule[i - 1].naturalGasRule1
oilDiscount = naturalGasRule[i - 1].naturalGasRule2
discount.reduce = naturalGasRule[i - 1].naturalGasRule2
2023-11-24 18:13:11 +08:00
}
2023-12-04 16:35:09 +08:00
}
}
if (discount.reduce != 0) {
_this.gradeDiscount.push(discount)
_this.checkedCities2.push('满减优惠')
}
naturalGasDiscount += +oilDiscount
} else if (response.data.naturalGasDiscount == "每单位优惠") {
let oilDiscount = 0;
discount.type = "每单位优惠"
for (let i = 1; i <= naturalGasRule.length; i++) {
// 将满减条件加入等级优惠列表
if (naturalGasRule.length > 1) {
if (item.amount >= naturalGasRule[naturalGasRule.length - 1].naturalGasRule1) {
discount.full = naturalGasRule[naturalGasRule.length - 1].naturalGasRule1
oilDiscount = (item.liters * naturalGasRule[gasolineRule.length - 1].naturalGasRule3).toFixed(2)
discount.reduce = (item.liters * naturalGasRule[gasolineRule.length - 1].naturalGasRule3).toFixed(2)
discount.liters = naturalGasRule[naturalGasRule.length - 1].naturalGasRule3
break;
}
if (item.amount >= naturalGasRule[i - 1].naturalGasRule1 && item.amount < naturalGasRule[i].naturalGasRule1) {
discount.full = naturalGasRule[i - 1].naturalGasRule1
oilDiscount = (item.liters * naturalGasRule[i - 1].naturalGasRule3).toFixed(2)
discount.reduce = (item.liters * naturalGasRule[i - 1].naturalGasRule3).toFixed(2)
discount.liters = naturalGasRule[i - 1].naturalGasRule3
2023-11-25 10:27:36 +08:00
}
} else {
2023-12-04 16:35:09 +08:00
if (item.amount >= naturalGasRule[i - 1].naturalGasRule1) {
discount.full = naturalGasRule[i - 1].naturalGasRule1
oilDiscount = (item.liters * naturalGasRule[i - 1].naturalGasRule3).toFixed(2)
discount.reduce = (item.liters * naturalGasRule[i - 1].naturalGasRule3).toFixed(2)
discount.liters = naturalGasRule[i - 1].naturalGasRule3
}
2023-11-16 19:00:57 +08:00
}
}
2023-12-04 16:35:09 +08:00
if (discount.reduce != 0) {
_this.gradeDiscount.push(discount)
_this.checkedCities2.push('每单位优惠')
}
naturalGasDiscount += +oilDiscount
} else {
naturalGasDiscount = 0;
2023-11-16 19:00:57 +08:00
}
2023-12-04 16:35:09 +08:00
}
2023-11-25 10:27:36 +08:00
}
2023-11-24 18:13:11 +08:00
})
}
2023-12-04 16:35:09 +08:00
_this.oilDiscount = gasolineDiscount + dieselDiscount + naturalGasDiscount
_this.checkAll2 = true;
_this.isExclusion();
2023-11-07 18:12:17 +08:00
})
},
// 选择会员
2023-11-16 19:00:57 +08:00
chooseUser(data){
2023-11-07 18:12:17 +08:00
this.dialogVisiblevip = false
this.isMember = true;
2023-11-16 19:00:57 +08:00
this.map.payUser = data.mobile;
this.map.userId = data.id;
2023-11-09 13:51:57 +08:00
this.balance = this.member.cardBalance;
2023-11-16 19:00:57 +08:00
this.getGrade(data.gradeId)
this.changeRefuelMoney();
2023-11-09 13:51:57 +08:00
this.handleChange();
2023-11-20 19:53:05 +08:00
this.preferentialData.storeId = data.storeId;
this.preferentialData.userId = data.id;
this.preferentialData.gradeId = data.gradeId;
if (this.oilOrder.length>0){
this.preferential();
2023-11-21 18:18:35 +08:00
this.getCoupon();
}
},
// 调用优惠券接口
getCoupon(){
let _this = this;
_this.oilOrder.forEach(item1 => {
_this.preferentialData.oilName = item1.oilName;
_this.preferentialData.oilPrice = item1.oilPrice;
_this.preferentialData.oilLiters = item1.liters;
_this.couponDiscount =[];
2023-11-23 18:37:40 +08:00
_this.couponIds = [],
2023-11-21 18:18:35 +08:00
selectCoupon(_this.preferentialData).then(response => {
2023-11-22 18:10:36 +08:00
_this.couponAmount = 0;
2023-11-23 18:37:40 +08:00
_this.couponIds = response.data
2023-11-21 18:18:35 +08:00
if (response.data.length>0){
response.data.forEach(item => {
2023-11-25 10:27:36 +08:00
_this.useCouponIds = item.id
2023-11-22 18:10:36 +08:00
let discount = {type:item.type,discountType:item.discountType,name:item.name,oilName:item1.oilName,full:0,reduce:0,discount:0}
2023-11-21 18:18:35 +08:00
discount.full = item.satisfiedAmount
if (item.type==0){
// 油品券
if (item.discountType==0){
// 满减券
discount.reduce = item.discountAmount
}else {
// 折扣券
discount.discount = item.specialDiscount
discount.reduce = item.discountOffset
}
}else if (item.type==1){
// 商品券
if (item.discountType==0){
// 满减券
discount.reduce = item.discountAmount
}else {
// 折扣券
discount.discount = item.specialDiscount
discount.reduce = item.discountOffset
}
}else {
// 通用券
if (item.discountType==0){
// 满减券
discount.reduce = item.discountAmount
}else {
// 折扣券
discount.discount = item.specialDiscount
discount.reduce = item.discountOffset
}
}
if (discount.reduce!=0){
2023-11-22 18:10:36 +08:00
if (_this.couponDiscount.length!=0){
_this.couponDiscount.forEach(item2 => {
if (item2.oilName!=discount.oilName) {
_this.couponDiscount.push(discount)
2023-11-23 18:37:40 +08:00
_this.checkedCities5 = item.name
_this.couponAmount = discount.reduce
}
if (item2.name!=discount.name && item2.oilName==discount.oilName) {
_this.couponDiscount.push(discount)
_this.checkedCities5 = item.name
_this.couponAmount = discount.reduce
2023-11-22 18:10:36 +08:00
}
})
}else {
_this.couponDiscount.push(discount)
2023-11-23 18:37:40 +08:00
_this.checkedCities5 = item.name
_this.couponAmount = discount.reduce
2023-11-22 18:10:36 +08:00
}
2023-11-21 18:18:35 +08:00
}
if (item.exclusiveFunction == 0){
// 满减互斥
_this.checkAll1 = false
_this.checkAll4 = true;
_this.fullReduction = 0
_this.isUseFull = true;
}else {
// 储值卡付款互斥
_this.checkAll1 = true
_this.checkAll4 = false;
_this.consumeAmount = 0;
_this.isUseBalance = true;
}
2023-11-22 18:10:36 +08:00
_this.exclusion = item.exclusiveFunction
2023-11-21 18:18:35 +08:00
})
}
2023-11-23 18:37:40 +08:00
_this.checkAll5 = true;
2023-11-22 18:10:36 +08:00
_this.isExclusion();
2023-11-21 18:18:35 +08:00
})
})
},
2023-11-24 18:13:11 +08:00
// 使用囤油卡 囤油卡不参与任何优惠
countOilCard(){
if (this.hoardAmount!=0){
if (this.balance!=0 && this.balance >= (this.oilAmount - this.hoardAmount)){
this.oilActualPay = 0
this.consumeAmount = this.hoardAmount
}else {
2023-12-04 16:35:09 +08:00
this.oilActualPay = (this.oilAmount - this.hoardAmount -this.balance).toFixed(2)
2023-11-24 18:13:11 +08:00
}
}else {
this.oilActualPay = 0
this.consumeAmount = 0
}
},
2023-11-21 18:18:35 +08:00
// 使用优惠券不使用满减
countAmountFull(){
if (this.isMember){
// 满减互斥
if (this.balance >= (this.oilAmount - this.oilDiscount - this.couponAmount)){
this.oilActualPay = 0
2023-11-24 18:13:11 +08:00
this.consumeAmount = this.oilAmount - this.oilDiscount - this.couponAmount
2023-11-21 18:18:35 +08:00
}else {
2023-12-04 16:35:09 +08:00
this.oilActualPay = (this.oilAmount -this.balance - this.oilDiscount - this.couponAmount).toFixed(2)
2023-11-21 18:18:35 +08:00
this.consumeAmount = this.balance
}
}else {
2023-12-04 16:35:09 +08:00
this.oilActualPay = (this.oilAmount - this.oilDiscount).toFixed(2)
2023-11-21 18:18:35 +08:00
}
},
2023-11-22 18:10:36 +08:00
// 使用优惠券和满减不使用储值卡
2023-11-21 18:18:35 +08:00
countAmountUnBalance(){
if (this.isMember){
2023-12-04 16:35:09 +08:00
this.oilActualPay = (this.oilAmount - this.fullReduction - this.oilDiscount - this.couponAmount).toFixed(2)
2023-11-21 18:18:35 +08:00
}else {
2023-12-04 16:35:09 +08:00
this.oilActualPay = (this.oilAmount - this.oilDiscount).toFixed(2)
2023-11-21 18:18:35 +08:00
}
2023-11-22 18:10:36 +08:00
this.consumeAmount = 0
2023-11-21 18:18:35 +08:00
},
// 使用储值卡不使用优惠券 || 使用满减不使用优惠券
countAmountBalance(){
if (this.isMember){
if (this.balance >= (this.oilAmount - this.oilDiscount - this.fullReduction)){
this.oilActualPay = 0
2023-11-24 18:13:11 +08:00
this.consumeAmount = this.oilAmount - this.oilDiscount - this.fullReduction
2023-11-21 18:18:35 +08:00
}else {
2023-12-04 16:35:09 +08:00
this.oilActualPay = (this.oilAmount -this.balance - this.oilDiscount - this.fullReduction).toFixed(2)
2023-11-21 18:18:35 +08:00
this.consumeAmount = this.balance
}
}else {
2023-12-04 16:35:09 +08:00
this.oilActualPay = (this.oilAmount - this.oilDiscount).toFixed(2)
2023-11-20 19:53:05 +08:00
}
2023-11-17 17:26:12 +08:00
},
2023-11-22 18:10:36 +08:00
// 判断互斥限制
isExclusion(){
if (this.exclusion == 1){
2023-11-23 18:37:40 +08:00
// 不使用满减
if (this.isUseBalance){
this.countAmountFull()
return;
}
2023-11-22 18:10:36 +08:00
// 储值卡互斥
if (this.isUseBalance){
this.countAmountUnBalance()
return;
}else {
this.countAmountBalance()
return;
}
}else if (this.exclusion == 0){
// 满减互斥
2023-11-23 18:37:40 +08:00
// 不使用储值卡
if (this.isUseBalance){
this.countAmountUnBalance()
return;
}
2023-11-22 18:10:36 +08:00
if (this.isUseFull){
this.countAmountFull()
return;
}else {
this.countAmountBalance()
return;
}
}else {
// 无互斥
// 不使用储值卡
if (this.isUseBalance){
this.countAmountUnBalance()
return;
}
// 不使用满减
if (this.isUseBalance){
this.countAmountFull()
return;
}
2023-11-24 18:13:11 +08:00
// 使用囤油卡
if (this.isOilStorageCard){
this.checkAll1 = false;
this.fullReduction = 0;
this.checkAll2 = false;
this.checkedCities2 = [],
this.oilDiscount = 0;
this.checkAll5 = false;
this.couponAmount = 0;
this.countOilCard();
return;
}
2023-11-22 18:10:36 +08:00
this.countAmountBalance();
}
},
2023-11-17 17:26:12 +08:00
// 调用优惠参数接口
preferential(){
2023-11-20 19:53:05 +08:00
let _this = this;
// _this.fullReduction = 0;
let fullReduction = 0;
_this.fullReduction = 0;
_this.oilOrder.forEach(item1 => {
_this.preferentialData.oilName = item1.oilName;
_this.preferentialData.oilPrice = item1.oilPrice;
_this.preferentialData.oilLiters = item1.liters;
selectPreferential(_this.preferentialData).then( response => {
if (response.data.length>0){
2023-11-22 18:10:36 +08:00
_this.fullReduceDiscount = []
2023-11-20 19:53:05 +08:00
response.data.forEach(item => {
2023-11-27 18:28:41 +08:00
if (item.participationCondition==1){
_this.exclusion = 0
}
2023-11-24 18:13:11 +08:00
let discount = {type:item.name,full:0,reduce:0,discount:0,exclusion:item.participationCondition}
2023-11-20 19:53:05 +08:00
let activeList = item.activeDiscountChildList;
2023-12-07 18:28:31 +08:00
if (activeList.length>0) {
for (let i = 1; i <= activeList.length; i++) {
if (activeList.length > 0) {
if (activeList[0].discount != null) {
// 折扣营销
if (item1.amount >= activeList[0].amount) {
discount.full = activeList[0].amount;
discount.discount = activeList[0].discount;
discount.reduce = item1.amount - (item1.amount * (activeList[0].discount / 10)).toFixed(2)
fullReduction = item1.amount - (item1.amount * (activeList[0].discount / 10)).toFixed(2);
}
} else {
// 满减
if (item1.amount >= activeList[0].amount) {
discount.full = activeList[0].amount;
discount.reduce = activeList[0].deductionAmount;
fullReduction = activeList[0].deductionAmount;
}
2023-11-20 19:53:05 +08:00
}
}
}
}
2023-11-22 18:10:36 +08:00
if (activeList.length==0){
fullReduction = 0
}
if (discount.reduce!=0){
2023-11-20 19:53:05 +08:00
_this.fullReduceDiscount.push(discount)
2023-11-22 18:10:36 +08:00
_this.checkedCities1.push(item.name)
2023-11-21 18:18:35 +08:00
_this.checkAll1 = true;
2023-11-20 19:53:05 +08:00
}
2023-11-22 18:10:36 +08:00
_this.fullReduction += +fullReduction
2023-11-20 19:53:05 +08:00
})
}
2023-11-21 18:18:35 +08:00
if (_this.isUseFull){
2023-11-22 18:10:36 +08:00
_this.checkAll1 = false;
_this.checkedCities1 = []
_this.fullReduction = 0
2023-11-21 18:18:35 +08:00
}
2023-11-22 18:10:36 +08:00
_this.isExclusion();
2023-11-20 19:53:05 +08:00
})
})
2023-11-07 18:12:17 +08:00
},
// 选择会员信息
2023-12-07 18:28:31 +08:00
handleChoose(data) {
2023-11-17 16:33:36 +08:00
this.isSure = false;
2023-11-07 18:12:17 +08:00
this.member = data;
2023-12-07 18:28:31 +08:00
if (data.refuelMoney != null && data.refuelMoney != ""){
this.refuelMoney = JSON.parse(data.refuelMoney)
}
2023-11-07 18:12:17 +08:00
this.dialogVisibleMember = false;
},
// 清空商品订单列表
empty(){
this.goodsOrder = [];
this.goodsTotal = 0;
this.goodsAmount = 0;
2023-11-08 18:07:17 +08:00
this.goodsActualPay = 0;
2023-11-16 19:00:57 +08:00
this.goodsDiscount = 0;
2023-11-07 18:12:17 +08:00
},
// 获取当前账户信息
getStaff(){
staffInfo().then( response => {
2023-11-08 18:07:17 +08:00
this.staff = response.data;
this.map.staffId = this.staff.id;
2023-11-07 18:12:17 +08:00
})
},
// 选择员工信息
chooseStaff(data){
this.staff = data;
2023-11-08 18:07:17 +08:00
this.map.staffId = this.staff.id;
2023-11-07 18:12:17 +08:00
},
// 删除商品列表信息
delGoods(index){
this.goodsOrder.splice(index,1)
},
// 添加商品列表信息
changeGoods(val){
let result = true;
2023-11-09 13:51:57 +08:00
let goods = this.goodsOrder;
let _this = this;
2023-11-25 18:08:20 +08:00
if (this.goodsOrder.length > 0) {
2023-11-07 18:12:17 +08:00
let amount = 0;
2023-11-25 18:08:20 +08:00
for (let i = 0; i < goods.length; i++) {
if (_this.isMember) {
2023-11-24 18:13:11 +08:00
amount += +(goods[i].memberPrice * goods[i].num).toFixed(2)
2023-11-25 18:08:20 +08:00
} else {
2023-11-24 18:13:11 +08:00
amount += +(goods[i].retailPrice * goods[i].num).toFixed(2)
2023-11-09 13:51:57 +08:00
}
2023-11-25 18:08:20 +08:00
if (goods[i].id == val.id) {
if (val.stock<goods[i].num + 1){
this.$modal.msgError("商品库存不足,请重新选择商品")
break;
}
2023-11-07 18:12:17 +08:00
goods[i].num = goods[i].num + 1;
this.goodsTotal += 1;
result = false;
break;
2023-11-25 18:08:20 +08:00
} else {
2023-11-07 18:12:17 +08:00
result = true;
}
}
this.goodsAmount = amount;
2023-11-08 18:07:17 +08:00
this.goodsActualPay = this.goodsAmount - this.goodsDiscount;
2023-11-25 18:08:20 +08:00
} else {
2023-11-07 18:12:17 +08:00
result = true;
}
2023-11-25 18:08:20 +08:00
if (result) {
if (val.stock==0){
this.$modal.msgError("商品库存不足,请重新选择商品")
return;
}
2023-11-10 18:10:23 +08:00
val.num = 1;
2023-11-25 18:08:20 +08:00
if (_this.isMember) {
2023-11-24 18:13:11 +08:00
this.goodsAmount += +val.memberPrice
2023-11-25 18:08:20 +08:00
} else {
2023-11-24 18:13:11 +08:00
this.goodsAmount += +val.retailPrice
2023-11-10 18:10:23 +08:00
}
this.goodsActualPay = this.goodsAmount - this.goodsDiscount;
this.goodsOrder.push(val);
this.goodsTotal += 1;
2023-11-07 18:12:17 +08:00
}
this.goods = ""
2023-11-25 18:08:20 +08:00
2023-11-07 18:12:17 +08:00
},
// 立即结算
settlement(){
2023-11-17 16:33:36 +08:00
this.authCode = ""
this.seekZero = 0;
2023-11-09 18:52:12 +08:00
this.isPay = true
2023-11-07 18:12:17 +08:00
this.dialogVisiblej = true
},
2023-11-20 19:53:05 +08:00
// 重置油品订单
2023-11-07 18:12:17 +08:00
resetting(){
this.oilOrder = [];
2023-11-08 18:07:17 +08:00
this.oilActualPay = 0;
2023-11-07 18:12:17 +08:00
this.oilTotal = 0;
this.oilAmount = 0;
2023-11-16 19:00:57 +08:00
this.oilDiscount = 0;
this.consumeAmount = 0;
this.consumeRefuelMoney = 0;
2023-11-20 19:53:05 +08:00
this.fullReduction = 0;
2023-11-21 18:18:35 +08:00
this.couponAmount = 0;
2023-11-22 18:10:36 +08:00
this.fullReduceDiscount = [];
this.gradeDiscount = [];
this.couponDiscount = [];
2023-11-20 19:53:05 +08:00
if (this.member.refuelMoney!=null){
this.refuelMoney = JSON.parse(this.member.refuelMoney)
}
2023-11-16 19:00:57 +08:00
this.amount = 0;
2023-11-07 18:12:17 +08:00
},
// 获取员工列表
2023-11-06 18:06:29 +08:00
getStaffList(){
queryStaffs().then( response => {
this.staffList = response.data
})
},
2023-11-07 18:12:17 +08:00
// 油品订单信息
2023-11-06 18:06:29 +08:00
getOilOrder(){
this.dialogVisibleamount = false
2023-11-16 19:00:57 +08:00
this.form.oilType = this.oilType;
2023-11-22 18:10:36 +08:00
this.form.type = this.type;
2023-11-16 19:00:57 +08:00
// 计算油的升数
if (this.select == "元"){
2023-11-20 19:53:05 +08:00
let num = this.form.amount/this.form.oilPrice
this.form.liters = (Math.ceil(num*100)/100).toFixed(2)
2023-11-16 19:00:57 +08:00
}else {
this.form.liters = this.form.amount
2023-11-21 18:18:35 +08:00
this.form.amount = (this.form.oilPrice * this.form.amount).toFixed(2)
2023-11-16 19:00:57 +08:00
}
2023-11-25 18:08:20 +08:00
// 校验油罐内油是否足够
getOilTank(this.form.tankId).then(res => {
if (res.data.tankVolume-this.form.liters<0){
this.$modal.msgError("所加油的升数大于油罐内的升数,请重新选择加油升数")
return;
}else {
// 判断此油品是否被加购
if (this.isExistOilOrder){
for (let i = 0; i<this.oilOrder.length;i++){
if (this.oilOrder[i].id == this.form.id){
this.oilOrder.splice(i,1,this.form)
}
}
}else {
this.oilOrder.push(this.form)
2023-11-22 18:10:36 +08:00
}
2023-11-25 18:08:20 +08:00
this.oilAmount = 0
this.oilOrder.forEach(item => {
this.oilAmount += +item.amount
})
2023-11-16 19:00:57 +08:00
2023-12-04 16:35:09 +08:00
this.oilActualPay = (this.oilAmount - this.oilDiscount).toFixed(2);
2023-11-25 18:08:20 +08:00
this.oilTotal = this.oilOrder.length;
this.select = "元";
if (this.isMember){
this.getGrade(this.member.gradeId)
this.changeRefuelMoney();
if (this.oilOrder.length>0){
this.preferential();
this.getCoupon();
}
}
2023-11-20 19:53:05 +08:00
}
2023-11-25 18:08:20 +08:00
})
2023-11-16 19:00:57 +08:00
},
2023-11-17 16:33:36 +08:00
// 囤油卡变化后总金额的变化
2023-11-16 19:00:57 +08:00
changeRefuelMoney(){
let _this = this;
_this.consumeRefuelMoney = 0;
_this.oilActualPay = 0;
2023-11-21 18:18:35 +08:00
_this.hoardAmount = 0;
2023-11-16 19:00:57 +08:00
_this.oilOrder.forEach(item => {
let conRefMon = 0;
2023-11-21 18:18:35 +08:00
let hoardAmount = 0;
2023-11-16 19:00:57 +08:00
if (_this.refuelMoney!=null){
for (let i = 0;i < _this.refuelMoney.length;i++){
// 囤油卡升数变化
if (_this.refuelMoney[i].oilType==item.oilType){
if ((_this.refuelMoney[i].refuelMoney-item.liters)>=0){
conRefMon = item.liters
}else {
conRefMon = _this.refuelMoney[i].refuelMoney
2023-11-24 18:13:11 +08:00
// 扣除升数后需要消费的金额
hoardAmount = item.amount - (_this.refuelMoney[i].refuelMoney * item.oilPrice).toFixed(2)
2023-11-16 19:00:57 +08:00
}
}
}
}
_this.consumeRefuelMoney += +conRefMon
2023-11-24 18:13:11 +08:00
if (_this.consumeRefuelMoney!=0){
_this.isOilStorageCard = true;
_this.checkAll3 = true;
_this.consumeAmount = 0;
}
2023-11-21 18:18:35 +08:00
_this.hoardAmount += +hoardAmount
2023-11-16 19:00:57 +08:00
})
2023-11-22 18:10:36 +08:00
_this.isExclusion();
2023-11-06 18:06:29 +08:00
},
// 选择“元”或“L”
changeSelect(){
if(this.select == "元"){
this.rise = [
{value:"¥100"},
{value:"¥150"},
{value:"¥200"},
{value:"¥300"},
];
}else {
this.rise = [
{value:"100L"},
{value:"150L"},
{value:"200L"},
{value:"300L"},
];
}
},
// 改变加油金额
changeAmount(amount){
if (this.select == "元"){
2023-11-09 13:51:57 +08:00
this.amount = amount.slice(1)
2023-11-10 18:10:23 +08:00
this.form.amount = this.amount
2023-11-06 18:06:29 +08:00
}else {
2023-11-09 13:51:57 +08:00
this.amount = amount.slice(0,3)
2023-11-10 18:10:23 +08:00
this.form.amount = this.amount
2023-11-06 18:06:29 +08:00
}
},
// 获取油号名称
getName(oilNameList,id){
let name = ""
2023-11-22 18:10:36 +08:00
let oilType = ""
2023-11-08 18:07:17 +08:00
let _this = this;
2023-11-06 18:06:29 +08:00
if(oilNameList!=null && oilNameList!=""){
oilNameList.forEach(item => {
if (item.id == id){
2023-11-08 18:07:17 +08:00
name = item.oilName;
2023-11-22 18:10:36 +08:00
oilType = item.oilType;
2023-11-21 18:18:35 +08:00
_this.oilType = item.oilName;
2023-11-22 18:10:36 +08:00
_this.type = item.oilType;
2023-11-06 18:06:29 +08:00
}
})
}
2023-11-22 18:10:36 +08:00
return oilType+" "+name;
2023-11-06 18:06:29 +08:00
},
// 获取油号信息
getOilName(){
getOilNameList().then( response => {
this.oilNameList = response.data;
})
},
2023-11-07 18:12:17 +08:00
// 根据手机号查询会员信息
2023-11-06 18:06:29 +08:00
getUser(){
2023-11-07 18:12:17 +08:00
if(this.select1=="会员手机号"){
getUserVoMobile({mobile:this.userNo}).then( response => {
2023-11-09 13:51:57 +08:00
if (response.data!=null){
this.member = response.data
}else {
this.$modal.msgError("会员信息不存在")
}
2023-11-07 18:12:17 +08:00
})
}else {
getUserVoName({name:this.userNo}).then( response => {
this.memberList = response.data
})
this.dialogVisibleMember = true;
2023-11-06 18:06:29 +08:00
}
2023-11-07 18:12:17 +08:00
},
// 查询所有商品信息
getGoods(){
listgoods().then( response => {
this.goodsList = response.data
2023-11-06 18:06:29 +08:00
})
},
// 加油金额
2023-11-17 16:33:36 +08:00
refuel(data){
2023-11-16 19:00:57 +08:00
this.select = "元";
2023-11-21 18:18:35 +08:00
this.rise = [
{value:"¥100"},
{value:"¥150"},
{value:"¥200"},
{value:"¥300"},
];
2023-11-10 18:10:23 +08:00
this.amount = 0
2023-11-06 18:06:29 +08:00
this.dialogVisibleamount = true;
2023-11-22 18:10:36 +08:00
let result = false
2023-11-21 18:18:35 +08:00
// 判断是否存在此油品的数据
this.oilOrder.forEach(item => {
2023-11-22 18:10:36 +08:00
if (item.id==data.id){
this.amount = item.amount
result = true
this.isExistOilOrder = true;
}
2023-11-21 18:18:35 +08:00
})
2023-11-22 18:10:36 +08:00
if (result){
return;
}
2023-11-17 16:33:36 +08:00
getOilNumberById(data.numberId).then( response => {
2023-11-06 18:06:29 +08:00
this.form = response.data;
2023-11-25 18:08:20 +08:00
this.form.tankId = data.tankId
2023-11-17 16:33:36 +08:00
this.gunList.forEach(item => {
if (item.id==data.id){
2023-11-22 18:10:36 +08:00
this.form.id = item.id
2023-11-17 16:33:36 +08:00
this.form.gunName = item.gunName
}
})
2023-11-06 18:06:29 +08:00
})
},
2023-11-03 15:59:38 +08:00
// 确定收款
collection(){
2023-11-25 18:08:20 +08:00
if (this.payType=="CASH"){
if (this.authCode==undefined || this.authCode=="" || this.seekZero<0){
this.$modal.msgError("请输入正确的金额");
return;
}
}
2023-11-07 18:12:17 +08:00
// JSON.parse()
2023-11-17 16:33:36 +08:00
this.map.seekZero = this.seekZero;
2023-11-08 18:07:17 +08:00
this.map.oilAmount = this.oilAmount;
this.map.goodsAmount = this.goodsAmount;
this.map.oilActualPay = this.oilActualPay;
this.map.goodsActualPay = this.goodsActualPay;
this.map.oilDiscount = this.oilDiscount;
this.map.goodsDiscount = this.goodsDiscount;
this.map.goodsNum = this.goodsTotal;
2023-11-07 18:12:17 +08:00
this.map.oilOrder = JSON.stringify(this.oilOrder);
this.map.goodsOrder = JSON.stringify(this.goodsOrder);
2023-11-08 18:07:17 +08:00
this.map.authCode = this.authCode;
2023-12-06 18:36:10 +08:00
this.map.allAmount = +this.oilActualPay + +this.goodsActualPay
2023-11-13 16:51:57 +08:00
this.map.consumeAmount = this.consumeAmount;
2023-11-16 19:00:57 +08:00
this.updateRefuelMoney();
this.map.refuelMoney = JSON.stringify(this.refuelMoney)
2023-11-23 18:37:40 +08:00
this.map.couponId = this.useCouponIds
2023-11-08 18:07:17 +08:00
let _this = this;
2023-11-09 13:51:57 +08:00
addLJGoods(_this.map).then( response => {
if (response.data.oilOrder!=null){
2023-11-09 18:52:12 +08:00
_this.orderNo = response.data.oilOrder.orderNo;
2023-11-09 13:51:57 +08:00
if (response.data.oilOrder.orderStatus == "paid"){
_this.isPaySuccess = true;
2023-11-25 18:08:20 +08:00
_this.seekZero = 0
2023-11-09 13:51:57 +08:00
}
}
if (response.data.goodsOrder!=null){
if (response.data.goodsOrder.status == "paid"){
_this.isPaySuccess = true;
2023-11-25 18:08:20 +08:00
_this.seekZero = 0
2023-11-09 13:51:57 +08:00
}
2023-11-08 18:07:17 +08:00
}
2023-11-25 18:08:20 +08:00
if (response.data.error==1){
this.$modal.msgError("商品库存不足,请重新选择商品")
this.loading = false;
this.dialogVisiblej = false;
return;
}
2023-11-08 18:07:17 +08:00
})
this.loading = true;
2023-11-09 18:52:12 +08:00
_this.queryPayStatus();
let timer = setInterval(function () {
if (_this.isQuery == false) {
_this.loading = false;
_this.isPay = false;
clearInterval(_this.timer);
}
},500)
2023-11-08 18:07:17 +08:00
setTimeout(function (){
2023-11-09 18:52:12 +08:00
clearInterval(timer);
},30000)
2023-11-08 18:07:17 +08:00
this.authCode = "";
2023-11-09 13:51:57 +08:00
if (_this.isPaySuccess == true){
_this.oilAmount = 0;
_this.oilActualPay = 0;
_this.oilDiscount = 0;
_this.goodsAmount = 0;
_this.goodsActualPay = 0;
_this.goodsDiscount = 0;
_this.consumeAmount = 0;
2023-11-16 19:00:57 +08:00
_this.consumeRefuelMoney = 0;
2023-11-09 13:51:57 +08:00
_this.oilTotal = 0;
_this.goodsTotal = 0;
2023-11-16 19:00:57 +08:00
_this.isMember = false;
2023-11-13 16:51:57 +08:00
};
this.map = {
allAmount:0,
// 用户支付条码信息
authCode:'',
// 油品订单
oilOrder:"",
// 商品订单
goodsOrder:"",
// 支付方式
payType:"WECHAT",
// 油品订单金额
oilAmount:0,
// 商品订单金额
goodsAmount:0,
// 油品实付金额
oilActualPay:0,
// 商品实付金额
goodsActualPay:0,
// 付款用户
payUser:"",
// 油品优惠金额
oilDiscount:0,
// 商品优惠金额
goodsDiscount:0,
// 优惠券id
couponId:"",
// 提成金额
commissionAmount:0,
// 使用积分数量
usePoint:0,
// 积分金额
pointAmount:0,
// 终端
terminal:"PC",
// 商品数量
goodsNum:0,
// 会员消费金额(储值卡需要减少的金额)
consumeAmount:0,
};
2023-11-08 18:07:17 +08:00
},
2023-11-16 19:00:57 +08:00
updateRefuelMoney(){
let _this = this;
_this.oilOrder.forEach(item => {
if (_this.refuelMoney!=null){
_this.refuelMoney.forEach(i => {
if (i.oilType==item.oilType){
if ((i.refuelMoney-item.liters)>=0){
let refuelMoney = i.refuelMoney;
i.refuelMoney = refuelMoney-item.liters
}else {
i.refuelMoney = 0
}
}
})
}
})
},
2023-11-09 18:52:12 +08:00
// 查询订单支付状态
queryPayStatus(){
let _this = this;
_this.timer = setInterval(function (){
oilOrder({orderNo:_this.orderNo}).then( response => {
if (response.data!=null){
if (response.data.orderStatus == "unpaid"){
_this.isQuery = true;
}
if (response.data.orderStatus == "paid"){
_this.isPaySuccess = true;
_this.isQuery = false;
}
if (response.data.orderStatus == "payFail"){
_this.isPaySuccess = false;
_this.isQuery = false;
}
}
})
goodsOrder({orderNo:_this.orderNo}).then( response => {
if (response.data!=null){
if (response.data.status == "unpaid"){
_this.isQuery = true;
}
if (response.data.status == "paid"){
_this.isPaySuccess = true;
_this.isQuery = false;
}
if (response.data.status == "payFail"){
_this.isPaySuccess = false;
_this.isQuery = false;
}
}
})
},500)
},
2023-11-08 18:07:17 +08:00
handClose(){
2023-11-09 18:52:12 +08:00
if(this.isPaySuccess){
2023-11-09 13:51:57 +08:00
this.oilAmount = 0;
this.oilActualPay = 0;
this.oilDiscount = 0;
this.goodsAmount = 0;
this.goodsActualPay = 0;
this.goodsDiscount = 0;
this.consumeAmount = 0;
2023-11-17 16:33:36 +08:00
this.consumeRefuelMoney = 0;
2023-11-09 13:51:57 +08:00
this.oilTotal = 0;
this.goodsTotal = 0;
2023-11-17 16:33:36 +08:00
this.isMember = false;
2023-11-08 18:07:17 +08:00
}
2023-11-09 18:52:12 +08:00
this.isPay = true;
2023-11-08 18:07:17 +08:00
this.dialogVisiblej = false
this.isPaySuccess = false;
2023-11-03 15:59:38 +08:00
},
2023-11-07 18:12:17 +08:00
// 支付方式
2023-11-03 15:59:38 +08:00
payMethod(payType){
2023-11-07 18:12:17 +08:00
this.map.payType = payType;
2023-11-03 15:59:38 +08:00
},
// 获取支付方式
getPayList(){
getDicts("payment_type").then( response => {
this.payList = response.data;
})
// 获取油号列表信息
listOilNumGun().then( response => {
this.oilNumList = response.data
})
2023-11-06 18:06:29 +08:00
// 获取油号油枪对应信息
getOilNumGun({oilNum : "全部"}).then( response => {
this.oilNumGunList = response.data
})
2023-11-03 15:59:38 +08:00
},
handleClose(done) {
this.$confirm('确认关闭?')
.then(_ => {
done();
})
.catch(_ => {});
},
handleChange(value) {
2023-11-07 18:12:17 +08:00
let goods = this.goodsOrder;
let num = 0;
let amount = 0;
2023-11-09 13:51:57 +08:00
let _this = this;
2023-11-07 18:12:17 +08:00
goods.forEach(item => {
num += item.num
2023-11-09 13:51:57 +08:00
if (_this.isMember){
2023-11-24 18:13:11 +08:00
amount += +(item.memberPrice*item.num).toFixed(2);
2023-11-09 13:51:57 +08:00
}else {
2023-11-24 18:13:11 +08:00
amount += +(item.retailPrice*item.num).toFixed(2);
2023-11-09 13:51:57 +08:00
}
2023-11-07 18:12:17 +08:00
})
this.goodsTotal = num;
this.goodsAmount = amount;
2023-11-09 13:51:57 +08:00
this.goodsActualPay = this.goodsAmount - this.goodsDiscount;
2023-11-03 15:59:38 +08:00
},
handleClick(tab, event) {
2023-11-06 18:06:29 +08:00
let oilNum = ""
2023-11-28 18:33:35 +08:00
this.oilNumberList.forEach(item => {
2023-11-06 18:06:29 +08:00
if (item.oilName == tab.name){
oilNum = item.numberId
}
})
if (tab.label == "全部"){
2023-11-17 16:33:36 +08:00
oilNum = ""
2023-11-06 18:06:29 +08:00
}
2023-11-17 16:33:36 +08:00
this.getList(oilNum)
// getOilNumGun({oilNum : oilNum}).then( response => {
// this.oilNumGunList = response.data
// })
2023-11-03 15:59:38 +08:00
},
gocomponents(index){
this.leftindex = index
},
2023-11-16 19:00:57 +08:00
// 获取优惠券列表信息
getCouponList(){
listCardFavorableRecord().then(response => {
this.couponList = response.data.records
})
2023-11-17 16:33:36 +08:00
let map = {
page:1,
pageSize:20,
}
listUserGrade(map).then(response => {
this.gradeList = response.data.records
})
2023-11-16 19:00:57 +08:00
},
2023-11-17 16:33:36 +08:00
// 获取油枪列表信息
getList(numberId){
getOilGun({numberId:numberId}).then(response => {
this.gunList = response.data.records;
2023-11-16 19:00:57 +08:00
})
2023-11-21 18:18:35 +08:00
oilNumberList().then(response => {
this.oilNumberList = response.data.records;
})
2023-11-16 19:00:57 +08:00
},
2023-11-07 18:12:17 +08:00
},
2023-11-03 15:59:38 +08:00
}
2023-10-26 09:32:37 +08:00
</script>
<style scoped lang="scss">
2023-11-21 18:18:35 +08:00
.after-box{
width: 31%;
margin-right: 10px;
margin-bottom: 10px;
border-radius: 8px;
box-sizing: border-box;
background-color: #0270ff;
height: 110px;
padding: 10px;
color: white;
}
2023-11-06 18:06:29 +08:00
.but{
width: 150px;
height: 50px;
border-radius: 50px;
font-size: 20px;
}
.amountBlue{
color: #00afff;
font-weight: bold;
}
.amount{
display: flex;
justify-content: space-between;
font-size: 16px;
width: 100%;
padding: 0 10px;
margin: 10px auto;
height: 50px;
line-height: 50px;
background-color: #f6f6f6;
border-radius: 5px;
}
2023-10-26 09:32:37 +08:00
.app-center{
width: 100%;
display: flex;
box-sizing: border-box;
padding: 10px;
}
.center-left{
width: 33%;
border-radius: 8px;
overflow: hidden;
height: 98vh;
position: relative;
}
.bottom-posi{
width: 100%;
position: absolute;
bottom: 0px;
}
.center-app{
width: 33%;
border-radius: 8px;
overflow: hidden;
/*background: white;*/
}
.center-right{
width: 33%;
border-radius: 8px;
overflow: hidden;
margin: 0px 10px;
}
.center-top{
width: 100%;
height: 86vh;
background: white;
margin-bottom: 10px;
box-sizing: border-box;
padding: 10px;
position: relative;
}
.center-top-title{
box-sizing: border-box;
padding: 10px 0px;
padding-bottom: 15px;
border-bottom: 1px solid #ececec;
font-size: 18px;
margin-bottom: 10px;
}
.center-top-tab{
box-sizing: border-box;
padding: 15px 0px;
}
.center-top-input{
width: 100%;
height: 60px;
background: #f8f8f8;
border-radius: 50px;
display: flex;
align-items: center;
justify-content: center;
input{
width: 90%;
font-size: 18px;
border: none;
outline: none;
background-color:transparent;
}
}
.center-top-data{
width: 100%;
border-radius: 8px;
overflow: hidden;
margin-top: 10px;
/*background-color: #f8f8f8;*/
}
.center-top-of{
width: 100%;
/*background-color: #99a9bf;*/
height: 70vh;
overflow: auto;
}
.wrap-wrap{
display: flex;
flex-wrap: wrap;
}
.of-box{
width: 31%;
margin-right: 10px;
margin-bottom: 10px;
border-radius: 8px;
box-sizing: border-box;
background-color: #b4d5ff;
height: 110px;
padding: 10px;
color: #3e4f60;
}
.of-title{
font-weight: bold;
font-size: 22px;
text-align: center;
margin: 13px;
}
.data-top{
width: 100%;
background-color: #ededed;
box-sizing: border-box;
padding: 15px 10px;
display: flex;
align-items: center;
justify-content: space-between;
}
.data-top-box{
width: 100%;
/*background-color: #ededed;*/
box-sizing: border-box;
padding: 15px 10px;
display: flex;
align-items: center;
justify-content: space-between;
}
.data-top-three{
width: 55%;
display: flex;
align-items: center;
justify-content: space-between;
}
.data-top-title{
width: 45%;
overflow: hidden;
}
.content-top-bottom{
position: absolute;
bottom:-16px;
width: 98%;
border-top: 1px solid #ececec;
height: 40px;
display: flex;
align-items: center;
justify-content: space-between;
transform: translate(-50%,-50%);
left: 50%;
color: #2c3e50;
font-size: 18px;
box-sizing: border-box;
padding: 15px ;
background-color: white;
}
.center-left-top{
width: 100%;
background: #5393ff;
height: 70px;
display: flex;
align-items: center;
justify-content: center;
}
.center-vh{
/*height: 68vh;*/
}
.center-left-hj{
background: white;
display: flex;
justify-content: space-between;
align-items: center;
box-sizing: border-box;
padding: 15px;
margin-bottom: 2px;
}
.center-left-th{
background: white;
box-sizing: border-box;
padding: 15px;
margin: 10px auto;
}
.center-left-wrap{
display: flex;
justify-content: space-between;
flex-wrap: wrap;
/*margin-top: 280px;*/
}
.wrap-box{
width: 31%;
background: #ffffff;
border-radius: 8px;
height: 80px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 10px;
}
.wrap-box :hover{
/*background: #00afff !important;*/
width: 100%;
height: 100%;
border-radius: 8px;
height: 80px;
display: flex;
align-items: center;
justify-content: center;
border: 1px solid #00afff;
cursor: pointer;
/*color: white;*/
}
.center-left-bottom{
width: 100%;
background-color: white;
border-radius: 8px;
box-sizing: border-box;
padding: 10px;
display: flex;
align-items: center;
justify-content: space-between;
}
.bottom-qk{
border: 1px solid #99a9bf;
box-sizing: border-box;
padding: 14px 20px;
border-radius: 50px;
color: #99a9bf;
margin: 15px 0px ;
}
.bottom-qd{
border: 1px solid #13ce66;
background: #13ce66;
box-sizing: border-box;
padding: 14px 20px;
border-radius: 50px;
color: #ffffff;
margin: 15px 10px ;
}
.bottom-gd{
border: 1px solid #5393ff;
background: #5393ff;
box-sizing: border-box;
padding: 14px 20px;
border-radius: 50px;
color: #ffffff;
margin: 15px 10px ;
}
.bottom-price{
font-size: 26px;
font-weight: bold;
}
.price-red{
color: red;
}
.center-left-lv{
width: 60%;
height: 80px;
background-color: #13ce66;
color: white;
border-radius: 50px;
display: flex;
align-items: center;
justify-content: center;
font-size: 22px;
}
.th-box{
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: 1px solid #f6f8f9;
box-sizing: border-box;
padding: 10px 0px;
}
.hj-box{
width: 33%;
display: flex;
align-items: center;
justify-content: center;
}
.bule{
font-weight: 700;
color: #5393ff !important;
}
.vip-bottom{
border: 1px solid #ffffff;
box-sizing: border-box;
padding: 5px 15px;
border-radius: 50px;
display: flex;
align-items: center;
justify-content: center;
color: white;
cursor: pointer;
}
2023-11-06 18:06:29 +08:00
.el-row {
margin-top: 20px;
margin-bottom: 20px;
&:last-child {
margin-bottom: 0;
}
}
.el-col {
border-radius: 2px;
text-align: center;
font-size: 20px;
height: 50px;
line-height: 50px;
}
.bg-purple-dark {
background: #eeeeee;
}
.bg-purple {
background: #d3dce6;
}
.bg-purple-light {
background: #e5e9f2;
}
.grid-content {
height: 50px;
font-size: 20px;
width: 120px;
border-radius: 4px;
min-height: 36px;
}
.row-bg {
padding: 10px 0;
background-color: #eeeeee;
}
2023-11-08 18:07:17 +08:00
.elBut{
width: 85px;
height: 50px;
font-size: 18px;
}
2023-11-10 18:10:23 +08:00
.addr{
color: grey;
font-size: 12px;
}
2023-10-26 09:32:37 +08:00
</style>