src/views/business/productOrder/components/add.vue
@@ -352,20 +352,20 @@
              </span>
            </template>
          </el-table-column>
          <el-table-column label="条件" min-width="140" prop="radius" show-overflow-tooltip>
          <el-table-column label="试验条件" min-width="140" prop="radius" show-overflow-tooltip>
            <template slot-scope="scope">
              <el-input v-if="(active == 1 || tabIndex == 4) && (isAskOnlyRead || isSpecial)" v-model="scope.row.radius"
                :autosize="{ minRows: 1, maxRows: 3 }" clearable placeholder="条件" size="small" type="textarea"
                :autosize="{ minRows: 1, maxRows: 3 }" clearable placeholder="试验条件" size="small" type="textarea"
                @change="e => requestChange(e, scope.row, 'radius')">
              </el-input>
              <span v-else>{{ scope.row.radius }}</span>
            </template>
          </el-table-column>
          <el-table-column label="试验方法" min-width="120" prop="methodS" show-overflow-tooltip>
          <el-table-column label="试验方法" min-width="120" prop="method" show-overflow-tooltip>
            <template slot="header" slot-scope="scope">
              <div style="display: flex;align-items: center;flex-direction: column;font-size: 14px">
                <span>试验方法</span>
                <el-input v-if="active == 1" v-model="methodS" placeholder="请输入" size="mini"
                <el-input v-if="active == 1" v-model="scope.row.method" placeholder="请输入" size="mini"
                  @input="searchFilterList" />
              </div>
            </template>
@@ -856,6 +856,11 @@
          };
          this.addObj.type = String(this.addObj.type)
          this.sampleList = this.HaveJson(res.data.sampleProduct);
          this.sampleList.forEach(m => {
            if (m.standardMethodListId) {
              m.standardMethodListId = JSON.parse(m.standardMethodListId)
            }
          })
          this.specialStandardMethod = this.sampleList[0].specialStandardMethod
          this.getProNum()
          this.addObj.sampleNum = this.sampleList.length
@@ -1304,6 +1309,9 @@
        })
      } else {
        // 常规提交
        sampleList.forEach(m => {
          m.standardMethodListId = JSON.stringify(m.standardMethodListId)
        })
        addInsOrder({ insOrder: this.addObj, sampleList: sampleList }).then(res => {
          this.saveLoad = false
          this.$message.success('已提交')