摘要: create event if not exists e_test on schedule every 6 hour//每6小时执行一次存储过程 do call echarts(); 查看定时任务是否开启 show VARIABLES LIKE '%sche%' event_scheduler是of 阅读全文
posted @ 2019-10-10 11:02 艺洁 阅读(147) 评论(0) 推荐(0)
摘要: 一:带变量 delimiter $$ CREATE PROCEDURE `echarts`() begin DECLARE member_count int DEFAULT 0; SELECT COUNT(id) INTO member_count FROM common_party_member; 阅读全文
posted @ 2019-10-10 10:59 艺洁 阅读(208) 评论(0) 推荐(0)
摘要: RedisTemplate和StringRedisTemplate的区别:两者的关系是StringRedisTemplate继承RedisTemplate。两者的数据是不共通的;也就是说StringRedisTemplate只能管理StringRedisTemplate里面的数据,RedisTemp 阅读全文
posted @ 2019-10-10 10:17 艺洁 阅读(492) 评论(0) 推荐(0)
摘要: 一:<router-link v-if="item" class="g-color3" target="_blank" :to="{ name: 'partyactivitydetail', query: { id: item.id } }" > 接收:this.$route.query.id 路由 阅读全文
posted @ 2019-10-10 09:49 艺洁 阅读(181) 评论(0) 推荐(0)
摘要: 导入vue路由组件 import Vue from "vue";import Router from "vue-router";Vue.use(Router); 定义路由 export const routers =[ { path: "/group", component: () => impor 阅读全文
posted @ 2019-10-10 09:42 艺洁 阅读(206) 评论(0) 推荐(0)
摘要: activityRankBar(type) { let xAxis = []; let yData = []; let current = []; let name = ""; let myChart = ""; if (type == "partyActivity") { current = th 阅读全文
posted @ 2019-10-10 09:21 艺洁 阅读(7487) 评论(0) 推荐(0)
摘要: [HttpPost] public ActionResult ConfirmUpload() { string businessId = Request["businessId"]; string businessType = Request["businessType"]; string item 阅读全文
posted @ 2019-09-30 17:16 艺洁 阅读(363) 评论(0) 推荐(0)
摘要: 引用AliyunOSS.dll 封装一个AliyunOSS帮助类 public static class AliyunOSS { static string accessKeyId = Config.AccessKeyId; static string accessKeySecret = Confi 阅读全文
posted @ 2019-09-30 17:14 艺洁 阅读(2800) 评论(0) 推荐(0)
摘要: 安装echarts依赖 let echarts = require("echarts/lib/echarts");// 引入柱状图组件require("echarts/lib/chart/bar");// 引入饼状图组件require("echarts/lib/chart/pie");require 阅读全文
posted @ 2019-09-30 17:06 艺洁 阅读(196) 评论(0) 推荐(0)
摘要: string; var user = RedisManager.Get<xxx>("user:" + token); RedisManager.Set("module:" + token, list); hash: List<xxx> model = RedisManager.HashGetAll< 阅读全文
posted @ 2019-09-30 16:58 艺洁 阅读(1169) 评论(0) 推荐(0)