|
|
|
@ -4,7 +4,13 @@ |
|
|
|
|
<a-spin :spinning="isLoading"> |
|
|
|
|
<a-form :form="form" @submit="handleSubmit"> |
|
|
|
|
<a-form-item label="数据渠道" :labelCol="labelCol" :wrapperCol="wrapperCol"> |
|
|
|
|
<a-select allowClear mode="multiple" @change="getChannel" placeholder="请选择渠道"> |
|
|
|
|
<a-select |
|
|
|
|
v-decorator="[`open_channel`]" |
|
|
|
|
allowClear |
|
|
|
|
mode="multiple" |
|
|
|
|
@change="getChannel" |
|
|
|
|
placeholder="请选择渠道" |
|
|
|
|
> |
|
|
|
|
<a-select-option :value="item.id" v-for="item in checkList" :key="item.id"> |
|
|
|
|
{{ item.name }} |
|
|
|
|
</a-select-option> |
|
|
|
|