fix: vue3 sys_config update sql

This commit is contained in:
2023-10-28 14:13:07 +08:00
parent eb38f9f74e
commit 2a0cf9892a
4 changed files with 382 additions and 12 deletions

View File

@@ -0,0 +1,36 @@
-- 参数配置-系统设置属性DELETE FROM
DELETE FROM
`omc_db`.`sys_config`
WHERE
`config_id` = 100
and `config_key` = 'test';
DELETE FROM
`omc_db`.`sys_config`
WHERE
`config_id` != 102
and `config_key` = 'sys.logo.type';
DELETE FROM
`omc_db`.`sys_config`
WHERE
`config_id` != 103
and `config_key` = 'sys.logo.filePathIcon';
DELETE FROM
`omc_db`.`sys_config`
WHERE
`config_id` != 104
and `config_key` = 'sys.title';
DELETE FROM
`omc_db`.`sys_config`
WHERE
`config_id` != 105
and `config_key` = 'sys.copyright';
DELETE FROM
`omc_db`.`sys_config`
WHERE
`config_id` != 106
and `config_key` = 'sys.logo.filePathBrand';
DELETE FROM
`omc_db`.`sys_config`
WHERE
`config_id` != 107
and `config_key` = 'sys.loginBackground';