123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349 |
- <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>{{getCredentialType(state.data.customerIdtype)}}</text>
- </view>
- <view class="details-item">
- <view>
- 用户证件号:
- </view>
- <text>{{desensitization(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>{{state.cardType=="23"?'记账卡':'储值卡'}}</text>
- <text class="tips-card">{{getEtcCardStatus(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 class="tips-card">{{getObuStatus(state.data.obuStatus)}}</text>
- </view>
- </view>
- </view>
- </view>
- </view>
- <button class="submit" @click="nextACtion">下一步</button>
- </view>
- </template>
-
- <script lang="ts" setup>
- import {
- reactive,
- ref
- } from "vue"
- import {
- navTo,desensitization
- } from "@/utils/utils"
- import {
- onLoad,
- onUnload
- } from "@dcloudio/uni-app";
- import {
- request,requestNew
- } from "@/utils/network/request.js";
- import {
- commGetDetail,
- changeCardQuery
- } from "@/utils/network/api.js";
- import {
- getCredentialType
- } from "@/subpackage/after-sale/js/credentialType.js";
-
- import {
- getEtcCardStatus
- } from "@/subpackage/after-sale/js/etcCardStatus.js";
- import {
- getObuStatus
- } from "@/subpackage/after-sale/js/obuStatus.js";
-
- import {
- stringToJson
- } from "@/utils/network/encryption";
-
- const state = reactive({
- data: {
- cardStatus: undefined,
- obuStatus: undefined,
- },
- type: undefined,
- cardType:""
- });
- const apply = reactive({
- data: {
- status: undefined,
- id: ''
- }
-
- });
- /*视图进入后操作*/
- onLoad((option) => {
- console.log("id", option)
- queryOrderDetail(option.vehicleId).then((val : any) => {
- console.log("val", val)
- state.data = val
- state.cardType=val.cardId.substring(8,10)
- })
-
- });
- onUnload(() => {
-
- });
- /*下一步*/
- const nextACtion = () => {
- changeCardQueryAction().then(val => {
- console.log("val.status", val);
- if (!val) {
- navTo(
- `/subpackage/after-sale/replace-equipment/verification?orderId=${state.data.orderId}&&cardId=${state.data.cardId}&&mobile=${state.data.customerTel}&&vehicleId=${state.data.vehicleId}`
- )
-
- } else {
- apply.data = val;
- apply.data.status = val.status;
- // 申请中APPLY 审核中AUDIT
- if (val.status == "APPLY" || val.status == "AUDIT") {
- navTo(
- `/subpackage/after-sale/replace-equipment/form?orderId=${state.data.orderId}&&id=${apply.data.id}&&msg=${val.msg}&&cardExpire=${val.cardExpire}&&obuExpire=${val.obuExpire}`
- )
- } else {
- navTo(
- `/subpackage/after-sale/replace-equipment/verification?orderId=${state.data.orderId}&&cardId=${state.data.cardId}&&mobile=${state.data.customerTel}&&vehicleId=${state.data.vehicleId}`
- )
- }
- }
- })
- }
- //查询申请单
- const changeCardQueryAction = () => {
- var data = {
- orderId: state.data.orderId
- };
- const options = {
- type: 2,
- data: data,
- method: "POST",
- showLoading: true,
- };
- return new Promise(async (resolve, reject) => {
- const res = await request(changeCardQuery, options);
- const data = stringToJson(res.bizContent);
- console.log("data===", data)
- resolve(data);
- }).catch((error) => {
- reject(error);
- });
- }
- const queryOrderDetail = (vehicleId) => {
- return new Promise(async (resolve, reject) => {
- const res = await requestNew(commGetDetail, {
- type: 2,
- data: {
- vehicleId
- },
- method: "POST",
- showLoading: true,
- });
- const data = res;
- resolve(data);
- }).catch((error) => {
- reject(error);
- });
- }
- </script>
-
- <style>
- page {
- width: 100%;
- height: 100%;
- background-color: #fff;
- }
- </style>
- <style lang="scss" scoped>
- .selectCar-box {
- 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>
|