|
@@ -173,6 +173,13 @@
|
|
|
<dict-tag :options="qwStatusOptions" :value="scope.row.qwStatus"/>
|
|
<dict-tag :options="qwStatusOptions" :value="scope.row.qwStatus"/>
|
|
|
</template>
|
|
</template>
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
|
|
+ <el-table-column label="客服语音回复方式" align="center">
|
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
|
+ <span v-if="scope.row.isCustomerVoice === 1" style="color: #67C23A;">客户语音销售回复语音</span>
|
|
|
|
|
+ <span v-else-if="scope.row.isCustomerVoice === 2" style="color: #409EFF;">客户语音销售回复文本</span>
|
|
|
|
|
+ <span v-else style="color: #67C23A;">客户语音销售回复语音</span>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="绑定的企微号" align="center">
|
|
<el-table-column label="绑定的企微号" align="center">
|
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
|
<div v-if="scope.row.qwUsers && scope.row.qwUsers.length > 0">
|
|
<div v-if="scope.row.qwUsers && scope.row.qwUsers.length > 0">
|
|
@@ -540,6 +547,16 @@
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
</el-col>
|
|
</el-col>
|
|
|
</el-row>
|
|
</el-row>
|
|
|
|
|
+ <el-row>
|
|
|
|
|
+ <el-col :span="12">
|
|
|
|
|
+ <el-form-item label="客服ai语音回复方式">
|
|
|
|
|
+ <el-select v-model="form.isCustomerVoice" placeholder="请选择">
|
|
|
|
|
+ <el-option label="客户语音销售回复语音" :value="1"></el-option>
|
|
|
|
|
+ <el-option label="客户语音销售回复文本" :value="2"></el-option>
|
|
|
|
|
+ </el-select>
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ </el-col>
|
|
|
|
|
+ </el-row>
|
|
|
</el-form>
|
|
</el-form>
|
|
|
<div slot="footer" class="dialog-footer">
|
|
<div slot="footer" class="dialog-footer">
|
|
|
<el-button type="primary" @click="submitForm">确 定</el-button>
|
|
<el-button type="primary" @click="submitForm">确 定</el-button>
|
|
@@ -1533,6 +1550,7 @@ export default {
|
|
|
sex: undefined,
|
|
sex: undefined,
|
|
|
status: "0",
|
|
status: "0",
|
|
|
remark: undefined,
|
|
remark: undefined,
|
|
|
|
|
+ isCustomerVoice: 1,
|
|
|
domain: null,
|
|
domain: null,
|
|
|
postIds: [],
|
|
postIds: [],
|
|
|
roleIds: [],
|
|
roleIds: [],
|