html
<select id="select" onchange="selectStages()" style="width:100px;" >
<option value="">请选择</option>
<option v-for="c in listCombine" :value="c.c_code" >{{c.c_code}}</option>
</select>
js
function selectStages(){
var option = $("#select").find(“option:selected”).val();
}