Commit 4f10ff57 by 吕海涛

修改语音配置

parent 20ea4191
...@@ -46,7 +46,7 @@ ...@@ -46,7 +46,7 @@
<el-button <el-button
type="text" type="text"
@click="showDialog({ row })" @click="showDialog({ row })"
style="padding: 0 2px;color:#315ee8" style="padding: 0 2px; color: #315ee8"
>编辑内容</el-button >编辑内容</el-button
> >
</template> </template>
...@@ -191,6 +191,7 @@ export default { ...@@ -191,6 +191,7 @@ export default {
this.$refs.remindText.innerHTML += " " + I; this.$refs.remindText.innerHTML += " " + I;
}, },
clearInfo() { clearInfo() {
this.$refs.remindText.innerHTML = "";
this.$refs.form.resetFields(); this.$refs.form.resetFields();
this.dialogVisible = false; this.dialogVisible = false;
}, },
...@@ -199,6 +200,7 @@ export default { ...@@ -199,6 +200,7 @@ export default {
}, },
showDialog(row) { showDialog(row) {
this.form = JSON.parse(JSON.stringify(row.row)); this.form = JSON.parse(JSON.stringify(row.row));
if ( if (
(row.row.remindType * 1 == 1 && row.row.inspectData * 1 == 6) || (row.row.remindType * 1 == 1 && row.row.inspectData * 1 == 6) ||
row.row.inspectData * 1 == 7 || row.row.inspectData * 1 == 7 ||
...@@ -295,7 +297,11 @@ export default { ...@@ -295,7 +297,11 @@ export default {
}, },
// table变色,头 // table变色,头
tableHeaderColor({ row, column, rowIndex, columnIndex }) { tableHeaderColor({ row, column, rowIndex, columnIndex }) {
return { "background-color": "#0099ff", color: "#ffffff",'text-align':'center' }; return {
"background-color": "#0099ff",
color: "#ffffff",
"text-align": "center",
};
}, },
complaintLable() { complaintLable() {
let t = this.$refs.remindText.innerHTML; let t = this.$refs.remindText.innerHTML;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment