123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336 |
- <template>
- <view class="selectCar-box">
- <view class="details">
- <view class="title">
- 基础信息
- </view>
- <view class="details-item">
- <view>
- 订单编号:
- </view>
- <text>{{state.data.orderId}}</text>
- </view>
- <view class="details-item">
- <view>
- 用户名称:
- </view>
- <text>{{state.data.customerName}}</text>
- </view>
- <view class="details-item">
- <view>
- 用户证件类型:
- </view>
- <text>{{getCodeName('CERTIFICATE_TYPE',state.data.customerIdtype)}}</text>
- </view>
- <view class="details-item">
- <view>
- 用户证件号:
- </view>
- <text>{{state.data.customerIdnum}}</text>
- </view>
- <view class="details-item">
- <view>
- 订单车牌号:
- </view>
- <text style="color: #00B38B;;">{{state.data.vehiclePlate}}</text>
- </view>
- <view class="details-item">
- <view>
- 收费车型:
- </view>
- <text>{{state.data.vehicleType}}</text>
- </view>
- </view>
- <view class="">
- <view class="title">
- 卡信息
- </view>
- <view class="card">
- <view class="card-left">
- <image :src="`${$imgUrl}card2.png`" mode=""></image>
- <view class="card-center">
- <view class="card-center-head">
- {{state.data.cardId}}
- </view>
- <view class="tips">
- <text>储蓄卡</text>
- <text class="tips-card">{{getCodeName('CARD_STATE_TYPE',state.data.cardStatus)}}</text>
- </view>
- </view>
- </view>
- </view>
- </view>
- <view class="">
- <view class="title">
- OBU设备信息
- </view>
- <view class="card">
- <view class="card-left">
- <image :src="`${$imgUrl}card1.png`" mode=""></image>
- <view class="card-center">
- <view class="card-center-head">
- {{state.data.obuId}}
- </view>
- <view class="tips">
- <!-- <text>储蓄卡</text> -->
- <text class="tips-card">{{getCodeName('OBU_STATE_TYPE',state.data.obuStatus)}}</text>
- </view>
- </view>
- </view>
- </view>
- </view>
- <button class="submit" @click="nextACtion">下一步</button>
- </view>
- </template>
-
- <script lang="ts" setup>
- import {
- getCodeName
- } from "@/datas/queryKey.js";
-
- import {
- reactive,
- ref
- } from "vue"
- import {
- navTo
- } from "@/utils/utils"
- import {
- onLoad,
- onUnload
- } from "@dcloudio/uni-app";
- import {
- request
- } from "@/utils/network/request.js";
- import {
- orderDetail,
- CardlossStatus,
- cckChangejzCardJY
- } from "@/utils/network/api.js";
-
- import {
- msg
- } from "@/utils/utils";
-
- import {
- stringToJson
- } from "@/utils/network/encryption";
-
- const state = reactive({
- data: {
- cardStatus: undefined,
- obuStatus: undefined,
- },
- type: undefined
- });
-
- /*视图进入后操作*/
- onLoad((option) => {
- console.log("option", option)
- queryOrderDetail(option.id).then((val : any) => {
- state.data = val
- })
-
- });
- onUnload(() => {
-
- });
- /*下一步*/
- const nextACtion = () => {
-
- queryCckChangejzCardJY().then(val => {
- if (state.data.cardId.length > 0 && state.data.obuId.length < 1) {
- state.type = 1 //只有卡
-
- } else if (state.data.cardId.length < 1 && state.data.obuId.length > 0) {
- state.type = 2 //只有设备
- } else if (state.data.cardId.length > 0 && state.data.obuId.length > 0) {
- state.type = 3 //两者都有
- }
- navTo(
- `/subpackage/after-sale/ETC-log-off/etc-log-off?type=${state.type}&&mobile=${state.data.customerTel}&&cardId=${state.data.cardId}&&obuId=${state.data.obuId}&&orderId=${state.data.orderId}`
- )
- })
-
- }
-
- const queryCckChangejzCardJY = () => {
-
- return new Promise(async (resolve, reject) => {
- const res = await request(cckChangejzCardJY, {
- type: 2,
- data: {
- cardId: state.data.cardId,
- obuId: state.data.obuId,
- orderId: state.data.orderId
- },
- method: "POST",
- showLoading: true,
- });
- const data = stringToJson(res.bizContent);
- resolve(data);
- }).catch((error) => {
- reject(error);
- });
- }
- const queryOrderDetail = (id) => {
- return new Promise(async (resolve, reject) => {
- const res = await request(orderDetail, {
- type: 2,
- data: {
- id: id
- },
- method: "POST",
- showLoading: true,
- });
- const data = stringToJson(res.bizContent);
- resolve(data);
- }).catch((error) => {
- reject(error);
- });
- }
- </script>
-
- <style>
- page {
- width: 100%;
- height: 100%;
- background-color: #fff;
- }
- </style>
- <style lang="scss" scoped>
- .selectCar-box {
- // width: 100%;
- // height: 100%;
- padding: 30rpx;
-
- .title {
- font-size: 30rpx;
- font-family: Microsoft YaHei UI;
- font-weight: 400;
- color: #333333;
- margin-bottom: 30rpx;
- }
-
- .details {
- .title {
- font-size: 30rpx;
- font-family: Microsoft YaHei UI;
- font-weight: 400;
- color: #333333;
- margin-bottom: 30rpx;
- }
-
- .details-item {
- display: flex;
- font-size: 26rpx;
- font-family: Noto Sans S Chinese;
- font-weight: 400;
- color: #999999;
- margin-bottom: 30rpx;
-
- text {
- font-size: 26rpx;
- font-family: Noto Sans S Chinese;
- font-weight: 400;
- color: #333333;
- }
- }
-
- }
-
- .card {
- height: 150rpx;
- background: #FFFFFF;
- box-shadow: 0rpx 4rpx 13rpx 3rpx rgba(223, 223, 223, 0.8);
- border-radius: 20rpx;
- padding: 30rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 60rpx;
-
- .card-left {
- display: flex;
- align-items: center;
-
- image {
- width: 100rpx;
- height: 90rpx;
- }
-
- .card-center {
- margin-left: 30rpx;
-
- .card-center-head {
- font-size: 32rpx;
- font-family: Noto Sans S Chinese;
- font-weight: 400;
- color: #333333;
- }
-
- .tips {
- font-size: 26rpx;
- font-family: Noto Sans S Chinese;
- font-weight: 400;
- color: #666666;
-
- .tips-card {
- width: 70rpx;
- height: 40rpx;
- background: #D3F2EF;
- border-radius: 6rpx;
- font-size: 20rpx;
- font-family: Noto Sans S Chinese;
- font-weight: 400;
- color: #0A8F8A;
- padding: 5rpx 10rpx;
- margin-left: 20rpx;
- }
- }
- }
- }
-
- .choose-item {
- margin-right: 20rpx;
- width: 50rpx;
- height: 50rpx;
- border: 1rpx solid #00B38B;
- border-radius: 50%;
- display: flex;
- justify-content: center;
- align-items: center;
-
- .active {
- width: 38rpx;
- height: 38rpx;
- background: #00B38B;
- border-radius: 50%;
- }
- }
- }
-
-
- .remark {
- font-size: 26rpx;
- font-family: Microsoft YaHei UI;
- font-weight: 400;
- color: #666666;
- text-indent: 30rpx;
- margin-bottom: 30rpx;
- }
-
- .submit {
- margin-top: 100rpx;
- width: 670rpx;
- height: 80rpx;
- background: linear-gradient(-90deg, #43A1E0 0%, #13E7C1 100%);
- border-radius: 40rpx;
- font-size: 32rpx;
- font-family: Noto Sans S Chinese;
- font-weight: 400;
- color: #FFFFFF;
- line-height: 80rpx;
- }
- }
- </style>
|