| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340 |
- <template>
- <ax-body title="车牌管理">
- <view class="body">
- <!-- 车牌列表 -->
- <view class="plate-list">
- <view class="plate-card" v-for="(item, index) in vehicleList" :key="index">
- <image class="plate-bg"
- src="https://national-motion.oss-cn-beijing.aliyuncs.com/20260318/f0babdfe99ca49c69cf26454f9084107.png"
- mode="aspectFill"></image>
- <view class="plate-content">
- <view class="plate-number">{{ item.licensePlate }}</view>
- <view class="plate-actions">
- <view class="default-tag" v-if="item.isDefault">默认</view>
- <view class="set-default" v-else @click="setDefault(item)">设为默认</view>
- <view class="delete-btn" @click="deleteVehicle(item)">
- <text class="delete-icon">🗑</text>
- <text>删除</text>
- </view>
- </view>
- </view>
- </view>
- </view>
- <!-- 空状态 -->
- <view class="empty-state" v-if="vehicleList.length === 0">
- <text>暂无绑定车辆</text>
- </view>
- <view class="rules-tips">
- <view class="tips-title">
- 规则说明
- </view>
- <view class="tips-texts">
- <view class="">1.绑定车牌后,将按订单充电时长+30分钟离场时间进行减免停车费;(例如:充电时长60分钟,系统自动延长30分钟离场时间,即离场时减免90分钟停车费)</view>
- <view class="">2.绑定多个车牌时,请在充电开始前,确认充电车辆已设为当前默认充电车辆后,再开始充电,否则无法进行减免停车费。</view>
- <view class="">3.车牌绑定错误或默认车牌未对应现场充电车辆导致无法减免停车费,因此产生的一切损失与本平台无关。</view>
- </view>
- <view style="height: 30rpx;"></view>
- </view>
- </view>
- <!-- 底部添加按钮 -->
- <view class="bottom-btn-wrap">
- <view class="add-btn" @click="openAddPopup">添加车辆</view>
- </view>
- <!-- 添加车辆弹窗 -->
- <ax-popup ref="addPopup" position="bottom" maskType="black" maskClose @closed="onPopupClosed">
- <view class="popup-content">
- <view class="popup-header">
- <view class="popup-title">添加车辆</view>
- <view class="popup-close" @click="closeAddPopup">×</view>
- </view>
- <view class="popup-body">
- <view class="form-tip">请点击下方输入框输入车牌号</view>
- <best-plate-keyboard v-model="newPlateNumber" placeholder="点击输入车牌号" @complete="onPlateComplete" />
- </view>
- </view>
- </ax-popup>
- </ax-body>
- </template>
- <script>
- import BestPlateKeyboard from '../components/best-plate-keyboard/index.vue'
- export default {
- components: {
- BestPlateKeyboard
- },
- data() {
- return {
- vehicleList: [],
- newPlateNumber: ''
- }
- },
- onShow() {
- this.getVehicleList();
- },
- methods: {
- // 获取车辆列表
- getVehicleList() {
- this.$api.base('get', '/applet/v1/vehicle/list', {}, {
- error: false
- }).then(res => {
- if (res && res.data) {
- this.vehicleList = Array.isArray(res.data) ? res.data : [];
- }
- }).catch(() => {
- this.vehicleList = [];
- });
- },
- // 设为默认
- setDefault(item) {
- this.$app.popup.confirm('是否确认操作?','提示').then(confirm=>{
- if(confirm){
- this.$api.base('put', `/applet/v1/vehicle/default/${item.id}`, {}).then(res => {
- if (res.code === '00000') {
- setTimeout(()=>{
- uni.showToast({
- title: '设置成功',
- icon: 'success'
- });
- },500)
- this.getVehicleList();
- }
- });
- }
- })
- },
- // 删除车辆
- deleteVehicle(item) {
- this.$app.popup.confirm('确认删除该车辆?', '提示').then(confirm => {
- if (confirm) {
- this.$api.base('delete', `/applet/v1/vehicle/${item.id}`, {}).then(res => {
- if (res.code === '00000') {
- setTimeout(()=>{
- uni.showToast({
- title: '删除成功',
- icon: 'success'
- });
- },500)
- this.getVehicleList();
- }
- });
- }
- });
- },
- // 打开添加弹窗
- openAddPopup() {
- this.newPlateNumber = ''
- this.$refs.addPopup.open()
- },
- // 关闭添加弹窗
- closeAddPopup() {
- this.$refs.addPopup.close()
- },
- // 弹窗关闭后
- onPopupClosed() {
- this.newPlateNumber = ''
- },
- // 车牌输入完成
- onPlateComplete(plateNumber) {
- if (!plateNumber) {
- return
- }
- const userInfo = this.$app.storage.get('USER_INFO') || {}
- // 如果没有车辆,新添加的默认设为默认车辆
- const isDefault = this.vehicleList.length === 0 ? 1 : 0
- this.$api.base('post', '/applet/v1/vehicle', {
- userId: userInfo.appletUserId || '',
- licensePlate: plateNumber,
- isDefault: isDefault // 是否默认车辆(0-否 1-是)
- }).then(res => {
- if (res.code === '00000') {
- setTimeout(()=>{
- uni.showToast({ title: '添加成功', icon: 'success' })
- },100)
- this.closeAddPopup()
- this.getVehicleList()
- setTimeout(()=>{
- uni.navigateBack()
- },500)
- }
- })
- },
- }
- }
- </script>
- <style scoped>
- page {
- background-color: #F5F7FB;
- }
- .body {
- padding: 20rpx;
- padding-bottom: 140rpx;
- }
- /* 车牌列表 */
- .plate-list {
- display: flex;
- flex-direction: column;
- gap: 20rpx;
- }
- .plate-card {
- position: relative;
- width: 100%;
- height: 180rpx;
- border-radius: 16rpx;
- overflow: hidden;
- }
- .plate-bg {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- }
- .plate-content {
- position: relative;
- z-index: 1;
- display: flex;
- align-items: center;
- justify-content: space-between;
- height: 100%;
- padding: 0 30rpx;
- }
- .plate-number {
- font-size: 40rpx;
- font-weight: bold;
- color: #2b303a;
- letter-spacing: 4rpx;
- }
- .plate-actions {
- display: flex;
- flex-direction: column;
- align-items: flex-end;
- gap: 16rpx;
- }
- .default-tag {
- position: absolute;
- right: 0;
- top: 0;
- border-radius: 0rpx 16rpx 0rpx 16rpx;
- padding: 8rpx 24rpx;
- background: linear-gradient(135deg, #47aeff 0%, #3eb6f8 100%);
- font-size: 24rpx;
- color: #fff;
- }
- .set-default {
- font-size: 26rpx;
- color: #666;
- }
- .delete-btn {
- display: flex;
- align-items: center;
- gap: 8rpx;
- font-size: 26rpx;
- color: #666;
- }
- .delete-icon {
- font-size: 28rpx;
- }
- /* 空状态 */
- .empty-state {
- display: flex;
- align-items: center;
- justify-content: center;
- padding: 200rpx 0;
- font-size: 28rpx;
- color: #999;
- border-radius: 16rpx;
- background: linear-gradient( 180deg, #C7FFFD 0%, #F2FFFF 100%);
- }
- .rules-tips{
- margin-top: 20rpx;
- }
- .tips-title{
- font-size: 28rpx;
- font-weight: bold;
- }
- .tips-texts{
- font-size: 26rpx;
- color: #333;
- }
- /* 弹窗样式 */
- .popup-content {
- width: 100vw;
- background: #fff;
- border-radius: 32rpx 32rpx 0 0;
- overflow: hidden;
- }
- .popup-header {
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 30rpx;
- border-bottom: 1rpx solid #f0f0f0;
- }
- .popup-title {
- font-size: 32rpx;
- font-weight: 600;
- color: #333;
- }
- .popup-close {
- width: 48rpx;
- height: 48rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 40rpx;
- color: #999;
- }
- .popup-body {
- padding: 30rpx;
- padding-bottom: calc(30rpx + env(safe-area-inset-bottom));
- }
- .form-tip {
- font-size: 26rpx;
- color: #999;
- margin-bottom: 20rpx;
- }
- /* 底部按钮 */
- .bottom-btn-wrap {
- position: fixed;
- left: 0;
- right: 0;
- bottom: 0;
- padding: 20rpx 30rpx;
- padding-bottom: calc(20rpx + env(safe-area-inset-bottom));
- background: #fff;
- box-shadow: 0 -2rpx 20rpx rgba(0, 0, 0, 0.05);
- }
- .add-btn {
- display: flex;
- align-items: center;
- justify-content: center;
- height: 96rpx;
- background: linear-gradient(to right, #8ff8fb, #47aeff);
- border-radius: 48rpx;
- font-size: 32rpx;
- color: #2b303a;
- font-weight: 500;
- }
- </style>
|