文件名修改

This commit is contained in:
pangxingyue
2021-03-24 18:31:55 +08:00
parent 925346929c
commit 1621ff4260
10 changed files with 39 additions and 31 deletions

View File

@@ -1,3 +1,11 @@
<!--
* @Author: PangXingYue
* @Date: 2021-03-23 17:07:03
* @LastEditTime: 2021-03-24 18:23:20
* @LastEditors: PangXingYue
* @Description:
* @FilePath: \ebiz-h5\src\components\ebiz\insureAgain\ProgressBar.vue
-->
<template> <template>
<div class="prgoress-bar"> <div class="prgoress-bar">
<template v-for="(item, index) in items"> <template v-for="(item, index) in items">
@@ -41,7 +49,7 @@ export default {
var url; var url;
switch (index) { switch (index) {
case 0: case 0:
url = 'insureInformation'; url = 'InsureInformation';
break; break;
case 1: case 1:
url = 'productInformation'; url = 'productInformation';
@@ -53,7 +61,7 @@ export default {
url = 'signConfirmation'; url = 'signConfirmation';
break; break;
default: default:
url = 'insureInformation'; url = 'InsureInformation';
break; break;
} }
this.$jump({ this.$jump({

View File

@@ -1,20 +1,20 @@
/* /*
* @Author: PangXingYue * @Author: PangXingYue
* @Date: 2021-03-11 09:07:58 * @Date: 2021-03-11 09:07:58
* @LastEditTime: 2021-03-24 18:03:16 * @LastEditTime: 2021-03-24 18:30:51
* @LastEditors: PangXingYue * @LastEditors: PangXingYue
* @Description: * @Description:
* @FilePath: \ebiz-h5\src\router\ebiz\insureAgain.js * @FilePath: \ebiz-h5\src\router\ebiz\insureAgain.js
*/ */
const InsureAgain = () => import('@/views/ebiz/insureAgain') const InsureAgain = () => import('@/views/ebiz/insureAgain')
const UncommitInsureDetail = () => import('@/views/ebiz/insureAgain/uncommitInsureDetail') const UncommitInsureDetail = () => import('@/views/ebiz/insureAgain/UncommitInsureDetail')
const CommitInsureDetail = () => import('@/views/ebiz/insureAgain/commitInsureDetail') const CommitInsureDetail = () => import('@/views/ebiz/insureAgain/CommitInsureDetail')
const InsureInformation = () => import('@/views/ebiz/insureAgain/insureInformation') const InsureInformation = () => import('@/views/ebiz/insureAgain/InsureInformation')
const ProductInformation = () => import('@/views/ebiz/insureAgain/productInformation') const ProductInformation = () => import('@/views/ebiz/insureAgain/ProductInformation')
const Notification = () => import('@/views/ebiz/insureAgain/notification') const Notification = () => import('@/views/ebiz/insureAgain/Notification')
const SignatureConfirmation = () => import('@/views/ebiz/insureAgain/SignatureConfirmation') const SignatureConfirmation = () => import('@/views/ebiz/insureAgain/SignatureConfirmation')
const InsureAgainPayment = () => import('@/views/ebiz/insureAgain/payment') const InsureAgainPayment = () => import('@/views/ebiz/insureAgain/Payment')
const PaymentResult = () => import('@/views/ebiz/insureAgain/paymentResult') const PaymentResult = () => import('@/views/ebiz/insureAgain/PaymentResult')
const ProductTip = () => import('@/views/ebiz/insureAgain/ProductTip') const ProductTip = () => import('@/views/ebiz/insureAgain/ProductTip')
const InsuranceTip = () => import('@/views/ebiz/insureAgain/InsuranceTip') const InsuranceTip = () => import('@/views/ebiz/insureAgain/InsuranceTip')
const SignatureOfElectronic = () => import('@/views/ebiz/insureAgain/SignatureOfElectronic') const SignatureOfElectronic = () => import('@/views/ebiz/insureAgain/SignatureOfElectronic')
@@ -32,8 +32,8 @@ export default [
}, },
{ {
// 可申请重新投保保单详情 // 可申请重新投保保单详情
path: '/insureAgain/uncommitInsureDetail', path: '/insureAgain/UncommitInsureDetail',
name: 'uncommitInsureDetail', name: 'UncommitInsureDetail',
component: UncommitInsureDetail, component: UncommitInsureDetail,
meta: { meta: {
title: '可申请重新投保保单详情' title: '可申请重新投保保单详情'
@@ -41,8 +41,8 @@ export default [
}, },
{ {
// 重新投保保单详情 // 重新投保保单详情
path: '/insureAgain/commitInsureDetail', path: '/insureAgain/CommitInsureDetail',
name: 'commitInsureDetail', name: 'CommitInsureDetail',
component: CommitInsureDetail, component: CommitInsureDetail,
meta: { meta: {
title: '重新投保保单详情' title: '重新投保保单详情'
@@ -50,7 +50,7 @@ export default [
}, },
{ {
// 投保信息确认 // 投保信息确认
path: '/insureAgain/insureInformation', path: '/insureAgain/InsureInformation',
name: 'InsureInformation', name: 'InsureInformation',
component: InsureInformation, component: InsureInformation,
meta: { meta: {
@@ -59,8 +59,8 @@ export default [
}, },
{ {
// 险种信息 // 险种信息
path: '/insureAgain/productInformation', path: '/insureAgain/ProductInformation',
name: 'productInformation', name: 'ProductInformation',
component: ProductInformation, component: ProductInformation,
meta: { meta: {
title: '险种信息' title: '险种信息'
@@ -68,8 +68,8 @@ export default [
}, },
{ {
// 告知信息 // 告知信息
path: '/insureAgain/notification', path: '/insureAgain/Notification',
name: 'notification', name: 'Notification',
component: Notification, component: Notification,
meta: { meta: {
title: '告知信息' title: '告知信息'
@@ -86,7 +86,7 @@ export default [
}, },
{ {
// 支付 // 支付
path: '/insureAgain/payment', path: '/insureAgain/Payment',
name: 'InsureAgainPayment', name: 'InsureAgainPayment',
component: InsureAgainPayment, component: InsureAgainPayment,
meta: { meta: {
@@ -95,8 +95,8 @@ export default [
}, },
{ {
// 支付结果 // 支付结果
path: '/insureAgain/paymentResult', path: '/insureAgain/PaymentResult',
name: 'InsureAgainPaymentResult', name: 'PaymentResult',
component: PaymentResult, component: PaymentResult,
meta: { meta: {
title: '支付结果' title: '支付结果'

View File

@@ -588,10 +588,10 @@ export default {
this.$jump({ this.$jump({
flag: 'h5', flag: 'h5',
extra: { extra: {
url: location.origin + `/#/insureAgain/productInformation` url: location.origin + `/#/insureAgain/ProductInformation`
}, },
routerInfo: { routerInfo: {
path: `/insureAgain/productInformation` path: `/insureAgain/ProductInformation`
} }
}) })
} else { } else {

View File

@@ -91,7 +91,7 @@ import ReadingAgreement from '@/components/ebiz/insureAgain/ReadingAgreement'
import commitReOrder from '@/api/ebiz/insureAgain/insureAgain' import commitReOrder from '@/api/ebiz/insureAgain/insureAgain'
import { Checkbox, RadioGroup, Radio, Dialog } from 'vant' import { Checkbox, RadioGroup, Radio, Dialog } from 'vant'
export default { export default {
name: 'productInformation', name: 'ProductInformation',
components: { components: {
ProgressBar, ProgressBar,
DropdownBox, DropdownBox,

View File

@@ -191,10 +191,10 @@ export default {
this.$jump({ this.$jump({
flag: 'h5', flag: 'h5',
extra: { extra: {
url: location.origin + '/#/insureAgain/uncommitInsureDetail' url: location.origin + '/#/insureAgain/UncommitInsureDetail'
}, },
routerInfo: { routerInfo: {
path: '/insureAgain/uncommitInsureDetail' path: '/insureAgain/UncommitInsureDetail'
} }
}) })
}, },
@@ -202,10 +202,10 @@ export default {
this.$jump({ this.$jump({
flag: 'h5', flag: 'h5',
extra: { extra: {
url: location.origin + '/#/insureAgain/commitInsureDetail' url: location.origin + '/#/insureAgain/CommitInsureDetail'
}, },
routerInfo: { routerInfo: {
path: '/insureAgain/commitInsureDetail' path: '/insureAgain/CommitInsureDetail'
} }
}) })
}, },
@@ -213,11 +213,11 @@ export default {
this.$jump({ this.$jump({
flag: 'h5', flag: 'h5',
extra: { extra: {
url: location.origin + `/#/insureAgain/insureInformation`, url: location.origin + `/#/insureAgain/InsureInformation`,
forbidSwipeBack: '1', forbidSwipeBack: '1',
needRefresh: '1' needRefresh: '1'
}, },
routerInfo: { path: `/insureAgain/insureInformation` } routerInfo: { path: `/insureAgain/InsureInformation` }
}) })
}, },
onRefresh() { onRefresh() {