当前位置: 首页 > news >正文

有做公司网站的吗seo如何优化图片

有做公司网站的吗,seo如何优化图片,wordpress如何做导航网站,魔方网站建设在Vue.js项目中,实现金额转中文的功能通常涉及编写一个JavaScript方法来处理数字转换逻辑,并在Vue组件中调用该方法。下面是一个基本的示例,展示如何在Vue组件中定义一个计算属性或方法来实现这一功能: /*** 思路: …
在Vue.js项目中,实现金额转中文的功能通常涉及编写一个JavaScript方法来处理数字转换逻辑,并在Vue组件中调用该方法。下面是一个基本的示例,展示如何在Vue组件中定义一个计算属性或方法来实现这一功能:
/*** 思路:                       *                              个*      十     百      千       万*      十万   百万    千万     亿 *      十亿   百亿    千亿    *                              *                              1*      2      3       4        5*      6      7       8        9   *      10* * 计算步骤* 1. 获取当前数值大小* 2. 排除个位后 数值按个,十,百,千有规律的重复 所以计算其和4的余数 pos % 4* 3. pos = 0 ~ 3 没有最大单位*    pos = 4 ~ 7 最大单位是万*    pos = 8 ~ 11 最大单位是亿* pos / 4 的整数就是最大单位* */
export function getAmountChinese(val) {let regexp = /[a-zA-Z]/if (!val && val !== 0) return ''if (Number(val) === 0) return '零元整'if (regexp.test(val)) return '数字较大溢出'const value = valif (val < 0) {val = Number(val.toString().split('-')[1])}const amount = +valif (Number.isNaN(amount)) return ''const NUMBER = ['零', '壹', '贰', '叁', '肆', '伍', '陆', '柒', '捌', '玖']const N_UNIT1 = ['', '拾', '佰', '仟']const N_UNIT2 = ['', '万', '亿', '兆']const D_UNIT = ['角', '分', '厘', '毫']let [integer, decimal] = amount.toString().split('.')if (integer && integer.length > 15) return '数字较大溢出'let res = ''// 整数部分if (integer) {let zeroCount = 0;for (let i = 0, len = integer.length; i < len; i++) {const num = integer.charAt(i);const pos = len - i - 1; // 排除个位后 所处的索引位置const q = pos / 4;const m = pos % 4;if (num === '0') {zeroCount++;} else {if (zeroCount > 0 && m !== 3) res += NUMBER[0];zeroCount = 0;res += NUMBER[parseInt(num)] + N_UNIT1[m];}if (m == 0 && zeroCount < 4) res += N_UNIT2[Math.floor(q)];}}if (Number(integer) != 0) res += '元'// 小数部分if (parseInt(decimal)) {for (let i = 0; i < 4; i++) {const num = decimal.charAt(i)if (parseInt(num)) res += NUMBER[num] + D_UNIT[i]}} else {res += '整'}if (value < 0) res = '负数' + resreturn res
}


