# cms **Repository Path**: ybwell/background-management-system ## Basic Information - **Project Name**: cms - **Description**: 普普通通的后台管理系统 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-09-11 - **Last Updated**: 2023-02-07 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ##技术栈 � vue3+vite+axios+elementUi echarts数据 ``` let option = { polyline: { grid: { left: "2%", right: "4%", bottom: "3%", top: "4%", containLabel: true, }, legend: { data: [ "oppe", "huawei", "apple", "samsung", "vivo", "xioami", "oneplus", ], }, xAxis: { type: "category", data: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul"], }, yAxis: { type: "value", }, series: [ { name: "oppe", type: "line", data: [1500, 2300, 3400, 4500, 3400, 3200, 2350], }, { name: "huawei", type: "line", data: [5000, 3000, 4000, 6000, 8000, 5500, 4500], }, { name: "apple", type: "line", data: [3000, 4000, 9000, 6000, 8000, 7000, 9000], }, { name: "samsung", type: "line", data: [1000, 6000, 7000, 4500, 5000, 4000, 6000], }, { name: "vivo", type: "line", data: [2000, 6000, 5000, 4500, 5000, 6000, 5000], }, { name: "xioami", type: "line", data: [1000, 6000, 7000, 2000, 5000, 6000, 6000], }, { name: "oneplus", type: "line", data: [3000, 5000, 7000, 4500, 3000, 4000, 4500], }, ], }, histogram: { grid: { right: "8%", top: "2%", }, xAxis: { type: "category", data: ["Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"], }, yAxis: { type: "value", }, series: [ { data: [230, 260, 350, 180, 250, 370, 160], type: "bar", }, ], }, piechart: { tooltip: { trigger: "item", }, legend: { top: "2%", left: "center", }, series: [ { name: "Access From", type: "pie", radius: ["40%", "70%"], avoidLabelOverlap: false, itemStyle: { borderRadius: 10, borderColor: "#fff", borderWidth: 2, }, label: { show: false, position: "center", }, emphasis: { label: { show: true, fontSize: "40", fontWeight: "bold", }, }, labelLine: { show: false, }, data: [ { value: 22000, name: "oppo" }, { value: 36000, name: "huawei" }, { value: 45000, name: "apple" }, { value: 20000, name: "sumsung" }, { value: 30000, name: "vivo" }, { value: 35000, name: "xioami" }, { value: 28000, name: "oneplus" }, ], }, ], }, }; ```