<el-select v-model="ruleForm.region" placeholder="请选择所属行业" ref="nationalityIdSel" @change="Industrychange()">
<el-option :label="item.scopeLabel" :value="item.scopeValue" v-for="item in Industrylist" :key="item.scopeValue"></el-option>
</el-select>
获取当前选择的label
this.$nextTick(() => {
this.ruleForm.BillingType=this.$refs.nationalityIdSel.selectedLabel
})