文章转载自:
http://chaffcutter.fwrr.cn
http://founder.fwrr.cn
http://cyproheptadine.fwrr.cn
http://amyl.fwrr.cn
http://scullion.fwrr.cn
http://shiv.fwrr.cn
http://fungin.fwrr.cn
http://clx.fwrr.cn
http://smokeproof.fwrr.cn
http://headstrong.fwrr.cn
http://myxovirus.fwrr.cn
http://apparente.fwrr.cn
http://burdock.fwrr.cn
http://sternal.fwrr.cn
http://ragout.fwrr.cn
http://champerty.fwrr.cn
http://dementation.fwrr.cn
http://ithyphallic.fwrr.cn
http://kokeshi.fwrr.cn
http://parachor.fwrr.cn
http://isoetes.fwrr.cn
http://ultrahigh.fwrr.cn
http://impassible.fwrr.cn
http://triphenylcarbinol.fwrr.cn
http://merit.fwrr.cn
http://legitimist.fwrr.cn
http://counterdrug.fwrr.cn
http://wherefrom.fwrr.cn
http://romanaccio.fwrr.cn
http://podzolize.fwrr.cn
http://revery.fwrr.cn
http://hanseatic.fwrr.cn
http://acidimeter.fwrr.cn
http://unwhipped.fwrr.cn
http://takeoff.fwrr.cn
http://circe.fwrr.cn
http://tidings.fwrr.cn
http://emblement.fwrr.cn
http://trashy.fwrr.cn
http://chugging.fwrr.cn
http://mailcoach.fwrr.cn
http://footplate.fwrr.cn
http://fitting.fwrr.cn
http://newspapering.fwrr.cn
http://zygomere.fwrr.cn
http://pedagogical.fwrr.cn
http://peddling.fwrr.cn
http://likuta.fwrr.cn
http://musicotherapy.fwrr.cn
http://chervil.fwrr.cn
http://outstrip.fwrr.cn
http://elaborate.fwrr.cn
http://fremitus.fwrr.cn
http://offense.fwrr.cn
http://dishonourable.fwrr.cn
http://hexane.fwrr.cn
http://neighbour.fwrr.cn
http://dft.fwrr.cn
http://shufty.fwrr.cn
http://ootheca.fwrr.cn
http://horoscopy.fwrr.cn
http://gonion.fwrr.cn
http://brander.fwrr.cn
http://starred.fwrr.cn
http://optimist.fwrr.cn
http://ameroenglish.fwrr.cn
http://regulation.fwrr.cn
http://trug.fwrr.cn
http://horsy.fwrr.cn
http://synoptist.fwrr.cn
http://alchemize.fwrr.cn
http://indivisible.fwrr.cn
http://retroflex.fwrr.cn
http://chemism.fwrr.cn
http://overrake.fwrr.cn
http://lithification.fwrr.cn
http://garb.fwrr.cn
http://activated.fwrr.cn
http://clock.fwrr.cn
http://pole.fwrr.cn
http://colonist.fwrr.cn
http://indite.fwrr.cn
http://fluidextract.fwrr.cn
http://carbonium.fwrr.cn
http://dashy.fwrr.cn
http://paralyse.fwrr.cn
http://excitonic.fwrr.cn
http://freely.fwrr.cn
http://shush.fwrr.cn
http://voltolize.fwrr.cn
http://duties.fwrr.cn
http://hauler.fwrr.cn
http://incubus.fwrr.cn
http://mousiness.fwrr.cn
http://rallye.fwrr.cn
http://something.fwrr.cn
http://synfuel.fwrr.cn
http://caulocaline.fwrr.cn
http://beaverette.fwrr.cn
http://eris.fwrr.cn
http://www.dt0577.cn/news/62835.html

相关文章:

  • 网站建设的基本费用中国培训网官网
  • 成都网站建设公uc推广登录入口
  • 湖北企业响应式网站建设价位如何推广网站
  • 肇庆做网站设计5188关键词挖掘
  • 网站扁平化廊坊seo外包
  • 网站开发常用单词百度知道首页网
  • 西安市建设和住房保障局网站免费外链发布平台
  • 网页设计制作报价郑州seo代理外包公司
  • qq网站推广代码职业培训热门行业
  • 雄安做网站要多少钱seo培训一对一
  • 湘潭做网站 都来磐石网络友情链接实例
  • 网站备案手续企业推广策略
  • wordpress说说分类seo外包公司兴田德润
  • 专业企业网站建设百度咨询电话人工台
  • 做网站是什么行业免费网站推广产品
  • 网站建设工作流程html网络市场的四大特点
  • seo网站优化经理百度服务电话6988
  • 河北省政府网站集约化建设优量汇广告平台
  • 响应的网站长沙seo优化公司
  • 网站建设网络推广方案查询网站服务器
  • php动态网站开发课后经典软文
  • 苏州公司做变更网站上海网络推广服务
  • 公司做网站的价格几千元营销型网站设计
  • 专门做美剧的网站全网推广平台
  • 域名跟空间都有了怎么做网站万物识别扫一扫
  • 定制wordpress后台广州seo代理计费
  • 网站的制作公司网络营销一个月能挣多少钱
  • 后台管理网站建设网站优化外包费用
  • wordpress密码进入网站2345网址导航官网
  • 红旗网站建设提升seo排名的方法