|
|
@@ -10,11 +10,14 @@
|
|
|
<p>{{item.name}}:</p>
|
|
|
</div>
|
|
|
<div class="right">
|
|
|
- <el-radio-group v-model="item.status" size="mini" :disabled="item.disable">
|
|
|
- <el-radio :label="1">{{item.key==="show_engine_recording" || item.key==="show_contact" ?'不允许':'不隐藏'}}</el-radio>
|
|
|
- <el-radio :label="0">{{item.key==="show_engine_recording" || item.key==="show_contact" ?'允许':'隐藏'}}</el-radio>
|
|
|
+ <el-radio-group v-model="item.status" size="mini" :disabled="item.disable" v-if="item.key==='show_engine_recording' || item.key==='show_contact'">
|
|
|
+ <el-radio :label="0">不允许</el-radio>
|
|
|
+ <el-radio :label="1">允许</el-radio>
|
|
|
+ </el-radio-group>
|
|
|
+ <el-radio-group v-model="item.status" size="mini" :disabled="item.disable" v-else>
|
|
|
+ <el-radio :label="1">不隐藏</el-radio>
|
|
|
+ <el-radio :label="0">隐藏</el-radio>
|
|
|
</el-radio-group>
|
|
|
-
|
|
|
<span class="tips" v-if="item.disable">
|
|
|
注: 系统默认展示,暂不支持隐藏
|
|
|
</span>
|
|
|
@@ -83,7 +86,7 @@
|
|
|
if (data.status === 1) {
|
|
|
this.$message.success('提交成功')
|
|
|
setTimeout(() => {
|
|
|
- // history.back()
|
|
|
+ history.back()
|
|
|
}, 1000)
|
|
|
} else {
|
|
|
this.$message.error('提交失败')
|