<template slot-scope="scope">
<el-select v-model="scope.row.createtype" placeholder="请选择" @change="(value) => selectchange(value,scope.$index)">
<el-option
v-for="item in statusOptionscreatetype"
:key="item.value"
:label="item.label"
:value="item.value">
</el-option>
</el-select>
</template>
selectchange(value,id) {
console.log('生成类型',value)
if(value === "yichang"){
console.log('进来了')
this.tableData[id].ziduanvalue = "'',123,'test123'"
}
}