摘要: 一:带变量 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 艺洁 阅读(196) 评论(0) 推荐(0) 编辑
摘要: RedisTemplate和StringRedisTemplate的区别:两者的关系是StringRedisTemplate继承RedisTemplate。两者的数据是不共通的;也就是说StringRedisTemplate只能管理StringRedisTemplate里面的数据,RedisTemp 阅读全文
posted @ 2019-10-10 10:17 艺洁 阅读(457) 评论(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 艺洁 阅读(173) 评论(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 艺洁 阅读(196) 评论(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 艺洁 阅读(7319) 评论(0) 推荐(0) 编辑
摘要: [HttpPost] public ActionResult ConfirmUpload() { string businessId = Request["businessId"]; string businessType = Request["businessType"]; string item 阅读全文
posted @ 2019-09-30 17:16 艺洁 阅读(352) 评论(0) 推荐(0) 编辑
摘要: 引用AliyunOSS.dll 封装一个AliyunOSS帮助类 public static class AliyunOSS { static string accessKeyId = Config.AccessKeyId; static string accessKeySecret = Confi 阅读全文
posted @ 2019-09-30 17:14 艺洁 阅读(2777) 评论(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 艺洁 阅读(191) 评论(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 艺洁 阅读(1158) 评论(0) 推荐(0) 编辑
摘要: #region SortedSet /// <summary> /// 新增 /// </summary> /// <param name="key"></param> /// <param name="value"></param> /// <param name="expireTime">超时时 阅读全文
posted @ 2019-09-30 16:53 艺洁 阅读(542) 评论(0) 推荐(0) 编辑