修改id名
This commit is contained in:
parent
aadd579327
commit
e7a3489054
|
@ -141,11 +141,11 @@ export default defineComponent({
|
|||
setTimeout(() => {
|
||||
switch (type) {
|
||||
case 0:
|
||||
set?.SetBlendingOption("blending_grids_hide_row", RowsColumns[type] + "");
|
||||
set?.SetBlendingOption("blending_grids_show_row", RowsColumns[type] + "");
|
||||
break;
|
||||
case 1:
|
||||
if (!RowsColumns[1]) RowsColumns[2] = false; RowsColumns[3] = false
|
||||
set?.SetBlendingOption("blending_grids_hide_column", RowsColumns[type] + "");
|
||||
set?.SetBlendingOption("blending_grids_show_column", RowsColumns[type] + "");
|
||||
break;
|
||||
case 2:
|
||||
|
||||
|
@ -163,8 +163,8 @@ export default defineComponent({
|
|||
model[0] = Number(server_conf.blending_grids_row)
|
||||
model[1] = Number(server_conf.blending_grids_column)
|
||||
color[0] = server_conf.blending_grids_line_color
|
||||
RowsColumns[0] = server_conf.blending_grids_hide_row === "false" ? false : true
|
||||
RowsColumns[1] = server_conf.blending_grids_hide_column === "false" ? false : true
|
||||
RowsColumns[0] = server_conf.blending_grids_show_row === "false" ? false : true
|
||||
RowsColumns[1] = server_conf.blending_grids_show_column === "false" ? false : true
|
||||
}
|
||||
use_server_config()
|
||||
|
||||
|
|
Loading…
Reference in New Issue