This commit is contained in:
shijing 2022-09-24 10:35:03 +08:00
parent 1fd16bfe08
commit 32ea2d42b7
3 changed files with 4 additions and 5 deletions

View File

@ -22,7 +22,6 @@
if(dark){ if(dark){
document.documentElement.classList.add("dark") document.documentElement.classList.add("dark")
} }
debugger;
let urls = window.location.host; let urls = window.location.host;
window.IPConfig = { window.IPConfig = {
//此处的IP在打包不会被编译可修改 //此处的IP在打包不会被编译可修改

View File

@ -187,7 +187,7 @@ export default {
methods: { methods: {
// //
table_handle(row) { table_handle(row) {
this.eventID = row.event; this.eventID = row.id;
this.dialog.handle = true; this.dialog.handle = true;
this.$nextTick(() => { this.$nextTick(() => {
this.$refs.handleDialog.open("edit").setData(row); this.$refs.handleDialog.open("edit").setData(row);
@ -195,7 +195,7 @@ export default {
}, },
// //
table_show(row) { table_show(row) {
this.eventID = row.event; this.eventID = row.id;
this.dialog.handle = true; this.dialog.handle = true;
this.$nextTick(() => { this.$nextTick(() => {
this.$refs.handleDialog.open("show").setData(row); this.$refs.handleDialog.open("show").setData(row);

View File

@ -100,7 +100,7 @@
:key="item.id" :key="item.id"
:label="item.name" :label="item.name"
:value="item.id" :value="item.id"
:disabled="mode==='edit'" :disabled="mode==='show'"
/> />
</el-select> </el-select>
</el-form-item> </el-form-item>
@ -109,7 +109,7 @@
v-model="form.handle_desc" v-model="form.handle_desc"
clearable clearable
type="textarea" type="textarea"
:disabled="mode==='edit'" :disabled="mode==='show'"
></el-input> ></el-input>
</el-form-item> </el-form-item>
<el-form-item v-if="mode==='edit'"> <el-form-item v-if="mode==='edit'">