|
|
|
@ -5,12 +5,12 @@ |
|
|
|
<!-- <span style="font-size: 14px; margin-right: 12px;padding-top: 4px;" class="small-span" >{{ props.data.item?props.data.item.label:"关联表单" }}</span> --> |
|
|
|
<!-- <div style="margin-right: 12px;"></div> --> |
|
|
|
<!-- <span style="width: 7px;"></span> --> |
|
|
|
<el-select v-if="!tableFlag" v-model="value1" placeholder="请选择" @change="asfValueChanged" :style="getFormItemInputStyle(configStyle,2)" > |
|
|
|
<el-option v-for="item in options" :key="item.value" :label="item.label" :value="item.value" /> |
|
|
|
</el-select> |
|
|
|
<el-select v-if="tableFlag" v-model="value2" placeholder="请选择" @change="asfValueChangedTable" :style="getFormItemInputStyle(configStyle,2)"> |
|
|
|
<el-option v-for="item in options" :key="item.value" :label="item.label" :value="item.value" /> |
|
|
|
</el-select> |
|
|
|
<el-select-v2 v-if="!tableFlag" v-model="value1" :options="options" filterable placeholder="请选择" @change="asfValueChanged" :style="getFormItemInputStyle(configStyle,2)" > |
|
|
|
<!-- <el-option v-for="item in options" :key="item.value" :label="item.label" :value="item.value" /> --> |
|
|
|
</el-select-v2> |
|
|
|
<el-select-v2 v-if="tableFlag" v-model="value2" :options="options" filterable placeholder="请选择" @change="asfValueChangedTable" :style="getFormItemInputStyle(configStyle,2)"> |
|
|
|
<!-- <el-option v-for="item in options" :key="item.value" :label="item.label" :value="item.value" /> --> |
|
|
|
</el-select-v2> |
|
|
|
|
|
|
|
|
|
|
|
</template> |
|
|
|
|