|
@@ -49,7 +49,18 @@
|
|
|
</el-radio-group>
|
|
|
</div>
|
|
|
<el-table :data="data" border style="width: 75%">
|
|
|
- <el-table-column prop="chs" label="词" width="120"> </el-table-column>
|
|
|
+ <el-table-column prop="chs" label="词" width="120">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <div class="adult-book-input-item">
|
|
|
+ <el-input
|
|
|
+ size="small"
|
|
|
+ v-model="scope.row.chs"
|
|
|
+ placeholder="请输入词"
|
|
|
+ @blur="onBlur(scope.row, 'chs')"
|
|
|
+ ></el-input>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="拼音" width="220">
|
|
|
<template slot-scope="scope">
|
|
|
<div class="adult-book-input-item">
|