dongyukun
5 天以前 fa3d2503f8c34049159058a19e941192e47fb89e
src/views/model/sche/model/ScheduleModelForm.vue
@@ -282,14 +282,21 @@
        :data="formData.modelOut"
        border
        style="width: 100%; margin-top: 5px;">
        <el-table-column prop="resultKey`" label="输出key" align="center" min-width="100">
        <el-table-column prop="resultKey" label="输出key" align="center" min-width="100">
          <template #default="scope">
            <el-input size="mini" v-model="scope.row.resultKey" style="width:100%;height:100%"/>
          </template>
        </el-table-column>
        <el-table-column prop="resultType`" label="数据类型" align="center" min-width="100">
        <el-table-column prop="resultType" label="数据类型" align="center" min-width="150">
          <template #default="scope">
            <el-input size="mini" v-model="scope.row.resultType" style="width:100%;height:100%"/>
            <el-select v-model="scope.row.resultType" placeholder="请选择">
              <el-option
                v-for="dict in getStrDictOptions(DICT_TYPE.RESULT_TYPE)"
                :key="dict.value"
                :label="dict.label"
                :value="dict.value"
              />
            </el-select>
          </template>
        </el-table-column>
        <el-table-column prop="resultPort" label="角标1" align="center" min-width="100">