摘要: using System.Data; using System.Data.SqlClient; class Pranson() { public static void Main() { //创建数据库链接对象 string connString = "Server=.;DataBase=Cours 阅读全文
posted @ 2024-04-23 13:56 龙卷风吹毁停车场 阅读(2) 评论(0) 推荐(0) 编辑
摘要: use master go if exists(select * from sysdatabases where name = 'CourseManageDB') --查询是否存在这个库 drop database CourseManageDB --删除数据库(不可恢复) go --表示结束 cre 阅读全文
posted @ 2024-04-23 13:08 龙卷风吹毁停车场 阅读(1) 评论(0) 推荐(0) 编辑
摘要: https://visualstudio.microsoft.com/zh-hans/ 阅读全文
posted @ 2024-03-22 23:14 龙卷风吹毁停车场 阅读(2) 评论(0) 推荐(0) 编辑
摘要: <template> <el-upload :action="uploadUrl" :on-success="handleSuccess" multiple> <el-button size="small" type="primary">点击上传</el-button> </el-upload> < 阅读全文
posted @ 2024-03-22 13:17 龙卷风吹毁停车场 阅读(77) 评论(0) 推荐(0) 编辑
摘要: option={ series:[ { barWidth: 20, name: "预警", type: "bar",//柱状图 stack: "Search Engine", data: [120, 132, 101, 134, 90, 230, 210], color: '#435188', ba 阅读全文
posted @ 2024-03-20 13:43 龙卷风吹毁停车场 阅读(52) 评论(0) 推荐(0) 编辑
摘要: option={ yAxis: { splitArea: { show: true // 这里设置为false即可去掉Y轴的背景色 }, type: 'value' }, } 阅读全文
posted @ 2024-03-15 14:23 龙卷风吹毁停车场 阅读(19) 评论(0) 推荐(0) 编辑
摘要: option = { yAxis: { axisTick: { show: false }, axisLine:{ show: false }, type: 'value' } }; 阅读全文
posted @ 2024-03-15 14:16 龙卷风吹毁停车场 阅读(27) 评论(0) 推荐(0) 编辑
摘要: option = { yAxis: { axisLabel:{ show: true, //是否显示文字 textStyle:{ color: 'red' //文字颜色 } } type: 'value' } }; 阅读全文
posted @ 2024-03-15 14:12 龙卷风吹毁停车场 阅读(20) 评论(0) 推荐(0) 编辑
摘要: option = { grid: { //对饼状图无效,饼状图在series中使用 radius:['0', '90%'], left: '30%', right: '4%', bottom: '3%', containLabel: true } } 阅读全文
posted @ 2024-03-15 13:58 龙卷风吹毁停车场 阅读(16) 评论(0) 推荐(0) 编辑
摘要: option = { yAxis: { splitLine:{ lineStyle:{ type:'dashed',//y轴分割线类型 dashed为虚线 color:'red' } }, type: 'value' } }; 阅读全文
posted @ 2024-03-15 13:47 龙卷风吹毁停车场 阅读(26) 评论(0) 推荐(0) 编辑