12345678910111213141516171819202122232425262728293031323334353637 |
- //后续跟随app发版版本一致,暂从2.0.0开始
- global.LOGINVERSION = '1.0.3'
- //是否启用版本控制
- global.USEVERSION = true
- // 获取客户信息
- export const GETCUSTOM = async data => {
- global.CUSTOMERINFO = data
- // global.CUSTOMERINFO.customerRankCode = "01";
- }
- // 获取全局币种信息
- export const SETCURRENCY = async res => {
- let currency = {}
- currency.id = res.id
- currency.code = res.code
- currency.name = res.name
- currency.currencySign = res.symbol // 币符
- currency.currencyPriceScale = res.pricePrecision // 价格精度
- currency.currencyAmountScale = res.amountPrecision // 金额精度
- global.CURRENCY = currency
- }
- // 设置全局用户登录信息
- export const SETUSERINFO = async data => {
- global.USERINFO = data
- }
- // 适配iPhone X的全局样式
- export const SETHEADER = async data => {
- let headerStyle = {}
- headerStyle.height = data.height
- headerStyle.paddingTop = data.paddingTop
- headerStyle.paddingBottom = data.paddingBottom
- global.HEADERSTYLE = headerStyle
- }
- // global.CUSTOMERINFO = "83fea73d-6155-4e16-90b2-28c9ae8294e4";
|