mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-12 19:36:44 +08:00
'产说会新增'
This commit is contained in:
38
src/api/ebiz/productionSay/productionSay.js
Normal file
38
src/api/ebiz/productionSay/productionSay.js
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
import request from '@/assets/js/utils/request'
|
||||||
|
import getUrl from '@/assets/js/utils/get-url'
|
||||||
|
|
||||||
|
// // 获取商品商城列表
|
||||||
|
export function getShopList(data) {
|
||||||
|
return request({
|
||||||
|
url: getUrl('/customer/shop/getShopList', 1),
|
||||||
|
method: 'post',
|
||||||
|
data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 查询分享轨迹(转发记录)
|
||||||
|
export function getShareList(data) {
|
||||||
|
return request({
|
||||||
|
url: getUrl('/customer/shop/getShareList', 1),
|
||||||
|
method: 'post',
|
||||||
|
data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 分享轨迹保存
|
||||||
|
export function saveShareTrack(data) {
|
||||||
|
return request({
|
||||||
|
url: getUrl('/customer/shop/saveShareTrack', 1),
|
||||||
|
method: 'post',
|
||||||
|
data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 获取账号密码以用于回显
|
||||||
|
export function getPassword(data) {
|
||||||
|
return request({
|
||||||
|
url: getUrl('/customer/shop/getPassword', 1),
|
||||||
|
method: 'post',
|
||||||
|
data
|
||||||
|
})
|
||||||
|
}
|
||||||
@@ -30,5 +30,6 @@ export const orgShortNames = [
|
|||||||
{ name: '玉林一营', code: '86450961' },
|
{ name: '玉林一营', code: '86450961' },
|
||||||
{ name: '南宁横县', code: '86450105' },
|
{ name: '南宁横县', code: '86450105' },
|
||||||
{ name: '桂林荔浦', code: '86450303' },
|
{ name: '桂林荔浦', code: '86450303' },
|
||||||
{ name: '贵港桂平', code: '86450803' }
|
{ name: '贵港桂平', code: '86450803' },
|
||||||
|
{ name: '来宾', code: '86451301' }
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -99,8 +99,11 @@ let performanceRanking = ['/data/performance/getComList', '/data/performance/get
|
|||||||
let hgb = ['/sale/order/selectHgb', '/sale/order/getHgbDetail']
|
let hgb = ['/sale/order/selectHgb', '/sale/order/getHgbDetail']
|
||||||
let whitelist = ['/agent/white/getWhiteInfo']
|
let whitelist = ['/agent/white/getWhiteInfo']
|
||||||
|
|
||||||
|
<<<<<<< HEAD
|
||||||
// 开门红
|
// 开门红
|
||||||
let goodStart = ['/data/performance/getComPerformance']
|
let goodStart = ['/data/performance/getComPerformance']
|
||||||
|
=======
|
||||||
|
>>>>>>> feature/GFRS-2266【需求】产说会需求
|
||||||
let eqiVisit = [
|
let eqiVisit = [
|
||||||
'/agent/accompany/getAccompanyComCode',
|
'/agent/accompany/getAccompanyComCode',
|
||||||
'/agent/accompany/getAccompanyPerson',
|
'/agent/accompany/getAccompanyPerson',
|
||||||
@@ -125,7 +128,10 @@ let whiteList = [
|
|||||||
...performanceRanking,
|
...performanceRanking,
|
||||||
...hgb,
|
...hgb,
|
||||||
...whitelist,
|
...whitelist,
|
||||||
|
<<<<<<< HEAD
|
||||||
...goodStart,
|
...goodStart,
|
||||||
|
=======
|
||||||
|
>>>>>>> feature/GFRS-2266【需求】产说会需求
|
||||||
...eqiVisit
|
...eqiVisit
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|||||||
@@ -33,7 +33,14 @@ import eqiVisit from './eqiVisit'
|
|||||||
|
|
||||||
// 重新投保
|
// 重新投保
|
||||||
import insureAgain from './insureAgain'
|
import insureAgain from './insureAgain'
|
||||||
|
import train from './train'
|
||||||
|
import renewalManage from './renewalManage'
|
||||||
|
import question from './question'
|
||||||
|
import hgb from './hgb'
|
||||||
|
import eqiVisit from './eqiVisit'
|
||||||
|
|
||||||
|
// 产说会
|
||||||
|
import productionSay from './productionSay'
|
||||||
export default [
|
export default [
|
||||||
...proposal,
|
...proposal,
|
||||||
...sale,
|
...sale,
|
||||||
@@ -60,8 +67,14 @@ export default [
|
|||||||
...renewalManage,
|
...renewalManage,
|
||||||
...question,
|
...question,
|
||||||
...hgb,
|
...hgb,
|
||||||
|
...train,
|
||||||
...goodStart,
|
...goodStart,
|
||||||
|
<<<<<<< HEAD
|
||||||
...train,
|
...train,
|
||||||
...eqiVisit,
|
...eqiVisit,
|
||||||
...insureAgain
|
...insureAgain
|
||||||
|
=======
|
||||||
|
...eqiVisit,
|
||||||
|
...productionSay
|
||||||
|
>>>>>>> feature/GFRS-2266【需求】产说会需求
|
||||||
] //根据需要进行删减
|
] //根据需要进行删减
|
||||||
|
|||||||
44
src/router/ebiz/productionSay.js
Normal file
44
src/router/ebiz/productionSay.js
Normal file
@@ -0,0 +1,44 @@
|
|||||||
|
//产品列表 定义相关组件
|
||||||
|
const productList = () => import('@/views/ebiz/product/ProductList')
|
||||||
|
const productDetail = () => import('@/views/ebiz/product/ProductDetail')
|
||||||
|
const productDocument = () => import('@/views/ebiz/product/ProductDocument')
|
||||||
|
const homeProduct = () => import('@/views/ebiz/product/HomeProduct')
|
||||||
|
|
||||||
|
export default [
|
||||||
|
{
|
||||||
|
path: '/product/productList',
|
||||||
|
name: 'productList',
|
||||||
|
component: productList,
|
||||||
|
meta: {
|
||||||
|
title: '产品列表',
|
||||||
|
index: 1
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: '/product/productDetail/:productDetailCode',
|
||||||
|
name: 'productDetail',
|
||||||
|
component: productDetail,
|
||||||
|
meta: {
|
||||||
|
title: '产品详情',
|
||||||
|
index: 2
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: '/product/productDocument',
|
||||||
|
name: 'productDocument',
|
||||||
|
component: productDocument,
|
||||||
|
meta: {
|
||||||
|
title: '产品资料',
|
||||||
|
index: 3
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: '/product/homeProduct',
|
||||||
|
name: 'homeProduct',
|
||||||
|
component: homeProduct,
|
||||||
|
meta: {
|
||||||
|
title: '首页产品',
|
||||||
|
index: 4
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
@@ -1583,6 +1583,7 @@ export default {
|
|||||||
this.getTrial()
|
this.getTrial()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
<<<<<<< HEAD
|
||||||
} else if (this.saleInsuredPersonInfo.age >= 0 && this.saleInsuredPersonInfo.age <= 40) {
|
} else if (this.saleInsuredPersonInfo.age >= 0 && this.saleInsuredPersonInfo.age <= 40) {
|
||||||
//使用rules规则里的第一条控制保额份数
|
//使用rules规则里的第一条控制保额份数
|
||||||
if (Number(defalutValue) < Number(riskFactor.rules[0].minPrem) || Number(defalutValue) > Number(riskFactor.rules[0].maxPrem)) {
|
if (Number(defalutValue) < Number(riskFactor.rules[0].minPrem) || Number(defalutValue) > Number(riskFactor.rules[0].maxPrem)) {
|
||||||
@@ -1620,6 +1621,8 @@ export default {
|
|||||||
this.getTrial()
|
this.getTrial()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
=======
|
||||||
|
>>>>>>> feature/GFRS-2266【需求】产说会需求
|
||||||
} else if (this.saleInsuredPersonInfo.age >= 0 && this.saleInsuredPersonInfo.age <= 40) {
|
} else if (this.saleInsuredPersonInfo.age >= 0 && this.saleInsuredPersonInfo.age <= 40) {
|
||||||
//使用rules规则里的第一条控制保额份数
|
//使用rules规则里的第一条控制保额份数
|
||||||
if (Number(defalutValue) < Number(riskFactor.rules[0].minPrem) || Number(defalutValue) > Number(riskFactor.rules[0].maxPrem)) {
|
if (Number(defalutValue) < Number(riskFactor.rules[0].minPrem) || Number(defalutValue) > Number(riskFactor.rules[0].maxPrem)) {
|
||||||
|
|||||||
12
src/views/ebiz/productionSay/List.vue
Normal file
12
src/views/ebiz/productionSay/List.vue
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
name:'List',
|
||||||
|
|
||||||
|
}
|
||||||
|
</script>
|
||||||
Reference in New Issue
Block a user