The drop-down boxes are nested in the elementui table. I don't know how to pass the selected values of each drop-down box to the background.





pass data to the background
problem: but the event of this drop-down box must have two value events to work
I now pass the data, and the userPlatformZid to the background is the same

Mar.18,2021

try binding model

table=[
{a:xx,b:yy,phone:''},
{a:xx,b:yy,phone:''}
]
<el-table-column align='center' prop="phone" width="80" label="">
<template slot-scope="scope">
<el-select size="medium" v-model="scope.row.phone" >
  <el-option v-for="item in list" :key="item.key" :label="item.name" :value="item.key">
   </el-option>
</el-select>
</template>
</el-table-column>

el-select has a change event. After different values in the drop-down box are selected, the selected value is returned. If you don't know if it's what you want, you can check the document

.
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b3f66a-2c494.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b3f66a-2c494.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?