1,下载nginx 2,解压后打开conf/nginx.conf 修改配置 server { listen 8841;#监听端口 server_name localhost;#代理服务地址 location / { #默认访问 root html; index index.html index.ph ...
分类:
其他好文 时间:
2021-04-26 13:57:20
阅读次数:
0
<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
index.js import Vue from 'vue'; import Vuex from 'vuex'; import base from './modules/base'; import user from './modules/user'; Vue.use(Vuex); // store ...
分类:
其他好文 时间:
2021-04-26 13:39:52
阅读次数:
0
let splitArr = (data , senArrLen)=>{ //处理成len个一组的数据 let data_len = data.length; let arrOuter_len = data_len % senArrLen 0 ? data_len / senArrLen : par ...
分类:
编程语言 时间:
2021-04-26 13:31:46
阅读次数:
0
 : 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
Oracle索引建立原则 确定针对该表的操作是大量的查询操作还是大量的增删改操作。 尝试建立索引来帮助特定的查询。检查自己的sql语句,为那些频繁在where子句中出现的字段建立索引。 where语句中不得不对查询列采用函数查询,如upper函数,最好建立相应函数索引; 在SQL语句中经常进行GRO ...
分类:
数据库 时间:
2021-04-24 11:52:47
阅读次数:
0
第一步: 创建lang文件夹 index.js import Vue from 'vue' import VueI18n from 'vue-i18n' import Cookies from 'js-cookie' import elementEnLocale from 'element-ui/l ...
分类:
其他好文 时间:
2021-04-23 11:59:54
阅读次数:
0
slice() splice() 定义 从已有的数组中返回选定的元素。 删除/替换/原地添加元素来修改数组 改变原数组 否 是 用法 arrObj.slice(start, end) arrObj.splice(index, howmany, item1, ....., itemX) 参数1说明 s ...
分类:
编程语言 时间:
2021-04-23 11:50:12
阅读次数:
0