Compare commits
4 Commits
d1726e3041
...
prod-25-06
| Author | SHA1 | Date | |
|---|---|---|---|
| dee9cd779a | |||
| 0b0749f04a | |||
| 61da53bfe0 | |||
| d1d246d871 |
@ -32,10 +32,6 @@
|
||||
</script>
|
||||
<script type="text/javascript" src="https://webapi.amap.com/maps?v=2.0&key=2560bbf04daef66c810c5e6a97e8c508&plugin=AMap.AutoComplete,AMap.PlaceSearch,AMap.Geolocation,AMap.Geocoder,AMap.Marker,AMap.Driving"></script>
|
||||
<!-- <script src="https://unpkg.com/vconsole@latest/dist/vconsole.min.js"></script>-->
|
||||
<script>
|
||||
window.selfLink = window.location.href;
|
||||
window.selfSearch = window.location.search;
|
||||
</script>
|
||||
<script>
|
||||
// VConsole 默认会挂载到 `window.VConsole` 上
|
||||
// let vConsole = new window.VConsole();
|
||||
|
||||
@ -1,72 +0,0 @@
|
||||
import request from '@/utils/http'
|
||||
// 根据订单 获取报备类型
|
||||
/*export function getReportListByOrder(key){
|
||||
return request({
|
||||
url: '/order/baseDriverReportConfigs/getByOrderId',
|
||||
method:'GET',
|
||||
params: key
|
||||
})
|
||||
}*/
|
||||
// 弹框
|
||||
export function successPopup( data) {
|
||||
return request({
|
||||
url: '/returnOrder/wechatDriver/user/successPopup',
|
||||
method:'POST',
|
||||
contentType: 'application/x-www-form-urlencoded',
|
||||
data
|
||||
})
|
||||
}
|
||||
// 认证进度
|
||||
export function infoVerifyProgress(data){
|
||||
return request({
|
||||
url: '/returnOrder/wechatDriver/user/infoVerifyProgress',
|
||||
method:'POST',
|
||||
contentType: 'application/json',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 认证详情
|
||||
export function driverInfoVerifyDetail(data) {
|
||||
return request({
|
||||
url:'/returnOrder/wechatDriver/user/driverInfoVerifyDetail',
|
||||
method:'POST',
|
||||
data: data,
|
||||
contentType: 'application/json',
|
||||
})
|
||||
}
|
||||
|
||||
// 我的信息
|
||||
export function getMyInfo(data) {
|
||||
return request({
|
||||
url:'/returnOrder/wechatDriver/user/driverDetail',
|
||||
method:'POST',
|
||||
data: data,
|
||||
})
|
||||
}
|
||||
// ocr识别
|
||||
export function ocrRecognize( data) {
|
||||
return request( {
|
||||
url:'/returnOrder/wechatDriver/user/ocrRecognize',
|
||||
data: data,
|
||||
method:'POST',
|
||||
contentType: 'application/json'
|
||||
})
|
||||
}
|
||||
// 认证
|
||||
export function driverInfoVerify( data) {
|
||||
return request({
|
||||
url:'/returnOrder/wechatDriver/user/driverInfoVerify',
|
||||
data: data,
|
||||
method:'POST',
|
||||
contentType: 'application/json'
|
||||
})
|
||||
}
|
||||
// 实名认证
|
||||
export function driverRealName( data) {
|
||||
return request('/returnOrder/wechatDriver/user/driverRealNameAuth', {
|
||||
data: data,
|
||||
method:'POST',
|
||||
contentType: 'application/json'
|
||||
})
|
||||
}
|
||||
@ -316,27 +316,4 @@ export function unifiedOCRWithCompress(data){
|
||||
contentType:'application/json',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 服务商是否培训
|
||||
export function jumpPage(data){
|
||||
return request({
|
||||
url:'/supplierAppV2/dispatchApp/user/jumpPage',
|
||||
method:'POST',
|
||||
data
|
||||
})
|
||||
}
|
||||
//发送确认参保
|
||||
export function sendInsuranceEmail(){
|
||||
return request({
|
||||
url:'/supplierAppV2/dispatchApp/user/sendInsuranceEmail',
|
||||
method:'POST',
|
||||
})
|
||||
}
|
||||
// 判断服务商是否参保
|
||||
export function isSendInsuranceEmail(){
|
||||
return request({
|
||||
url:'/supplierAppV2/dispatchApp/user/isSendInsuranceEmail',
|
||||
method:'POST',
|
||||
})
|
||||
}
|
||||
@ -112,43 +112,3 @@ export function correctionHandle(data) {
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
// 获取报警列表
|
||||
export function getAlarmList(data) {
|
||||
return request({
|
||||
url: '/supplierAppV2/dispatchApp/alarm/alarmList',
|
||||
method:'POST',
|
||||
contentType: 'application/json',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 获取报警数目
|
||||
export function getAlarmCount(data) {
|
||||
return request({
|
||||
url: '/supplierAppV2/dispatchApp/alarm/alarmCount',
|
||||
method:'POST',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 获取报警详情
|
||||
export function getAlarmByCode(data) {
|
||||
return request({
|
||||
url: '/supplierAppV2/dispatchApp/alarm/getAlarmByCode',
|
||||
method:'POST',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 处理报警
|
||||
export function dealWithAlarm(data) {
|
||||
return request({
|
||||
url: '/supplierAppV2/dispatchApp/alarm/handAlarm',
|
||||
method:'POST',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
|
||||
@ -93,23 +93,4 @@ export function saveRecord(data){
|
||||
contentType: 'application/json',
|
||||
data
|
||||
})
|
||||
}
|
||||
// 审核不通过再次提交
|
||||
export function auditCarInfoAgain(data){
|
||||
return request({
|
||||
url: '/toc-user/car-app/auditCarInfoAgain',
|
||||
method:'POST',
|
||||
contentType: 'application/json',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
// 我的发布列表
|
||||
export function getAddressForService(data){
|
||||
return request({
|
||||
url: '/base/gaodeMap/getPlaceByAddress',
|
||||
method:'GET',
|
||||
params: data,
|
||||
})
|
||||
}
|
||||
}
|
||||
|
Before Width: | Height: | Size: 785 B |
|
Before Width: | Height: | Size: 2.2 KiB |
|
Before Width: | Height: | Size: 10 KiB |
|
Before Width: | Height: | Size: 1.5 KiB |
|
Before Width: | Height: | Size: 6.4 KiB |
|
Before Width: | Height: | Size: 10 KiB |
|
Before Width: | Height: | Size: 2.1 KiB |
|
Before Width: | Height: | Size: 770 B |
|
Before Width: | Height: | Size: 790 B |
|
Before Width: | Height: | Size: 441 B |
|
Before Width: | Height: | Size: 277 B |
|
Before Width: | Height: | Size: 727 B |
|
Before Width: | Height: | Size: 901 B |
|
Before Width: | Height: | Size: 803 B |
|
Before Width: | Height: | Size: 478 B |
|
Before Width: | Height: | Size: 470 B |
|
Before Width: | Height: | Size: 795 B |
|
Before Width: | Height: | Size: 725 B |
|
Before Width: | Height: | Size: 1.6 KiB |
|
Before Width: | Height: | Size: 721 B |
|
Before Width: | Height: | Size: 1.0 KiB |
|
Before Width: | Height: | Size: 7.4 KiB |
|
Before Width: | Height: | Size: 7.1 KiB |
|
Before Width: | Height: | Size: 29 KiB |
|
Before Width: | Height: | Size: 33 KiB |
|
Before Width: | Height: | Size: 14 KiB |
|
Before Width: | Height: | Size: 6.9 KiB |
|
Before Width: | Height: | Size: 4.9 KiB |
|
Before Width: | Height: | Size: 106 KiB |
|
Before Width: | Height: | Size: 727 B |
|
Before Width: | Height: | Size: 8.6 KiB |
|
Before Width: | Height: | Size: 14 KiB |
|
Before Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 44 KiB |
|
Before Width: | Height: | Size: 21 KiB |
|
Before Width: | Height: | Size: 19 KiB |
|
Before Width: | Height: | Size: 28 KiB |
|
Before Width: | Height: | Size: 6.1 KiB |
|
Before Width: | Height: | Size: 7.9 KiB |
|
Before Width: | Height: | Size: 5.9 KiB |
|
Before Width: | Height: | Size: 3.7 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.8 KiB |
|
Before Width: | Height: | Size: 3.7 KiB |
BIN
src/assets/secondHandCar/车辆描述@2x.png
Normal file
|
After Width: | Height: | Size: 6.2 KiB |
@ -1,43 +0,0 @@
|
||||
const authenticationRouter = [
|
||||
{
|
||||
path: '/auditList',
|
||||
name: 'auditList',
|
||||
component: () => import('@/views/rvDriverAuthentication/auditList.vue'),
|
||||
meta:{
|
||||
title: '小板运输司机认证',
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/personAudit',
|
||||
name: 'personAudit',
|
||||
component: () => import('@/views/rvDriverAuthentication/personAudit.vue'),
|
||||
meta:{
|
||||
title: '实名认证',
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/carAudit',
|
||||
name: 'carAudit',
|
||||
component: () => import('@/views/rvDriverAuthentication/carAudit.vue'),
|
||||
meta:{
|
||||
title: '驾驶证认证',
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/carInfoAudit',
|
||||
name: 'carInfoAudit',
|
||||
component: () => import('@/views/rvDriverAuthentication/carInfoAudit.vue'),
|
||||
meta:{
|
||||
title: '车辆信息认证',
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/bankInfo',
|
||||
name: 'bankInfo',
|
||||
component: () => import('@/views/rvDriverAuthentication/bankInfo.vue'),
|
||||
meta:{
|
||||
title: '银行卡信息认证',
|
||||
}
|
||||
},
|
||||
]
|
||||
export default authenticationRouter
|
||||
@ -5,7 +5,6 @@ import kpiRouter from './kpi-router'
|
||||
import invoiceRouter from "@/router/invoice-router";
|
||||
import secondHandRouter from "@/router/second-hand-router";
|
||||
import reportRouter from "@/router/report-router"
|
||||
import authenticationRouter from "@/router/authentication-router"
|
||||
const routes = [
|
||||
{
|
||||
path: '/',
|
||||
@ -252,22 +251,6 @@ const routes = [
|
||||
title:'车辆维保'
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/vehicleAlarmList',
|
||||
name: 'vehicleAlarmList',
|
||||
component:()=>import('@/views/vehicle-maintenance/vehicle-alarm-list.vue'),
|
||||
meta: {
|
||||
title:'车辆报警'
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/vehicleAlarmDetail',
|
||||
name: 'vehicleAlarmDetail',
|
||||
component:()=>import('@/views/vehicle-maintenance/vehicle-alarm-detail.vue'),
|
||||
meta: {
|
||||
title:'报警详情'
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/maintenanceApplication',
|
||||
name: 'maintenanceApplication',
|
||||
@ -295,8 +278,7 @@ const routes = [
|
||||
...kpiRouter,
|
||||
...invoiceRouter,
|
||||
...secondHandRouter,
|
||||
...reportRouter,
|
||||
...authenticationRouter
|
||||
...reportRouter
|
||||
]
|
||||
|
||||
const router = new VueRouter({
|
||||
|
||||
@ -17,13 +17,5 @@ const reportRouter = [
|
||||
title: '道路救援',
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/insuredPage',
|
||||
name: 'insuredPage',
|
||||
component: () => import('@/views/liabilityInsurance/insuredPage'),
|
||||
meta:{
|
||||
title: '参保救援职业责任险',
|
||||
}
|
||||
},
|
||||
]
|
||||
export default reportRouter
|
||||
|
||||
@ -55,13 +55,5 @@ const secondHandCar = [
|
||||
title: '免责声明',
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/sellingInfo',
|
||||
name: 'sellingInfo',
|
||||
component: () => import('@/views/secondHandCar/sellingInfo.vue'),
|
||||
meta:{
|
||||
title: '售出信息',
|
||||
}
|
||||
},
|
||||
]
|
||||
export default secondHandCar
|
||||
|
||||
@ -47,84 +47,4 @@ select{
|
||||
font-size: 14px;
|
||||
color: #000000;
|
||||
}
|
||||
.text_center {
|
||||
text-align: center;
|
||||
}
|
||||
//同意协议勾选
|
||||
.protocol-list {
|
||||
display: flex;
|
||||
//align-items: top;
|
||||
margin-top: 5px;
|
||||
justify-content: center;
|
||||
position: fixed;
|
||||
bottom: 20px;
|
||||
text-align: center;
|
||||
width: 100%;
|
||||
padding: 20px;
|
||||
box-sizing: border-box;
|
||||
.protocol-text {
|
||||
font-size: 12px;
|
||||
color: #203152;
|
||||
line-height: 18px;
|
||||
//text-align: left;
|
||||
.linkColor {
|
||||
color: #3364B7;
|
||||
word-break: keep-all;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.icon_register {
|
||||
width: 100%;
|
||||
height: auto;
|
||||
}
|
||||
.mr15 {
|
||||
margin-right: 15px;
|
||||
}
|
||||
.mt20 {
|
||||
margin-top: 20px;
|
||||
}
|
||||
.flex_vertical_center {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
.flex {
|
||||
display: flex;
|
||||
}
|
||||
.flex_between {
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
|
||||
/*@mixin wh($w,$h) {
|
||||
width: $w;
|
||||
height: $h;
|
||||
}
|
||||
@mixin flex(){
|
||||
display: flex;
|
||||
}
|
||||
@mixin alignCenter(){
|
||||
@include flex();
|
||||
align-items: center;
|
||||
}
|
||||
@mixin col(){
|
||||
@include flex();
|
||||
flex-direction: column;
|
||||
}
|
||||
@mixin colBothCenter(){
|
||||
@include col();
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
@mixin sizingPadding($t,$r,$b,$l) {
|
||||
box-sizing: border-box;
|
||||
padding: $t $r $b $l;
|
||||
}*/
|
||||
/*@mixin weigthSize($wei,$size){
|
||||
font-weight:$wei ;
|
||||
font-size: $size;
|
||||
}
|
||||
@mixin weigthSizeColor($wei,$size,$col){
|
||||
@include weigthSize($wei,$size);
|
||||
color: $col;
|
||||
}*/
|
||||
|
||||
@ -1,43 +0,0 @@
|
||||
.carInfo{
|
||||
margin-top: 10px;
|
||||
box-sizing: border-box;
|
||||
width: 100%;
|
||||
min-height: 151px;
|
||||
background: #FFFFFF;
|
||||
padding:8px 23px 17px 30px ;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
.left_wrap,.right_wrap{
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-around;
|
||||
}
|
||||
.title {
|
||||
font-size: 14px;
|
||||
font-family: PingFangSC-Medium, PingFang SC;
|
||||
font-weight: 500;
|
||||
color: #323643;
|
||||
.mar_left{
|
||||
margin-left: 8px;
|
||||
}
|
||||
.star {
|
||||
color: red;
|
||||
margin-right: 3px;
|
||||
}
|
||||
}
|
||||
.right_wrap{
|
||||
align-items: flex-end;
|
||||
.phone{
|
||||
font-size: 13px;
|
||||
font-weight: 500;
|
||||
color: #323643;
|
||||
}
|
||||
input{
|
||||
font-size: 12px;
|
||||
text-align: right;
|
||||
&::-webkit-input-placeholder { /* WebKit browsers,webkit内核浏览器 */
|
||||
color: #A1A1A1;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -104,33 +104,4 @@
|
||||
@mixin colHeight($col,$hei){
|
||||
color: $col;
|
||||
line-height: $hei;
|
||||
}
|
||||
@mixin width_height($width,$height){
|
||||
width: $width;
|
||||
height: $height;
|
||||
}
|
||||
@mixin flex($row,$colum){
|
||||
display: flex;
|
||||
justify-content: $row;
|
||||
align-items: $colum;
|
||||
}
|
||||
@mixin center(){
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
@mixin direction($justify-content){
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: $justify-content;
|
||||
}
|
||||
@mixin iconImg($width,$height,$marginRight){
|
||||
width: $width;
|
||||
height: $height;
|
||||
margin-right: $marginRight;
|
||||
}
|
||||
|
||||
@mixin iconImgLeft($width,$height,$marginRight){
|
||||
width: $width;
|
||||
height: $height;
|
||||
margin-left: $marginRight;
|
||||
}
|
||||
@ -42,89 +42,11 @@ const timeFormat=(data) =>{
|
||||
return formattedDate;
|
||||
|
||||
}
|
||||
// 认证状态
|
||||
const verifyStatus=(id)=> {
|
||||
const ids = String(id)
|
||||
const status = {
|
||||
'0': 1, // 个人信息认证
|
||||
'-1': 1, // 已注册
|
||||
'7': 1, // 已发送待认证
|
||||
'1': 2, // 驾照信息认证
|
||||
'2': 3, // 车辆信息审核
|
||||
'3': 4, // 银行卡信息审核
|
||||
'4': 5, // 认证中
|
||||
'8': 6, // 审核中
|
||||
'11': 6, // 审核失败
|
||||
'12': 6 // 审核成功
|
||||
}
|
||||
return status[ids]
|
||||
}
|
||||
|
||||
// 认证状态 简易版
|
||||
const verifyStatusSimple=(id)=> {
|
||||
const ids = String(id)
|
||||
const status = {
|
||||
'0': 1, // 个人信息认证
|
||||
'-1': 1, // 已注册
|
||||
'7': 1, // 已发送待认证
|
||||
'1': 3, // 驾照信息认证
|
||||
'2': 3, // 车辆信息审核
|
||||
'3': 4, // 银行卡信息审核
|
||||
'4': 5, // 认证中
|
||||
'8': 6, // 审核中
|
||||
'11': 6, // 审核失败
|
||||
'12': 6 // 审核成功
|
||||
}
|
||||
return status[ids]
|
||||
}
|
||||
|
||||
// 认证状态
|
||||
const tipString=(id)=> {
|
||||
const ids = String(id)
|
||||
const status = {
|
||||
'0': { // 个人信息认证
|
||||
tip: '认证待提交',
|
||||
button: '待认证'
|
||||
},
|
||||
'1': { // 驾照信息认证
|
||||
tip: '认证待提交',
|
||||
button: '待认证'
|
||||
},
|
||||
'2': { // 车辆信息审核
|
||||
tip: '认证待提交',
|
||||
button: '待认证'
|
||||
},
|
||||
'3': { // 银行卡信息审核
|
||||
tip: '认证待提交',
|
||||
button: '待认证'
|
||||
},
|
||||
'4': { // 认证中
|
||||
tip: '认证待提交',
|
||||
button: '待认证'
|
||||
},
|
||||
'8': { // 审核中
|
||||
tip: '认证审核中',
|
||||
button: '审核中'
|
||||
},
|
||||
'11': { // 审核失败
|
||||
tip: '认证审核失败',
|
||||
button: '审核失败'
|
||||
},
|
||||
'12': { // 审核成功
|
||||
tip: '认证审核成功',
|
||||
button: '审核成功'
|
||||
},
|
||||
}
|
||||
return status[ids]
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
formatNumber,
|
||||
formatDate,
|
||||
leftCopy,
|
||||
timeFormat,
|
||||
formatDate1,
|
||||
verifyStatus,
|
||||
verifyStatusSimple,
|
||||
tipString
|
||||
formatDate1
|
||||
}
|
||||
@ -25,7 +25,7 @@ service.interceptors.request.use(
|
||||
}
|
||||
config.headers['Content-Type'] = config.contentType || 'application/x-www-form-urlencoded'
|
||||
let token = localStorage.getItem('token');
|
||||
// let token='eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJBTkNIQU5HIiwidXNlcklkIjo0NTY3MSwibmFtZSI6IuWuieeVhSIsInVzZXJOYW1lIjoiQU5DSEFORyIsInN1cHBsaWVySWQiOjExMjgsImlzWmQiOjAsImV4cCI6MTc1NTQyMjUyNX0.xzDZhaANJFnbeViIHJA0SEtOyTv7Ja3rKmXqRKRuFkc'
|
||||
// let token='eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJBTkNIQU5HIiwidXNlcklkIjo0NTY3MSwibmFtZSI6IuWuieeVhSIsInVzZXJOYW1lIjoiQU5DSEFORyIsInN1cHBsaWVySWQiOjExMjgsImlzWmQiOjAsImV4cCI6MTc1MjEzNDc2M30.q1O7C8thZzEMVKYDhBQ-N_14Fh9Bqejj7j11EKLF5Aw'
|
||||
// let token='eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJTSEhQWEIiLCJ1c2VySWQiOjU0NzI2LCJuYW1lIjoiI-a1i-ivleWwj-eZveeZvSIsInVzZXJOYW1lIjoiU0hIUFhCIiwic3VwcGxpZXJJZCI6MTAwMDE2NSwiZXhwIjoxNzQ0NTEwNzkwfQ.JPk0OA7slYJN3FIi_uhW4Y0CiWRvl6R1dK8MRTbyhD8'
|
||||
if(!(reqUrl=='/supplier/supplierTraining/trainingTask' || reqUrl=='/supplier/supplierTraining/normalList' || reqUrl=='/supplier/supplierTraining/trainingList')){
|
||||
if(token) {
|
||||
|
||||
@ -1,4 +1,3 @@
|
||||
import { getAddressForService } from "@/api/secondHandCar"
|
||||
// 获取定位, 返回 经纬度
|
||||
export function getLocal(mapContext) {
|
||||
return new Promise((resolve, reject) => {
|
||||
@ -47,19 +46,7 @@ export function getAddress(mapContext, lnglat) {
|
||||
// 输入提示
|
||||
export function searchFun(mapContext, cityCode, keyword) {
|
||||
return new Promise((resolve) => {
|
||||
getAddressForService({
|
||||
city: '',
|
||||
address: keyword
|
||||
}).then((res) => {
|
||||
if(res.code == 200) {
|
||||
resolve(res?.data?.pois || [])
|
||||
} else {
|
||||
resolve([])
|
||||
}
|
||||
}).catch(() => {
|
||||
resolve([])
|
||||
})
|
||||
/*mapContext.plugin('AMap.AutoComplete', function(){
|
||||
mapContext.plugin('AMap.AutoComplete', function(){
|
||||
var autoOptions = {
|
||||
city: cityCode || '全国',
|
||||
};
|
||||
@ -74,7 +61,7 @@ export function searchFun(mapContext, cityCode, keyword) {
|
||||
resolve([])
|
||||
}
|
||||
})
|
||||
})*/
|
||||
})
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
@ -5,12 +5,6 @@ export const myMixins = {
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
showFun() {
|
||||
if( localStorage.getItem('infoVerify') == 8 || localStorage.getItem('infoVerify') == 12 ) {
|
||||
return false
|
||||
}
|
||||
return true
|
||||
},
|
||||
goPage(page, query) {
|
||||
this.$router.push({
|
||||
name: page,
|
||||
|
||||
@ -101,7 +101,7 @@ export default {
|
||||
const urlParams = new URLSearchParams(window.location.search);
|
||||
this.driverId = urlParams.get('driverId');
|
||||
this.time=timeFormat(Date.now())
|
||||
this.keyword=urlParams.get('keyword') || ''
|
||||
this.keyword=urlParams.get('keyWord') || ''
|
||||
this.getTrainingList();
|
||||
document.addEventListener('visibilitychange', async ( ) => {
|
||||
let state = document.visibilityState
|
||||
|
||||
@ -36,6 +36,9 @@
|
||||
v-model="keyword"
|
||||
placeholder="名称/关键词/简介"
|
||||
>
|
||||
<!-- <template #button>
|
||||
<van-icon class="search" name="search" size="20" @click="getTrainingList"/>
|
||||
</template>-->
|
||||
</van-field>
|
||||
</template>
|
||||
<template slot="left">
|
||||
@ -101,34 +104,32 @@ export default {
|
||||
this.supplierId = urlParams.get('supplierId');
|
||||
this.driverId = urlParams.get('driverId');
|
||||
if(this.driverId){
|
||||
this.keyword=urlParams.get('keyword') || ''
|
||||
this.keyword=urlParams.get('keyWord') || ''
|
||||
}
|
||||
this.getNormalList()
|
||||
},
|
||||
methods:{
|
||||
onRefresh() {
|
||||
this.getNormalList()
|
||||
if(!this.isLoading){
|
||||
this.$toast('刷新成功');
|
||||
}
|
||||
/* setTimeout(() => {
|
||||
setTimeout(() => {
|
||||
this.$toast('刷新成功');
|
||||
this.isLoading = false;
|
||||
}, 1000);*/
|
||||
}, 1000);
|
||||
},
|
||||
async changeTab(index) {
|
||||
this.activeIndex = index
|
||||
await this.getNormalList()
|
||||
},
|
||||
async getNormalList(){
|
||||
this.isLoading = true;
|
||||
this.totalList=[]
|
||||
this.pageList=[]
|
||||
let res= await getNormalList({
|
||||
type:this.supplierId ? 2 : 1,
|
||||
// type:2,
|
||||
id: this.supplierId ? this.supplierId : this.driverId,
|
||||
// id:this.supplierId,//33041,
|
||||
text:this.keyword || '',
|
||||
})
|
||||
this.totalList=[]
|
||||
this.pageList=[]
|
||||
this.totalList=res.data.list
|
||||
let result=[]
|
||||
if(this.activeIndex === 0){
|
||||
@ -148,7 +149,6 @@ export default {
|
||||
}else {
|
||||
this.showEmpty = false
|
||||
}
|
||||
this.isLoading = false
|
||||
},
|
||||
initShow(){
|
||||
this.keyword= '',
|
||||
|
||||
@ -88,8 +88,7 @@
|
||||
<script>
|
||||
import { Decimal } from 'decimal.js';
|
||||
import {myMixins} from "@/utils/myMixins"
|
||||
import {notifyInvoiceList, jumpPage} from "@/api/mine"
|
||||
import {Dialog} from "vant";
|
||||
import {notifyInvoiceList} from "@/api/mine"
|
||||
export default {
|
||||
name: "invoicingNotify",
|
||||
mixins:[myMixins],
|
||||
@ -155,7 +154,7 @@ export default {
|
||||
}
|
||||
}
|
||||
},
|
||||
async changeTabHandler() {
|
||||
changeTabHandler() {
|
||||
this.pageNum = 1;
|
||||
this.notifyList = [];
|
||||
this.checkList = [];
|
||||
@ -167,20 +166,6 @@ export default {
|
||||
this.status = 2;
|
||||
this.dispatchAppSearchInvoiced = '';
|
||||
this.pageSize = 10000
|
||||
let res = await this.getJumpHandler();
|
||||
if(res?.data?.jump) {
|
||||
Dialog.alert({
|
||||
message: '您有暂未完成的培训,请在中道调度APP上完成培训,再进行发票上传',
|
||||
confirmButtonText: '去培训',
|
||||
confirmButtonColor: '#0E76F4',
|
||||
showCancelButton: false,
|
||||
}).then(async() => {
|
||||
this.goPage('newTrainingList', { supplierId : this.supplierId })
|
||||
}).catch(() => {
|
||||
// on cancel
|
||||
});
|
||||
return false
|
||||
}
|
||||
} else if(this.active == 3) { // 已开票,需要分页
|
||||
this.status = '';
|
||||
this.dispatchAppSearchInvoiced = 1;
|
||||
@ -188,10 +173,6 @@ export default {
|
||||
}
|
||||
this.getNotifyList()
|
||||
},
|
||||
async getJumpHandler() {
|
||||
let res = await jumpPage();
|
||||
return res
|
||||
},
|
||||
getMonth(item) {
|
||||
let str = '';
|
||||
let startTime = new Date(item.createTime);
|
||||
|
||||
@ -62,7 +62,7 @@
|
||||
</div>
|
||||
<div class="upload_btn_wrap">
|
||||
<div class="btn_save" @click="createInvoiceHandler">保存</div>
|
||||
<van-uploader :before-read="beforeRead" use-before-read :after-read="afterRead" accept=".png,.jpg,.jpeg,.pdf,.ofd">
|
||||
<van-uploader :before-read="beforeRead" :after-read="afterRead" accept=".png,.jpg,.jpeg,.pdf,.ofd">
|
||||
<div class="btn_upload">
|
||||
<img class="icon_upload" src="@/assets/icon_upload.png" alt="">
|
||||
上传发票
|
||||
@ -76,14 +76,13 @@
|
||||
import { Decimal } from 'decimal.js';
|
||||
import { Dialog } from "vant";
|
||||
import { myMixins } from "@/utils/myMixins"
|
||||
import { uploadInvoice, getBillingInfo, deleteInvoice, createBatch} from "@/api/mine"
|
||||
import { uploadInvoice, getBillingInfo, deleteInvoice, createBatch } from "@/api/mine"
|
||||
export default {
|
||||
name: "uploadInvoice",
|
||||
mixins:[ myMixins ],
|
||||
data(){
|
||||
return {
|
||||
list: [],
|
||||
fileObj: '',
|
||||
invoiceMoneyTotal: 0,
|
||||
tableData: [],
|
||||
activeObj: {},
|
||||
@ -133,10 +132,6 @@
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
/* async getJumpHandler() {
|
||||
let res = await jumpPage();
|
||||
return res
|
||||
},*/
|
||||
async initData() {
|
||||
this.list = JSON.parse(localStorage.getItem('list'));
|
||||
this.batchIds = [];
|
||||
@ -235,13 +230,14 @@
|
||||
}).catch(() => {
|
||||
});
|
||||
},
|
||||
async beforeRead (file) {
|
||||
beforeRead (file) {
|
||||
const FileExt = file.name.replace(/.+\./, "");
|
||||
if (['jpg', 'png', 'jpeg', 'pdf', 'ofd'].indexOf(FileExt.toLowerCase()) === -1) {
|
||||
this.$toast('请上传后缀名为jpg、jpeg、png、pdf、ofd的文件!')
|
||||
return false
|
||||
return false;
|
||||
}
|
||||
this.$set(this.activeObj, 'fileType', FileExt)
|
||||
return true
|
||||
},
|
||||
async afterRead (file) {
|
||||
try {
|
||||
|
||||
@ -72,7 +72,7 @@
|
||||
<div class="itemContent">
|
||||
<div class="titleType">
|
||||
<img class="startImg" src="@/assets/start.png" />
|
||||
<span>车辆类别</span>
|
||||
<span>车辆类型</span>
|
||||
</div>
|
||||
<!--
|
||||
<select
|
||||
@ -95,7 +95,6 @@
|
||||
multiple
|
||||
:multiple-limit="isMultiple ? 2 : 1"
|
||||
v-model="selectedOption"
|
||||
:disabled="vehicleInfoDisabled"
|
||||
value-key="name"
|
||||
class="elSelect"
|
||||
collapse-tags="collapse-tags"
|
||||
@ -112,30 +111,6 @@
|
||||
</el-select>
|
||||
|
||||
</div>
|
||||
<div class="itemContent">
|
||||
<div class="titleType">
|
||||
<img class="startImg" src="@/assets/start.png" />
|
||||
<span>车辆属性</span>
|
||||
</div>
|
||||
<el-select
|
||||
v-model="virtualVehicle"
|
||||
value-key="name"
|
||||
class="elSelect"
|
||||
collapse-tags="collapse-tags"
|
||||
:disabled="vehicleInfoDisabled"
|
||||
placeholder="请选择" style="width: 55%"
|
||||
>
|
||||
<el-option
|
||||
v-for="item in virtualVehicleOptions"
|
||||
:key="item.name"
|
||||
:label="item.name"
|
||||
:value="item.value"
|
||||
>
|
||||
</el-option>
|
||||
</el-select>
|
||||
|
||||
</div>
|
||||
<div class="lineBot"></div>
|
||||
<div class="itemContent">
|
||||
<div class="titleType">
|
||||
<span>牌照</span>
|
||||
@ -159,7 +134,7 @@
|
||||
|
||||
</div>
|
||||
<div class="lineBot"></div>
|
||||
<!--<div class="itemContent">
|
||||
<div class="itemContent">
|
||||
<div class="titleType">
|
||||
<img class="startImg" src="@/assets/start.png" />
|
||||
<span>是否参与聚合</span>
|
||||
@ -185,115 +160,7 @@
|
||||
</van-radio-group>
|
||||
</div>
|
||||
</div>
|
||||
<div class="lineBot"></div>-->
|
||||
<div class="itemContent">
|
||||
<div class="titleType">
|
||||
<img class="startImg" src="@/assets/start.png" />
|
||||
<span>车辆状态</span>
|
||||
</div>
|
||||
<div class="isJoin">
|
||||
<van-radio-group v-model="vehicleStatus" :class="{ 'disabled-tree': vehicleInfoDisabled }" :disabled="vehicleInfoDisabled" @change="isVehicleChange" class="joinWrap">
|
||||
<van-radio :name="1" style="margin-right: 26px">
|
||||
启用
|
||||
<img
|
||||
slot="icon"
|
||||
slot-scope="props"
|
||||
:src="props.checked ? activeIcon : inactiveIcon"
|
||||
>
|
||||
</van-radio>
|
||||
<van-radio :name="2">
|
||||
停用
|
||||
<img
|
||||
slot="icon"
|
||||
slot-scope="props"
|
||||
:src="props.checked ? activeIcon : inactiveIcon"
|
||||
>
|
||||
</van-radio>
|
||||
</van-radio-group>
|
||||
</div>
|
||||
</div>
|
||||
<div class="itemContent">
|
||||
<div class="titleType">
|
||||
<img class="startImg" src="@/assets/start.png" />
|
||||
<span>救援职业责任险</span>
|
||||
</div>
|
||||
<div class="isJoin">
|
||||
<van-radio-group v-model="hasLiabilityInsurance" @change="isChange" class="joinWrap">
|
||||
<van-radio :name="1" style="margin-right: 26px">
|
||||
有
|
||||
<img
|
||||
slot="icon"
|
||||
slot-scope="props"
|
||||
:src="props.checked ? activeIcon : inactiveIcon"
|
||||
>
|
||||
</van-radio>
|
||||
<van-radio :name="0">
|
||||
无
|
||||
<img
|
||||
slot="icon"
|
||||
slot-scope="props"
|
||||
:src="props.checked ? activeIcon : inactiveIcon"
|
||||
>
|
||||
</van-radio>
|
||||
</van-radio-group>
|
||||
</div>
|
||||
</div>
|
||||
<div class="lineBot"></div>
|
||||
<template v-if="hasLiabilityInsurance == 1">
|
||||
<div class="itemContent">
|
||||
<div class="titleType">
|
||||
<img class="startImg" src="@/assets/start.png" />
|
||||
<span>保单</span>
|
||||
</div>
|
||||
<van-uploader
|
||||
v-model="insurancePictureFiles"
|
||||
:after-read="insurancePictureFilesHandler"
|
||||
max-count="1"
|
||||
:preview-size="54"
|
||||
accept="image "
|
||||
/>
|
||||
</div>
|
||||
<div class="lineBot"></div>
|
||||
<div class="itemContent">
|
||||
<div class="titleType">
|
||||
<img class="startImg" src="@/assets/start.png" />
|
||||
<span>承保保司</span>
|
||||
</div>
|
||||
<el-select
|
||||
v-model="insuranceCorp"
|
||||
value-key="name"
|
||||
class="elSelect"
|
||||
collapse-tags="collapse-tags"
|
||||
placeholder="请选择" style="width: 55%"
|
||||
>
|
||||
<el-option
|
||||
v-for="item in insuranceOptions"
|
||||
:key="item.name"
|
||||
:label="item.name"
|
||||
:value="item.value"
|
||||
>
|
||||
</el-option>
|
||||
</el-select>
|
||||
</div>
|
||||
<div class="lineBot"></div>
|
||||
<div class="itemContent">
|
||||
<div class="titleType">
|
||||
<img class="startImg" src="@/assets/start.png" />
|
||||
<span>保险有效期</span>
|
||||
</div>
|
||||
<el-input style="width: 55%" readonly @focus="showDatePicker = true" v-model="dateVal" placeholder="请选择发布日期" :class="{'customSel':true,'customInput':true , 'has-value': dateVal }" >
|
||||
<template #suffix>
|
||||
<i
|
||||
v-if="dateVal"
|
||||
class="el-icon-circle-close el-input__icon"
|
||||
@click="dateVal = ''"
|
||||
></i>
|
||||
</template>
|
||||
</el-input>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
||||
<div class="itemContent">
|
||||
<div class="titleType">
|
||||
<img class="startImg" src="@/assets/start.png" />
|
||||
@ -301,40 +168,28 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="serviceType">
|
||||
<el-tree
|
||||
show-checkbox
|
||||
node-key="id"
|
||||
ref="tree"
|
||||
:highlight-current="true"
|
||||
:expand-on-click-node="false"
|
||||
:class="{ 'disabled-tree': vehicleInfoDisabled }"
|
||||
:data="supplierServiceList"
|
||||
:props="defaultProps">
|
||||
</el-tree>
|
||||
<!--<div class="trailerService" v-for="(item,index) in supplierServiceList" :key="index">
|
||||
<div class="serviceline" @click="loadAll(index)">
|
||||
<img :ref="'serviceline' + index" :src="imageUrl" style="width: 20px;height: 15px" >
|
||||
<span class="service">{{ item.name }}:</span>
|
||||
<span class="line"></span>
|
||||
</div>
|
||||
<div :ref="'checkboxGroup' + index" class="checkbox-group">
|
||||
<van-checkbox-group v-model="serviceIds" v-for="(item2,index2) in item.children" :key="index2" class="radioWrap">
|
||||
<van-checkbox class="item" :name="item2.id">{{item2.name }}</van-checkbox>
|
||||
</van-checkbox-group>
|
||||
</div>
|
||||
</div>-->
|
||||
|
||||
<div class="trailerService" v-for="(item,index) in supplierServiceList" :key="index">
|
||||
<div class="serviceline" @click="loadAll(index)">
|
||||
<img :ref="'serviceline' + index" :src="imageUrl" style="width: 20px;height: 15px" >
|
||||
<span class="service">{{ item.name }}:</span>
|
||||
<span class="line"></span>
|
||||
</div>
|
||||
<div :ref="'checkboxGroup' + index" class="checkbox-group">
|
||||
<van-checkbox-group v-model="serviceIds" v-for="(item2,index2) in item.children" :key="index2" class="radioWrap">
|
||||
<van-checkbox class="item" :name="item2.id">{{item2.name }}</van-checkbox>
|
||||
</van-checkbox-group>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<two-common-btn class="btn" @cancelClick="h5GoBack" @submitClick="submitBtn" />
|
||||
<van-calendar v-model="showDatePicker" :min-date="minDate"
|
||||
:max-date="maxDate" type="range" @confirm="onConfirm" />
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
// uploadImage
|
||||
import {Dialog} from "vant";
|
||||
import {formatDate1} from "@/utils/common"
|
||||
import {myMixins} from "@/utils/myMixins"
|
||||
import {vehicleTypeList,saveVehicle,getInfoById,supplierServiceTree, uploadImage, ocrHandler} from "@/api/mine"
|
||||
import TwoCommonBtn from "@/components/twoBtnCommon.vue"
|
||||
@ -344,20 +199,8 @@ export default {
|
||||
mixins:[myMixins],
|
||||
data(){
|
||||
return{
|
||||
defaultProps: {
|
||||
children: 'children',
|
||||
label: 'name'
|
||||
},
|
||||
minDate: new Date(1970, 0, 1), // 设置最小可选日期(1970年1月1日)
|
||||
maxDate: new Date(2099, 11, 31), // 设置最大可选日期(2099年12月31日)
|
||||
checkList: [],
|
||||
virtualVehicle: '',
|
||||
vehicleStatus: '',
|
||||
showDatePicker: false,
|
||||
dateVal: '',
|
||||
trailerService: '',//拖车服务
|
||||
isJoin:'',//是否参与
|
||||
hasLiabilityInsurance: '', // 有无责任险
|
||||
activeIcon: require('@/assets/check.png'),
|
||||
inactiveIcon: require('@/assets/uncheck.png'),
|
||||
// result: [],
|
||||
@ -375,19 +218,15 @@ export default {
|
||||
vehicleLicenseBackList: [],
|
||||
vehicleLicenseCarPhotoList: [],
|
||||
vehicleFrontPhotoList: [],
|
||||
insurancePictureFiles: [],
|
||||
vehicleLicenseFront: '', // 行驶证首页
|
||||
vehicleLicenseBack: '', // 行驶证副页
|
||||
vehicleLicenseCarPhoto: '', // 行驶证车辆照片
|
||||
vehicleFrontPhoto: '', // 车头照
|
||||
insurancePicturePhoto: '', // 保单照片
|
||||
vehicleLicenseInfo: {},
|
||||
vehicleLicenseBackOcrFlag: false, // 行驶证副页 修改时默认不需要 ocr识别
|
||||
isMultiple: false, // 是否支持多选
|
||||
vehicleLicense:'',//牌照
|
||||
vehicleFrontLicensePlate:'',//车头照车牌号码
|
||||
insuranceCorp: '',
|
||||
auditStatus: '',
|
||||
vehicleTypes:[{
|
||||
name: '小修车',
|
||||
value: 1
|
||||
@ -405,7 +244,7 @@ export default {
|
||||
name:'牵引车',
|
||||
value: 5 },
|
||||
{
|
||||
name:'随车吊平板车',
|
||||
name:'大力神',
|
||||
value:6},
|
||||
{
|
||||
name:'充电车',
|
||||
@ -436,70 +275,9 @@ export default {
|
||||
}, {
|
||||
name: '其他',
|
||||
value: 5
|
||||
}],
|
||||
virtualVehicleOptions: [{
|
||||
name: '自有车辆',
|
||||
value: 1
|
||||
}, {
|
||||
name: '挂靠车辆',
|
||||
value: 2
|
||||
}, {
|
||||
name: '虚拟车辆',
|
||||
value: 3
|
||||
}, {
|
||||
name: '借入车辆',
|
||||
value: 4
|
||||
}],
|
||||
insuranceOptions: [{
|
||||
name: '太平洋',
|
||||
value: 1
|
||||
}, {
|
||||
name: '人保',
|
||||
value: 2
|
||||
}, {
|
||||
name: '平安',
|
||||
value: 3
|
||||
}, {
|
||||
name: '中华联合',
|
||||
value: 4
|
||||
}, {
|
||||
name: '大地',
|
||||
value: 5
|
||||
}, {
|
||||
name: '阳光',
|
||||
value: 6
|
||||
}, {
|
||||
name: '太平',
|
||||
value: 7
|
||||
}, {
|
||||
name: '人寿',
|
||||
value: 8
|
||||
}, {
|
||||
name: '永安',
|
||||
value: 9
|
||||
}, {
|
||||
name: '华安',
|
||||
value: 10
|
||||
}, {
|
||||
name: '申能',
|
||||
value: 11
|
||||
}, {
|
||||
name: '大家',
|
||||
value: 12
|
||||
}, {
|
||||
name: '富德',
|
||||
value: 13
|
||||
}, {
|
||||
name: '其他',
|
||||
value: 14
|
||||
}]
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
vehicleInfoDisabled() {
|
||||
return [1,2].includes(this.auditStatus)
|
||||
},
|
||||
},
|
||||
watch:{
|
||||
selectedOption(newVal){
|
||||
if(newVal == 4){
|
||||
@ -519,7 +297,7 @@ export default {
|
||||
this.vehicleTypes[8].disabled=false
|
||||
this.vehicleTypes[9].disabled=false
|
||||
}
|
||||
if (newVal == 1 || newVal == 7 || newVal == 9){
|
||||
if (newVal == 1 || newVal == 7){
|
||||
let arr = []
|
||||
this.supplierServiceList.forEach((item)=>{
|
||||
if(!(item.name == '拖车服务' || item.name == '大型车救援')){
|
||||
@ -530,7 +308,7 @@ export default {
|
||||
}else{
|
||||
this.supplierServiceList = this.oldSupplierServiceList
|
||||
}
|
||||
this.setDefault();
|
||||
|
||||
},
|
||||
},
|
||||
|
||||
@ -543,42 +321,6 @@ export default {
|
||||
}
|
||||
},
|
||||
methods:{
|
||||
formatDate(date) {
|
||||
return `${date.getFullYear()}/${date.getMonth() + 1}/${date.getDate()}`;
|
||||
},
|
||||
onConfirm(date) {
|
||||
const [start, end] = date;
|
||||
this.showDatePicker = false;
|
||||
this.dateVal = `${this.formatDate(start)} - ${this.formatDate(end)}`;
|
||||
},
|
||||
formatDateTimeRange(str) {
|
||||
const [startStr, endStr] = str.split(' - ').map(s => s.trim());
|
||||
const startDate = new Date(startStr);
|
||||
const startTime = `${startDate.getFullYear()}-${(startDate.getMonth() + 1).toString().padStart(2, '0')}-${startDate.getDate().toString().padStart(2, '0')} 00:00:00`;
|
||||
const endDate = new Date(endStr);
|
||||
const endTime = `${endDate.getFullYear()}-${(endDate.getMonth() + 1).toString().padStart(2, '0')}-${endDate.getDate().toString().padStart(2, '0')} 23:59:59`;
|
||||
return {
|
||||
startTime,
|
||||
endTime
|
||||
};
|
||||
},
|
||||
setDefault() {
|
||||
if( this.vehicleLicenseInfo?.vehicleType?.includes('小型') || this.vehicleLicenseInfo?.vehicleType?.includes('微型') || this.vehicleLicenseInfo?.vehicleType?.includes('普通') || this.vehicleLicenseInfo?.vehicleType?.includes('摩托') ) {
|
||||
this.vehicleTypes.map(item => {
|
||||
if( item.value == 1 || item.value == 9 ) {
|
||||
item.disabled = false;
|
||||
} else {
|
||||
item.disabled = true;
|
||||
}
|
||||
})
|
||||
this.$forceUpdate();
|
||||
} else {
|
||||
this.vehicleTypes.map(item => {
|
||||
item.disabled = false;
|
||||
})
|
||||
this.$forceUpdate();
|
||||
}
|
||||
},
|
||||
getVehicleLicense(color) {
|
||||
if( color == '蓝' ) {
|
||||
this.vehicleLicense = 1
|
||||
@ -620,12 +362,6 @@ export default {
|
||||
this.vehicleFrontPhoto = res.data;
|
||||
await this.ocrCarFrontHandler()
|
||||
},
|
||||
async insurancePictureFilesHandler(file) {
|
||||
const formData = new FormData();
|
||||
formData.append("file" , file.file);
|
||||
let res = await uploadImage(formData);
|
||||
this.insurancePicturePhoto = res.data;
|
||||
},
|
||||
async ocrCarFrontHandler() { // 车辆正面 orc 识别
|
||||
let res = await ocrHandler({
|
||||
ocrType: 10,
|
||||
@ -666,7 +402,6 @@ export default {
|
||||
this.vehicleLicenseInfo.registrationDate = frontInfo?.registerDate;
|
||||
this.vehicleLicenseInfo.issueDate = frontInfo?.issueDate;
|
||||
this.vehicleLicenseInfo.issueAuthority = frontInfo?.seal;
|
||||
this.setDefault();
|
||||
}
|
||||
},
|
||||
async vehicleBackOcrHandler() { // 行驶证副页 ocr 识别
|
||||
@ -740,23 +475,14 @@ export default {
|
||||
this.selectedOption=result.vehicleType?.split(',').map((item)=>{
|
||||
return Number(item);
|
||||
});
|
||||
this.auditStatus = result.auditStatus;
|
||||
this.virtualVehicle = result.virtualVehicle;
|
||||
this.$refs.tree.setCheckedKeys(result.serviceIds)
|
||||
this.vehicleStatus = result.vehicleStatus
|
||||
this.serviceIds=result.serviceIds
|
||||
this.vehicleLicenseFront = result.vehicleLicenseFront;
|
||||
this.vehicleLicenseBack = result.vehicleLicenseBack;
|
||||
this.vehicleFrontPhoto = result.vehicleFrontPhoto;
|
||||
this.insurancePicturePhoto = result.insurancePicturePhoto;
|
||||
this.vehicleLicenseInfo = result.vehicleLicenseInfo;
|
||||
this.vehicleLicenseCarPhoto = result.vehicleLicenseCarPhoto;
|
||||
this.vehicleLicense = result.vehicleLicense;
|
||||
this.vehicleFrontLicensePlate = result.vehicleFrontLicensePlate;
|
||||
this.hasLiabilityInsurance = result.hasLiabilityInsurance
|
||||
this.insuranceCorp = result.insuranceCorp;
|
||||
if(this.insurancePicturePhoto) {
|
||||
this.insurancePictureFiles = [{url: this.insurancePicturePhoto}]
|
||||
}
|
||||
if( this.vehicleLicenseFront ) {
|
||||
this.vehicleLicenseFrontList = [{ url : this.vehicleLicenseFront }];
|
||||
}
|
||||
@ -769,28 +495,9 @@ export default {
|
||||
if(this.vehicleLicenseCarPhoto) {
|
||||
this.vehicleLicenseCarPhotoList = [{ url : this.vehicleLicenseCarPhoto }];
|
||||
}
|
||||
if(this.vehicleLicenseCarPhoto) {
|
||||
this.vehicleLicenseCarPhotoList = [{ url : this.vehicleLicenseCarPhoto }];
|
||||
}
|
||||
if( result.liabilityInsuranceEndTime && result.liabilityInsuranceStartTime ) {
|
||||
this.dateVal = formatDate1(result.liabilityInsuranceStartTime) + ' - ' + formatDate1(result.liabilityInsuranceEndTime)
|
||||
}
|
||||
},
|
||||
isChange(e){
|
||||
this.hasLiabilityInsurance=e
|
||||
if (e === 0) {
|
||||
Dialog.confirm({
|
||||
title: '提醒',
|
||||
message: '有救援职业责任险车辆会提升案件聚合能力和接单能力。',
|
||||
confirmButtonText: '我已知晓', // 确认按钮文字,默认为“确认”
|
||||
showCancelButton: false // 是否显示取消按钮,默认为 true。如果不需要取消按钮,可以设置为 false。
|
||||
})
|
||||
.then(() => { /* 确认后的操作 */ })
|
||||
.catch(() => { /* 取消后的操作 */ });
|
||||
}
|
||||
},
|
||||
isVehicleChange(e) {
|
||||
this.vehicleStatus=e
|
||||
this.isJoin=e
|
||||
},
|
||||
async submitBtn(){
|
||||
if( !this.vehicleLicenseFront ) {
|
||||
@ -818,47 +525,18 @@ export default {
|
||||
return
|
||||
}
|
||||
if(!(this.selectedOption.length > 0)){
|
||||
this.$toast('车辆类别不能为空')
|
||||
return
|
||||
}
|
||||
if( !this.virtualVehicle ) {
|
||||
this.$toast('车辆属性不能为空')
|
||||
return
|
||||
}
|
||||
if( !this.vehicleStatus ) {
|
||||
this.$toast('车辆状态不能为空')
|
||||
return
|
||||
}
|
||||
if(this.hasLiabilityInsurance === null || this.hasLiabilityInsurance === undefined || this.hasLiabilityInsurance === '') { // 有职业责任险,就需要有保单照片
|
||||
this.$toast('救援职业责任险不能为空')
|
||||
return
|
||||
}
|
||||
if(!this.insurancePicturePhoto && this.hasLiabilityInsurance == 1) { // 有职业责任险,就需要有保单照片
|
||||
this.$toast('保单照片不能为空')
|
||||
this.$toast('车辆类型不能为空')
|
||||
return
|
||||
}
|
||||
if(this.selectedOption?.length==1 && this.selectedOption.includes(1)){//选择小修车时需清除原本的拖车服务类型
|
||||
let data=this.oldSupplierServiceList.filter(item => item.name ==='拖车服务')
|
||||
this.serviceIds = this.serviceIds.filter(item => !data[0].children.some(obj => obj.id === item));
|
||||
}
|
||||
if(!this.insuranceCorp && this.hasLiabilityInsurance == 1) { // 有职业责任险,就需要有保单照片
|
||||
this.$toast('承保保司不能为空')
|
||||
return
|
||||
}
|
||||
if(!this.dateVal && this.hasLiabilityInsurance == 1) { // 有职业责任险,就需要有保单照片
|
||||
this.$toast('保单有效期不能为空')
|
||||
return
|
||||
}
|
||||
let timeObj;
|
||||
if(this.dateVal) {
|
||||
timeObj = this.formatDateTimeRange(this.dateVal)
|
||||
}
|
||||
this.serviceIds = this.$refs.tree.getCheckedKeys(true)
|
||||
await saveVehicle({
|
||||
vehicleId:this.id ? this.id : '',
|
||||
plateNumber:this.carNum ? this.carNum :'',
|
||||
vehicleType:this.selectedOption?.length>0 ? this.selectedOption.join(',') : '',
|
||||
// hasPolymerization:this.isJoin,
|
||||
hasPolymerization:this.isJoin,
|
||||
serviceIds:this.serviceIds ? this.serviceIds : [],
|
||||
vehicleLicenseFront: this.vehicleLicenseFront,
|
||||
vehicleLicenseBack: this.vehicleLicenseBack,
|
||||
@ -867,12 +545,6 @@ export default {
|
||||
vehicleLicenseCarPhoto: this.vehicleLicenseCarPhoto,
|
||||
vehicleLicense: this.vehicleLicense,
|
||||
vehicleFrontLicensePlate:this.vehicleFrontLicensePlate,
|
||||
hasLiabilityInsurance: this.hasLiabilityInsurance,
|
||||
insurancePicturePhoto: this.hasLiabilityInsurance == 1 ? this.insurancePicturePhoto : '',
|
||||
insuranceCorp: this.hasLiabilityInsurance == 1 ? this.insuranceCorp : '',
|
||||
liabilityInsuranceStartTime: this.hasLiabilityInsurance == 1 ? (timeObj?.startTime || '' ) : '',
|
||||
liabilityInsuranceEndTime: this.hasLiabilityInsurance == 1 ? (timeObj?.endTime || '') : '',
|
||||
virtualVehicle: this.virtualVehicle,
|
||||
})
|
||||
if(this.id){
|
||||
this.$toast('修改成功')
|
||||
@ -995,8 +667,4 @@ export default {
|
||||
border: none !important;
|
||||
text-align: right !important;
|
||||
}
|
||||
.disabled-tree {
|
||||
pointer-events: none;
|
||||
opacity: 0.6;
|
||||
}
|
||||
</style>
|
||||
|
||||
@ -18,101 +18,36 @@
|
||||
</template>
|
||||
</van-nav-bar>
|
||||
</div>
|
||||
<van-search
|
||||
v-model="searchVal"
|
||||
show-action
|
||||
placeholder="车辆名称/车牌号/车架号"
|
||||
@search="resetHandler"
|
||||
>
|
||||
<template #action>
|
||||
<div @click="resetHandler">搜索</div>
|
||||
</template>
|
||||
</van-search>
|
||||
<div class="filterWrap">
|
||||
<!-- <div >-->
|
||||
<!--<el-input v-model="searchVal" @blur="resetHandler" placeholder="车辆名称/车牌号/车架号" :class="{'customSel':true,'customInput':true , 'has-value': searchVal }" >
|
||||
<template #suffix>
|
||||
<i
|
||||
v-if="searchVal"
|
||||
class="el-icon-circle-close el-input__icon"
|
||||
@click="searchVal = ''"
|
||||
></i>
|
||||
</template>
|
||||
</el-input>-->
|
||||
<el-select @change="resetHandler" multiple :collapse-tags="true" v-model="inputStatusList" placeholder="录入状态" :class="{'customSel':true , 'has-value': inputStatusList }" clearable>
|
||||
<el-option
|
||||
v-for="item in inputStatusListOptions"
|
||||
:key="item.value"
|
||||
:label="item.name"
|
||||
:value="item.value">
|
||||
</el-option>
|
||||
</el-select>
|
||||
<!-- </div>-->
|
||||
<!-- <div>-->
|
||||
<el-select @change="resetHandler" multiple :collapse-tags="true" v-model="authStates" placeholder="认证状态" :class="{'customSel':true , 'has-value': authStates }" clearable>
|
||||
<el-option
|
||||
v-for="item in authStatesOptions"
|
||||
:key="item.value"
|
||||
:label="item.name"
|
||||
:value="item.value">
|
||||
</el-option>
|
||||
</el-select>
|
||||
<el-select @change="resetHandler" multiple :collapse-tags="true" v-model="liabilityInsuranceAuditList" placeholder="职业责任险" :class="{'customSel':true , 'has-value': liabilityInsuranceAuditList }" clearable>
|
||||
<el-option
|
||||
v-for="item in insuresOptions"
|
||||
:key="item.value"
|
||||
:label="item.name"
|
||||
:value="item.value">
|
||||
</el-option>
|
||||
</el-select>
|
||||
<!-- </div>-->
|
||||
|
||||
</div>
|
||||
<div class="wrap_cls">
|
||||
<van-pull-refresh v-model="isLoading" @refresh="onRefresh">
|
||||
<van-list
|
||||
<van-pull-refresh v-model="isLoading" @refresh="onRefresh">
|
||||
<van-list
|
||||
v-model="loading"
|
||||
:finished="finished"
|
||||
finished-text="没有更多了"
|
||||
@load="onLoad"
|
||||
>
|
||||
<div class="carItem" v-for="(item,index) in vehicleList" :key="index" @click="updateVehicle(item)">
|
||||
<div class="carCode">
|
||||
<div class="codeLeft">{{item.plateNumber}} / {{item.vehicleTypeString}}
|
||||
<span class="ml10" v-if="item.vehicleStatus" :class="{'insuranceSuccess': item.vehicleStatus == 1, 'insuranceDanger': item.vehicleStatus != 1}">{{ item.vehicleStatus == 1 ? '启用' : '停用' }} </span>
|
||||
</div>
|
||||
>
|
||||
<div class="carItem" v-for="(item,index) in vehicleList" :key="index">
|
||||
<div class="carCode">
|
||||
<div class="codeLeft">{{item.plateNumber}} / {{item.vehicleTypeString}}</div>
|
||||
<div class="twoBtn">
|
||||
<button v-if="permissonList.includes('vehicleAddBtn')" class="del" @click="deleteItem(item.vehicleId)">删除</button>
|
||||
<button v-if="permissonList.includes('vehicleModifyBtn')" class="revise" @click="updateVehicle(item)">修改</button>
|
||||
</div>
|
||||
<div class="juhe flex-between">
|
||||
<span class="zdJuhe">核验认证</span>
|
||||
<span class="flex-right">
|
||||
<span class="common_cls" v-if="item.inputStatusString" :class="getClass(item.inputStatusString)?.className">{{item.inputStatusString}}</span>
|
||||
<span class="common_cls" v-if="item.authStateString" :class="getClass(item.authStateString)?.className">{{item.authStateString}}</span>
|
||||
</span>
|
||||
</div>
|
||||
<div class="juhe flex-between">
|
||||
<span class="zdJuhe">救援责任险</span>
|
||||
<span class="flex-right" v-if="item.rescueInsurance">
|
||||
<span class="common_cls" @click.stop="showTip(item.liabilityInsuranceAuditMsg)" :class="getClass(item.rescueInsurance)?.className">{{item.rescueInsurance}}</span>
|
||||
</span>
|
||||
</div>
|
||||
<div class="juhe flex-between">
|
||||
<span class="zdJuhe">最近登录时间</span>
|
||||
<span class="flex-right">{{item.lastLoginTime}}</span>
|
||||
</div>
|
||||
<van-icon class="arrow_position" v-if="permissonList.includes('vehicleModifyBtn')" name="arrow" />
|
||||
</div>
|
||||
<div class="carType">{{ item.serviceName }}</div>
|
||||
<div class="juhe">
|
||||
<span class="zdJuhe">是否参与中道聚合: </span>
|
||||
<span :class="item.hasPolymerization.code == 0 ? 'isYes' :'isNo'">{{item.hasPolymerization.label}}</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</van-list>
|
||||
</van-pull-refresh>
|
||||
</div>
|
||||
|
||||
</van-list>
|
||||
</van-pull-refresh>
|
||||
<van-dialog v-model="show" title="确定删除吗" show-cancel-button @confirm="handleConfirm"></van-dialog>
|
||||
</div>
|
||||
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import {Dialog} from "vant";
|
||||
import { myMixins} from "@/utils/myMixins";
|
||||
import {supplierVehicleList,deleteVehicle,userOperationPermissions} from "@/api/mine"
|
||||
export default {
|
||||
@ -129,106 +64,14 @@ export default {
|
||||
isLoading: false,
|
||||
loading: false,
|
||||
finished: false,
|
||||
showPopover: false,
|
||||
permissonList:[],
|
||||
inputStatusList: [],
|
||||
searchVal: '',
|
||||
authStates: [],
|
||||
liabilityInsuranceAuditList: [],
|
||||
inputStatusListOptions: [{
|
||||
name: '行驶证未录入',
|
||||
value: 0
|
||||
},{
|
||||
name: '行驶证核验通过',
|
||||
value: 1
|
||||
},{
|
||||
name: '行驶证核验不通过',
|
||||
value: 2
|
||||
}],
|
||||
authStatesOptions: [{
|
||||
name: '车头照片未录入',
|
||||
value: 1
|
||||
},{
|
||||
name: '车头照片认证通过',
|
||||
value: 2
|
||||
},{
|
||||
name: '车头照片认证不通过',
|
||||
value: 3
|
||||
}],
|
||||
insuresOptions: [{
|
||||
name: '待审核',
|
||||
value: 1
|
||||
},{
|
||||
name: '有责任险',
|
||||
value: 2
|
||||
},{
|
||||
name: '有货物险',
|
||||
value: 3
|
||||
},{
|
||||
name: '未通过',
|
||||
value: 4
|
||||
},{
|
||||
name: '无',
|
||||
value: 5
|
||||
},{
|
||||
name: '空',
|
||||
value: 6
|
||||
}],
|
||||
}
|
||||
},
|
||||
mounted() {
|
||||
// this.getVehicleList();
|
||||
this.getPermissions();
|
||||
},
|
||||
methods:{
|
||||
showTip(msg) {
|
||||
Dialog.alert({
|
||||
title: '未通过原因',
|
||||
message: msg,
|
||||
}).then(() => {
|
||||
});
|
||||
},
|
||||
getClass(id) {
|
||||
const ids = String(id)
|
||||
const steps = {
|
||||
'待审核': {
|
||||
className: 'main_cls'
|
||||
},
|
||||
'有责任险': {
|
||||
className: 'success_cls'
|
||||
},
|
||||
'有货物险': {
|
||||
className: 'info_cls'
|
||||
},
|
||||
'未通过': {
|
||||
className: 'danger_cls'
|
||||
},
|
||||
'无': {
|
||||
className: 'default_cls'
|
||||
},
|
||||
'空': {
|
||||
className: 'default_cls'
|
||||
},
|
||||
'行驶证未录入': {
|
||||
className: 'default_cls'
|
||||
},
|
||||
'行驶证核验通过': {
|
||||
className: 'success_cls'
|
||||
},
|
||||
'行驶证核验不通过': {
|
||||
className: 'danger_cls'
|
||||
},
|
||||
'车头照未录入': {
|
||||
className: 'default_cls'
|
||||
},
|
||||
'车头照认证通过': {
|
||||
className: 'success_cls'
|
||||
},
|
||||
'车头照认证不通过': {
|
||||
className: 'danger_cls'
|
||||
}
|
||||
}
|
||||
return steps[ids] || { className: 'default_cls' }
|
||||
},
|
||||
async onLoad(){
|
||||
await this.getVehicleList()
|
||||
this.pageNum++;
|
||||
@ -237,12 +80,11 @@ export default {
|
||||
// 数据全部加载完成
|
||||
if (this.vehicleList.length >= this.total) {
|
||||
this.finished = true;
|
||||
} else {
|
||||
this.finished = false;
|
||||
}
|
||||
},
|
||||
async onRefresh() {
|
||||
await this.resetHandler()
|
||||
onRefresh() {
|
||||
this.pageNum=1
|
||||
// this.getVehicleList()
|
||||
setTimeout(() => {
|
||||
this.$toast('刷新成功');
|
||||
this.isLoading = false;
|
||||
@ -251,11 +93,7 @@ export default {
|
||||
async getVehicleList(){
|
||||
let result = await supplierVehicleList({
|
||||
pageNum:this.pageNum,
|
||||
pageSize:this.pageSize,
|
||||
searchVal: this.searchVal,
|
||||
inputStatusList: this.inputStatusList,
|
||||
authStates: this.authStates,
|
||||
liabilityInsuranceAuditList: this.liabilityInsuranceAuditList,
|
||||
pageSize:this.pageSize
|
||||
})
|
||||
this.total=result.total
|
||||
if(this.pageNum == 1){// 第一页直接赋值
|
||||
@ -283,22 +121,13 @@ export default {
|
||||
this.pageNum=1
|
||||
await this.getVehicleList();
|
||||
},
|
||||
async resetHandler() {
|
||||
this.pageNum=1
|
||||
this.finished = false;
|
||||
this.total = 0;
|
||||
// this.vehicleList = [];
|
||||
await this.getVehicleList();
|
||||
},
|
||||
updateVehicle(item){//修改
|
||||
if( this.permissonList.includes('vehicleModifyBtn') ) {
|
||||
this.$router.push({
|
||||
name:'vehicleAdd',
|
||||
params:{
|
||||
id:item.vehicleId
|
||||
}
|
||||
})
|
||||
}
|
||||
this.$router.push({
|
||||
name:'vehicleAdd',
|
||||
params:{
|
||||
id:item.vehicleId
|
||||
}
|
||||
})
|
||||
},
|
||||
|
||||
}
|
||||
@ -308,41 +137,12 @@ export default {
|
||||
<style scoped lang="scss">
|
||||
@import "@/styles/mixin.scss";
|
||||
@import "@/styles/common.scss";
|
||||
.ml10 {
|
||||
margin-left: 10px;
|
||||
}
|
||||
.wrap{
|
||||
background: #F4F5F7;
|
||||
@include sizingPadding(13px,13px);
|
||||
@include wh(100%, 100%);
|
||||
overflow-y: auto;
|
||||
}
|
||||
.wrap_cls {
|
||||
width: 100%;
|
||||
padding-left: 13px;
|
||||
padding-right: 13px;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.common_cls {
|
||||
color: #fff;
|
||||
padding: 4px 8px;
|
||||
border-radius: 3px;
|
||||
margin-right: 6px;
|
||||
}
|
||||
.default_cls {
|
||||
background-color: #B0BEC5;
|
||||
}
|
||||
.danger_cls {
|
||||
background-color: red;
|
||||
}
|
||||
.success_cls {
|
||||
background-color: #4CAF50;
|
||||
}
|
||||
.info_cls {
|
||||
background-color: #FF9800;
|
||||
}
|
||||
.main_cls {
|
||||
background-color: #6C9BFF;
|
||||
}
|
||||
.navBar{
|
||||
margin-bottom: 46px;
|
||||
.rightWrap{
|
||||
@ -361,14 +161,13 @@ export default {
|
||||
}
|
||||
}
|
||||
.carItem{
|
||||
@include wh(100%,120px);
|
||||
@include wh(100%,86px);
|
||||
background: #FFFFFF;
|
||||
box-shadow: 0px 2px 10px 0px rgba(216,216,216,0.5);
|
||||
@include radiusSizing(6px);
|
||||
padding: 11px 13px 11px 15px;
|
||||
margin-bottom: 10px;
|
||||
@include flexBetween;
|
||||
position: relative;
|
||||
.carCode{
|
||||
@include flexColBet;
|
||||
.codeLeft{
|
||||
@ -376,7 +175,6 @@ export default {
|
||||
}
|
||||
.twoBtn{
|
||||
display: flex;
|
||||
align-items: center;
|
||||
button{
|
||||
border: none;
|
||||
padding: 4px 8px;
|
||||
@ -404,11 +202,6 @@ export default {
|
||||
opacity: .7;
|
||||
@include fontWeightSize(400,12px)
|
||||
}
|
||||
.zdJuhe {
|
||||
width: 80px;
|
||||
text-align: right;
|
||||
margin-left: -10px;
|
||||
}
|
||||
.isYes{
|
||||
color: #09B820;
|
||||
@include fontWeightSize(400,12px);
|
||||
@ -418,122 +211,4 @@ export default {
|
||||
@include fontWeightSize(400,12px);
|
||||
}
|
||||
}
|
||||
.arrow_position {
|
||||
position: absolute;
|
||||
right: 5px;
|
||||
top: 50px;
|
||||
font-size: 20px;
|
||||
opacity: 0.6;
|
||||
}
|
||||
.mr10 {
|
||||
margin-right: 10px;
|
||||
}
|
||||
.insuranceMain {
|
||||
color: #354D93;
|
||||
}
|
||||
.insuranceSuccess {
|
||||
color: green;
|
||||
}
|
||||
.insuranceTip {
|
||||
color: orange;
|
||||
}
|
||||
.insuranceDanger {
|
||||
color: red;
|
||||
}
|
||||
.flex-between {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.filterWrap {
|
||||
width: 100%;
|
||||
padding-right: 13px;
|
||||
padding-left: 13px;
|
||||
display: flex;
|
||||
overflow-x: auto; /* 允许横向滚动 */
|
||||
white-space: nowrap; /* 防止子元素换行 */
|
||||
padding-bottom: 10px;
|
||||
-webkit-overflow-scrolling: touch; /* 在iOS上平滑滚动 */
|
||||
scrollbar-width: none; /* Firefox */
|
||||
padding-bottom: 10px;
|
||||
/*padding: 10px;*/
|
||||
margin-bottom: 10px;
|
||||
background-color: #fff;
|
||||
box-sizing: border-box;
|
||||
&::-webkit-scrollbar {
|
||||
display: none; /* Chrome/Safari */
|
||||
}
|
||||
.customSel {
|
||||
flex: 0 0 auto; /* 防止子元素被压缩 */
|
||||
width: calc(33% - 5px);
|
||||
/*width: 100%;*/
|
||||
height: 25px;
|
||||
background: #F5F5F5;
|
||||
border-radius: 4px;
|
||||
font-size: 10px;
|
||||
color: #323233;
|
||||
margin-right: 5px;
|
||||
::v-deep .el-input__inner{
|
||||
padding: 0 2px;
|
||||
height: 25px;
|
||||
font-size: 10px;
|
||||
background: #F5F5F5;
|
||||
border-radius: 4px;
|
||||
border: none;
|
||||
}
|
||||
::v-deep .el-input__icon{
|
||||
line-height: 25px;
|
||||
font-size: 10px;
|
||||
width: 18px;
|
||||
color: #2A5094;
|
||||
}
|
||||
::v-deep .el-input__suffix{
|
||||
right: 2px;
|
||||
}
|
||||
}
|
||||
.customInput{
|
||||
/*width: 49%;*/
|
||||
width: 130px;
|
||||
}
|
||||
.has-value ::v-deep .el-input__inner{
|
||||
background: #F1F6FF ;
|
||||
color: #007BE9;
|
||||
font-weight: bold;
|
||||
padding-left: 8px;
|
||||
}
|
||||
.has-value ::v-deep .el-input__icon{
|
||||
color: #007BE9;
|
||||
}
|
||||
.priceSel{
|
||||
display: flex;
|
||||
justify-content: space-around;
|
||||
align-items: center;
|
||||
color: #C0C4CC;
|
||||
.iconSpan{
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
font-size: 8px;
|
||||
}
|
||||
}
|
||||
.has-price{
|
||||
color: #007BE9 !important;
|
||||
}
|
||||
}
|
||||
|
||||
::v-deep .el-select .el-select__tags>span {
|
||||
display: flex;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.flex-right {
|
||||
display: flex;
|
||||
flex: 1;
|
||||
justify-content: flex-start;
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
</style>
|
||||
</style>
|
||||
@ -84,7 +84,7 @@ export default {
|
||||
color:'rgba(4, 4, 21,0.45)'
|
||||
},
|
||||
detail: {
|
||||
color:this.isStore ? this.bgColor : (this.bgColor || '#040415'),
|
||||
color:this.isStore ? this.bgColor : '#040415',
|
||||
fontSize: this.isStore ? 43 :19,
|
||||
formatter: this.isStore ? '{value}' : '{value}%'
|
||||
}
|
||||
@ -110,4 +110,4 @@ export default {
|
||||
width: 100%;
|
||||
height: 125px;
|
||||
}
|
||||
</style>
|
||||
</style>
|
||||
@ -1,208 +0,0 @@
|
||||
<template>
|
||||
<div class="wrap">
|
||||
<div class="navBar">
|
||||
<van-nav-bar
|
||||
title="参保救援职业责任险"
|
||||
left-arrow
|
||||
left-arrow-color="#FFFFFF"
|
||||
:border="false"
|
||||
:fixed="true"
|
||||
:safe-area-inset-top="true"
|
||||
@click-left="goBack"
|
||||
/>
|
||||
</div>
|
||||
<div class="contentWrap">
|
||||
<div>
|
||||
为降低日常救援工作中的不可预期的车损赔付带来的运营风险和资金压力,减少由此衍生而来的可能投诉,顺应行业服务标准不断增长的局势,中道救援自有车辆已全部投保了救援职业责任险。
|
||||
</div>
|
||||
<div>
|
||||
通过日常的交流了解,此险种对于服务商而言,投保相对较难,很多服务商在无投保渠道的情况下选择了对于我们救援场景保障能力稍弱、不太匹配的货物险,从而从形成了现在很多救援车无保障、或者特殊场景货物险理赔难的局面。
|
||||
</div>
|
||||
<div>
|
||||
为此中道救援经过与保司沟通协调,特为与中道救援合作紧密的服务商,提供救援职业责任险参保渠道,提升服务商服务能力,降低运营风险,实现共同进步。
|
||||
</div>
|
||||
<div>一、救援职业责任险简介:</div>
|
||||
<div>1、综合保额50万元,可全方位覆盖我们日常的经营活动。</div>
|
||||
<div> 2、保费支付可采用救援服务费抵扣的方式,降低资金压力。</div>
|
||||
<div> 3、详细保险条款、保费和其他问题,如需了解,请与辖区区域经理联系。</div>
|
||||
<div> 二、其他意见建议如需交流,请与18621558505曲仁杰联系。</div>
|
||||
<div> 三、如确认参保,请点击下方“参保”按钮,会有专人与贵司联系。</div>
|
||||
</div>
|
||||
<div class="upload_btn_wrap">
|
||||
<div class="btn_save" :style="{'backgroundColor':used ? '#cccccc' : '#354D93'}" @click="showPoup = true">参保</div>
|
||||
</div>
|
||||
<div class="poupCommon" v-if="showPoup">
|
||||
<div class="showPoupContainer">
|
||||
<img class="insured" src="@/assets/insured-jianbian.png">
|
||||
<img class="insure" src="@/assets/insured.png">
|
||||
<div class="con">
|
||||
<template v-if="used">
|
||||
<div class="title">您已成功申请参保,请等待</div>
|
||||
<div class="title">专人与贵司联系。</div>
|
||||
</template>
|
||||
<template v-else>
|
||||
<div class="title">请确认</div>
|
||||
<div class="title">是否参保救援职业责任险</div>
|
||||
</template>
|
||||
<div class="btnWrap">
|
||||
<div v-if="used" class="btn confirmBtn" @click="showPoup = false">确认</div>
|
||||
<div v-else class="btn confirmBtn" @click="saveHandle">确认</div>
|
||||
<div class="btn closeBtn" @click="showPoup = false">取消</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import {myMixins} from "@/utils/myMixins"
|
||||
import {sendInsuranceEmail,isSendInsuranceEmail} from "@/api/mine"
|
||||
export default {
|
||||
name: "insuredPage",
|
||||
mixins: [myMixins],
|
||||
data() {
|
||||
return {
|
||||
showPoup: false,
|
||||
used:false,
|
||||
}
|
||||
},
|
||||
async mounted() {
|
||||
let res=await isSendInsuranceEmail()
|
||||
this.used=res.data
|
||||
},
|
||||
methods: {
|
||||
async saveHandle() {
|
||||
await sendInsuranceEmail();
|
||||
this.$toast('操作成功');
|
||||
this.showPoup=false
|
||||
setTimeout(()=>{
|
||||
this.goBack()
|
||||
},1500)
|
||||
},
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import "@/styles/mixin.scss";
|
||||
@import "@/styles/common.scss";
|
||||
|
||||
.wrap {
|
||||
@include wh(100%, 100%);
|
||||
background-color: #F4F5F7;
|
||||
overflow-y: auto;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.navBar {
|
||||
height: 46px;
|
||||
}
|
||||
|
||||
.contentWrap {
|
||||
padding-top: 15px;
|
||||
|
||||
div {
|
||||
padding: 0 18px;
|
||||
line-height: 22px;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
.upload_btn_wrap {
|
||||
position: fixed;
|
||||
width: 100%;
|
||||
box-sizing: border-box;
|
||||
bottom: 10px;
|
||||
left: 0;
|
||||
padding: 15px 30px;
|
||||
display: flex;
|
||||
color: #fff;
|
||||
font-weight: bold;
|
||||
font-size: 14px;
|
||||
line-height: 40px;
|
||||
div {
|
||||
height: 40px;
|
||||
line-height: 40px;
|
||||
border-radius: 5px;
|
||||
text-align: center;
|
||||
flex: 1;
|
||||
}
|
||||
.btn_save {
|
||||
//background: #354D93;
|
||||
margin-right: 4px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.poupCommon {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: rgba(0, 0, 0, .7);
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
.showPoupContainer {
|
||||
width: 290px;
|
||||
height: 242px;
|
||||
background-color: #FFFFFF;
|
||||
border-radius: 12px;
|
||||
position: absolute;
|
||||
z-index: 11;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
margin: auto;
|
||||
.con {
|
||||
top: 80px !important;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
margin-top: 60px;
|
||||
}
|
||||
.title {
|
||||
font-weight: 500;
|
||||
font-size: 16px;
|
||||
color: #040404;
|
||||
line-height: 28px;
|
||||
}
|
||||
.insure {
|
||||
width: 78px;
|
||||
height: 78px;
|
||||
position: absolute;
|
||||
z-index: 11;
|
||||
top: -34px;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
}
|
||||
.insured {
|
||||
width: 100%;
|
||||
position: absolute;
|
||||
z-index: -1;
|
||||
}
|
||||
.btnWrap {
|
||||
margin-top: 36px;
|
||||
text-align: center;
|
||||
.btn{
|
||||
width: 174px;
|
||||
height: 42px;
|
||||
line-height: 42px;
|
||||
border-radius: 23px;
|
||||
}
|
||||
.closeBtn {
|
||||
font-weight: 400;
|
||||
font-size: 14px;
|
||||
color: #2C4155;
|
||||
opacity: .6;
|
||||
}
|
||||
.confirmBtn {
|
||||
font-weight: 500;
|
||||
font-size: 15px;
|
||||
background: #F1BA63;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
@ -90,7 +90,7 @@
|
||||
}
|
||||
let activeObj = this.addressList[this.activeIndex];
|
||||
let _tempObj = {
|
||||
startPoiAddress: activeObj?.address + activeObj?.name,
|
||||
startPoiAddress: activeObj?.district + activeObj?.address + activeObj?.name,
|
||||
startLat: activeObj?.location?.lat,
|
||||
startLng: activeObj?.location?.lng,
|
||||
adCode: activeObj?.adcode,
|
||||
|
||||
@ -1,164 +0,0 @@
|
||||
<template>
|
||||
<div class="content">
|
||||
<div class="navBar">
|
||||
<van-nav-bar
|
||||
title="小板运输司机认证"
|
||||
left-arrow
|
||||
left-arrow-color="#FFFFFF"
|
||||
:border="false"
|
||||
:fixed="true"
|
||||
:safe-area-inset-top="true"
|
||||
@click-left="h5GoBack"
|
||||
/>
|
||||
</div>
|
||||
<img class="icon_register" mode="widthFix" src="@/assets/authentication/icon_register.png" />
|
||||
<tip-bar :title="'应国家政策要求:从事货运行业的司机用户,身份证照片、驾驶证信息、行驶证信息、人车合影及承运资质信息必须进行实名认证。'"></tip-bar>
|
||||
<div class="audit_list">
|
||||
<audit-item title="个人信息" tip="上传本人头像和身份证"
|
||||
:url="currentFlag(1) ? personActiveUrl : personUrl"
|
||||
:pass="currentFlag(1)" :current-class="currentStep == 1"
|
||||
@detail="showDetail('personAudit')" @upload="showDetail('personAudit')"></audit-item>
|
||||
<audit-item title="驾照信息" tip="上传驾驶证" :url="currentFlag(2) ? driverActiveUrl : driverUrl" v-if="type != 'simple'" :pass="currentFlag(2)" :current-class="currentStep == 2"
|
||||
@detail="showDetail('carAudit')" @upload="showDetail('carAudit')"></audit-item>
|
||||
<audit-item title="车辆信息" tip="上传行驶证与车辆照片" :url="currentFlag(3) ? carActiveUrl : carUrl" :pass="currentFlag(3)" :current-class="currentStep == 3"
|
||||
@detail="showDetail('carInfoAudit')" @upload="showDetail('carInfoAudit')"></audit-item>
|
||||
<audit-item title="银行卡信息" tip="上传本人银行卡信息" :url="currentFlag(4) ? bankActiveUrl :bankUrl" :pass="currentFlag(4)" :current-class="currentStep == 4"
|
||||
@detail="showDetail('bankInfo')" @upload="showDetail('bankInfo')"></audit-item>
|
||||
<audit-item title="审核信息" :tip="auditTip" :status="statusStr" :url="currentFlag(5) ? bankActiveUrl :bankUrl" :pass="currentFlag(5)" :current-class="currentStep == 5" :button-hide="false"
|
||||
></audit-item>
|
||||
</div>
|
||||
<fixed-button v-if="verifyStatus == 11" @myClick="showDetail('personAudit')" title="重新认证"></fixed-button>
|
||||
<success-dialog ref="successDialog"></success-dialog>s
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import successDialog from "./component/successDialog.vue";
|
||||
import auditItem from "./component/auditItem";
|
||||
import tipBar from "./component/tipBar";
|
||||
import { verifyStatus, verifyStatusSimple ,tipString} from '@/utils/common';
|
||||
import { myMixins } from '@/utils/myMixins.js';
|
||||
import fixedButton from "./component/fixedButton";
|
||||
import {infoVerifyProgress} from "@/api/authentication"
|
||||
export default {
|
||||
name:"auditList",
|
||||
data() {
|
||||
return {
|
||||
personUrl: require('@/assets/authentication/audit_icon4_gray.png'),
|
||||
personActiveUrl: require('@/assets/authentication/audit_icon4.png'),
|
||||
driverUrl: require('@/assets/authentication/audit_icon1_gray.png'),
|
||||
driverActiveUrl: require('@/assets/authentication/aduit_icon1.png'),
|
||||
carUrl: require('@/assets/authentication/audit_icon2_gray.png'),
|
||||
carActiveUrl: require('@/assets/authentication/audit_icon2.png'),
|
||||
bankUrl: require('@/assets/authentication/audit_icon3_gray.png'),
|
||||
bankActiveUrl: require('@/assets/authentication/audit_icon3.png'),
|
||||
currentStep: undefined,
|
||||
auditTip: '',
|
||||
statusStr: '',
|
||||
verifyStatus: '',
|
||||
type: 'full',
|
||||
}
|
||||
},
|
||||
mixins: [ myMixins ],
|
||||
components: {
|
||||
tipBar,
|
||||
auditItem,
|
||||
fixedButton,
|
||||
successDialog
|
||||
},
|
||||
// onLoad() {
|
||||
// },
|
||||
// async onPullDownRefresh() {
|
||||
// await this.refresh()
|
||||
// uni.stopPullDownRefresh()
|
||||
// },
|
||||
async mounted() {
|
||||
// await this.$onLaunched;
|
||||
// 禁止双击放大
|
||||
let lastTouchEnd = 0;
|
||||
document.addEventListener('touchend', (event) => {
|
||||
const now = Date.now();
|
||||
if (now - lastTouchEnd <= 300) {
|
||||
event.preventDefault(); // 阻止双击放大
|
||||
}
|
||||
lastTouchEnd = now;
|
||||
}, { passive: false });
|
||||
|
||||
await this.refresh()
|
||||
},
|
||||
methods: {
|
||||
async getRegisterInfo(data) {
|
||||
let res = await infoVerifyProgress( data)
|
||||
// console.log("res",res)
|
||||
localStorage.setItem('infoVerify', res?.data?.infoVerify?.code)
|
||||
localStorage.setItem('failReason', res?.data?.verifyRemark)
|
||||
localStorage.setItem('authIsSuccess', res?.data?.authIsSuccess)
|
||||
localStorage.setItem('name', res?.data?.name)
|
||||
},
|
||||
async refresh() {
|
||||
await this.getRegisterInfo()
|
||||
await this.getVerifyStatus()
|
||||
let obj = await tipString(localStorage.getItem('infoVerify'))
|
||||
this.verifyStatus = localStorage.getItem('infoVerify')
|
||||
if( this.verifyStatus == 11 ) {
|
||||
this.auditTip = localStorage.getItem('failReason')
|
||||
localStorage.setItem('authIsSuccess', 0)
|
||||
} else {
|
||||
this.auditTip = obj.tip
|
||||
}
|
||||
if( this.verifyStatus == 12 && parseInt(localStorage.getItem('authIsSuccess')) != 1) { // 审核通过
|
||||
this.$refs.successDialog.openHandler()
|
||||
}
|
||||
this.statusStr = obj.button
|
||||
},
|
||||
currentFlag(status) {
|
||||
return this.currentStep > status
|
||||
},
|
||||
showDetail(path) {
|
||||
this.goPage(path,{
|
||||
token:localStorage.getItem('token')
|
||||
})
|
||||
},
|
||||
getVerifyStatus() {
|
||||
if( this.type == 'simple' ) {
|
||||
this.currentStep = verifyStatusSimple(localStorage.getItem('infoVerify'))
|
||||
} else {
|
||||
this.currentStep = verifyStatus(localStorage.getItem('infoVerify'))
|
||||
}
|
||||
},
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
@import "@/styles/common.scss";
|
||||
.navBar{
|
||||
margin-bottom: 46px;
|
||||
}
|
||||
.content {
|
||||
font-size: 0;
|
||||
padding-bottom: 80px;
|
||||
height: 100%;
|
||||
overflow-y: auto;
|
||||
-webkit-overflow-scrolling: touch; /* 启用iOS惯性滚动 */
|
||||
scroll-behavior: smooth; /* 平滑滚动(部分浏览器支持) */
|
||||
}
|
||||
.audit_list {
|
||||
padding: 20px 30px;
|
||||
.audit_item:after{
|
||||
left: 18px;
|
||||
position: absolute;
|
||||
content: '';
|
||||
display: block;
|
||||
width: 2px;
|
||||
top: 56px;
|
||||
height: 48px;
|
||||
background: rgba($color: #B2C2E4, $alpha: 0.59);
|
||||
}
|
||||
.audit_item:last-child {
|
||||
&::after{
|
||||
display: none !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
@ -1,164 +0,0 @@
|
||||
<template>
|
||||
<div class="content">
|
||||
<div class="navBar">
|
||||
<van-nav-bar
|
||||
title="银行卡信息认证"
|
||||
left-arrow
|
||||
left-arrow-color="#FFFFFF"
|
||||
:border="false"
|
||||
:fixed="true"
|
||||
:safe-area-inset-top="true"
|
||||
@click-left="goListPage"
|
||||
/>
|
||||
</div>
|
||||
<tip-bar :title="'温馨提示:服务完成后,平台代收的运费需要提现到您的银行卡账户中,请确保您上传的银行卡信息真实可用。'"></tip-bar>
|
||||
<photo-item title="银行卡正面照片" :left-url="form.bankCardFront || bank" :show="show" @leftImg="bankHandler"></photo-item>
|
||||
<div class="carInfo">
|
||||
<div class="left_wrap title">
|
||||
<span class="mar_left">姓名</span>
|
||||
<div>
|
||||
<span class="star">*</span>
|
||||
<span>账户号</span>
|
||||
</div>
|
||||
<div>
|
||||
<span class="star">*</span>
|
||||
<span>开户行</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="right_wrap">
|
||||
<input type="text" disabled placeholder="请输入持卡人姓名" v-model="form.name">
|
||||
<input type="text" placeholder="请输入银行卡号" v-model="form.cardNumber">
|
||||
<input type="text" placeholder="请输入开户行" v-model="form.bankName">
|
||||
</div>
|
||||
</div>
|
||||
<fixed-button @myClick="clickHandler" v-if="showFun()"></fixed-button>
|
||||
<!-- <protocol-dialog></protocol-dialog>-->
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
// import protocolDialog from "./component/protocolDialog";
|
||||
import fixedButton from "./component/fixedButton";
|
||||
import photoItem from "./component/photoItem";
|
||||
import tipBar from "./component/tipBar";
|
||||
import {ocrRecognize, driverInfoVerify, driverInfoVerifyDetail, infoVerifyProgress} from '@/api/authentication.js'
|
||||
import { leftCopy } from '@/utils/common.js'
|
||||
import { myMixins } from '@/utils/myMixins.js'
|
||||
export default {
|
||||
name: "bankInfo",
|
||||
components: {
|
||||
tipBar,
|
||||
photoItem,
|
||||
fixedButton,
|
||||
// protocolDialog
|
||||
},
|
||||
mixins: [myMixins],
|
||||
data() {
|
||||
return {
|
||||
bank: require('@/assets/authentication/bank_icon1.png'),
|
||||
show: undefined,
|
||||
form: {
|
||||
bankCardFront: '',
|
||||
bankName: '',
|
||||
cardNumber: '',
|
||||
name: '',
|
||||
},
|
||||
type:localStorage.getItem('type')
|
||||
}
|
||||
},
|
||||
async mounted() {
|
||||
// 禁止双击放大
|
||||
let lastTouchEnd = 0;
|
||||
document.addEventListener('touchend', (event) => {
|
||||
const now = Date.now();
|
||||
if (now - lastTouchEnd <= 300) {
|
||||
event.preventDefault(); // 阻止双击放大
|
||||
}
|
||||
lastTouchEnd = now;
|
||||
}, { passive: false });
|
||||
|
||||
// if(options?.show) {
|
||||
this.show = true
|
||||
// }
|
||||
if( this.show ) {
|
||||
await this.getDetail()
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
async clickHandler() {
|
||||
if(!this.form.bankCardFront) {
|
||||
this.$toast('银行卡照片未上传');
|
||||
return
|
||||
}
|
||||
if( this.form.name && this.form.cardNumber && this.form.bankName ) {
|
||||
let res = await driverInfoVerify( {
|
||||
verifyType: 4,
|
||||
...this.form,
|
||||
type: this.type || 'full',
|
||||
})
|
||||
this.$toast('操作成功')
|
||||
await this.getRegisterInfo({
|
||||
verifyType: 4
|
||||
})
|
||||
setTimeout(() => {
|
||||
this.goListPage()
|
||||
}, 100)
|
||||
console.log('注册', res)
|
||||
} else {
|
||||
this.$toast('银行卡信息识别错误')
|
||||
}
|
||||
},
|
||||
async getRegisterInfo(data) {
|
||||
let res = await infoVerifyProgress( data)
|
||||
localStorage.setItem('infoVerify', res?.data?.infoVerify?.code)
|
||||
localStorage.setItem('failReason', res?.data?.verifyRemark)
|
||||
localStorage.setItem('authIsSuccess', res?.data?.authIsSuccess)
|
||||
localStorage.setItem('name', res?.data?.name)
|
||||
},
|
||||
goListPage(){
|
||||
this.goPage('auditList',{
|
||||
token:localStorage.getItem('token')
|
||||
})
|
||||
},
|
||||
async bankHandler(data) {
|
||||
this.form.bankName = ''
|
||||
this.form.cardNumber = ''
|
||||
this.form.name = ''
|
||||
this.form.bankCardFront = data
|
||||
let res = await this.orcHandler(this.form.bankCardFront, 5)
|
||||
leftCopy(this.form, {...res?.data?.data})
|
||||
},
|
||||
async getDetail() { // 认证详情
|
||||
let res = await driverInfoVerifyDetail( {
|
||||
verifyType: 4
|
||||
})
|
||||
leftCopy(this.form, {...res?.data?.bankCardInfoData})
|
||||
console.log('bank', res)
|
||||
},
|
||||
async orcHandler(url, type) { // ocr 识别
|
||||
let res = await ocrRecognize( {
|
||||
ocrType: type,
|
||||
imageUrl: url
|
||||
});
|
||||
return res;
|
||||
},
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
@import "@/styles/common.scss";
|
||||
@import "@/styles/infoShow.scss";
|
||||
page {
|
||||
background: #F4F5F7;
|
||||
}
|
||||
.content{
|
||||
height: 100%;
|
||||
overflow-y: auto;
|
||||
-webkit-overflow-scrolling: touch; /* 启用iOS惯性滚动 */
|
||||
scroll-behavior: smooth; /* 平滑滚动(部分浏览器支持) */
|
||||
}
|
||||
.navBar{
|
||||
margin-bottom: 46px;
|
||||
}
|
||||
</style>
|
||||
@ -1,237 +0,0 @@
|
||||
<template>
|
||||
<div class="content">
|
||||
<div class="navBar">
|
||||
<van-nav-bar
|
||||
title="驾驶证认证"
|
||||
left-arrow
|
||||
left-arrow-color="#FFFFFF"
|
||||
:border="false"
|
||||
:fixed="true"
|
||||
:safe-area-inset-top="true"
|
||||
@click-left="goListPage"
|
||||
/>
|
||||
</div>
|
||||
<tip-bar :title="'应国家政策要求:从事货运行业的司机用户,身份证照片、驾驶证信息、行驶证信息、人车合影及承运资质信息必须进行实名认证。'"></tip-bar>
|
||||
<photo-item title="上传驾驶证" :left-url="form.drivingLicenceFront || carFront" :right-url="form.drivingLicenceContrary || carBack"
|
||||
:show="show" @leftImg="carFrontHandler" @rightImg="carBackHandler"></photo-item>
|
||||
<div class="carInfo">
|
||||
<div class="left_wrap title">
|
||||
<div class="form_item">
|
||||
<div>
|
||||
<span class="star">*</span>
|
||||
<span>姓名</span>
|
||||
</div>
|
||||
<span class="phone">{{form.name}}</span>
|
||||
</div>
|
||||
<div class="form_item">
|
||||
<div>
|
||||
<span class="star">*</span>
|
||||
<span>身份证号</span>
|
||||
</div>
|
||||
<input class="phone" type="text" placeholder="请输入持卡人身份证号" v-model="form.licenseNumber">
|
||||
</div>
|
||||
<div class="form_item">
|
||||
<div>
|
||||
<span class="star">*</span>
|
||||
<span>准驾类型</span>
|
||||
</div>
|
||||
<span class="phone">{{form.approvedType}}</span>
|
||||
</div>
|
||||
<div class="form_item">
|
||||
<div>
|
||||
<span class="star">*</span>
|
||||
<span>初次领证日期</span>
|
||||
</div>
|
||||
<span class="phone">{{form.initialIssueDate}}</span>
|
||||
</div>
|
||||
<div class="form_item">
|
||||
<div>
|
||||
<span class="star">*</span>
|
||||
<span>有效期限</span>
|
||||
</div>
|
||||
<span class="phone">{{form.validPeriod}}</span>
|
||||
</div>
|
||||
<div class="form_item">
|
||||
<div>
|
||||
<span class="star">*</span>
|
||||
<span>档案编号</span>
|
||||
</div>
|
||||
<span class="phone">{{form.recordNumber}}</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<fixed-button @myClick="clickHandler" v-if="showFun()"></fixed-button>
|
||||
<!-- <protocol-dialog></protocol-dialog>-->
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
// import protocolDialog from "./component/protocolDialog";
|
||||
import fixedButton from "./component/fixedButton";
|
||||
import photoItem from "./component/photoItem";
|
||||
import tipBar from "./component/tipBar";
|
||||
import {ocrRecognize, driverInfoVerify, driverInfoVerifyDetail, infoVerifyProgress} from '@/api/authentication.js'
|
||||
import { leftCopy } from '@/utils/common.js'
|
||||
import { myMixins } from '@/utils/myMixins.js'
|
||||
export default {
|
||||
name: "carAudit",
|
||||
components: {
|
||||
tipBar,
|
||||
photoItem,
|
||||
fixedButton,
|
||||
// protocolDialog
|
||||
},
|
||||
mixins: [ myMixins ],
|
||||
data() {
|
||||
return {
|
||||
carFront: require('@/assets/authentication/car_icon1.png'),
|
||||
carBack: require('@/assets/authentication/car_icon2.png'),
|
||||
form: {
|
||||
name: '',
|
||||
drivingLicenceFront: '',
|
||||
drivingLicenceContrary: '',
|
||||
licenseNumber: '',
|
||||
approvedType: '', // 准驾车型
|
||||
initialIssueDate: '', // 初次领证日期
|
||||
validPeriod: '', // 有效期
|
||||
recordNumber: '', // 档案编号
|
||||
},
|
||||
show: undefined,
|
||||
type: 'full',
|
||||
}
|
||||
},
|
||||
async mounted() {
|
||||
// 禁止双击放大
|
||||
let lastTouchEnd = 0;
|
||||
document.addEventListener('touchend', (event) => {
|
||||
const now = Date.now();
|
||||
if (now - lastTouchEnd <= 300) {
|
||||
event.preventDefault(); // 阻止双击放大
|
||||
}
|
||||
lastTouchEnd = now;
|
||||
}, { passive: false });
|
||||
|
||||
// if(options?.show) {
|
||||
this.show = true
|
||||
// }
|
||||
if( this.show ) {
|
||||
await this.getDetail()
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
backInit() {
|
||||
this.form.recordNumber = ''
|
||||
},
|
||||
frontInit() {
|
||||
this.form.licenseNumber = ''
|
||||
this.form.approvedType = ''
|
||||
this.form.initialIssueDate = ''
|
||||
this.form.validPeriod = ''
|
||||
},
|
||||
async carFrontHandler(data) {
|
||||
await this.frontInit();
|
||||
this.form.drivingLicenceFront = data
|
||||
await this.idOrcHandler(this.form.drivingLicenceFront)
|
||||
},
|
||||
async carBackHandler(data) {
|
||||
await this.backInit();
|
||||
this.form.drivingLicenceContrary = data
|
||||
await this.idOrcHandler(this.form.drivingLicenceContrary, 'back')
|
||||
},
|
||||
async idOrcHandler(url, type = 'front') { // ocr 识别
|
||||
let res = await ocrRecognize({
|
||||
ocrType: 2,
|
||||
imageUrl: url
|
||||
});
|
||||
let carInfo
|
||||
if(type == 'back') {
|
||||
carInfo = res?.data?.data?.back?.data
|
||||
this.form.recordNumber = carInfo?.recordNumber || ''
|
||||
} else {
|
||||
carInfo = res?.data?.data?.face?.data
|
||||
leftCopy(this.form, {...carInfo})
|
||||
}
|
||||
|
||||
},
|
||||
async getDetail() { // 认证详情
|
||||
let res = await driverInfoVerifyDetail( {
|
||||
verifyType: 2
|
||||
})
|
||||
leftCopy(this.form, {...res?.data?.drivingLicenseInfoData})
|
||||
console.log('carAudit', res)
|
||||
},
|
||||
async clickHandler() { // 点击去认证
|
||||
if( !this.form.drivingLicenceFront ) {
|
||||
this.$toast('驾驶证正面照片未上传')
|
||||
return
|
||||
}
|
||||
if( !this.form.drivingLicenceContrary ) {
|
||||
this.$toast('驾驶证反面照片未上传')
|
||||
return
|
||||
}
|
||||
if(!this.form.licenseNumber || !this.form.initialIssueDate || !this.form.validPeriod) {
|
||||
this.$toast('驾驶证正面识别错误,请重新上传')
|
||||
return
|
||||
}
|
||||
if(!this.form.recordNumber) {
|
||||
this.$toast('驾驶证反面识别错误,请重新上传')
|
||||
return
|
||||
}
|
||||
await driverInfoVerify({
|
||||
verifyType: 2,
|
||||
type: this.type || 'full',
|
||||
...this.form,
|
||||
})
|
||||
this.$toast('操作成功')
|
||||
await this.getRegisterInfo({
|
||||
verifyType: 2
|
||||
})
|
||||
setTimeout(() => {
|
||||
this.goListPage()
|
||||
}, 100)
|
||||
}, async getRegisterInfo(data) {
|
||||
let res = await infoVerifyProgress( data)
|
||||
localStorage.setItem('infoVerify', res?.data?.infoVerify?.code)
|
||||
localStorage.setItem('failReason', res?.data?.verifyRemark)
|
||||
localStorage.setItem('authIsSuccess', res?.data?.authIsSuccess)
|
||||
localStorage.setItem('name', res?.data?.name)
|
||||
},
|
||||
goListPage(){
|
||||
this.goPage('auditList',{
|
||||
token:localStorage.getItem('token')
|
||||
})
|
||||
},
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
@import "@/styles/common.scss";
|
||||
@import "@/styles/infoShow.scss";
|
||||
page {
|
||||
background: #F4F5F7;
|
||||
}
|
||||
.content{
|
||||
|
||||
height: 100%;
|
||||
overflow-y: auto;
|
||||
-webkit-overflow-scrolling: touch; /* 启用iOS惯性滚动 */
|
||||
scroll-behavior: smooth; /* 平滑滚动(部分浏览器支持) */
|
||||
}
|
||||
.navBar{
|
||||
margin-bottom: 46px;
|
||||
}
|
||||
.carInfo .title {
|
||||
width: 100% !important;
|
||||
}
|
||||
.form_item {
|
||||
line-height: 30px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
}
|
||||
.phone {
|
||||
flex: 1;
|
||||
text-align: right;
|
||||
}
|
||||
</style>
|
||||
@ -1,446 +0,0 @@
|
||||
<template>
|
||||
<div class="content">
|
||||
<div class="navBar">
|
||||
<van-nav-bar
|
||||
title="车辆信息认证"
|
||||
left-arrow
|
||||
left-arrow-color="#FFFFFF"
|
||||
:border="false"
|
||||
:fixed="true"
|
||||
:safe-area-inset-top="true"
|
||||
@click-left="goListPage"
|
||||
/>
|
||||
</div>
|
||||
<tip-bar :title="'应国家政策要求:从事货运行业的司机用户,身份证照片、驾驶证信息、行驶证信息、人车合影及承运资质信息必须进行实名认证。'"></tip-bar>
|
||||
<div class="titleWrap">
|
||||
<div class="natureWrap">
|
||||
<span class="title"><span class="star">*</span>业务性质</span>
|
||||
<van-radio-group @change="radioChange" v-model="form.businessNature" class="flexWrap">
|
||||
<van-radio :name="1">全国跑圈业务</van-radio>
|
||||
<van-radio :name="2">固定区域救援业务</van-radio>
|
||||
</van-radio-group>
|
||||
</div>
|
||||
<div class="natureWrap regionWrap" v-if="form.businessNature == 2" >
|
||||
<span class="title"><span class="star">*</span>所在地区</span>
|
||||
<div class="pickerWrap picker" @click="areaShow = true" >{{regionText}}</div>
|
||||
</div>
|
||||
</div>
|
||||
<photo-item title="上传行驶证" :left-url="form.vehicleLicenseFront || driveFront" :right-url="form.vehicleLicenseBack || driveBack" v-if="type != 'simple'"
|
||||
:show="show" @leftImg="vehicleFrontHandler" @rightImg="vehicleBackHandler"></photo-item>
|
||||
<photo-item title="上传车辆照片" :left-url="form.vehicleFrontPhoto || carHead" :right-url="form.peopleVehiclePhoto || personCar" v-if="type != 'simple'"
|
||||
:show="show" @leftImg="carPhotoHandler" @rightImg="personPhotoHandler"></photo-item>
|
||||
<photo-item title="是否有救援责任险/货物运输险" :url-list="form.carrierLiabilityInsurancePhoto" :in-sure="form.hasInsurancePhoto"
|
||||
:show="show" @urlList="carrierHandler" @insureHandle="insureHandle"></photo-item>
|
||||
<div class="titleWrap">
|
||||
<div class="natureWrap">
|
||||
<span class="title"><span class="star">*</span>随车小轮个数</span>
|
||||
<van-radio-group v-model="form.wheelNum" class="flexWrap">
|
||||
<van-radio v-for="item in tyreOptions" :key="item.value" :name="item.value">{{item.name}}</van-radio>
|
||||
</van-radio-group>
|
||||
</div>
|
||||
</div>
|
||||
<div class="carInfo" v-if="type != 'simple'">
|
||||
<div class="left_wrap title">
|
||||
<div class="form_item">
|
||||
<div>
|
||||
<span class="star">*</span>
|
||||
<span>车牌号</span>
|
||||
</div>
|
||||
<span class="phone">{{form.licensePlateNumber}}</span>
|
||||
</div>
|
||||
<div class="form_item">
|
||||
<div>
|
||||
<span class="star">*</span>
|
||||
<span>车架号</span>
|
||||
</div>
|
||||
<span class="phone">{{form.vinCode}}</span>
|
||||
</div>
|
||||
<div class="form_item">
|
||||
<div>
|
||||
<span class="star">*</span>
|
||||
<span>车型</span>
|
||||
</div>
|
||||
<span class="phone">{{form.vehicleType}}</span>
|
||||
</div>
|
||||
<div class="form_item">
|
||||
<div>
|
||||
<span class="star">*</span>
|
||||
<span>品牌车型</span>
|
||||
</div>
|
||||
<span class="phone">{{form.vehicleLicenseModel}}</span>
|
||||
</div>
|
||||
<div class="form_item">
|
||||
<div>
|
||||
<span class="star">*</span>
|
||||
<span>行驶证人</span>
|
||||
</div>
|
||||
<span class="phone">{{form.vehicleLicenseOwner}}</span>
|
||||
</div>
|
||||
<div class="form_item">
|
||||
<div>
|
||||
<span>检验记录</span>
|
||||
</div>
|
||||
<span class="phone">{{form.inspectionRecord}}</span>
|
||||
</div>
|
||||
<div class="form_item">
|
||||
<div>
|
||||
<span class="star">*</span>
|
||||
<span>总质量</span>
|
||||
</div>
|
||||
<span class="phone">{{form.totalWeight}}</span>
|
||||
</div>
|
||||
<div class="form_item">
|
||||
<div>
|
||||
<span class="star">*</span>
|
||||
<span>整备质量</span>
|
||||
</div>
|
||||
<span class="phone">{{form.curbWeight}}</span>
|
||||
</div>
|
||||
<div class="form_item">
|
||||
<div>
|
||||
<span class="star">*</span>
|
||||
<span>外廓尺寸</span>
|
||||
</div>
|
||||
<span class="phone">{{form.overallDimension}}</span>
|
||||
</div>
|
||||
<div class="form_item">
|
||||
<div>
|
||||
<span class="star"></span>
|
||||
<span>档案编号</span>
|
||||
</div>
|
||||
<span class="phone">{{form.vehicleLicenseRecordNumber}}</span>
|
||||
</div>
|
||||
<div class="form_item">
|
||||
<div>
|
||||
<span class="star"></span>
|
||||
<span>行驶证备注</span>
|
||||
</div>
|
||||
<span class="phone">{{form.vehicleLicenseRemarks}}</span>
|
||||
</div>
|
||||
<div class="form_item">
|
||||
<div>
|
||||
<span class="star">*</span>
|
||||
<span>车头照片中的车牌号码</span>
|
||||
</div>
|
||||
<span class="phone">{{form.carNumber}}</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<fixed-button @myClick="clickHandler" v-if="showFun()" :noBg="true"></fixed-button>
|
||||
<van-popup
|
||||
v-model="areaShow"
|
||||
position="bottom"
|
||||
>
|
||||
<van-area title="标题" :area-list="areaList" :columns-num="3" closeable="true" :value="form.areaCode ? String(form.areaCode) : ''"
|
||||
@cancel="areaShow = false" @confirm="confirmHandle"/>
|
||||
</van-popup>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import fixedButton from "./component/fixedButton";
|
||||
import photoItem from "./component/photoItem";
|
||||
import tipBar from "./component/tipBar";
|
||||
import {ocrRecognize, driverInfoVerify, driverInfoVerifyDetail, infoVerifyProgress} from '@/api/authentication.js'
|
||||
import { leftCopy } from '@/utils/common.js'
|
||||
import { myMixins } from '@/utils/myMixins.js'
|
||||
import {areaList} from "@vant/area-data";
|
||||
export default {
|
||||
name: "carInfoAudit",
|
||||
components: {
|
||||
tipBar,
|
||||
photoItem,
|
||||
fixedButton,
|
||||
},
|
||||
mixins: [myMixins],
|
||||
data() {
|
||||
return {
|
||||
areaList: areaList,
|
||||
areaShow:false,
|
||||
region: [],
|
||||
driveFront: require('@/assets/authentication/carInfo_icon1.png'),
|
||||
driveBack: require('@/assets/authentication/carInfo_icon2.png'),
|
||||
carHead:require('@/assets/authentication/carInfo_icon3.png'),
|
||||
personCar:require('@/assets/authentication/carInfo_icon4.png'),
|
||||
liabilityInsurance:require('@/assets/authentication/carInfo_icon5.png'),
|
||||
form: {
|
||||
vehicleLicenseFront: '', // 行驶证主页照片
|
||||
vehicleLicenseBack: '', // 行驶证副页照片
|
||||
vehicleLicenseAddress: '', // 行驶证地址
|
||||
engineNumber: '', // 行驶证发动机号
|
||||
licensePlateNumber: '', // 车牌号
|
||||
vinCode: '', // 车架号
|
||||
vehicleType: '', // 车型
|
||||
vehicleLicenseModel: '', // 行驶证车辆品牌车型
|
||||
vehicleLicenseOwner: '', // 行驶证所有人
|
||||
inspectionRecord: '', // 检验记录
|
||||
totalWeight: '', // 总质量
|
||||
curbWeight: '', // 整备质量
|
||||
overallDimension: '', // 外廓尺寸
|
||||
vehicleLicenseRecordNumber: '', // 行驶证档案编号
|
||||
vehicleLicenseRemarks: '', // 行驶证备注
|
||||
vehicleFrontPhoto: '', // 车头照片
|
||||
carNumber: '', // 车头照片中的车牌号码
|
||||
peopleVehiclePhoto: '', // 人车合影照片
|
||||
carrierLiabilityInsurancePhoto: [], // 承运人责任险照片,如多张用英文逗号分开
|
||||
businessNature:'',
|
||||
areaCode:'',
|
||||
hasInsurancePhoto:'',
|
||||
wheelNum:-1,
|
||||
region:[],
|
||||
},
|
||||
show: undefined,
|
||||
type: 'full',
|
||||
tyreOptions:[{value:0,name:'0'},{value:2,name:'2'},{value:4,name:'4'}]
|
||||
}
|
||||
},
|
||||
async mounted() {
|
||||
// 禁止双击放大
|
||||
let lastTouchEnd = 0;
|
||||
document.addEventListener('touchend', (event) => {
|
||||
const now = Date.now();
|
||||
if (now - lastTouchEnd <= 300) {
|
||||
event.preventDefault(); // 阻止双击放大
|
||||
}
|
||||
lastTouchEnd = now;
|
||||
}, { passive: false });
|
||||
|
||||
// if(options?.show) {
|
||||
this.show = true
|
||||
// }
|
||||
if(this.show) {
|
||||
await this.getDetail()
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
confirmHandle(val){
|
||||
this.region=[]
|
||||
val?.forEach(item => this.region.push(item.name))
|
||||
let code=[]
|
||||
val?.forEach(item => code.push(item.code))
|
||||
this.form.areaCode=code[code.length - 1]
|
||||
this.areaShow=false
|
||||
},
|
||||
radioChange(){
|
||||
if(this.form.businessNature==1){
|
||||
this.region=[]
|
||||
this.form.areaCode=''
|
||||
}
|
||||
},
|
||||
async getDetail() { // 认证详情
|
||||
let res = await driverInfoVerifyDetail( {
|
||||
verifyType: 3
|
||||
})
|
||||
leftCopy(this.form, {...res?.data?.vehicleInfoData})
|
||||
console.log("this.form",this.form)
|
||||
this.form.carrierLiabilityInsurancePhoto=this.form.carrierLiabilityInsurancePhoto ? res?.data?.vehicleInfoData?.carrierLiabilityInsurancePhoto?.split(',') : []
|
||||
if(this.form.businessNature==2){
|
||||
this.region=res?.data?.vehicleInfoData?.region
|
||||
if(this.region[0].includes('市')){
|
||||
this.region?.unshift(this.region[0])
|
||||
}
|
||||
}else {
|
||||
this.region=[]
|
||||
}
|
||||
},
|
||||
async clickHandler() {
|
||||
if( this.type != 'simple' ) {
|
||||
if(!this.form.businessNature){
|
||||
this.$toast('请选择业务性质')
|
||||
return
|
||||
}
|
||||
if(this.form.businessNature==2 && !this.form.areaCode){
|
||||
this.$toast('请选择所在地区')
|
||||
return
|
||||
}
|
||||
if(!this.form.vehicleLicenseFront) {
|
||||
this.$toast('行驶证主页未上传')
|
||||
return
|
||||
}
|
||||
if(!this.form.licensePlateNumber || !this.form.vehicleType ) {
|
||||
this.$toast('行驶证主页信息识别错误')
|
||||
return
|
||||
}
|
||||
if(!this.form.vehicleLicenseBack) {
|
||||
this.$toast('行驶证副页未上传')
|
||||
return
|
||||
}
|
||||
if(!this.form.totalWeight) {
|
||||
this.$toast('行驶证副页信息识别错误')
|
||||
return
|
||||
}
|
||||
if(!this.form.carNumber) {
|
||||
this.$toast('车辆信息识别错误')
|
||||
return
|
||||
}
|
||||
if( !this.form.peopleVehiclePhoto ) {
|
||||
this.$toast('人车合影未上传')
|
||||
return
|
||||
}
|
||||
if(this.form.hasInsurancePhoto == -1){
|
||||
this.$toast('请选择是否有救援责任险')
|
||||
return
|
||||
}
|
||||
if(this.form.hasInsurancePhoto==1 && this.form.carrierLiabilityInsurancePhoto?.length<=0){
|
||||
this.$toast('救援责任险/货物运输险未上传')
|
||||
return
|
||||
}
|
||||
if(this.form.wheelNum==-1){
|
||||
this.$toast('请选择随车小轮个数')
|
||||
return
|
||||
}
|
||||
}
|
||||
await driverInfoVerify( {
|
||||
verifyType: 3,
|
||||
type: this.type || 'full',
|
||||
...this.form,
|
||||
carrierLiabilityInsurancePhoto:this.form.carrierLiabilityInsurancePhoto?.length>0 ? this.form.carrierLiabilityInsurancePhoto?.join(',') : ''
|
||||
})
|
||||
this.$toast('操作成功')
|
||||
await this.getRegisterInfo({
|
||||
verifyType: 3
|
||||
})
|
||||
setTimeout(() => {
|
||||
this.goListPage()
|
||||
}, 100)
|
||||
},
|
||||
async getRegisterInfo(data) {
|
||||
let res = await infoVerifyProgress( data)
|
||||
localStorage.setItem('infoVerify', res?.data?.infoVerify?.code)
|
||||
localStorage.setItem('failReason', res?.data?.verifyRemark)
|
||||
localStorage.setItem('authIsSuccess', res?.data?.authIsSuccess)
|
||||
localStorage.setItem('name', res?.data?.name)
|
||||
},
|
||||
carrierHandler(data) { // 承运人责任险照片
|
||||
console.log("data",data)
|
||||
this.form.carrierLiabilityInsurancePhoto = data
|
||||
},
|
||||
insureHandle(val){
|
||||
this.form.hasInsurancePhoto=val
|
||||
},
|
||||
vehicleFrontInit() {
|
||||
this.form.licensePlateNumber = ''
|
||||
this.form.vinCode = ''
|
||||
this.form.vehicleType = ''
|
||||
this.form.vehicleLicenseModel = ''
|
||||
this.form.vehicleLicenseOwner = ''
|
||||
},
|
||||
async vehicleFrontHandler(data) { // 行驶证正面照,及ocr识别
|
||||
console.log("vehicleFrontHandler",data)
|
||||
await this.vehicleFrontInit()
|
||||
this.form.vehicleLicenseFront = data
|
||||
let vehicleInfo = await this.orcHandler(this.form.vehicleLicenseFront, 3)
|
||||
let tempInfo = vehicleInfo?.data?.data?.face?.data
|
||||
this.form.licensePlateNumber = tempInfo.licensePlateNumber
|
||||
this.form.vinCode = tempInfo.vinCode
|
||||
this.form.vehicleType = tempInfo.vehicleType
|
||||
this.form.vehicleLicenseModel = tempInfo.model
|
||||
this.form.vehicleLicenseOwner = tempInfo.owner
|
||||
this.form.vehicleLicenseAddress = tempInfo.address
|
||||
this.form.engineNumber = tempInfo.engineNumber
|
||||
},
|
||||
vehicleBackInit() {
|
||||
this.form.inspectionRecord = ''
|
||||
this.form.totalWeight = ''
|
||||
this.form.curbWeight = ''
|
||||
this.form.overallDimension = ''
|
||||
this.form.vehicleLicenseRecordNumber = ''
|
||||
this.form.vehicleLicenseRemarks = ''
|
||||
},
|
||||
async vehicleBackHandler(data) {
|
||||
await this.vehicleBackInit()
|
||||
this.form.vehicleLicenseBack = data
|
||||
let vehicleInfo = await this.orcHandler(this.form.vehicleLicenseBack, 3)
|
||||
let tempInfo = vehicleInfo?.data?.data?.back?.data
|
||||
this.form.inspectionRecord = tempInfo.inspectionRecord
|
||||
this.form.totalWeight = tempInfo.totalWeight
|
||||
this.form.curbWeight = tempInfo.curbWeight
|
||||
this.form.overallDimension = tempInfo.overallDimension
|
||||
this.form.vehicleLicenseRecordNumber = tempInfo.recordNumber
|
||||
this.form.vehicleLicenseRemarks = tempInfo.remarks
|
||||
},
|
||||
async carPhotoHandler(data) { // 车头照
|
||||
this.form.carNumber = ''
|
||||
this.form.vehicleFrontPhoto = data
|
||||
let carInfo = await this.orcHandler(this.form.vehicleFrontPhoto, 6)
|
||||
this.form.carNumber = carInfo?.data
|
||||
},
|
||||
personPhotoHandler(data){ // 人车合影
|
||||
this.form.peopleVehiclePhoto = data
|
||||
},
|
||||
async orcHandler(url, type) { // ocr 识别
|
||||
let res = await ocrRecognize( {
|
||||
ocrType: type,
|
||||
imageUrl: url
|
||||
});
|
||||
return res;
|
||||
},
|
||||
goListPage(){
|
||||
this.goPage('auditList',{
|
||||
token:localStorage.getItem('token')
|
||||
})
|
||||
},
|
||||
},
|
||||
computed: {
|
||||
regionText() {
|
||||
return this.region.length ? `${this.region[0]}/${this.region[1]}/${this.region[2]}` : '请选择所在地区';
|
||||
}
|
||||
},
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
@import "@/styles/common.scss";
|
||||
@import "@/styles/infoShow.scss";
|
||||
page {
|
||||
background: #F4F5F7;
|
||||
}
|
||||
.navBar{
|
||||
margin-bottom: 46px;
|
||||
}
|
||||
.content {
|
||||
padding-bottom: 86px;
|
||||
height: 100%;
|
||||
overflow-y: auto;
|
||||
-webkit-overflow-scrolling: touch; /* 启用iOS惯性滚动 */
|
||||
scroll-behavior: smooth; /* 平滑滚动(部分浏览器支持) */
|
||||
}
|
||||
.carInfo .title {
|
||||
width: 100% !important;
|
||||
}
|
||||
.form_item {
|
||||
line-height: 30px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
}
|
||||
.carInfo {
|
||||
padding-bottom: 86px;
|
||||
}
|
||||
.star{
|
||||
color: red;
|
||||
margin-right: 3px;
|
||||
}
|
||||
.titleWrap{
|
||||
margin-bottom: 10px;
|
||||
background-color: #FFFFFF;
|
||||
padding: 15px 12px 15px 17px;
|
||||
.natureWrap{
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
font-size: 13px !important;
|
||||
}
|
||||
.regionWrap{
|
||||
margin-top: 8px;
|
||||
}
|
||||
.flexWrap{
|
||||
display:flex;
|
||||
align-items: center;
|
||||
::v-deep .van-radio__icon{
|
||||
transform: scale(0.8);
|
||||
transform-origin: center; /* 保持中心点不变 */
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
@ -1,131 +0,0 @@
|
||||
<template>
|
||||
<div class="audit_item flex flex_between">
|
||||
<div class="item_left flex">
|
||||
<img class="main_img mr15" :src="url" />
|
||||
<div class="flex_fit">
|
||||
<div class="main_title active">{{title}}</div>
|
||||
<div class="main_tip">{{tip}}</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="pass_item" v-if="pass" @click="showDetail">
|
||||
<span>{{status}}</span>
|
||||
<img v-if="title != '审核信息'" class="arrow_icon" src="@/assets/authentication/arrow_right.png" />
|
||||
</div>
|
||||
<div class="uploadBtn" :class="{'activeBtn': currentClass }"
|
||||
v-else-if="!pass && buttonHide" @click="uploadHandler">{{buttonTitle}}</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: "auditItem",
|
||||
data() {
|
||||
return {
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
uploadHandler(){
|
||||
if( !this.pass && this.currentClass ) {
|
||||
this.$emit('upload')
|
||||
}
|
||||
},
|
||||
showDetail() {
|
||||
this.$emit('detail')
|
||||
}
|
||||
},
|
||||
props: {
|
||||
buttonHide: {
|
||||
type: Boolean,
|
||||
default: true
|
||||
},
|
||||
status: {
|
||||
type: String,
|
||||
default: '查看'
|
||||
},
|
||||
title: {
|
||||
type: String,
|
||||
default: ''
|
||||
},
|
||||
tip: {
|
||||
type: String,
|
||||
default: ''
|
||||
},
|
||||
url: {
|
||||
type: String,
|
||||
default: require('@/assets/authentication/aduit_icon1.png')
|
||||
},
|
||||
pass: {
|
||||
type: Boolean,
|
||||
default: false
|
||||
},
|
||||
currentClass: {
|
||||
type: Boolean,
|
||||
default: false
|
||||
},
|
||||
buttonTitle: {
|
||||
type: String,
|
||||
default: '上传'
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.audit_item {
|
||||
width: 100%;
|
||||
padding: 20px 0;
|
||||
box-sizing: border-box;
|
||||
position: relative;
|
||||
.item_left {
|
||||
flex: 1;
|
||||
.main_img {
|
||||
width: 36px;
|
||||
height: 36px;
|
||||
}
|
||||
.flex_fit {
|
||||
flex: 1;
|
||||
}
|
||||
.main_title {
|
||||
font-size: 17px;
|
||||
font-weight: bold;
|
||||
line-height: 24px;
|
||||
color: #33495E;
|
||||
}
|
||||
.active {
|
||||
color: #33495E;
|
||||
}
|
||||
.main_tip {
|
||||
font-size: 14px;
|
||||
font-weight: 500;
|
||||
color: #33495E;
|
||||
line-height: 20px;
|
||||
margin-right: 5px;
|
||||
}
|
||||
}
|
||||
.uploadBtn {
|
||||
width: 68px;
|
||||
height: 31px;
|
||||
background: rgba($color: #5B739D, $alpha: 0.24);
|
||||
color: #fff;
|
||||
font-size: 13px;
|
||||
border-radius: 4px;
|
||||
line-height: 31px;
|
||||
text-align: center;
|
||||
}
|
||||
.activeBtn {
|
||||
background: #3364B7;
|
||||
}
|
||||
.pass_item {
|
||||
font-size: 13px;
|
||||
color: rgba($color: #000, $alpha: 0.59);
|
||||
.arrow_icon {
|
||||
width: 8px;
|
||||
height: 12px;
|
||||
vertical-align: sub;
|
||||
margin-left: 5px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
</style>
|
||||
@ -1,56 +0,0 @@
|
||||
<template>
|
||||
<div class="button_fixed" :class="{ 'noBg': noBg }">
|
||||
<div class="button_wrap" @click="clickHandler">
|
||||
{{title}}
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: "fixedButton",
|
||||
props: {
|
||||
title: {
|
||||
type: String,
|
||||
default: '下一步'
|
||||
},
|
||||
noBg: {
|
||||
type: Boolean,
|
||||
default: false
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
clickHandler() {
|
||||
this.$emit('myClick')
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
|
||||
.button_fixed {
|
||||
width: 100%;
|
||||
background: #F4F5F7;
|
||||
padding: 20px 0;
|
||||
box-sizing: border-box;
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
z-index: 1111;
|
||||
.button_wrap {
|
||||
width: calc(100% - 80px);
|
||||
height: 46px;
|
||||
background: #354D93;
|
||||
border-radius: 23px;
|
||||
margin: 0 auto;
|
||||
line-height: 46px;
|
||||
color: #fff;
|
||||
font-size: 15px;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
.noBg {
|
||||
background: none
|
||||
}
|
||||
</style>
|
||||
@ -1,301 +0,0 @@
|
||||
<template>
|
||||
<div class="photo_wrap">
|
||||
<template v-if="title.indexOf('责任险/货物') !== -1">
|
||||
<div class="photo_title custom-title">
|
||||
<span><span class="star">*</span>{{title}}</span>
|
||||
<van-radio-group @change="radioChange" v-model="form.isInsure" class="flexWrap">
|
||||
<van-radio :name="0">否</van-radio>
|
||||
<van-radio :name="1">是</van-radio>
|
||||
</van-radio-group>
|
||||
</div>
|
||||
<div class="photoWrap" v-if="inSure == 1">
|
||||
<van-uploader :after-read="(file) => afterRead(file,'urlList')" class="customUploadMul" @click-upload="(event)=>clickUpload(event,'urlList')">
|
||||
<!-- -->
|
||||
<!-- :max-count="3" v-model="fileList" multiple :deletable="true" -->
|
||||
<template v-if="urlList.length > 0">
|
||||
<div v-for="(item, index) in urlList" :key="index" class="uploaded-item">
|
||||
<img class="photo_item" mode="widthFix" :src="item.replace(/http:\/\//g, 'https://')" />
|
||||
</div>
|
||||
</template>
|
||||
<template v-if="urlList.length < 3 && showFun()">
|
||||
<div class="tipWrap">
|
||||
<img class="photo_item" mode="widthFix" src="@/assets/authentication/carInfo_icon5.png"/>
|
||||
<img class="camera" v-if="showFun()" src="@/assets/authentication/camera.png" />
|
||||
<span class="picNum">({{ urlList.length }}/3)</span>
|
||||
</div>
|
||||
</template>
|
||||
</van-uploader>
|
||||
</div>
|
||||
</template>
|
||||
<template v-else>
|
||||
<div class="photo_title">
|
||||
<span class="star">*</span>
|
||||
<span>{{title}}</span>
|
||||
</div>
|
||||
<div class="photo_img flex flex_between">
|
||||
<van-uploader v-if="leftUrl" :after-read="(file) => afterRead(file,'leftImg')" class="customUpload" @click-upload="(event)=>clickUpload(event,'leftImg')">
|
||||
<template v-if="form.leftImg">
|
||||
<img class="photo_item" mode="widthFix" :src="form.leftImg.replace(/http:\/\//g, 'https://')" />
|
||||
</template>
|
||||
<template v-else>
|
||||
<img class="photo_item" mode="widthFix" :src="leftUrl" />
|
||||
<img class="camera" v-if="showFun()" src="@/assets/authentication/camera.png" />
|
||||
</template>
|
||||
</van-uploader>
|
||||
<van-uploader v-if="rightUrl" :after-read="(file) => afterRead(file,'rightImg')" class="customUpload" @click-upload="(event)=>clickUpload(event,'rightImg')">
|
||||
<template v-if="form.rightImg">
|
||||
<img class="photo_item" mode="widthFix" :src="form.rightImg.replace(/http:\/\//g, 'https://')" />
|
||||
</template>
|
||||
<template v-else>
|
||||
<img class="photo_item" mode="widthFix" :src="rightUrl" />
|
||||
<img class="camera" v-if="showFun()" src="@/assets/authentication/camera.png" />
|
||||
</template>
|
||||
</van-uploader>
|
||||
</div>
|
||||
</template>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import {uploadImage} from "@/api/mine";
|
||||
import { ImagePreview } from 'vant';
|
||||
|
||||
/*let baseUrl=''
|
||||
if (window.location.href.includes('www.sinoassist.com')) {
|
||||
baseUrl = 'https://www.sinoassist.com'
|
||||
} else {
|
||||
baseUrl = 'https://crm1.sino-assist.com'
|
||||
}*/
|
||||
export default {
|
||||
name: "photoItem",
|
||||
props: {
|
||||
title: {
|
||||
type: String,
|
||||
},
|
||||
leftUrl: {
|
||||
type: String,
|
||||
default: require('@/assets/authentication/person_header.png')
|
||||
},
|
||||
rightUrl: {
|
||||
type: String,
|
||||
},
|
||||
show: {
|
||||
|
||||
},
|
||||
urlList: {
|
||||
type: Array,
|
||||
default: ()=>[]
|
||||
},
|
||||
inSure:{
|
||||
type:Number,
|
||||
}
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
form: {
|
||||
leftImg: '',
|
||||
rightImg: '',
|
||||
urlList:[],
|
||||
isInsure:'',
|
||||
},
|
||||
options:[{value:0,name:'否'},{value:1,name:'是'}],
|
||||
}
|
||||
},
|
||||
mounted() {
|
||||
setTimeout(()=>{
|
||||
this.form.isInsure=this.inSure
|
||||
// this.form.isInsure=1
|
||||
},1500)
|
||||
},
|
||||
methods: {
|
||||
clickUpload(event,type){
|
||||
if (!this.showFun()) {
|
||||
let url=[]
|
||||
if (type=='leftImg'){
|
||||
url=[this.leftUrl?.replace(/http:\/\//g, 'https://')]
|
||||
}else if(type=='rightImg'){
|
||||
url= [this.rightUrl?.replace(/http:\/\//g, 'https://')]
|
||||
}else{
|
||||
url=this.urlList?.map(item => item?.replace(/http:\/\//g, 'https://'))
|
||||
}
|
||||
ImagePreview({
|
||||
images: url,
|
||||
closeable: true,
|
||||
showIndex:false
|
||||
});
|
||||
console.log(url)
|
||||
event.stopPropagation(); // 阻止事件冒泡
|
||||
event.preventDefault(); // 阻止默认上传行为(如果支持)
|
||||
return false; // 阻止后续逻辑
|
||||
}
|
||||
// 默认行为(允许上传)
|
||||
},
|
||||
async afterRead(file,type){ // 支持多文件上传
|
||||
const formData = new FormData();
|
||||
formData.append("file" , file.file);
|
||||
let res = await uploadImage(formData)
|
||||
if (type=='urlList'){
|
||||
console.log("this.urlList",this.urlList?.length)
|
||||
if(this.urlList?.length==3){
|
||||
const updatedList = [...this.urlList];
|
||||
updatedList[2] = res?.data?.replace(/http:\/\//g, 'https://');
|
||||
this.form.urlList = updatedList;
|
||||
}else{
|
||||
this.form.urlList=[res?.data?.replace(/http:\/\//g, 'https://'),...this.urlList]
|
||||
}
|
||||
const uniqueUrls = this.form.urlList?.reduce((acc, url) => {
|
||||
if (!acc.includes(url)) {
|
||||
acc.push(url);
|
||||
}
|
||||
return acc;
|
||||
}, []);
|
||||
this.$emit(type, uniqueUrls)
|
||||
}else{
|
||||
this.form[type] = res.data
|
||||
this.$emit(type, this.form[type])
|
||||
}
|
||||
},
|
||||
radioChange(val){
|
||||
this.$emit('insureHandle',val)
|
||||
if(this.form.isInsure==0){
|
||||
this.form.urlList=[]
|
||||
this.$emit('urlList', this.form.urlList)
|
||||
}
|
||||
},
|
||||
showFun() {
|
||||
if( localStorage.getItem('infoVerify') == 8 || localStorage.getItem('infoVerify') == 12 ) {
|
||||
return false
|
||||
}
|
||||
return true
|
||||
},
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
@import "@/styles/common.scss";
|
||||
.customUpload{
|
||||
width: calc(50% - 3px);
|
||||
::v-deep .van-uploader__input-wrapper{
|
||||
width: 100% !important;
|
||||
}
|
||||
}
|
||||
.customUploadMul{
|
||||
width: 100%;
|
||||
::v-deep .van-uploader__input-wrapper{
|
||||
width: 100% !important;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
/* ::v-deep .van-uploader__preview{
|
||||
width: 100% !important;
|
||||
}*/
|
||||
}
|
||||
.uploaded-item,.tipWrap{
|
||||
width: calc(50% - 3px);
|
||||
}
|
||||
::v-deep .van-uploader__preview{
|
||||
width: calc(50% - 3px);
|
||||
margin: 0 0 8px 0;
|
||||
.van-uploader__preview-image{
|
||||
width: 100% !important;
|
||||
}
|
||||
}
|
||||
::v-deep .van-uploader__preview:nth-child(odd){
|
||||
margin-right: 5px !important;
|
||||
}
|
||||
}
|
||||
.photo_wrap {
|
||||
padding: 20px 12px 22px 17px;
|
||||
background: #FFFFFF;
|
||||
margin-bottom: 10px;
|
||||
.photo_title {
|
||||
font-size: 14px;
|
||||
padding-left: 10px;
|
||||
margin-bottom: 5px;
|
||||
.star {
|
||||
color: red;
|
||||
margin-right: 3px;
|
||||
}
|
||||
}
|
||||
.custom-title{
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
.flexWrap{
|
||||
display:flex;
|
||||
::v-deep .van-radio__icon{
|
||||
//width: 24px;
|
||||
transform: scale(0.8);
|
||||
transform-origin: center; /* 保持中心点不变 */
|
||||
}
|
||||
}
|
||||
.labelWrap{
|
||||
margin-left: 10px;
|
||||
}
|
||||
.center{
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
}
|
||||
.photoWrap{
|
||||
width: 100%;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
.tipWrap{
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
.picNum{
|
||||
position: absolute;
|
||||
z-index: 111;
|
||||
color: #206FFF ;
|
||||
top: 3px;
|
||||
right: 3px;
|
||||
font-size: 11px;
|
||||
}
|
||||
div:nth-child(2n+1) {
|
||||
margin-right: 4px;
|
||||
}
|
||||
div {
|
||||
//width: calc(50% - 3px);
|
||||
position: relative;
|
||||
.photo_item {
|
||||
width: 100%;
|
||||
height: 95px !important;
|
||||
}
|
||||
.camera {
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
width: 35px;
|
||||
height: 34px;
|
||||
}
|
||||
}
|
||||
}
|
||||
.photo_img {
|
||||
width: 100%;
|
||||
div {
|
||||
width: calc(50% - 3px);
|
||||
position: relative;
|
||||
.photo_item {
|
||||
width: 100%;
|
||||
height: 95px !important;
|
||||
}
|
||||
.camera {
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
width: 35px;
|
||||
height: 34px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
<style>
|
||||
.van-image-preview{
|
||||
z-index: 9999999999 !important;
|
||||
}
|
||||
</style>
|
||||
@ -1,195 +0,0 @@
|
||||
<template>
|
||||
<div class="privacy" v-if="showPrivacy">
|
||||
<div class="content">
|
||||
<div class="title">隐私保护指引</div>
|
||||
<div class="pop_con">
|
||||
在使用当前小程序服务之前,请仔细阅读<text class="pop_protocol" @click="openPrivacyContract">{{privacyContractName}}</text>如你同意{{privacyContractName}},请点击“同意”开始使用。
|
||||
</div>
|
||||
<div class="pop_button_wrap" :style="{'height': 50 + 'px', 'lineHeight': 50 + 'px'}">
|
||||
<div class="border_right" @click="exitMiniProgram">
|
||||
拒绝
|
||||
</div>
|
||||
<button id="agree-btn" plain="true" class="pop_confirm" open-type="agreePrivacyAuthorization" @agreeprivacyauthorization="handleAgreePrivacyAuthorization">同意</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { myMixins } from '@/utils/myMixins.js';
|
||||
import twoBtn from "@/components/twoBtn";
|
||||
export default {
|
||||
name: "protocolDialog",
|
||||
data() {
|
||||
return {
|
||||
privacyContractName: '',
|
||||
showPrivacy: false
|
||||
}
|
||||
},
|
||||
components: {
|
||||
twoBtn
|
||||
},
|
||||
mixins: [myMixins],
|
||||
created() {
|
||||
if (wx.getPrivacySetting) {
|
||||
const version = wx.getAppBaseInfo().SDKVersion
|
||||
if (this.compareVersion(version, '2.32.3') >= 0) {
|
||||
wx.getPrivacySetting({
|
||||
success: (res) => {
|
||||
if (res.needAuthorization) {
|
||||
this.showPrivacy = true;
|
||||
this.privacyContractName = res.privacyContractName
|
||||
} else{
|
||||
this.$emit("agree")
|
||||
this.showPrivacy = false;
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
||||
} else {
|
||||
// 低版本基础库不支持 wx.getPrivacySetting 接口,隐私接口可以直接调用
|
||||
this.$emit("agree")
|
||||
this.showPrivacy = false;
|
||||
}
|
||||
},
|
||||
/**
|
||||
* 组件的生命周期
|
||||
*/
|
||||
pageLifetimes: {
|
||||
show() {
|
||||
const _ = this
|
||||
const version = wx.getAppBaseInfo().SDKVersion
|
||||
if (_.compareVersion(version, '2.32.3') >= 0) {
|
||||
wx.getPrivacySetting({
|
||||
success(res) {
|
||||
console.log('隐私设置:', res)
|
||||
if (res.errMsg == "getPrivacySetting:ok") {
|
||||
this.privacyContractName = res.privacyContractName;
|
||||
this.showPrivacy = res.needAuthorization;
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
},
|
||||
/**
|
||||
* 组件的方法列表
|
||||
*/
|
||||
methods: {
|
||||
// 打开隐私协议页面
|
||||
openPrivacyContract() {
|
||||
wx.openPrivacyContract({
|
||||
fail: () => {
|
||||
wx.showToast({
|
||||
title: '遇到错误',
|
||||
icon: 'error'
|
||||
})
|
||||
}
|
||||
})
|
||||
},
|
||||
// 拒绝隐私协议
|
||||
exitMiniProgram() {
|
||||
// 直接退出小程序
|
||||
wx.exitMiniProgram()
|
||||
this.showPrivacy = false
|
||||
},
|
||||
// 同意隐私协议
|
||||
handleAgreePrivacyAuthorization() {
|
||||
console.log('我点击同意了')
|
||||
this.showPrivacy = false
|
||||
this.$emit('agree')
|
||||
},
|
||||
// 比较版本号
|
||||
compareVersion(v1, v2) {
|
||||
v1 = v1.split('.')
|
||||
v2 = v2.split('.')
|
||||
const len = Math.max(v1.length, v2.length)
|
||||
|
||||
while (v1.length < len) {
|
||||
v1.push('0')
|
||||
}
|
||||
while (v2.length < len) {
|
||||
v2.push('0')
|
||||
}
|
||||
|
||||
for (let i = 0; i < len; i++) {
|
||||
const num1 = parseInt(v1[i])
|
||||
const num2 = parseInt(v2[i])
|
||||
|
||||
if (num1 > num2) {
|
||||
return 1
|
||||
} else if (num1 < num2) {
|
||||
return -1
|
||||
}
|
||||
}
|
||||
|
||||
return 0
|
||||
}
|
||||
},
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
.privacy {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
background: rgba(0, 0, 0, .5);
|
||||
z-index: 9999999;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
.content {
|
||||
width: 632rpx;
|
||||
padding-top: 48rpx !important;
|
||||
box-sizing: border-box;
|
||||
background: #fff;
|
||||
border-radius: 16rpx;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
.content .title {
|
||||
font-size: 16px;
|
||||
color: #000;
|
||||
margin-bottom: 10px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/*登录弹框样式*/
|
||||
.pop_con {
|
||||
color: #203152;
|
||||
font-size: 14px;
|
||||
margin-bottom: 30px;
|
||||
/*text-align: left;*/
|
||||
padding: 0 20px;
|
||||
line-height: 26px;
|
||||
text-align: center;
|
||||
}
|
||||
.pop_protocol {
|
||||
color: #1D64D2;
|
||||
word-break: keep-all;
|
||||
}
|
||||
|
||||
.pop_button_wrap {
|
||||
display: flex;
|
||||
border-top: 1rpx solid rgba($color: #979797, $alpha: 0.34);
|
||||
div {
|
||||
width: calc(50% - 1rpx);
|
||||
text-align: center;
|
||||
font-size: 14px;
|
||||
color: rgba(0,0,0,0.73);
|
||||
}
|
||||
.border_right {
|
||||
border-right: 1rpx solid rgba($color: #979797, $alpha: 0.34);
|
||||
}
|
||||
.pop_confirm {
|
||||
color: #1D64D2;
|
||||
border: none;
|
||||
background-color: transparent;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
@ -1,135 +0,0 @@
|
||||
<template>
|
||||
<div class="dialog_wrap">
|
||||
<van-popup ref="success" v-model="poupShow">
|
||||
<div class="pop_wrap">
|
||||
<img class="tip_bg" src="@/assets/authentication/tipBg.png" />
|
||||
<div class="pop_title">
|
||||
恭喜您!
|
||||
</div>
|
||||
<div class="pop_content">
|
||||
<div>
|
||||
您的信息已经认证完成,
|
||||
</div>
|
||||
<div>
|
||||
请开启您的接单赚钱之旅!
|
||||
</div>
|
||||
<div>
|
||||
关注服务号,新订单及时提醒,接单更快!
|
||||
</div>
|
||||
</div>
|
||||
<div class="tip_button_wrap">
|
||||
<div class="continue" @click="focusHandler">
|
||||
关注
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</van-popup>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { successPopup,getMyInfo } from '@/api/authentication'
|
||||
import { myMixins } from '@/utils/myMixins.js'
|
||||
export default {
|
||||
name: "successDialog",
|
||||
data() {
|
||||
return {
|
||||
poupShow:false,
|
||||
}
|
||||
},
|
||||
mixins: [ myMixins ],
|
||||
components: {},
|
||||
methods: {
|
||||
async getMineInfo() { // 获取用户信息
|
||||
let myInfo = await getMyInfo()
|
||||
if(!( myInfo.code != 200 || !myInfo.data.phone)) {
|
||||
localStorage.setItem('phone', myInfo?.data?.phone)
|
||||
localStorage.setItem('infoVerify', myInfo?.data?.infoVerify?.code || 0) // 认证进度
|
||||
localStorage.setItem('authIsSuccess', myInfo?.data?.authIsSuccess)
|
||||
localStorage.setItem('name', myInfo?.data?.name)
|
||||
localStorage.setItem('attentionState', myInfo?.data?.attentionState)
|
||||
}
|
||||
},
|
||||
openHandler() {
|
||||
this.poupShow=true
|
||||
},
|
||||
async focusHandler() {
|
||||
let focusFlag = localStorage.getItem('attentionState'); // 是否关注过公众号的标志
|
||||
if( focusFlag ) {
|
||||
await this.continueHandler()
|
||||
} else {//去关注公众号页面
|
||||
this.goPage('https://mp.weixin.qq.com/s/VNy_ppgDTLtwTtdRV_vPgA')
|
||||
}
|
||||
},
|
||||
async continueHandler() {
|
||||
await successPopup();
|
||||
this.poupShow=false
|
||||
await this.getMineInfo()
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<style lang="scss" scoped>
|
||||
@import "@/styles/common.scss";
|
||||
// 弹框样式
|
||||
.pop_wrap {
|
||||
width: 304px;
|
||||
height: 267px;
|
||||
position: relative;
|
||||
.tip_bg {
|
||||
position: absolute;
|
||||
width: 304px;
|
||||
height: 267px;
|
||||
top: 0;
|
||||
left: 0;
|
||||
z-index: 100;
|
||||
}
|
||||
.pop_title {
|
||||
font-size: 19px;
|
||||
font-weight: bold;
|
||||
color: #3364B7;
|
||||
position: absolute;
|
||||
width: 304px;
|
||||
text-align: center;
|
||||
top: 100px;
|
||||
z-index: 101;
|
||||
}
|
||||
.pop_content {
|
||||
width: 304px;
|
||||
position: absolute;
|
||||
top: 130px;
|
||||
z-index: 101;
|
||||
font-size: 14px;
|
||||
color: #4C5361;
|
||||
div {
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
line-height: 20px;
|
||||
}
|
||||
}
|
||||
.tip_button_wrap {
|
||||
position: absolute;
|
||||
z-index: 101;
|
||||
width: 275px;
|
||||
margin: 0 auto;
|
||||
bottom: 14px;
|
||||
display: flex;
|
||||
border-top: 1px solid #F1F2F5;
|
||||
left: 15px;
|
||||
height: 45px;
|
||||
div {
|
||||
font-size: 13px;
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
line-height: 45px;
|
||||
}
|
||||
.close {
|
||||
color: #999B9F;
|
||||
border-right: 1px solid #F1F2F5;
|
||||
}
|
||||
.continue {
|
||||
color: #3364B7;
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
@ -1,44 +0,0 @@
|
||||
<template>
|
||||
<div class="tip_content" :style="styleCls">
|
||||
<img class="icon_tip" mode="widthFix" src="@/assets/authentication/icon_tip.png" />
|
||||
<span>{{title}}</span>
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
export default {
|
||||
name: "tipBar",
|
||||
props: {
|
||||
title: {
|
||||
type: String,
|
||||
default: ''
|
||||
},
|
||||
styleCls: {
|
||||
type: String,
|
||||
default: ''
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.tip_content{
|
||||
width: 100%;
|
||||
box-sizing: border-box;
|
||||
padding: 10px 22px;
|
||||
line-height: 15px;
|
||||
background: #FFF0EE;
|
||||
.icon_tip{
|
||||
width: 13px;
|
||||
height: 13px;
|
||||
margin-right: 6px;
|
||||
position: relative;
|
||||
margin-bottom: -3px;
|
||||
}
|
||||
span{
|
||||
font-size: 11px;
|
||||
font-family: PingFangSC-Medium, PingFang SC;
|
||||
font-weight: 500;
|
||||
color: #FF6337;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
@ -1,283 +0,0 @@
|
||||
<template>
|
||||
<div class="content">
|
||||
<div class="navBar">
|
||||
<van-nav-bar
|
||||
title="实名认证"
|
||||
left-arrow
|
||||
left-arrow-color="#FFFFFF"
|
||||
:border="false"
|
||||
:fixed="true"
|
||||
:safe-area-inset-top="true"
|
||||
@click-left="goListPage"
|
||||
/>
|
||||
</div>
|
||||
<tip-bar :title="'应国家政策要求:从事货运行业的司机用户,身份证照片、驾驶证信息、行驶证信息、人车合影及承运资质信息必须进行实名认证。'"></tip-bar>
|
||||
<photo-item title="个人头像" v-if="type != 'simple'" :show="show" :left-url="form.icon ||headerUrl" @leftImg="headerHandler"></photo-item>
|
||||
<photo-item title="身份证正反面" :show="show" :left-url="form.identityCardFront || idFront" :right-url="form.identityCardContrary || idBack"
|
||||
@leftImg="idFrontHandler" @rightImg="idBackHandler" ></photo-item>
|
||||
<div class="carInfo">
|
||||
<div class="left_wrap title">
|
||||
<span class="mar_left">注册手机号</span>
|
||||
<div>
|
||||
<span class="star">*</span>
|
||||
<span>本人姓名</span>
|
||||
</div>
|
||||
<div>
|
||||
<span class="star">*</span>
|
||||
<span>本人性别</span>
|
||||
</div>
|
||||
<div>
|
||||
<span class="star">*</span>
|
||||
<span>本人身份证号</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="right_wrap">
|
||||
<span class="phone">{{form.phone}}</span>
|
||||
<input type="text" disabled placeholder="请输入持卡人姓名" v-model="form.name">
|
||||
<input type="text" disabled placeholder="请输入持卡人性别" v-model="form.sex">
|
||||
<input type="text" placeholder="请输入持卡人身份证号" v-model="form.identityCardNumber">
|
||||
</div>
|
||||
</div>
|
||||
<fixed-button title="实名认证" @myClick="goRealName" v-if="showFun() && !esignFlag"></fixed-button>
|
||||
<fixed-button @myClick="clickHandler" v-if="showFun() && esignFlag"></fixed-button>
|
||||
<!-- <protocol-dialog></protocol-dialog>-->
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
// import protocolDialog from "./component/protocolDialog";
|
||||
import fixedButton from "./component/fixedButton";
|
||||
import photoItem from "./component/photoItem";
|
||||
import tipBar from "./component/tipBar";
|
||||
import {
|
||||
ocrRecognize,
|
||||
driverInfoVerify,
|
||||
driverInfoVerifyDetail,
|
||||
driverRealName,
|
||||
infoVerifyProgress
|
||||
} from '@/api/authentication'
|
||||
import { leftCopy } from '@/utils/common.js'
|
||||
import { myMixins } from '@/utils/myMixins.js'
|
||||
// import {version} from "@/utils/baseUrl"
|
||||
export default {
|
||||
name: "personAudit",
|
||||
components: {
|
||||
tipBar,
|
||||
photoItem,
|
||||
fixedButton,
|
||||
// protocolDialog
|
||||
},
|
||||
mixins: [myMixins],
|
||||
data() {
|
||||
return {
|
||||
form: {
|
||||
phone: localStorage.getItem('phone'),
|
||||
name: '',
|
||||
sex: '',
|
||||
identityCardNumber: '',
|
||||
icon: '',
|
||||
identityCardFront: '',
|
||||
identityCardContrary: '',
|
||||
idCardAuthority: '', // 发证机关
|
||||
idCardValidStartTime: '', // 有效期开始
|
||||
idCardValidEndTime: '', // 有效期结束
|
||||
},
|
||||
validPeriod: '', // 有效期
|
||||
headerUrl: require('@/assets/authentication/person_header.png'),
|
||||
idFront: require('@/assets/authentication/person_idcard1.png'),
|
||||
idBack: require('@/assets/authentication/person_idcard2.png'),
|
||||
show: undefined,
|
||||
type: 'full',
|
||||
esignFlag: false,
|
||||
}
|
||||
},
|
||||
async mounted() {
|
||||
// 禁止双击放大
|
||||
let lastTouchEnd = 0;
|
||||
document.addEventListener('touchend', (event) => {
|
||||
const now = Date.now();
|
||||
if (now - lastTouchEnd <= 300) {
|
||||
event.preventDefault(); // 阻止双击放大
|
||||
}
|
||||
lastTouchEnd = now;
|
||||
}, { passive: false });
|
||||
|
||||
this.show = true
|
||||
if( this.show ) {
|
||||
await this.getDetail()
|
||||
}
|
||||
const urlParams = new URLSearchParams(window.location.search);
|
||||
console.log('window.location',window.location)
|
||||
// console.log("urlParams",urlParams)
|
||||
console.log("decodeURIComponent( window.location.href)",decodeURIComponent( window.location.href))
|
||||
this.esignFlag = urlParams.get('esignFlag') || localStorage.getItem("esignFlag")
|
||||
if(window.location.search){
|
||||
console.log('有参数')
|
||||
this.esignFlag = localStorage.getItem("esignFlag") || urlParams.get('esignFlag')
|
||||
}else {
|
||||
console.log('无参数,说明认证成功')
|
||||
this.esignFlag =true
|
||||
}
|
||||
localStorage.setItem("esignFlag",this.esignFlag )
|
||||
console.log("this.esignFlag ",this.esignFlag )
|
||||
},
|
||||
methods: {
|
||||
async getDetail() {
|
||||
let res = await driverInfoVerifyDetail( {
|
||||
verifyType: 1
|
||||
})
|
||||
leftCopy(this.form, {...res?.data?.personalInfoData})
|
||||
let personAuditInfo=localStorage.getItem("personAuditInfo") ? JSON.parse(localStorage.getItem("personAuditInfo")) : ''
|
||||
if(!personAuditInfo){
|
||||
return
|
||||
}
|
||||
console.log('personAuditInfo.form',personAuditInfo.form)
|
||||
this.form={...personAuditInfo.form}
|
||||
},
|
||||
async headerHandler(data) {
|
||||
this.form.icon = data
|
||||
},
|
||||
async idFrontHandler(data) { // 身份证正面
|
||||
this.form.identityCardFront = data
|
||||
await this.idOrcHandler(this.form.identityCardFront)
|
||||
},
|
||||
async idBackHandler(data) {
|
||||
this.form.identityCardContrary = data
|
||||
await this.idBackOrcHandler(this.form.identityCardContrary)
|
||||
},
|
||||
initForm() {
|
||||
this.form.name = ''
|
||||
this.form.sex = ''
|
||||
this.form.identityCardNumber = ''
|
||||
},
|
||||
backInit() {
|
||||
this.validPeriod = ''
|
||||
},
|
||||
async idBackOrcHandler(url) {
|
||||
let res = await ocrRecognize( {
|
||||
ocrType: 1,
|
||||
imageUrl: url
|
||||
});
|
||||
let idInfo = res?.data?.data?.back?.data
|
||||
let validPeriod = idInfo?.validPeriod; // 有效期
|
||||
this.form.idCardAuthority = idInfo?.issueAuthority
|
||||
let dateArr = validPeriod.split('-');
|
||||
let startDate = dateArr[0];
|
||||
let endDate = dateArr[1];
|
||||
this.form.idCardValidStartTime = startDate.replace(/\./g, '/') + ' 00:00:00';
|
||||
if( endDate.indexOf('长期') != -1 ) {
|
||||
this.form.idCardValidEndTime = '2099/01/01 00:00:00'
|
||||
} else {
|
||||
this.form.idCardValidEndTime = endDate.replace(/\./g, '/') + ' 00:00:00';
|
||||
}
|
||||
},
|
||||
async idOrcHandler(url) {
|
||||
await this.initForm()
|
||||
let res = await ocrRecognize({
|
||||
ocrType: 1,
|
||||
imageUrl: url
|
||||
});
|
||||
let idInfo = res?.data?.data?.face?.data
|
||||
this.form.name = idInfo?.name
|
||||
this.form.sex = idInfo?.sex
|
||||
this.form.identityCardNumber = idInfo?.idNumber
|
||||
},
|
||||
async goRealName() {
|
||||
if (!this.form.identityCardContrary) {
|
||||
this.$toast('身份证反面照片未上传')
|
||||
return
|
||||
}
|
||||
if( !this.form.idCardValidStartTime ) {
|
||||
this.$toast('身份证反面识别错误')
|
||||
return
|
||||
}
|
||||
if (!this.form.identityCardFront) {
|
||||
this.$toast('身份证正面照片未上传')
|
||||
return
|
||||
}
|
||||
const urlParams = new URLSearchParams(window.location.search);
|
||||
let token = urlParams.get('token');
|
||||
if(this.form.name && this.form.identityCardNumber) {
|
||||
let res = await driverRealName( {
|
||||
phone: this.form.phone,
|
||||
name: this.form.name,
|
||||
idNo: this.form.identityCardNumber,
|
||||
token:token,
|
||||
jump:1
|
||||
})
|
||||
let info = res?.data
|
||||
console.log('info', info)
|
||||
localStorage.setItem("personAuditInfo",JSON.stringify({form:this.form}))
|
||||
window.location.href=info?.shortLink
|
||||
} else {
|
||||
this.$toast('身份证信息识别错误')
|
||||
}
|
||||
},
|
||||
async clickHandler() {
|
||||
if (!this.form.identityCardContrary) {
|
||||
this.$toast('身份证反面照片未上传')
|
||||
return
|
||||
}
|
||||
if( !this.form.idCardValidStartTime ) {
|
||||
this.$toast('身份证反面识别错误')
|
||||
return
|
||||
}
|
||||
if (!this.form.identityCardFront) {
|
||||
this.$toast('身份证正面照片未上传')
|
||||
return
|
||||
}
|
||||
if(this.form.name && this.form.identityCardNumber) {
|
||||
await driverInfoVerify( {
|
||||
verifyType: 1,
|
||||
type: this.type || 'full',
|
||||
...this.form,
|
||||
})
|
||||
this.$toast('操作成功')
|
||||
await this.getRegisterInfo({
|
||||
verifyType: 1
|
||||
})
|
||||
localStorage.setItem("personAuditInfo",'')
|
||||
setTimeout(() => {
|
||||
this.goListPage()
|
||||
}, 100)
|
||||
} else {
|
||||
this.$toast('身份证信息识别错误')
|
||||
}
|
||||
},
|
||||
goListPage(){
|
||||
this.goPage('auditList',{
|
||||
token:localStorage.getItem('token')
|
||||
})
|
||||
},
|
||||
async getRegisterInfo(data) {
|
||||
let res = await infoVerifyProgress( data)
|
||||
localStorage.setItem('infoVerify', res?.data?.infoVerify?.code)
|
||||
localStorage.setItem('failReason', res?.data?.verifyRemark)
|
||||
localStorage.setItem('authIsSuccess', res?.data?.authIsSuccess)
|
||||
localStorage.setItem('name', res?.data?.name)
|
||||
},
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
@import "@/styles/common.scss";
|
||||
@import "@/styles/infoShow.scss";
|
||||
page {
|
||||
background: #F4F5F7;
|
||||
}
|
||||
.navBar{
|
||||
margin-bottom: 46px;
|
||||
}
|
||||
.empty{
|
||||
width: 100%;
|
||||
height:151px;
|
||||
}
|
||||
.content {
|
||||
padding-bottom: 86px;
|
||||
height: 90%;
|
||||
overflow-y: auto;
|
||||
-webkit-overflow-scrolling: touch; /* 启用iOS惯性滚动 */
|
||||
scroll-behavior: smooth; /* 平滑滚动(部分浏览器支持) */
|
||||
}
|
||||
</style>
|
||||
@ -268,6 +268,7 @@ export default {
|
||||
if( this.form.vehicleRearPhoto ) {
|
||||
this.vehicleRearPhotoList = [{url: this.form.vehicleRearPhoto}]
|
||||
}
|
||||
// console.log("carSourceFormInfo",carSourceFormInfo)
|
||||
if(carSourceFormInfo.otherImgSrc0){
|
||||
this.otherImgSrc.push(carSourceFormInfo.otherImgSrc0)
|
||||
this.otherImgSrcList.push({url:carSourceFormInfo.otherImgSrc0})
|
||||
@ -292,6 +293,7 @@ export default {
|
||||
this.otherImgSrc.push(carSourceFormInfo.otherImgSrc5)
|
||||
this.otherImgSrcList.push({url:carSourceFormInfo.otherImgSrc5})
|
||||
}
|
||||
// console.log("--",this.vehicleLicensePhotoList,this.vehicleAnglePhotoList,this.otherImgSrcList)
|
||||
},
|
||||
methods:{
|
||||
validatePrice(value) {
|
||||
@ -478,6 +480,21 @@ export default {
|
||||
otherPhoto:this.otherImgSrc?.join(',')
|
||||
})
|
||||
this.clearStorageFormInfo()
|
||||
if(res.code == 200 && !res.msg){
|
||||
this.$toast('发布成功')
|
||||
if(this.isWebFunc()){
|
||||
setTimeout(()=>{
|
||||
this.closeParentDialog()
|
||||
},1000)
|
||||
}else{
|
||||
setTimeout(()=>{
|
||||
this.$router.push({ name: "mineRelease"})
|
||||
sessionStorage.setItem('mineActiveTab',String(1) )
|
||||
},1000)
|
||||
}
|
||||
}else{
|
||||
this.$toast(res.msg)
|
||||
}
|
||||
console.log("车源发布publishCarInfo",res)
|
||||
} catch (e){
|
||||
console.log('e',e)
|
||||
@ -588,6 +605,7 @@ export default {
|
||||
}
|
||||
.navBar{
|
||||
margin-bottom: 46px;
|
||||
|
||||
}
|
||||
.noContentAudit{
|
||||
height: calc(100% - 42px);
|
||||
|
||||
@ -8,11 +8,10 @@
|
||||
:preview-full-image="false"
|
||||
:max-count="multiple ? 6 : 1"
|
||||
@click-preview="handlePreviewClick"
|
||||
:deletable="showDel"
|
||||
>
|
||||
<div class="upload">
|
||||
<img class="icon" src="@/assets/secondHandCar/upload.png"/>
|
||||
<span class="text" v-show="!['交易合同','回收证明'].includes(displayText)">{{ displayText }}</span>
|
||||
<span class="text">{{ displayText }}</span>
|
||||
</div>
|
||||
<template v-if="text.includes('其他照片')" #preview-cover="{ index }">
|
||||
<div class="preview-cover van-ellipsis">{{ index + 1 }}/6</div>
|
||||
@ -37,10 +36,6 @@ export default {
|
||||
files: {
|
||||
type: Array,
|
||||
default: () => []
|
||||
},
|
||||
showDel:{
|
||||
type: Boolean,
|
||||
default: true
|
||||
}
|
||||
},
|
||||
data() {
|
||||
|
||||
@ -16,6 +16,7 @@
|
||||
:preview-src-list="[item]"
|
||||
class="swipeImg"
|
||||
/>
|
||||
<!-- <img v-if="item" class="swipeImg" :src="item" />-->
|
||||
</el-carousel-item>
|
||||
</el-carousel>
|
||||
<van-swipe v-else @change="onChange" :autoplay="3000">
|
||||
@ -33,9 +34,8 @@
|
||||
<span>{{ detailInfo.boardType?.label }}</span>
|
||||
<span>{{ detailInfo.licenseType?.label }}</span>
|
||||
<span>{{detailInfo.brandModel?.match(/^[\u4e00-\u9fa5]+/)?.[0]?.replace(/牌$/, '')}}</span>
|
||||
<span>{{ detailInfo.emissionStandard?.label }}</span>
|
||||
<span>{{ detailInfo.underpanBrand }}</span>
|
||||
<span>{{ formatToWan(detailInfo.mileage) }}公里</span>
|
||||
<span>{{ detailInfo.emissionStandard?.label }}</span>
|
||||
</div>
|
||||
<div class="time">
|
||||
<span>{{ detailInfo.createTime?.substring(0,10) }}</span><span>{{ detailInfo.areaName }}</span><span>发布</span>
|
||||
@ -48,10 +48,6 @@
|
||||
</div>
|
||||
<div class="viewNum">{{detailInfo.attentionCount}}人想要<span>{{detailInfo.browseCount}}人浏览</span></div>
|
||||
</div>
|
||||
<div class="price commonColor">
|
||||
车源ID: {{ detailInfo.code }}
|
||||
<img class="copyIcon" @click="copyHandler(detailInfo.code)" src="@/assets/copy.png" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="detailInfoWrap wrapCommon">
|
||||
<div>
|
||||
@ -182,16 +178,6 @@ export default {
|
||||
this.getDuration(1)
|
||||
},
|
||||
methods:{
|
||||
copyHandler(copyText){
|
||||
let inputNode = document.createElement('input') // 创建input
|
||||
inputNode.value = copyText // 赋值给 input 值
|
||||
document.body.appendChild(inputNode) // 插入进去
|
||||
inputNode.select() // 选择对象
|
||||
document.execCommand('Copy') // 原生调用执行浏览器复制命令
|
||||
inputNode.className = 'oInput'
|
||||
inputNode.style.display = 'none' // 隐藏
|
||||
this.$toast('复制成功')
|
||||
},
|
||||
showImagePreview(index) {
|
||||
ImagePreview({
|
||||
images: this.imgSrcList.map(item => item),
|
||||
@ -288,7 +274,7 @@ export default {
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
.titleWrap{
|
||||
height: 120px;
|
||||
height: 108px;
|
||||
padding: 18px 0 15px 21px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
@ -451,14 +437,4 @@ export default {
|
||||
object-fit: cover;
|
||||
object-position: center;
|
||||
}
|
||||
.copyIcon {
|
||||
width: 35px;
|
||||
height: 15px;
|
||||
margin-left: 10px
|
||||
}
|
||||
.commonColor {
|
||||
color: #999999 !important;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
</style>
|
||||
|
||||
@ -119,7 +119,7 @@
|
||||
<div class="right">
|
||||
<div class="title">{{item.vehicleType}}</div>
|
||||
<div v-if="activeTab==0" class="type">{{ item.boardType?.label ? item.boardType?.label+' | ' : ''}} {{ item.licenseType?.label }} |
|
||||
{{ item.brandModel?.match(/^[\u4e00-\u9fa5]+/)?.[0]?.replace(/牌$/, '') }} | {{item.emissionStandard?.label}} | {{item.underpanBrand}} | {{ formatToWan(item.mileage) }}公里</div>
|
||||
{{ item.brandModel?.match(/^[\u4e00-\u9fa5]+/)?.[0]?.replace(/牌$/, '') }} | {{item.emissionStandard?.label}} | {{ formatToWan(item.mileage) }}公里</div>
|
||||
<div v-else class="type">{{ item.boardType?.label ? item.boardType?.label+' | ' : ''}} {{item.emissionStandard?.label}}</div>
|
||||
<div class="date" v-show="activeTab==0 && item.registerDate">注册日期: {{item.registerDate?.substring(0,10)}}</div>
|
||||
<div class="priceWrap" v-if="activeTab==0" >
|
||||
@ -354,8 +354,6 @@ export default {
|
||||
sessionStorage.setItem('areaCode',String(this.areaCode));
|
||||
sessionStorage.setItem('areaName',this.areaName);
|
||||
sessionStorage.setItem('dateVal',this.dateVal);
|
||||
sessionStorage.setItem('brandModel',this.brandModel);
|
||||
sessionStorage.setItem('underpanBrand',this.underpanBrand);
|
||||
},
|
||||
getSearchVal(){
|
||||
this.activeTab = Number(sessionStorage.getItem('indexActiveTab')) || 0;
|
||||
@ -369,8 +367,6 @@ export default {
|
||||
this.areaCode=Number(sessionStorage.getItem('areaCode')) || '';
|
||||
this.areaName=sessionStorage.getItem('areaName') || '';
|
||||
this.dateVal=sessionStorage.getItem('dateVal') || '';
|
||||
this.brandModel=sessionStorage.getItem('brandModel') || '';
|
||||
this.underpanBrand=sessionStorage.getItem('underpanBrand') || '';
|
||||
},
|
||||
goMine(){//我的发布
|
||||
this.$router.push({ name: "mineRelease"})
|
||||
@ -432,8 +428,6 @@ export default {
|
||||
areaCode:this.areaCode,
|
||||
startTime:this.startTime,
|
||||
endTime:this.endTime,
|
||||
brandModel:this.brandModel,
|
||||
underpanBrand:this.underpanBrand,
|
||||
})
|
||||
this.total=res.total
|
||||
if(this.pageNum == 1){// 第一页直接赋值
|
||||
@ -692,9 +686,9 @@ export default {
|
||||
color: #282828;
|
||||
line-height: 23px;
|
||||
width: 200px;
|
||||
/* white-space: nowrap; !* 强制文本在一行显示 *!
|
||||
overflow: hidden; !* 隐藏超出部分 *!
|
||||
text-overflow: ellipsis; !* 超出部分显示省略号 *!*/
|
||||
white-space: nowrap; /* 强制文本在一行显示 */
|
||||
overflow: hidden; /* 隐藏超出部分 */
|
||||
text-overflow: ellipsis; /* 超出部分显示省略号 */
|
||||
}
|
||||
.date{
|
||||
font-weight: 400;
|
||||
|
||||
@ -32,7 +32,7 @@
|
||||
<div class="right">
|
||||
<div class="title">
|
||||
<span>{{item.vehicleType}}</span>
|
||||
<img :class="{'titleImg':true,bigImg:[8,9].includes(item.status?.code)}" :src="getStatus(item.status?.code)" />
|
||||
<img class="titleImg" :src="getStatus(item.status?.code)" />
|
||||
</div>
|
||||
|
||||
<div v-if="activeTab==0" class="type">{{ item.boardType?.label ? item.boardType?.label+' | ' : ''}} {{ item.licenseType?.label }} |
|
||||
@ -50,10 +50,8 @@
|
||||
<div class="btnWrap">
|
||||
<img v-if="(activeTab==1 && item.status?.code==3) || activeTab==2" @click.stop="noMultipleClicks(reviseHandle,item)" class="revise" src="@/assets/secondHandCar/revise.png" />
|
||||
<img v-if="(activeTab==1 && (item.status?.code==1 || item.status?.code==3)) || activeTab==2" @click.stop="noMultipleClicks(xiajiaHandle,item)" class="xiajia" src="@/assets/secondHandCar/xiajia.png" />
|
||||
<img v-if="(activeTab==1 && item.status?.code==9)" @click.stop="noMultipleClicks(reviseXiajiaHandle,item)" class="reshangjia" src="@/assets/secondHandCar/reviseXiajia.png" />
|
||||
<img v-if="((activeTab==3 && item.status?.code==7) || activeTab==2) && !isToday(item.wapTime)" @click.stop="noMultipleClicks(polishHandle,item)" class="polish" src="@/assets/secondHandCar/polish.png" />
|
||||
<img v-if="activeTab==3 && item.type==1 && item.downReason=='不卖了' " @click.stop="noMultipleClicks(reShangJiaHandle,item)" class="reshangjia" src="@/assets/secondHandCar/reshangjia.png" />
|
||||
<img v-if="(activeTab==3 && [10,11].includes(item.status?.code)) || (activeTab==1 && [8,9].includes(item.status?.code))" @click.stop="noMultipleClicks(viewXiajiaHandle,item)" class="reshangjia" src="@/assets/secondHandCar/viewXiajia.png" />
|
||||
</div>
|
||||
<div class="line"></div>
|
||||
</div>
|
||||
@ -65,14 +63,13 @@
|
||||
<div class="empty" v-show="show">
|
||||
<img src="@/assets/empty.png" />
|
||||
</div>
|
||||
<van-popup v-model="poupShow" closeable round :style="{ width: '70%',height:xiajiaInfo.proprietary==1 && xiajiaInfo?.type==1 && radio==1 ? '20%' : '18%' }" class="poupWrap">
|
||||
<van-popup v-model="poupShow" closeable round :style="{ width: '70%',height:'18%' }" class="poupWrap">
|
||||
<span class="title">下架原因</span>
|
||||
<div class="poupContent">
|
||||
<van-radio-group v-model="radio" class="radioWrap">
|
||||
<van-radio name="1">{{xiajiaInfo?.type==1 ? '已售出' : '已买到'}}</van-radio>
|
||||
<van-radio name="2">{{xiajiaInfo?.type==1 ? '不卖了' : '不买了'}}</van-radio>
|
||||
</van-radio-group>
|
||||
<div v-show="xiajiaInfo.proprietary==1 && xiajiaInfo?.type==1 && radio==1" class="tip">注:已售出需前往完善售出信息</div>
|
||||
<div class="btnWrap">
|
||||
<div class="btn" @click="noMultipleClicks(submitHandle)">确认</div>
|
||||
</div>
|
||||
@ -124,9 +121,7 @@ export default {
|
||||
},
|
||||
onRefresh() {
|
||||
this.pageNum=1
|
||||
setTimeout(async () => {
|
||||
// this.pageList=[]
|
||||
await this.getList()
|
||||
setTimeout(() => {
|
||||
this.$toast('刷新成功');
|
||||
this.isLoading = false;
|
||||
}, 1000);
|
||||
@ -163,19 +158,13 @@ export default {
|
||||
this.$toast('下架原因不能为空')
|
||||
return
|
||||
}
|
||||
if(this.xiajiaInfo.proprietary==1 && this.xiajiaInfo?.type==1 && this.radio==1){
|
||||
this.poupShow=false
|
||||
this.radio = ''
|
||||
this.$router.push({ name: "sellingInfo", query: {id:this.xiajiaInfo.id,type:'revise'}})
|
||||
}else{
|
||||
await usedCarRemove({
|
||||
id:this.xiajiaInfo.id,
|
||||
downReason:this.radio==1 ? (this.xiajiaInfo?.type==1 ? '已售出' : '已买到') : (this.xiajiaInfo?.type==1 ? '不卖了' : '不买了')
|
||||
})
|
||||
this.poupShow=false
|
||||
this.radio = ''
|
||||
await this.getList()
|
||||
}
|
||||
await usedCarRemove({
|
||||
id:this.xiajiaInfo.id,
|
||||
downReason:this.radio==1 ? (this.xiajiaInfo?.type==1 ? '已售出' : '已买到') : (this.xiajiaInfo?.type==1 ? '不卖了' : '不买了')
|
||||
})
|
||||
this.poupShow=false
|
||||
this.radio = ''
|
||||
await this.getList()
|
||||
},
|
||||
reviseHandle(item){//修改
|
||||
this.$router.push({
|
||||
@ -202,17 +191,8 @@ export default {
|
||||
console.log('reShangJiaHandle',e)
|
||||
}
|
||||
},
|
||||
reviseXiajiaHandle(item){//修改下架
|
||||
console.log("修改下架",item)
|
||||
this.$router.push({ name: "sellingInfo", query: {id:item.id,type:'revise'}})
|
||||
},
|
||||
viewXiajiaHandle(item){//查看下架
|
||||
console.log("查看下架",item)
|
||||
this.$router.push({ name: "sellingInfo", query: {id:item.id,type:'view'}})
|
||||
},
|
||||
xiajiaHandle(item){//下架
|
||||
this.poupShow=true
|
||||
this.radio = ''
|
||||
this.xiajiaInfo=item
|
||||
},
|
||||
isToday(time) {
|
||||
@ -234,24 +214,14 @@ export default {
|
||||
},
|
||||
getStatus(i){
|
||||
switch (i){
|
||||
case 1://待审核
|
||||
return require('@/assets/secondHandCar/wait_verify.png')
|
||||
case 3://审核不通过
|
||||
return require('@/assets/secondHandCar/nopass.png')
|
||||
case 5://已发布
|
||||
return require('@/assets/secondHandCar/fabuing.png')
|
||||
case 6://已下架
|
||||
return require('@/assets/secondHandCar/alreayXiajia.png')
|
||||
case 7://信息过期
|
||||
return require('@/assets/secondHandCar/expire.png')
|
||||
case 8://下架待审核
|
||||
return require('@/assets/secondHandCar/xiajia_warting.png')
|
||||
case 9://下架不通过
|
||||
return require('@/assets/secondHandCar/xiajia_nopass.png')
|
||||
case 10://下架售出
|
||||
return require('@/assets/secondHandCar/xiajia_saled.png')
|
||||
case 11://下架报废
|
||||
return require('@/assets/secondHandCar/xiajia_scrap.png')
|
||||
case 1://待审核
|
||||
return require('@/assets/secondHandCar/wait_verify.png')
|
||||
default://未通过
|
||||
return require('@/assets/secondHandCar/nopass.png')
|
||||
}
|
||||
@ -394,10 +364,6 @@ export default {
|
||||
width: 43px;
|
||||
height: 14px;
|
||||
}
|
||||
.bigImg{
|
||||
width: 60px;
|
||||
height: 16px;
|
||||
}
|
||||
}
|
||||
.type{
|
||||
font-weight: 400;
|
||||
@ -511,11 +477,6 @@ export default {
|
||||
}
|
||||
}
|
||||
}
|
||||
.tip{
|
||||
color: red;
|
||||
margin-left: 25px;
|
||||
margin-bottom: 6px;
|
||||
}
|
||||
}
|
||||
.empty{
|
||||
@include flexTwoCenter;
|
||||
|
||||
@ -1,489 +0,0 @@
|
||||
<template>
|
||||
<div class="wrap" >
|
||||
<div class="headerWrap">
|
||||
<img class="bg" src="@/assets/secondHandCar/bg.png" />
|
||||
<div class="navWrap">
|
||||
<div v-if="isWebFunc()" style="opacity: 0;" class="back"></div>
|
||||
<img v-else class="back" @click="h5GoBack" src="@/assets/secondHandCar/back.png" />
|
||||
<img class="navIcon" src="@/assets/secondHandCar/sellingInfo.png" />
|
||||
<!-- <span class="title">售出信息</span>-->
|
||||
<div style="opacity: 0;" class="back"></div>
|
||||
</div>
|
||||
<div class="audit" v-if="type=='revise' && status==9 && auditRemark">
|
||||
<span><img class="noAudit" src="@/assets/secondHandCar/noAudit.png" />审核不通过:</span>
|
||||
<span>{{auditRemark }}</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="contentWrap" :class="[!(status==9 && auditRemark) ? 'noReasonWrap': 'hasReasonWrap']">
|
||||
<div class="content">
|
||||
<div class="item" style="align-items: center">
|
||||
<span> <span class="star">*</span>售出渠道 </span>
|
||||
<van-radio-group v-model="form.salesChannel" direction="horizontal" class="radioWrap" :disabled="type !== 'revise'">
|
||||
<van-radio name="1" :class="{'checked':form.salesChannel==1,'salesChannelRadio':true,'radio':true}">中道二手拖车</van-radio>
|
||||
<van-radio name="2" :class="{'checked':form.salesChannel==2,'salesChannelRadio':true}">本地线下</van-radio>
|
||||
<van-radio name="3" :class="{'checked':form.salesChannel==3,'salesChannelRadio':true}">报废</van-radio>
|
||||
</van-radio-group>
|
||||
</div>
|
||||
<template v-if="form.salesChannel==3">
|
||||
<div class="item" style="margin-top: 8px">
|
||||
<span style="line-height: 0.5rem"> <span class="star">*</span>报废机动车回收证明 </span>
|
||||
<upload-common @success3="getRecyclePhoto" @delete3="deleteImgRecycle" :show-del="type == 'revise'"
|
||||
:text="'回收证明'" :multiple="false" :files.sync="recyclePathList"/>
|
||||
</div>
|
||||
<div class="item">
|
||||
<span> <span class="star">*</span>报废年月</span>
|
||||
<van-field
|
||||
:disabled="type !== 'revise'"
|
||||
@focus="showDatetime = true"
|
||||
class="radioWrap"
|
||||
readonly
|
||||
v-model="scrapTimeFormatShow"
|
||||
input-align="right"
|
||||
>
|
||||
</van-field>
|
||||
</div>
|
||||
</template>
|
||||
<template v-else>
|
||||
<div class="item">
|
||||
<span> <span class="star">*</span>购买方 </span>
|
||||
<van-field
|
||||
:disabled="type !== 'revise'"
|
||||
class="radioWrap"
|
||||
v-model="form.purchaser"
|
||||
input-align="right"
|
||||
> </van-field>
|
||||
</div>
|
||||
<div class="item">
|
||||
<span> <span class="star">*</span>售出价格 </span>
|
||||
<van-field
|
||||
:disabled="type !== 'revise'"
|
||||
type="number"
|
||||
class="radioWrap"
|
||||
v-model="form.sellPrice"
|
||||
input-align="right"
|
||||
>
|
||||
<template slot="right-icon" >
|
||||
<span style="white-space: nowrap; margin-left: 8px;"> 元 </span>
|
||||
</template>
|
||||
</van-field>
|
||||
</div>
|
||||
<div class="item" style="margin-top: 8px">
|
||||
<span> <span class="star">*</span>交易合同 </span>
|
||||
<upload-common @success3="getTradePhoto" @delete3="deleteImgTrade" :show-del="type == 'revise'"
|
||||
:text="'交易合同'" :multiple="false" :files.sync="tradeContractPathList"/>
|
||||
</div>
|
||||
<div class="item">
|
||||
<span> <span class="star">*</span>交易年月</span>
|
||||
<van-field
|
||||
:disabled="type !== 'revise'"
|
||||
@focus="showDatetime = true"
|
||||
class="radioWrap"
|
||||
readonly
|
||||
v-model="tradeTimeFormatShow"
|
||||
input-align="right"
|
||||
> </van-field>
|
||||
</div>
|
||||
</template>
|
||||
</div>
|
||||
<div class="btnWrap" v-if="type !== 'view'">
|
||||
<div v-if="type == 'revise'" class="btn commonBtn" @click="noMultipleClicks(submitHandle)">确认售出</div>
|
||||
<template v-else-if="type=='audit'">
|
||||
<div style="margin: 10px">不通过原因</div>
|
||||
<el-input style="margin-bottom: 10px;margin-left: 10px" class="ipt" v-model.trim="auditReason" type="textarea" :autosize="{ minRows: 2, maxRows: 6 }"
|
||||
maxlength="200" show-word-limit placeholder="请填写不通过原因"></el-input>
|
||||
<div class="auditBtn">
|
||||
<div class="commonBtn" @click="noMultipleClicks(auditHandle,0)">审核不通过</div>
|
||||
<div class="commonBtn" @click="noMultipleClicks(auditHandle,1)"><span style="margin-right: 6px">✔</span>审核通过</div>
|
||||
</div>
|
||||
</template>
|
||||
</div>
|
||||
</div>
|
||||
<van-popup v-model="showDatetime" round position="bottom">
|
||||
<van-datetime-picker
|
||||
class="dataTime"
|
||||
v-if="showDatetime"
|
||||
v-model="time"
|
||||
type="date"
|
||||
:min-date="minDate"
|
||||
@confirm="onConfirm"
|
||||
@cancel="showDatetime = false"
|
||||
/>
|
||||
</van-popup>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import {myMixins} from "@/utils/myMixins"
|
||||
import {auditCarInfo, usedCarRemove,carInfoDetail,auditCarInfoAgain} from "@/api/secondHandCar"
|
||||
import uploadCommon from "@/views/secondHandCar/components/upload-common.vue";
|
||||
import {timeFormat} from "@/utils/common";
|
||||
export default {
|
||||
name: "sellingInfo",
|
||||
mixins:[myMixins],
|
||||
data(){
|
||||
return{
|
||||
noClick:true,
|
||||
form:{
|
||||
id:'',
|
||||
downReason: '已售出',
|
||||
salesChannel:'',
|
||||
purchaser:'',
|
||||
sellPrice:'',
|
||||
tradeContractPath:'',
|
||||
tradeTime:'',
|
||||
recyclePath:'',
|
||||
scrapTime:'',
|
||||
},
|
||||
tradeContractPathList:[],
|
||||
recyclePathList:[],
|
||||
otherImgSrc:[],
|
||||
otherImgSrcList:[],
|
||||
type:'',
|
||||
auditRemark:'',
|
||||
auditReason:'',
|
||||
status:'' ,
|
||||
time:'',
|
||||
showDatetime:false,
|
||||
minDate: new Date(),
|
||||
}
|
||||
},
|
||||
async mounted() {
|
||||
const urlParams = new URLSearchParams(window.location.search);
|
||||
this.form.id=this.$route.query.id || urlParams.get('id');
|
||||
this.type=this.$route.query.type || urlParams.get('type');
|
||||
if( this.form.id){
|
||||
let res = await carInfoDetail({
|
||||
id:this.form.id,
|
||||
queryType:4,
|
||||
})
|
||||
this.form={...res.data}
|
||||
this.form.downReason='已售出'
|
||||
this.auditRemark=res.data?.auditRemark
|
||||
this.status=res.data?.status?.code
|
||||
if(res.data?.tradeContractPath){
|
||||
this.tradeContractPathList=[{url:res.data?.tradeContractPath}]
|
||||
}
|
||||
if(res.data?.recyclePath){
|
||||
this.recyclePathList=[{url:res.data?.recyclePath}]
|
||||
}
|
||||
}
|
||||
},
|
||||
methods:{
|
||||
onConfirm(data) {
|
||||
this.time = timeFormat(new Date(data))
|
||||
if(this.form.salesChannel==3){
|
||||
this.form.scrapTime = timeFormat(new Date(data))
|
||||
}else {
|
||||
this.form.tradeTime = timeFormat(new Date(data))
|
||||
}
|
||||
this.showDatetime = false;
|
||||
},
|
||||
// 审核操作
|
||||
async auditHandle(type){
|
||||
if (!type && !this.auditReason){
|
||||
this.$toast('请填写不通过原因')
|
||||
return
|
||||
}
|
||||
try {
|
||||
await auditCarInfo({
|
||||
id: this.form.id,
|
||||
auditResult: type ? 1 : 0 ,
|
||||
auditReason: this.auditReason,
|
||||
...this.form,
|
||||
licenseType:this.form?.licenseType?.code,
|
||||
boardType:this.form?.boardType?.code,
|
||||
emissionStandard:this.form?.emissionStandard?.code,
|
||||
})
|
||||
setTimeout(()=>{
|
||||
this.closeParentDialog()
|
||||
},1000)
|
||||
} finally {
|
||||
console.log(type)
|
||||
}
|
||||
},
|
||||
async submitHandle(){
|
||||
let rule = this.validationRules.find(item =>
|
||||
item.required && (item.value === null || item.value === undefined || item.value === ''))
|
||||
if(rule){
|
||||
this.$toast(rule.name)
|
||||
return
|
||||
}
|
||||
try {
|
||||
// 清除原本选择的信息
|
||||
if(this.form.salesChannel==3){
|
||||
this.form.purchaser=''
|
||||
this.form.sellPrice=''
|
||||
this.form.tradeContractPath=''
|
||||
this.form.tradeTime=''
|
||||
}else{
|
||||
this.form.recyclePath=''
|
||||
this.form.scrapTime=''
|
||||
}
|
||||
let res=''
|
||||
if(this.status == 9){
|
||||
res=await auditCarInfoAgain({// 审核不通过再次提交
|
||||
...this.form,
|
||||
salesChannel:Number(this.form.salesChannel)
|
||||
})
|
||||
}else {
|
||||
res=await usedCarRemove({
|
||||
...this.form,
|
||||
salesChannel:Number(this.form.salesChannel)
|
||||
})
|
||||
}
|
||||
if(res.code == 200 && !res.msg){
|
||||
this.$toast('操作成功')
|
||||
if(this.isWebFunc()){
|
||||
setTimeout(()=>{
|
||||
this.closeParentDialog()
|
||||
},1000)
|
||||
}else{
|
||||
setTimeout(()=>{
|
||||
this.h5GoBack()
|
||||
},1000)
|
||||
}
|
||||
}else{
|
||||
this.$toast(res.msg)
|
||||
}
|
||||
} catch (e) {
|
||||
console.log(e)
|
||||
}
|
||||
},
|
||||
getTradePhoto(data) {
|
||||
this.form.tradeContractPath = data.url
|
||||
},
|
||||
deleteImgTrade() {
|
||||
this.form.tradeContractPath = '';
|
||||
},
|
||||
getRecyclePhoto(data) {
|
||||
this.form.recyclePath = data.url
|
||||
},
|
||||
deleteImgRecycle() {
|
||||
this.form.recyclePath = '';
|
||||
},
|
||||
},
|
||||
computed: {
|
||||
tradeTimeFormatShow(){
|
||||
return this.form.tradeTime ? this.form.tradeTime?.substring(0,10) : '';
|
||||
},
|
||||
scrapTimeFormatShow(){
|
||||
return this.form.scrapTime ? this.form.scrapTime?.substring(0,10) : '';
|
||||
},
|
||||
validationRules() {
|
||||
return [
|
||||
{required:true, value: this.form.salesChannel, name: '售出渠道不能为空' },
|
||||
{required:this.form.salesChannel==3 ? false : true, value: this.form.purchaser, name: '购买方不能为空' },
|
||||
{required:this.form.salesChannel==3 ? false : true, value: this.form.sellPrice, name: '售出价格不能为空' },
|
||||
{required:this.form.salesChannel==3 ? false : true, value: this.form.tradeContractPath, name: '交易合同文件不能为空' },
|
||||
{required:this.form.salesChannel==3 ? false : true, value: this.form.tradeTime, name: '交易年月不能为空' },
|
||||
{required:this.form.salesChannel==3 ? true : false, value: this.form.recyclePath, name: '报废机动车回收证明不能为空' },
|
||||
{required:this.form.salesChannel==3 ? true : false, value: this.form.scrapTime, name: '报废年月不能为空' },
|
||||
];
|
||||
},
|
||||
},
|
||||
components:{uploadCommon}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '@/styles/mixin.scss';
|
||||
.wrap {
|
||||
@include wh(100%, 100%);
|
||||
position: relative;
|
||||
}
|
||||
.headerWrap{
|
||||
width: 100%;
|
||||
box-sizing: border-box;
|
||||
padding-top: 15px;
|
||||
padding-bottom: 15px;
|
||||
position: relative;
|
||||
.navWrap{
|
||||
width: 100%;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
box-sizing: border-box;
|
||||
padding: 0 16px 10px;
|
||||
}
|
||||
.bg {
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 120px;
|
||||
line-height: 120px;
|
||||
top: 0;
|
||||
left: 0;
|
||||
opacity: 0.5;
|
||||
z-index: -1;
|
||||
}
|
||||
.back{
|
||||
@include wh(15px,15px);
|
||||
}
|
||||
.title{
|
||||
font-weight: bold;
|
||||
font-size: 16px;
|
||||
color: #203152;
|
||||
}
|
||||
.navIcon{
|
||||
@include wh(84px,21px);
|
||||
}
|
||||
.audit{
|
||||
@include wh(100%,43px);
|
||||
background: #FFF7F4;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 11px;
|
||||
color: #FF6B3B;
|
||||
.noAudit{
|
||||
@include wh(13px,12px);
|
||||
margin-right: 5px;
|
||||
vertical-align: bottom;
|
||||
}
|
||||
span:first-child{
|
||||
font-weight: 600;
|
||||
}
|
||||
}
|
||||
}
|
||||
.navBar{
|
||||
margin-bottom: 46px;
|
||||
}
|
||||
.noReasonWrap{
|
||||
height: calc(100% - 42px);
|
||||
}
|
||||
.hasReasonWrap{
|
||||
height: calc(100% - 85px);
|
||||
}
|
||||
.contentWrap{
|
||||
width: 100%;
|
||||
overflow-y: auto;
|
||||
@include sizingPadding(15px,15px);
|
||||
@include flexBetween;
|
||||
.btnWrap{
|
||||
padding-bottom: 20px;
|
||||
padding-top: 15px;
|
||||
}
|
||||
.commonBtn{
|
||||
height: 46px;
|
||||
line-height: 46px;
|
||||
text-align: center;
|
||||
font-weight: bold;
|
||||
border-radius: 5px;
|
||||
color: #FFFFFF;
|
||||
cursor: pointer;
|
||||
}
|
||||
.btn{
|
||||
width: 296px;
|
||||
background: #4A7FEB;
|
||||
margin: 0 auto;
|
||||
font-size: 15px;
|
||||
}
|
||||
.auditBtn{
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
font-size: 14px;
|
||||
box-sizing: border-box;
|
||||
padding: 0 6px;
|
||||
div:first-child{
|
||||
width: 100px;
|
||||
opacity: 0.79;
|
||||
background: #1C2C49;
|
||||
}
|
||||
div:last-child{
|
||||
width: 200px;
|
||||
background: #4A7FEB;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.content{
|
||||
width: 100%;
|
||||
.item{
|
||||
display: flex;
|
||||
font-weight: 400;
|
||||
font-size: 13px;
|
||||
color: #2C3D54;
|
||||
line-height: 44px;
|
||||
width: 100%;
|
||||
box-sizing: border-box;
|
||||
padding-left: 21px;
|
||||
padding-right: 9px;
|
||||
span:first-child{
|
||||
display: inline-block;
|
||||
width:70px;
|
||||
font-size: 13px;
|
||||
color: rgba(44, 61, 84, 0.59);
|
||||
}
|
||||
span:last-child{
|
||||
display: inline-block;
|
||||
width:calc(100% - 70px);
|
||||
border-bottom: 1px solid #E9E9EA;
|
||||
}
|
||||
.orc{
|
||||
box-sizing: border-box;
|
||||
padding-left: 6px;
|
||||
}
|
||||
}
|
||||
.star{
|
||||
color: #FF4B4B !important;
|
||||
opacity: 1 !important;
|
||||
font-weight: bold;
|
||||
font-size: 12px;
|
||||
margin-right: 6px;
|
||||
margin-left: -6px;
|
||||
}
|
||||
.radioWrap{
|
||||
width:calc(100% - 70px);
|
||||
border-bottom: 1px solid #E9E9EA;
|
||||
}
|
||||
}
|
||||
.lastLine{
|
||||
margin-top: 3px !important;
|
||||
}
|
||||
::v-deep .van-icon-success{
|
||||
display: none !important;
|
||||
}
|
||||
::v-deep .van-radio__label{
|
||||
margin-left: 0;
|
||||
width: 54px;
|
||||
height: 23px;
|
||||
border-radius: 13px;
|
||||
border: 1px solid #9F9F9F;
|
||||
opacity: 0.5;
|
||||
text-align: center;
|
||||
line-height: 23px;
|
||||
font-size: 12px;
|
||||
color: #323233;
|
||||
opacity: 1;
|
||||
}
|
||||
::v-deep .van-radio--horizontal{
|
||||
margin-right: 4px;
|
||||
}
|
||||
::v-deep .van-radio--horizontal:last-child{
|
||||
margin-right: 0;
|
||||
}
|
||||
::v-deep .checked .van-radio__label{
|
||||
background: #FFF1EC !important;
|
||||
border: 1px solid #FF5C26 !important;
|
||||
color: #FE5006 !important;
|
||||
border-radius: 13px !important;
|
||||
}
|
||||
::v-deep .van-field__right-icon{
|
||||
margin-right: 0;
|
||||
padding: 0;
|
||||
}
|
||||
::v-deep .ipt .el-textarea__inner{
|
||||
background: #F5F7F9;
|
||||
border-radius: 4px;
|
||||
font-size: 12px;
|
||||
border: none;
|
||||
}
|
||||
::v-deep .van-popup__close-icon--top-right{
|
||||
display: none;
|
||||
}
|
||||
::v-deep .salesChannelRadio .van-radio__label{
|
||||
margin-bottom: 8px !important;
|
||||
}
|
||||
::v-deep .radio .van-radio__label{
|
||||
width: 80px !important;
|
||||
}
|
||||
</style>
|
||||
@ -23,12 +23,6 @@
|
||||
</div>
|
||||
<div class="viewNum">{{detailInfo.attentionCount}}人想卖<span>{{detailInfo.browseCount}}人浏览</span></div>
|
||||
</div>
|
||||
<div class="priceWrap">
|
||||
<div class="commonColor" style="margin-top: 5px">
|
||||
车源ID: {{ detailInfo.code }}
|
||||
<img class="copyIcon" @click="copyHandler(detailInfo.code)" src="@/assets/copy.png" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="detailInfoWrap wrapCommon">
|
||||
<div>
|
||||
@ -107,16 +101,6 @@ export default {
|
||||
this.getDuration(1)
|
||||
},
|
||||
methods:{
|
||||
copyHandler(copyText){
|
||||
let inputNode = document.createElement('input') // 创建input
|
||||
inputNode.value = copyText // 赋值给 input 值
|
||||
document.body.appendChild(inputNode) // 插入进去
|
||||
inputNode.select() // 选择对象
|
||||
document.execCommand('Copy') // 原生调用执行浏览器复制命令
|
||||
inputNode.className = 'oInput'
|
||||
inputNode.style.display = 'none' // 隐藏
|
||||
this.$toast('复制成功')
|
||||
},
|
||||
getDuration(type){
|
||||
const endTime = new Date();
|
||||
const duration = (endTime - this.startTime) / 1000; // 计算时长(秒)
|
||||
@ -306,14 +290,4 @@ export default {
|
||||
cursor: pointer;
|
||||
}
|
||||
}
|
||||
.commonColor {
|
||||
color: #999999 !important;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
.copyIcon {
|
||||
width: 35px;
|
||||
height: 15px;
|
||||
margin-left: 10px
|
||||
}
|
||||
</style>
|
||||
|
||||
@ -1,415 +0,0 @@
|
||||
<template>
|
||||
<div class="wrap">
|
||||
<div class="alarm_info">
|
||||
<div class="alarm_title">
|
||||
<div class="title_left">
|
||||
<span class="car_title">{{info.alarmTypeString}}</span>
|
||||
<img class="alarm_level" v-if="info.level == 1" src="@/assets/alarm_one.png" alt="">
|
||||
<img class="alarm_level" v-if="info.level == 2" src="@/assets/alarm_two.png" alt="">
|
||||
<img class="alarm_level" v-if="info.level == 3" src="@/assets/alarm_three.png" alt="">
|
||||
</div>
|
||||
<div class="status">{{info.handStatusString}}</div>
|
||||
</div>
|
||||
<div class="content_list">
|
||||
<div class="alarm_content">
|
||||
<div class="label">报警时间:</div>
|
||||
<div class="content">{{info.startTime}}</div>
|
||||
</div>
|
||||
<div class="alarm_content">
|
||||
<div class="label">报警详情:</div>
|
||||
<div class="content">{{info.alarmRemark}}</div>
|
||||
</div>
|
||||
<div class="alarm_content">
|
||||
<div class="label">报警照片:</div>
|
||||
<div class="content">
|
||||
<img class="photo" v-if="info.url" :src="info.url" alt="">
|
||||
</div>
|
||||
</div>
|
||||
<div class="alarm_content">
|
||||
<div class="label">报警通道:</div>
|
||||
<div class="content content_flex">
|
||||
<span>{{ info.plateNumber + '_' + (info?.channel || '') }} <!--浙A7H1M2_1--></span>
|
||||
<span class="btn" @click="goAlarmMonitoring">查看监控</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="alarm_info car_info">
|
||||
<div class="car_title title">
|
||||
车辆位置
|
||||
</div>
|
||||
<div class="car_map">
|
||||
<div class="map_title">
|
||||
<span class="driver_name">{{info.vehicleName}} / {{info.plateNumber}}</span>
|
||||
<span class="driver_name">司机:{{info.onlineDriverName}} <a :href="'tel:' + info.onlinePhone">{{info.onlinePhone}}</a></span>
|
||||
</div>
|
||||
<div class="map_cover" id="container"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="deal_btn" v-if="[0, 3].includes(info.handStatus)" @click="dealWithShow = true">处理</div>
|
||||
<van-popup v-model="dealWithShow" v-if="dealWithShow" round position="center">
|
||||
<div class="dialog_wrap">
|
||||
<div class="dialog_title">报警处理</div>
|
||||
<div>
|
||||
<van-radio-group v-model="radio" @change="change" class="horizontal-radio-group">
|
||||
<van-radio v-for="item in radioList" :key="item.value" :name="item.value" :disabled="item.disabled" class="item">
|
||||
<span :style="{ color: radio === item.value ? '#393230' : 'rgba(0, 0, 0, 0.5)' }">
|
||||
{{ item.name }}
|
||||
</span>
|
||||
<img
|
||||
slot="icon"
|
||||
class="icon"
|
||||
slot-scope="props"
|
||||
:src="props.checked ? activeIcon : inactiveIcon"
|
||||
>
|
||||
</van-radio>
|
||||
</van-radio-group>
|
||||
<div class="alarm_tip" v-if="['1', '2', '3'].includes(String(info.alarmType))">
|
||||
注:开始处理后将流转至技术支持进行处理。
|
||||
</div>
|
||||
<div class="alarm_text" v-if="radio == 5">
|
||||
<textarea class="alarm_textarea" id="text-input" rows="6" placeholder="处理结果:" v-model.trim="remark"></textarea>
|
||||
</div>
|
||||
<div class="btn_wrap">
|
||||
<div class="btn_confirm" @click="noMultipleClicks(operatorHandle)">确认</div>
|
||||
<div class="btn_close" @click="dealWithShow = false">关闭</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</van-popup>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import {myMixins} from "@/utils/myMixins"
|
||||
import { getAlarmByCode, dealWithAlarm } from "@/api/order"
|
||||
import trailerPosition from "@/assets/alarm_trailer.png";
|
||||
import repairPosition from "@/assets/alarm_repair.png";
|
||||
export default {
|
||||
name: "vehicleAlarmDetail",
|
||||
mixins: [ myMixins ],
|
||||
data() {
|
||||
return {
|
||||
noClick: true,
|
||||
map: null,
|
||||
lng: 121.553376,
|
||||
lat: 31.247998,
|
||||
radio: '',
|
||||
activeIcon: require('@/assets/alarm_check.png'),
|
||||
inactiveIcon: require('@/assets/alarm_unCheck.png'),
|
||||
dealWithShow: false,
|
||||
radioList: [{ name: '开始处理', value: 3, disabled: false }, { name: '处理完成', value: 5, disabled: false }],
|
||||
remark: '',
|
||||
code: '',
|
||||
info: {}
|
||||
}
|
||||
},
|
||||
mounted() {
|
||||
this.code = this.$route.query.code;
|
||||
this.getAlarmDetail();
|
||||
this.initMap();
|
||||
},
|
||||
methods: {
|
||||
// 新增方法:重置弹窗状态
|
||||
resetPopupState() {
|
||||
this.radio = '';
|
||||
this.remark = '';
|
||||
// 重置radioList状态
|
||||
this.radioList = [
|
||||
{ name: '开始处理', value: 3, disabled: false },
|
||||
{ name: '处理完成', value: 5, disabled: false }
|
||||
];
|
||||
},
|
||||
goAlarmMonitoring() {
|
||||
let data = {
|
||||
"action":"goMonitoring",
|
||||
"params": {
|
||||
"code": this.code
|
||||
}
|
||||
};
|
||||
let u = navigator.userAgent;
|
||||
let isiOS = !!u.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/);
|
||||
if(isiOS){
|
||||
window.webkit.messageHandlers.nativeObject.postMessage(data);
|
||||
}else {
|
||||
window.android.sendMessage("code=" + this.code);
|
||||
}
|
||||
},
|
||||
async operatorHandle() {
|
||||
try {
|
||||
await dealWithAlarm({
|
||||
alarmId: this.info.id,
|
||||
handleStatus: this.radio,
|
||||
remark: this.remark
|
||||
})
|
||||
this.$toast('操作成功')
|
||||
this.resetPopupState();
|
||||
} finally {
|
||||
this.dealWithShow = false;
|
||||
await this.getAlarmDetail();
|
||||
}
|
||||
},
|
||||
change(e) {
|
||||
this.radio = e
|
||||
},
|
||||
async getAlarmDetail() {
|
||||
let res = await getAlarmByCode({
|
||||
code: this.code
|
||||
});
|
||||
if(!res.data) {
|
||||
this.$router.push({
|
||||
name: 'vehicleAlarmList',
|
||||
params: {
|
||||
token: localStorage.getItem('token')
|
||||
},
|
||||
replace: true // 关键:替换当前路由,而不是新增历史记录
|
||||
});
|
||||
return
|
||||
}
|
||||
this.info = res?.data;
|
||||
// 每次获取详情时重置radioList
|
||||
this.radioList = [
|
||||
{ name: '开始处理', value: 3, disabled: false },
|
||||
{ name: '处理完成', value: 5, disabled: false }
|
||||
];
|
||||
if( this.info.handStatus == 0 && ['1', '2', '3'].includes(String(this.info.alarmType))) { // 未处理,且需要技术处理
|
||||
this.radio = this.radioList[0].value
|
||||
this.radioList[1].disabled = true
|
||||
}
|
||||
if(this.info.handStatus == 3) {
|
||||
this.radioList[0].disabled = true
|
||||
}
|
||||
},
|
||||
initMap() {
|
||||
this.map = new AMap.Map('container',{
|
||||
zoom:14,//级别(缩放比例 3-20 )
|
||||
center: [this.lng, this.lat],//中心点坐标
|
||||
viewMode:'2D',//使用3D视图
|
||||
})
|
||||
this.map.on('complete', () => {
|
||||
this.mapMarkers();
|
||||
});
|
||||
},
|
||||
mapMarkers() {
|
||||
let url = String(this.info.vehicleType) == '5' ? repairPosition : trailerPosition
|
||||
let marker = new AMap.Marker({
|
||||
position: [this.lng, this.lat],
|
||||
icon: new AMap.Icon({
|
||||
image: url, // 图片的相对路径
|
||||
size: new AMap.Size(42, 50), // 图标的尺寸
|
||||
imageSize: new AMap.Size(42, 50) // 图片的实际尺寸
|
||||
}),
|
||||
});
|
||||
this.map.add(marker);
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<style scoped lang="scss">
|
||||
.wrap {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: #F4F5F7 !important;
|
||||
box-sizing: border-box;
|
||||
overflow-y: auto;
|
||||
padding: 0 12px;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.alarm_info {
|
||||
padding-top: 12px;
|
||||
padding-bottom: 16px;
|
||||
background: #FFFFFF;
|
||||
box-shadow: 0px 1px 4px 0px rgba(39,52,125,0.05);
|
||||
border-radius: 6px;
|
||||
backdrop-filter: blur(5.602678571428572px);
|
||||
margin-top: 10px;
|
||||
.alarm_title {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
border-bottom: 1px solid rgba(233, 233, 234, 0.6);
|
||||
padding: 3px 20px 10px 18px;
|
||||
.title_left {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
.alarm_level {
|
||||
width: 32px;
|
||||
height: 14px;
|
||||
margin-left: 7px;
|
||||
}
|
||||
}
|
||||
.status {
|
||||
font-size: 11px;
|
||||
color: #FA8D14;
|
||||
font-weight: bold;
|
||||
}
|
||||
}
|
||||
.content_list {
|
||||
padding: 12px 18px 0px;
|
||||
}
|
||||
.alarm_content {
|
||||
display: flex;
|
||||
margin-bottom: 6px;
|
||||
.content {
|
||||
margin-left: 10px;
|
||||
font-size: 12px;
|
||||
color: rgba(0, 0, 0, 0.75);
|
||||
flex: 1;
|
||||
.btn {
|
||||
/*display: inline-block;*/
|
||||
padding: 5px 12px;
|
||||
background: #FA8236;
|
||||
border-radius: 3px;
|
||||
color: #fff;
|
||||
font-size: 12px;
|
||||
}
|
||||
.photo {
|
||||
width: 75px;
|
||||
height: 55px;
|
||||
margin-right: 6px;
|
||||
margin-bottom: 6px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.label {
|
||||
color: rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
.content_flex {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
}
|
||||
.car_title {
|
||||
font-size: 14px;
|
||||
font-weight: bold;
|
||||
color: rgba(0, 0, 0, 0.85);
|
||||
}
|
||||
.title {
|
||||
padding-left: 18px;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
.car_info {
|
||||
padding: 12px 4px 5px 4px;
|
||||
}
|
||||
.car_map {
|
||||
width: 100%;
|
||||
/*height: 204px;*/
|
||||
border-radius: 4px;
|
||||
border: 1px solid #F0F0F0;
|
||||
background-color: #F9FCFF;
|
||||
box-sizing: border-box;
|
||||
.map_title {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
padding: 10px 8px 10px 15px;
|
||||
.driver_name {
|
||||
font-size: 12px;
|
||||
color: #000000;
|
||||
a {
|
||||
color: #377BE6;
|
||||
}
|
||||
}
|
||||
}
|
||||
.map_cover {
|
||||
width: 100%;
|
||||
height: 174px;
|
||||
background-color: #fff;
|
||||
}
|
||||
}
|
||||
.deal_btn {
|
||||
width: calc(100% - 38px);
|
||||
height: 48px;
|
||||
text-align: center;
|
||||
line-height: 48px;
|
||||
position: fixed;
|
||||
bottom: 10px;
|
||||
left: 19px;
|
||||
font-size: 15px;
|
||||
color: #fff;
|
||||
background: #354D93;
|
||||
border-radius: 5px;
|
||||
}
|
||||
.dialog_wrap {
|
||||
width: 325px;
|
||||
border-radius: 13px;
|
||||
.dialog_title {
|
||||
height: 68px;
|
||||
line-height: 82px;
|
||||
background: linear-gradient( 180deg, #FFE8DA 0%, rgba(255,233,233,0) 100%);
|
||||
font-size: 18px;
|
||||
color: #E0481E;
|
||||
text-align: center;
|
||||
font-weight: bold;
|
||||
}
|
||||
.horizontal-radio-group {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: space-around;
|
||||
margin-bottom: 15px;
|
||||
.icon {
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
}
|
||||
.item {
|
||||
font-size: 14px;
|
||||
margin-bottom: 8px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
}
|
||||
.alarm_tip {
|
||||
font-size: 14px;
|
||||
color: #FF5D3B;
|
||||
margin: 10px 0 20px;
|
||||
text-align: center;
|
||||
}
|
||||
.alarm_text {
|
||||
width: 100%;
|
||||
padding: 0 25px 15px;
|
||||
box-sizing: border-box;
|
||||
.alarm_textarea {
|
||||
width: 100%;
|
||||
background: #FFFBFB;
|
||||
border-radius: 3px;
|
||||
border: 1px solid #F97C64;
|
||||
backdrop-filter: blur(10px);
|
||||
padding: 10px;
|
||||
color: #FF5D3B;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.alarm_textarea::placeholder {
|
||||
color: rgba(255, 93, 59, 0.8);
|
||||
}
|
||||
}
|
||||
.btn_wrap {
|
||||
.btn_confirm {
|
||||
width: 173px;
|
||||
height: 42px;
|
||||
line-height: 42px;
|
||||
color: #FFFFFF;
|
||||
font-size: 15px;
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
background: #F16363;
|
||||
border-radius: 23px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
.btn_close {
|
||||
margin-top: 12px;
|
||||
margin-bottom: 22px;
|
||||
font-size: 14px;
|
||||
color: rgba(44, 65, 85, 0.6);
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
}
|
||||
::v-deep .van-radio__icon {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
::v-deep .van-radio__label--disabled {
|
||||
opacity: 0.5;
|
||||
}
|
||||
</style>
|
||||
@ -1,247 +0,0 @@
|
||||
<template>
|
||||
<div class="wrap">
|
||||
<div class="tab_wrap">
|
||||
<div class="item_wrap" v-for="(item, index) in tabArr" :key="index" @click="changeTab(index)">
|
||||
<span class="alpha" :class="{'active' : activeIndex == index }"> {{ item.name }}</span>
|
||||
<span class="numTip" style="opacity: 1 !important;" v-if="item.num > 0">{{item.num}}</span>
|
||||
</div>
|
||||
</div>
|
||||
<van-pull-refresh class="refresh" v-model="isLoading" @refresh="onRefresh" v-show="!show">
|
||||
<van-list
|
||||
v-model="loading"
|
||||
:finished="finished"
|
||||
finished-text="没有更多了"
|
||||
@load="onLoad"
|
||||
>
|
||||
<div class="content_wrap">
|
||||
<div class="alarm_wrap" v-for="(item, index) in pageList" :key="index" @click="goDetail(item)">
|
||||
<div class="alarm_title">
|
||||
<div class="title_left">
|
||||
<span>{{item.alarmTypeString}}</span>
|
||||
<img class="alarm_level" v-if="item.level == 1" src="@/assets/alarm_one.png" alt="">
|
||||
<img class="alarm_level" v-if="item.level == 2" src="@/assets/alarm_two.png" alt="">
|
||||
<img class="alarm_level" v-if="item.level == 3" src="@/assets/alarm_three.png" alt="">
|
||||
</div>
|
||||
<div class="label">{{item.startTime}}</div>
|
||||
</div>
|
||||
<div class="alarm_content">
|
||||
<div class="label flexLabel">车辆名称:</div>
|
||||
<div class="content flexContent">{{item.vehicleName}}</div>
|
||||
</div>
|
||||
<div class="alarm_content">
|
||||
<div class="label flexLabel">报警详情:</div>
|
||||
<div class="content flexContent">{{item.alarmRemark}}</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</van-list>
|
||||
</van-pull-refresh>
|
||||
<div class="bgEmptyImg" v-show="show" >
|
||||
<img src="@/assets/emptyData.png" />
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import {myMixins} from "@/utils/myMixins"
|
||||
import { getAlarmList, getAlarmCount } from "@/api/order"
|
||||
export default {
|
||||
name: "vehicleAlarmList",
|
||||
data() {
|
||||
return {
|
||||
tabArr: [{ name: '未处理', num: 0 }, { name: '技术处理中', num: 0 }, {name: '处理中', num: 1 }],
|
||||
activeIndex: 0,
|
||||
pageNum:1,
|
||||
pageSize:10,
|
||||
total:'',
|
||||
pageList: [],
|
||||
isLoading: '',
|
||||
loading: false,
|
||||
finished: false,
|
||||
}
|
||||
},
|
||||
mixins: [ myMixins ],
|
||||
computed:{
|
||||
show() {
|
||||
return (this.pageList.length < 0 || this.pageList.length == 0); // 判断数组长度是否大于 0
|
||||
},
|
||||
},
|
||||
async mounted() {
|
||||
await this.getList()
|
||||
},
|
||||
methods: {
|
||||
goDetail(item) {
|
||||
this.goPage('vehicleAlarmDetail', { code: item.code })
|
||||
},
|
||||
async getCount() {
|
||||
let res = await getAlarmCount();
|
||||
this.tabArr[0].num = res?.data?.alarmCount || 0
|
||||
this.tabArr[1].num = res?.data?.jxCount || 0
|
||||
this.tabArr[2].num = res?.data?.yyCount || 0
|
||||
},
|
||||
async changeTab(index) {
|
||||
this.activeIndex = index
|
||||
this.pageNum = 1
|
||||
this.pageList = [];
|
||||
this.total= 0
|
||||
await this.getList()
|
||||
},
|
||||
async getList() {
|
||||
let handleStatus;
|
||||
if( this.activeIndex == 2 ) {
|
||||
handleStatus = 3
|
||||
} else {
|
||||
handleStatus = this.activeIndex
|
||||
}
|
||||
let res = await getAlarmList({
|
||||
pageNum:this.pageNum,
|
||||
pageSize:this.pageSize,
|
||||
handStatus: handleStatus
|
||||
})
|
||||
this.total = res.total
|
||||
if(this.pageNum == 1){// 第一页直接赋值
|
||||
this.pageList=res.data
|
||||
}else{// 第二页数据拼接
|
||||
let preList = this.pageList;
|
||||
let arr = res.data;
|
||||
this.pageList = preList.concat(arr)
|
||||
}
|
||||
await this.getCount();
|
||||
},
|
||||
async onLoad(){
|
||||
this.pageNum++;
|
||||
await this.getList()
|
||||
this.loading = false;
|
||||
if (this.pageList.length >= this.total) {
|
||||
this.finished = true;
|
||||
}
|
||||
},
|
||||
async onRefresh() {
|
||||
this.pageNum=1
|
||||
await this.getList()
|
||||
setTimeout(() => {
|
||||
this.$toast('刷新成功');
|
||||
this.isLoading = false;
|
||||
}, 1000);
|
||||
},
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<style scoped lang="scss">
|
||||
.wrap{
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: #F4F5F7 !important;
|
||||
box-sizing: border-box;
|
||||
overflow-y: auto;
|
||||
}
|
||||
.tab_wrap {
|
||||
display: flex;
|
||||
justify-content: space-around;
|
||||
padding-top: 15px;
|
||||
padding-bottom: 10px;
|
||||
position: fixed;
|
||||
width: 100%;
|
||||
top: 0;
|
||||
left: 0;
|
||||
background-color: #F4F5F7;
|
||||
z-index: 100;
|
||||
.item_wrap {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
.alpha {
|
||||
color: rgba(115, 115, 115, 0.7);
|
||||
font-size: 13px;
|
||||
line-height: 13px;
|
||||
}
|
||||
.active {
|
||||
font-size: 14px;
|
||||
color: #3678FF;
|
||||
position: relative;
|
||||
}
|
||||
.active:after {
|
||||
content: '';
|
||||
display: block;
|
||||
width: 18px;
|
||||
height: 3px;
|
||||
background: linear-gradient( 270deg, #33A3FF 0%, #176AFE 100%);
|
||||
border-radius: 2px;
|
||||
position: absolute;
|
||||
margin-top: 3px;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
}
|
||||
.numTip {
|
||||
border-radius: 4px;
|
||||
background: #F95B45;
|
||||
display: inline-block;
|
||||
padding: 2px 4px;
|
||||
font-weight: 600;
|
||||
font-size: 11px;
|
||||
color: #FFFFFF;
|
||||
margin-left: 5px;
|
||||
}
|
||||
}
|
||||
.content_wrap {
|
||||
padding: 50px 12px 0;
|
||||
.alarm_wrap {
|
||||
margin-top: 10px;
|
||||
background: #FFFFFF;
|
||||
box-shadow: 0px 2px 10px 0px rgba(216,216,216,0.5);
|
||||
border-radius: 6px;
|
||||
padding: 13px 13px 17px 18px;
|
||||
box-sizing: border-box;
|
||||
.alarm_title {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
.label {
|
||||
color: rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
.flexLabel {
|
||||
min-width: 50px;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
.flexContent {
|
||||
flex: 1;
|
||||
word-break: break-all;
|
||||
}
|
||||
.title_left {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
span {
|
||||
font-size: 14px;
|
||||
font-weight: bold;
|
||||
color: rgba(0, 0, 0, 0.85);
|
||||
}
|
||||
.alarm_level {
|
||||
width: 32px;
|
||||
height: 14px;
|
||||
margin-left: 7px;
|
||||
}
|
||||
}
|
||||
.alarm_content {
|
||||
display: flex;
|
||||
margin-top: 10px;
|
||||
.content {
|
||||
margin-left: 10px;
|
||||
font-size: 13px;
|
||||
color: rgba(0, 0, 0, 0.75);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.bgEmptyImg{
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
height: 90% ;
|
||||
background-color: #F4F5F7;
|
||||
img{
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
</style>
|
||||