|
@@ -65,9 +65,9 @@
|
|
|
</el-table-column> -->
|
|
|
<el-table-column label="备注" align="center" prop="remark"></el-table-column>
|
|
|
<el-table-column label="绩效公差上下公差占比" align="center" prop="msRetio" />
|
|
|
- <el-table-column label="采集公差上下公差占比" align="center" prop="dfRetio" />
|
|
|
- <el-table-column label="采集参考值" align="center" prop="collValue" />
|
|
|
- <el-table-column label="绩效参考值" align="center" prop="meritsValue" />
|
|
|
+ <el-table-column label="采集公差上下公差占比" align="center" prop="dfRetio" />
|
|
|
+ <el-table-column label="采集参考值" align="center" prop="collValue" />
|
|
|
+ <el-table-column label="绩效参考值" align="center" prop="meritsValue" />
|
|
|
|
|
|
<!-- <el-table-column label="明细类型(1=绩效,2=采集)" align="center" prop="type"></el-table-column> -->
|
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
|
@@ -341,37 +341,37 @@ export default {
|
|
|
|
|
|
|
|
|
this.$refs["form"].validate(valid => {
|
|
|
- if (!(parseInt(this.form.fnumber) == this.form.fnumber || parseFloat(this.form.fnumber) == this.form.fnumber)) {
|
|
|
- this.$message.error('权数必须为整数或小数');
|
|
|
- return;
|
|
|
- }
|
|
|
+ if (valid) {
|
|
|
+ if (!(parseInt(this.form.fnumber) == this.form.fnumber || parseFloat(this.form.fnumber) == this.form.fnumber)) {
|
|
|
+ this.$message.error('权数必须为整数或小数');
|
|
|
+ return;
|
|
|
+ }
|
|
|
|
|
|
- if (!(parseInt(this.form.meritsValue) == this.form.meritsValue || parseFloat(this.form.meritsValue) == this.form.meritsValue)) {
|
|
|
- this.$message.error('绩效参考值必须为整数或小数');
|
|
|
- return;
|
|
|
- }
|
|
|
+ if (!(parseInt(this.form.meritsValue) == this.form.meritsValue || parseFloat(this.form.meritsValue) == this.form.meritsValue)) {
|
|
|
+ this.$message.error('绩效参考值必须为整数或小数');
|
|
|
+ return;
|
|
|
+ }
|
|
|
|
|
|
- if (!(parseInt(this.form.collValue) == this.form.collValue || parseFloat(this.form.collValue) == this.form.collValue)) {
|
|
|
- this.$message.error('采集参考值必须为整数或小数');
|
|
|
- return;
|
|
|
- }
|
|
|
+ if (!(parseInt(this.form.collValue) == this.form.collValue || parseFloat(this.form.collValue) == this.form.collValue)) {
|
|
|
+ this.$message.error('采集参考值必须为整数或小数');
|
|
|
+ return;
|
|
|
+ }
|
|
|
|
|
|
- if (!(parseInt(this.form.dfRetio) == this.form.dfRetio || parseFloat(this.form.dfRetio) == this.form.dfRetio)) {
|
|
|
- this.$message.error('采集公差上下公差占比必须为整数或小数');
|
|
|
- return;
|
|
|
- }
|
|
|
+ if (!(parseInt(this.form.dfRetio) == this.form.dfRetio || parseFloat(this.form.dfRetio) == this.form.dfRetio)) {
|
|
|
+ this.$message.error('采集公差上下公差占比必须为整数或小数');
|
|
|
+ return;
|
|
|
+ }
|
|
|
|
|
|
- if (!(parseInt(this.form.msRetio) == this.form.msRetio || parseFloat(this.form.msRetio) == this.form.msRetio)) {
|
|
|
- this.$message.error('绩效公差上下公差占比必须为整数或小数');
|
|
|
- return;
|
|
|
- }
|
|
|
+ if (!(parseInt(this.form.msRetio) == this.form.msRetio || parseFloat(this.form.msRetio) == this.form.msRetio)) {
|
|
|
+ this.$message.error('绩效公差上下公差占比必须为整数或小数');
|
|
|
+ return;
|
|
|
+ }
|
|
|
|
|
|
- if (!(parseInt(this.form.normRatio) == this.form.normRatio || parseFloat(this.form.normRatio) == this.form.normRatio)) {
|
|
|
- this.$message.error('分类占比必须为整数或小数');
|
|
|
- return;
|
|
|
- }
|
|
|
+ if (!(parseInt(this.form.normRatio) == this.form.normRatio || parseFloat(this.form.normRatio) == this.form.normRatio)) {
|
|
|
+ this.$message.error('分类占比必须为整数或小数');
|
|
|
+ return;
|
|
|
+ }
|
|
|
|
|
|
- if (valid) {
|
|
|
if (this.form.id != null) {
|
|
|
updateGIVE(this.form).then(response => {
|
|
|
this.$modal.msgSuccess("修改成功");
|