Compare commits

..

No commits in common. "d3d004b8356aef9103e31d4e732f675b0db4e59c" and "03dda7b4ee5d77cab06599841232105a7d571d89" have entirely different histories.

20 changed files with 2682 additions and 2676 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1510,7 +1510,7 @@ const _sfc_main = defineComponent({
const soultop = ref(0); const soultop = ref(0);
const soulleft = ref(0); const soulleft = ref(0);
const selcolumn = ref({}); const selcolumn = ref({});
const soulkey = ref(""); const soulkey = ref();
const sxlist = ref({}); const sxlist = ref({});
function showsoul(event, column, key) { function showsoul(event, column, key) {
console.log(event); console.log(event);

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -36,7 +36,7 @@
"dependencies": { "dependencies": {
"@ctrl/tinycolor": "^3.4.1", "@ctrl/tinycolor": "^3.4.1",
"@layui/icons-vue": "^1.0.9", "@layui/icons-vue": "^1.0.9",
"@layui/layer-vue": "file:../layer", "@layui/layer-vue": "git+https://git.theluyuan.com/theluyuan/layui-layer.git",
"@layui/layui-vue": "file:", "@layui/layui-vue": "file:",
"@umijs/ssr-darkreader": "^4.9.45", "@umijs/ssr-darkreader": "^4.9.45",
"@vueuse/core": "^9.2.0", "@vueuse/core": "^9.2.0",

View File

@ -27,9 +27,9 @@ export default (): UserConfigExport => {
}, },
terserOptions: { terserOptions: {
compress: { compress: {
drop_console: false, drop_console: true,
drop_debugger: true, drop_debugger: true,
pure_funcs: [], pure_funcs: ["console.log"],
}, },
output: { output: {
comments: true, comments: true,

View File

@ -77,9 +77,9 @@ export default (): UserConfigExport => {
}, },
terserOptions: { terserOptions: {
compress: { compress: {
drop_console: false, drop_console: true,
drop_debugger: true, drop_debugger: true,
pure_funcs: [], pure_funcs: ["console.log"],
}, },
output: { output: {
comments: true, comments: true,

View File

@ -27,9 +27,9 @@ export default (): UserConfigExport => {
}, },
terserOptions: { terserOptions: {
compress: { compress: {
drop_console: false, drop_console: true,
drop_debugger: true, drop_debugger: true,
pure_funcs: [], pure_funcs: ["console.log"],
}, },
output: { output: {
comments: true, comments: true,

View File

@ -826,7 +826,7 @@ const soulstatus = ref(false);
const soultop = ref(0); const soultop = ref(0);
const soulleft = ref(0); const soulleft = ref(0);
const selcolumn = ref<any>({}); const selcolumn = ref<any>({});
const soulkey = ref(""); const soulkey = ref<string>();
const sxlist: any = ref({}); const sxlist: any = ref({});
function showsoul(event: MouseEvent, column: any, key: string) { function showsoul(event: MouseEvent, column: any, key: string) {
console.log(event); console.log(event);

File diff suppressed because one or more lines are too long

View File

@ -8,9 +8,6 @@ export default defineConfig({
"/@src": path.resolve(__dirname, "./src"), "/@src": path.resolve(__dirname, "./src"),
}, },
}, },
server: {
port: 3005,
},
build: { build: {
rollupOptions: { rollupOptions: {
output: { output: {

View File

@ -22,9 +22,9 @@ export default defineConfig({
}, },
terserOptions: { terserOptions: {
compress: { compress: {
drop_console: false, drop_console: true,
drop_debugger: true, drop_debugger: true,
pure_funcs: [], pure_funcs: ["console.log"],
}, },
output: { output: {
comments: true, comments: true,

View File

@ -947,11 +947,10 @@ function calculateContent(title2, height, btn, type, isMessage) {
if (height && height.indexOf("%") != -1) { if (height && height.indexOf("%") != -1) {
height = "100%"; height = "100%";
} }
console.log("btn", height + "px");
if (btn && btn.length > 0) { if (btn && btn.length > 0) {
if (type == 0) { if (type == 0) {
if (title2) { if (title2) {
return "calc(" + height + " - 135px)"; return "calc(" + height + " - 90px)";
} else { } else {
return "calc(" + height + " - 86px)"; return "calc(" + height + " - 86px)";
} }

File diff suppressed because one or more lines are too long

View File

@ -142,11 +142,10 @@ export function calculateContent(
if (height && height.indexOf("%") != -1) { if (height && height.indexOf("%") != -1) {
height = "100%"; height = "100%";
} }
console.log("btn", height + "px");
if (btn && btn.length > 0) { if (btn && btn.length > 0) {
if (type == 0) { if (type == 0) {
if (title) { if (title) {
return "calc(" + height + " - 135px)"; return "calc(" + height + " - 90px)";
} else { } else {
return "calc(" + height + " - 86px)"; return "calc(" + height + " - 86px)";
} }

View File

@ -23,9 +23,9 @@ export default defineConfig({
}, },
terserOptions: { terserOptions: {
compress: { compress: {
drop_console: false, drop_console: true,
drop_debugger: true, drop_debugger: true,
pure_funcs: [], pure_funcs: ["console.log"],
}, },
output: { output: {
comments: true, comments: true,