mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-10 15:06:45 +08:00
安全性问题处理:代码版本整理 初始版本1 --提交人:阳华祥
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
import { productCheck } from '@/api/ebiz/common/common'
|
||||
import { getCompany } from '@/api/ebiz/sale/sale'
|
||||
import CacheUtils from '@/assets/js/utils/cacheUtils'
|
||||
|
||||
export default {
|
||||
//投、被保险人年龄对险种的限制
|
||||
@@ -70,11 +71,11 @@ export default {
|
||||
},
|
||||
//获取被保险人信息
|
||||
getSaleInsuredPersonInfo() {
|
||||
return localStorage.saleInsuredPersonInfo && JSON.parse(localStorage.saleInsuredPersonInfo)
|
||||
return CacheUtils.getLocItem('saleInsuredPersonInfo') && JSON.parse(CacheUtils.getLocItem('saleInsuredPersonInfo'))
|
||||
},
|
||||
//获取投保人信息
|
||||
getSaleInsuredInfo() {
|
||||
return localStorage.saleInsuredInfo && JSON.parse(localStorage.saleInsuredInfo)
|
||||
return CacheUtils.getLocItem('saleInsuredInfo') && JSON.parse(CacheUtils.getLocItem('saleInsuredInfo'))
|
||||
},
|
||||
|
||||
//获取产品售卖权限列表
|
||||
|
||||
Reference in New Issue
Block a user