在el-form中嵌套el-table时,表单校验问题

在el-form中嵌套el-table时, 对某个字段使用el-form-item加校验, 前面没有写el-form-item且没有配置校验会影响后面配置过的

<!-- 供应商预估金额 -->
          <el-table-column width="200" :label="'供应商预估金额'">
            <template slot-scope="scope">
              <el-input v-model.trim="scope.row.supplierEstimatedAmt" style="width: 100%;" :disabled="true"></el-input>
            </template>
          </el-table-column>

          <!-- 设计变更预估金额 -->
          <el-table-column width="120" :label="'设计变更预估金额'">
            <template slot-scope="scope">
              <span v-show="isShowSpan" style="width: 100%;">
                {{scope.row.alterationEstimatedAmt}}
              </span>
              <el-form-item 
                v-show="isEdit"
                style="margin-top: 20px"
                label-width="0"
                :prop="'contractTableData.' + scope.$index + '.alterationEstimatedAmt'"
                :rules='rules.alterationEstimatedAmt'
              >
                <amount-input 
                  v-model.number="scope.row.alterationEstimatedAmt"
                  style="width: 100%;"
                  @blur="calcAmount"
                  :disabled="buttonDisable" />
              </el-form-item>
            </template>
          </el-table-column>
// 并没有给supplierEstimatedAmt这个字段配置校验规则
alterationEstimatedAmt: [
          { required: true, message: '请输入预估金额', trigger: 'blur' },
          { type: 'number', message: '请输入数字' }
        ],

但是却是supplierEstimatedAmt这个字段有校验

image

阅读 4.5k
1 个回答

你的prop 和表单v-model 写的不一致吧

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题
宣传栏