|
@@ -211,6 +211,19 @@
|
|
|
<span v-else>-</span>
|
|
<span v-else>-</span>
|
|
|
</template>
|
|
</template>
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
|
|
+ <el-table-column label="是否开通语音" align="center" prop="isBindVoiceSeat" width="80px">
|
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
|
+ <el-tag
|
|
|
|
|
+ :type="scope.row.isBindVoiceSeat === 1 ? 'success' : 'info'">{{scope.row.isBindVoiceSeat === 1 ? '是' : '否' }}</el-tag>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </el-table-column>
|
|
|
|
|
+ <el-table-column label="是否录制音色" align="center" prop="isRecordVoiceSeat" width="80px">
|
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
|
+ <el-tag
|
|
|
|
|
+ :type="scope.row.isRecordVoiceSeat === 1 ? 'success' : 'info'">{{scope.row.isRecordVoiceSeat === 1 ? '是' : '否' }}</el-tag>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </el-table-column>
|
|
|
|
|
+
|
|
|
<el-table-column label="区域" align="center" prop="addressId">
|
|
<el-table-column label="区域" align="center" prop="addressId">
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
<el-table-column label="创建时间" sortable align="center" prop="createTime" width="160">
|
|
<el-table-column label="创建时间" sortable align="center" prop="createTime" width="160">
|