|
@@ -10,53 +10,59 @@
|
|
|
<view class="container-content-search-input" @click="clickCarKeyboard">
|
|
|
<u-message-input :maxlength="8" width="55" font-size="40" :disabled-keyboard="true" v-model="form.vehicleNo" />
|
|
|
</view>
|
|
|
- <!-- 车牌号键盘 -->
|
|
|
- <u-keyboard
|
|
|
- ref="uKeyboard"
|
|
|
- mode="car"
|
|
|
- @change="keyboardChange"
|
|
|
- @confirm="keyboardConfirm"
|
|
|
- @backspace="backspace"
|
|
|
- v-model="carKeyboard.show"
|
|
|
- />
|
|
|
- <!-- 选择颜色 -->
|
|
|
- <u-action-sheet :list="colorPop.colorList" @click="confirmColor" v-model="colorPop.show" />
|
|
|
</view>
|
|
|
- <view class="container-content-choose">
|
|
|
+ <view class="container-content-choose" @click="toggleVehicleList">
|
|
|
<view class="container-content-choose-text">点击选择车牌</view>
|
|
|
<view class="container-content-choose-icon">
|
|
|
<u-icon name="arrow-up" v-if="toggle"></u-icon>
|
|
|
<u-icon name="arrow-down" v-else></u-icon>
|
|
|
</view>
|
|
|
</view>
|
|
|
- <view class="container-content-list">
|
|
|
- <radio-group @change="radioChange">
|
|
|
- <view class="container-content-list-item" v-for="(item, index) in vehicleList" :key="index">
|
|
|
- <view class="left">{{ item.label }}</view>
|
|
|
- <view class="right">
|
|
|
- <radio :value="item.value" :checked="item.value === form.vehicleNo" />
|
|
|
+ <template v-if="toggle">
|
|
|
+ <view class="container-content-list" v-if="vehicleList.length">
|
|
|
+ <radio-group @change="radioChange">
|
|
|
+ <view class="container-content-list-item" v-for="(item, index) in vehicleList" :key="index" @click="form.vehicleNo = item.value">
|
|
|
+ <view class="left">{{ item.label }}</view>
|
|
|
+ <view class="right">
|
|
|
+ <radio :value="item.value" :checked="item.value === form.vehicleNo" />
|
|
|
+ </view>
|
|
|
</view>
|
|
|
- </view>
|
|
|
- </radio-group>
|
|
|
- </view>
|
|
|
+ </radio-group>
|
|
|
+ </view>
|
|
|
+ <view v-else>
|
|
|
+ <u-empty text="车牌记录为空" mode="list"></u-empty>
|
|
|
+ </view>
|
|
|
+ </template>
|
|
|
<view class="container-content-confirm">
|
|
|
<u-button type="primary" :loading="loading" :disabled="!form.vehicleNo" @click="submitVehicleConfirm">确认</u-button>
|
|
|
</view>
|
|
|
</view>
|
|
|
+ <!-- 车牌号键盘 -->
|
|
|
+ <u-keyboard ref="uKeyboard" mode="car" @change="keyboardChange" @confirm="keyboardConfirm" @backspace="backspace" v-model="carKeyboard.show" />
|
|
|
+ <!-- 选择颜色 -->
|
|
|
+ <u-action-sheet :list="colorPop.colorList" @click="confirmColor" v-model="colorPop.show" />
|
|
|
+ <!-- 参数丢失弹框 -->
|
|
|
<parmas-loss-pop :show="lossPopShow" />
|
|
|
+ <!-- 页面报错弹框 -->
|
|
|
+ <page-error-pop :show="pageErrorShow" :tipText="pageErrorTxt" @pageErrorPopClose="pageErrorPopClose" />
|
|
|
+ <u-toast ref="uToast" />
|
|
|
</view>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
import ParmasLossPop from '@/components/params-loss-pop/params-loss-pop.vue';
|
|
|
+import PageErrorPop from '@/components/page-error-pop/page-error-pop.vue';
|
|
|
+import { base64Encrypt } from '@/utils';
|
|
|
export default {
|
|
|
components: {
|
|
|
- ParmasLossPop
|
|
|
+ ParmasLossPop,
|
|
|
+ PageErrorPop
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
|
form: {
|
|
|
- vehicleNo: ''
|
|
|
+ vehicleNo: '',
|
|
|
+ parkNo: ''
|
|
|
},
|
|
|
carKeyboard: {
|
|
|
show: false
|
|
@@ -94,7 +100,9 @@ export default {
|
|
|
loading: false,
|
|
|
vehicleList: [],
|
|
|
parkInfo: {},
|
|
|
- lossPopShow: false
|
|
|
+ lossPopShow: false,
|
|
|
+ pageErrorShow: false,
|
|
|
+ pageErrorTxt: ''
|
|
|
};
|
|
|
},
|
|
|
onLoad(options) {
|
|
@@ -131,13 +139,17 @@ export default {
|
|
|
const { data, code } = await this.$u.api.getVehicleInquiryListApi({ parkNo });
|
|
|
if (code === 200) {
|
|
|
this.parkInfo = data;
|
|
|
- this.vehicleList = data.vehicleList.map((item) => {
|
|
|
- return { label: item, value: item };
|
|
|
- });
|
|
|
- await this.$nextTick();
|
|
|
- this.$refs.refValue.init();
|
|
|
+ if (data.vehicleList && data.vehicleList.length) {
|
|
|
+ this.vehicleList = data.vehicleList.map((item) => {
|
|
|
+ return { label: item, value: item };
|
|
|
+ });
|
|
|
+ await this.$nextTick();
|
|
|
+ this.$refs.refValue.init();
|
|
|
+ }
|
|
|
}
|
|
|
- } catch (error) {}
|
|
|
+ } catch (error) {
|
|
|
+ console.log(error);
|
|
|
+ }
|
|
|
},
|
|
|
/**
|
|
|
* @description: 车牌键盘确认
|
|
@@ -160,6 +172,13 @@ export default {
|
|
|
confirmColor() {
|
|
|
this.colorPop.show = false;
|
|
|
},
|
|
|
+ /**
|
|
|
+ * @description: 点击收起和展开车牌列表
|
|
|
+ * @return {*}
|
|
|
+ */
|
|
|
+ toggleVehicleList() {
|
|
|
+ this.toggle = !this.toggle;
|
|
|
+ },
|
|
|
/**
|
|
|
* @description:
|
|
|
* @param {*} e
|
|
@@ -168,6 +187,10 @@ export default {
|
|
|
radioChange(e) {
|
|
|
this.form.vehicleNo = e.detail.value;
|
|
|
},
|
|
|
+ /**
|
|
|
+ * @description: 确认提交
|
|
|
+ * @return {*}
|
|
|
+ */
|
|
|
async submitVehicleConfirm() {
|
|
|
const { vehicleNo } = this.form;
|
|
|
const reg =
|
|
@@ -181,6 +204,7 @@ export default {
|
|
|
title: '查询成功!',
|
|
|
type: 'success',
|
|
|
url: '/pages/OnsitePayment/OnsitePayment',
|
|
|
+ duration: 1000,
|
|
|
params: {
|
|
|
...this.form,
|
|
|
vehicleNo: base64Encrypt(this.form.vehicleNo)
|
|
@@ -192,7 +216,8 @@ export default {
|
|
|
}
|
|
|
} catch (error) {
|
|
|
this.loading = false;
|
|
|
- // this.showToast(error?.msg, 'error');
|
|
|
+ this.pageErrorShow = true;
|
|
|
+ this.pageErrorTxt = error?.msg ?? '查询出错啦!';
|
|
|
}
|
|
|
} else {
|
|
|
this.loading = false;
|
|
@@ -210,6 +235,13 @@ export default {
|
|
|
title,
|
|
|
type
|
|
|
});
|
|
|
+ },
|
|
|
+ /**
|
|
|
+ * @description: 关闭报错弹框
|
|
|
+ * @return {*}
|
|
|
+ */
|
|
|
+ pageErrorPopClose() {
|
|
|
+ this.pageErrorShow = false;
|
|
|
}
|
|
|
}
|
|
|
};
|