|
@@ -502,7 +502,7 @@
|
|
|
</template>
|
|
|
</el-row>
|
|
|
</el-col>
|
|
|
- <el-col :xs="24" :sm="24" :md="24" :lg="24" :xl="24" v-if="['YiBin','ZiGong'].includes(themeConfig.appScope)">
|
|
|
+ <el-col :xs="24" :sm="24" :md="24" :lg="24" :xl="24" v-if="['YiBin', 'ZiGong'].includes(themeConfig.appScope)">
|
|
|
<el-form-item label="扭转满意度" prop="orgJudge" :rules="[{ required: false, message: '请选择扭转满意度', trigger: 'change' }]">
|
|
|
<el-checkbox v-model="state.ruleForm.orgJudge">扭转部门满意度</el-checkbox>
|
|
|
<el-checkbox v-model="state.ruleForm.seatJudge">扭转坐席满意度</el-checkbox>
|
|
@@ -555,7 +555,7 @@
|
|
|
<template #footer v-else>
|
|
|
<span class="dialog-footer">
|
|
|
<el-button @click="closeDialog" class="default-button">取 消</el-button>
|
|
|
- <template v-if="['ZiGong', 'LuZhou'].includes(themeConfig.appScope)">
|
|
|
+ <template v-if="['ZiGong', 'LuZhou'].includes(themeConfig.appScope) && dialogTitle !== '修改回访结果'">
|
|
|
<el-popconfirm title="您确定将当前回访设置为未接通?" @confirm="notConnected" width="260">
|
|
|
<template #reference>
|
|
|
<el-button type="primary" :loading="state.loading" v-auth="'business:visit:notConnected'">设为未接通</el-button>
|
|
@@ -567,7 +567,7 @@
|
|
|
@click="onRedo"
|
|
|
:loading="state.loading"
|
|
|
v-auth="'business:visit:redo'"
|
|
|
- v-if="['ZiGong', 'LuZhou'].includes(themeConfig.appScope)"
|
|
|
+ v-show="['ZiGong', 'LuZhou'].includes(themeConfig.appScope) && dialogTitle !== '修改回访结果'"
|
|
|
>重办</el-button
|
|
|
>
|
|
|
<el-button type="primary" @click="onSubmit(ruleFormRef)" :loading="state.loading">保存</el-button>
|