|
@@ -558,33 +558,14 @@ export default {
|
|
|
|
|
|
},
|
|
|
/** 提交按钮 */
|
|
|
- async submitForm() {
|
|
|
+ submitForm() {
|
|
|
|
|
|
this.form.bondedFeeList = this.QUOTAFEEList;
|
|
|
+ this.form.bondedFeeList.forEach((item,i)=>{
|
|
|
+ item.quotaId = item.id;
|
|
|
+ })
|
|
|
this.$refs["form"].validate((valid) => {
|
|
|
if (valid) {
|
|
|
- /*if (!(parseInt(this.form.score) == this.form.score)) {
|
|
|
- this.$message.error("得分必须为整数");
|
|
|
- return;
|
|
|
- }
|
|
|
- if (this.form.enterType == "文字说明" && this.form.remark == null) {
|
|
|
- this.$message.error("请录入文字说明");
|
|
|
- return;
|
|
|
- }
|
|
|
- if (this.form.enterType == "数值" && this.form.numValue == null) {
|
|
|
- this.$message.error("请录入数值");
|
|
|
- return;
|
|
|
- }
|
|
|
- if (
|
|
|
- this.form.numValue != null &&
|
|
|
- !(
|
|
|
- parseInt(this.form.numValue) == this.form.numValue ||
|
|
|
- parseFloat(this.form.numValue) == this.form.numValue
|
|
|
- )
|
|
|
- ) {
|
|
|
- this.$message.error("数值必须为整数或小数");
|
|
|
- return;
|
|
|
- }*/
|
|
|
if(this.user.roleId == 10 ) {
|
|
|
this.form.type = 1;
|
|
|
}
|