<template> <div class="box"> <div class="swipers"> <template v-for="(item, index) in lists" > <div class="item" v-if="index==active" :key="'0'+index" ...
分类:
其他好文 时间:
2021-04-26 13:50:48
阅读次数:
0
# 每月将各分公司的业务情况汇总 再定时输出 import cx_Oracle from openpyxl.styles import Font import pandas as pd import openpyxl import time from email.mime.multipart imp ...
分类:
编程语言 时间:
2021-04-26 13:49:32
阅读次数:
0
vue中动态给自定义属性data-xx赋值并读取内容 <template v-for="item in items"> <a href="#" :data-item="item" @click.prevent="onClick" class="item" v-if="showHots">{{ ite ...
分类:
其他好文 时间:
2021-04-26 13:42:54
阅读次数:
0
废话不多说, 直接上代码 需要引入的pom依赖就不多说了, 无非jedis和redis相关的. yml中关于redis的配置文件 spring: # redis配置 redis: # redis数据库索引(默认为0) database: 1 host: localhost port: 111 # r ...
分类:
编程语言 时间:
2021-04-26 13:38:37
阅读次数:
0
利用docker-compose+nginx,实现负载均衡部署,根据官网的例子,还是有一定的坑,摸索一番之后终于找到解决方案。 1.创建docker-compose.yaml文件 version: '3.7' # starts 4 docker containers running minio se ...
分类:
其他好文 时间:
2021-04-26 13:34:12
阅读次数:
0
后端代码 from jinja2 import Template def index(): with open('./index.html', 'r', encoding='utf-8') as fp: template = Template(fp.read()) ret = template.re ...
分类:
其他好文 时间:
2021-04-26 13:08:43
阅读次数:
0
点击时背景色变化多出侧滑线,默认进来就是侧边栏第一个 <template> <ul class="class_left"> <li v-for="(item, index) in labels" :key="index" @click="Tap(index, item)"> <div :class= ...
分类:
其他好文 时间:
2021-04-26 13:02:51
阅读次数:
0
1.DHCP简介 DHCP (Dynamic Host Configuration Protocol,动态主机配置协议〉是一个工作在应用层的局域网网络协议,数据传输时使用UDP不可靠传输协议工作,通常被应用在大型的局域网络环境中,主要作用是集中的管理、分配网络资源,使网络环境中的主机能动态的获得IP ...
分类:
其他好文 时间:
2021-04-24 13:13:50
阅读次数:
0
定义组件名的方式有两种: 1.使用 kebab-case(短横线分隔命名) 当使用 kebab-case (短横线分隔命名) 定义一个组件时,你也必须在引用这个自定义元素时使用 kebab-case,例如 <my-component-name>。 2.使用 PascalCase (首字母大写命名) ...
分类:
其他好文 时间:
2021-04-24 11:57:32
阅读次数:
0
来源:https://blog.csdn.net/xifeijian/article/details/15660185 在Window系统中有个Hosts文件(没有后缀名),在Windows98系统下该文件在Windows目录,在Windows2000/XP系统中位于C:\Winnt\System3 ...