摘要: index.vue <template> <div class="venus-special-card-wrapper"> <a-spin tip="Loading..." :spinning="localLoading"> <a-row :gutter="gutter" class="venus- 阅读全文
posted @ 2021-11-19 16:24 小拐 阅读(48) 评论(0) 推荐(0)
摘要: VenusUpload.vue<template> <a-upload :list-type="listType || 'text'" :multiple="multiple" :accept="accept" :method="method" :directory="directory" :cus 阅读全文
posted @ 2021-11-19 16:22 小拐 阅读(336) 评论(0) 推荐(0)
摘要: index.vue页面<template> <div class="venus-card-wrapper"> <a-spin tip="Loading..." :spinning="localLoading"> <a-row :gutter="gutter" class="venus-card-ro 阅读全文
posted @ 2021-11-19 16:18 小拐 阅读(86) 评论(0) 推荐(0)
摘要: 1 获取uuid export function createUuid() { const lut = [] for (let i = 0; i < 256; i++) { lut[i] = (i < 16 ? '0' : '') + i.toString(16) } const d0 = (Mat 阅读全文
posted @ 2021-09-27 10:06 小拐 阅读(1853) 评论(0) 推荐(0)
摘要: https://balkan.app/OrgChartJS/Demos/FirstLook js部分 // 机构图 import OrgChart from '@balkangraph/orgchart.js/orgchart' import { group, groupDisable, perso 阅读全文
posted @ 2021-09-13 14:06 小拐 阅读(172) 评论(0) 推荐(0)
摘要: { title: '已完成金额', dataIndex: 'finishAmount', scopedSlots: { customRender: 'contractAmountModel' } } <span slot="contractAmountModel" slot-scope="text" 阅读全文
posted @ 2021-09-09 15:41 小拐 阅读(96) 评论(0) 推荐(0)
摘要: Select (Case when replace(date_format(create_time, '%m'), 0, '') in (1,2,3) then '一季度' when replace(date_format(create_time, '%m'), 0, '') in (4,5,6) 阅读全文
posted @ 2021-09-09 15:22 小拐 阅读(145) 评论(0) 推荐(0)
摘要: 最简便查询方式 Select concat(year(create_time),'-',month(create_time)) as time, //年-月 quarter(create_time), --季度 day(create_time), --日 sum(overall_budget) as 阅读全文
posted @ 2021-09-07 16:59 小拐 阅读(3361) 评论(0) 推荐(0)
摘要: 1.locate 当不包含 locate('a',字段值)=0 update t_asset_vuln_lib set name=CONCAT('木马',name) where locate('木马',name)=0; 2.利用mysql.help_topic表将a,b,c,d,e拆分成多行利用ha 阅读全文
posted @ 2021-08-27 18:05 小拐 阅读(57) 评论(0) 推荐(0)
摘要: <template> <div class="flow-menu" ref="tool"> <div v-for="menu in menuList" :key="menu.id"> <span class="ef-node-pmenu" @click="menu.open = !menu.open 阅读全文
posted @ 2021-07-13 11:51 小拐 阅读(360) 评论(0) 推荐(0)