保留几位小数
//正则
let numF = (this.countData.hkje * 100) / 1000000
sums[index] = Number(numF.toString().match(/^\d+(?:\.\d{0,4})?/)) + '万元';
//更正上面的只可以是正数不可以负数,下面的可以是正说或者负数都可以
sums[index] = Number(numF.toString().match(/-?\d+(?:\.\d{0,2})?/)) + '万元';
//计算
Math.round(this.formData.data.dj* 100) / 100
element的表格插槽,头部label和当前行数据
<template slot="header">
<el-tooltip class="item" effect="dark" content="终版预算总成本" placement="top">
<span>lable名称</span>
</el-tooltip>
</template>
<template slot-scope="scope">
当前行数据 :{{scope.row}}
</template>
element的表单校验指定的值
this.$refs.processForm.validateField(`data.wlck.wlckmxList[${index}].dw`);
vue视图不刷新强制刷新
//方法1
this.$set(this, 'gridData', res.data)
//方法2
this.$delete(this, 'gridData')
this.$set(this, 'gridData', res.data)
文章来源地址https://www.toymoban.com/news/detail-684545.html
文章来源:https://www.toymoban.com/news/detail-684545.html
到了这里,关于vue管理系统常用命令记录的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!