首页 >> js开发 >> jsvue 自定指令生成uuid滚动监听达到tab表格吸顶效果的代码js大全
jsvue 自定指令生成uuid滚动监听达到tab表格吸顶效果的代码js大全
发布时间: 2021年1月13日 | 浏览:
| 分类:js开发
utils/index,.js
/**
* 生成UUID
* @param withSeparator 是否有分割符
* @returns {string}
*/
export function generateUUID(withSeparator = true) {
let d = new Date().getTime()
if (window.performance && typeof window.performance.now === 'function') {
d += performance.now()
}
const tpl = withSeparator ? 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx' : 'xxxxxxxxxxxx4xxxyxxxxxxxxxxxxxxx'
return tpl.replace(/[xy]/g, function(c) {
const r = (d + Math.random() * 16) % 16 | 0
d = Math.floor(d / 16)
return (c === 'x' ? r : (r & 0x3 | 0x8)).toString(16)
})
}
/**
* 生成UUID
* @param withSeparator 是否有分割符
* @returns {string}
*/
export function generateUUID(withSeparator = true) {
let d = new Date().getTime()
if (window.performance && typeof window.performance.now === 'function') {
d += performance.now()
}
const tpl = withSeparator ? 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx' : 'xxxxxxxxxxxx4xxxyxxxxxxxxxxxxxxx'
return tpl.replace(/[xy]/g, function(c) {
const r = (d + Math.random() * 16) % 16 | 0
d = Math.floor(d / 16)
return (c === 'x' ? r : (r & 0x3 | 0x8)).toString(16)
})
}创建一个generate-uuid/index.js自定义指令文件
import { generateUUID } from '@/utils'
const generateUuid = {
inserted(el, binding) {
const { value } = binding
if (!value) {
const hasUUID = generateUUID(value)
el.setAttribute('data-uuid', hasUUID)
if (!hasUUID) {
el.parentNode && el.parentNode.removeChild(el)
}
}
}
}
generateUuid.install = function(Vue) {
Vue.directive('generate-uuid', generateUuid)
}
export default generateUuid
import { generateUUID } from '@/utils'
const generateUuid = {
inserted(el, binding) {
const { value } = binding
if (!value) {
const hasUUID = generateUUID(value)
el.setAttribute('data-uuid', hasUUID)
if (!hasUUID) {
el.parentNode && el.parentNode.removeChild(el)
}
}
}
}
generateUuid.install = function(Vue) {
Vue.directive('generate-uuid', generateUuid)
}
export default generateUuidmain.js引入
import GenerateUUID from '@/directive/generate-uuid'
Vue.use(GenerateUUID)
import GenerateUUID from '@/directive/generate-uuid'
Vue.use(GenerateUUID)页面使用
v-generate-uuid="false"
>
v-generate-uuid="false"
>使用uuid元素方法
const topRow = this.$refs.multipleTable
const hash = topRow.$el.dataset.uuid
const tableHeader = document.querySelector(`.el-table[data-uuid="${hash}"] .el-table__header-wrapper`)
if (tableHeader) {
tableHeader.style.width = topRow.$el.getBoundingClientRect().width + 'px'
}
const topRow = this.$refs.multipleTable
const hash = topRow.$el.dataset.uuid
const tableHeader = document.querySelector(`.el-table[data-uuid="${hash}"] .el-table__header-wrapper`)
if (tableHeader) {
tableHeader.style.width = topRow.$el.getBoundingClientRect().width + 'px'
}总结总结总结
/**
* 生成UUID
* @param withSeparator 是否有分割符
* @returns {string}
*/
export function generateUUID(withSeparator = true) {
let d = new Date().getTime()
if (window.performance && typeof window.performance.now === 'function') {
d += performance.now()
}
const tpl = withSeparator ? 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx' : 'xxxxxxxxxxxx4xxxyxxxxxxxxxxxxxxx'
return tpl.replace(/[xy]/g, function(c) {
const r = (d + Math.random() * 16) % 16 | 0
d = Math.floor(d / 16)
return (c === 'x' ? r : (r & 0x3 | 0x8)).toString(16)
})
}
/**
* 生成UUID
* @param withSeparator 是否有分割符
* @returns {string}
*/
export function generateUUID(withSeparator = true) {
let d = new Date().getTime()
if (window.performance && typeof window.performance.now === 'function') {
d += performance.now()
}
const tpl = withSeparator ? 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx' : 'xxxxxxxxxxxx4xxxyxxxxxxxxxxxxxxx'
return tpl.replace(/[xy]/g, function(c) {
const r = (d + Math.random() * 16) % 16 | 0
d = Math.floor(d / 16)
return (c === 'x' ? r : (r & 0x3 | 0x8)).toString(16)
})
}创建一个generate-uuid/index.js自定义指令文件
import { generateUUID } from '@/utils'
const generateUuid = {
inserted(el, binding) {
const { value } = binding
if (!value) {
const hasUUID = generateUUID(value)
el.setAttribute('data-uuid', hasUUID)
if (!hasUUID) {
el.parentNode && el.parentNode.removeChild(el)
}
}
}
}
generateUuid.install = function(Vue) {
Vue.directive('generate-uuid', generateUuid)
}
export default generateUuid
import { generateUUID } from '@/utils'
const generateUuid = {
inserted(el, binding) {
const { value } = binding
if (!value) {
const hasUUID = generateUUID(value)
el.setAttribute('data-uuid', hasUUID)
if (!hasUUID) {
el.parentNode && el.parentNode.removeChild(el)
}
}
}
}
generateUuid.install = function(Vue) {
Vue.directive('generate-uuid', generateUuid)
}
export default generateUuidmain.js引入
import GenerateUUID from '@/directive/generate-uuid'
Vue.use(GenerateUUID)
import GenerateUUID from '@/directive/generate-uuid'
Vue.use(GenerateUUID)页面使用
v-generate-uuid="false"
>
v-generate-uuid="false"
>使用uuid元素方法
const topRow = this.$refs.multipleTable
const hash = topRow.$el.dataset.uuid
const tableHeader = document.querySelector(`.el-table[data-uuid="${hash}"] .el-table__header-wrapper`)
if (tableHeader) {
tableHeader.style.width = topRow.$el.getBoundingClientRect().width + 'px'
}
const topRow = this.$refs.multipleTable
const hash = topRow.$el.dataset.uuid
const tableHeader = document.querySelector(`.el-table[data-uuid="${hash}"] .el-table__header-wrapper`)
if (tableHeader) {
tableHeader.style.width = topRow.$el.getBoundingClientRect().width + 'px'
}总结总结总结
相关文章:
- js如何利用JS将手机号中间四位变成*号js大全
- jsVue双向数据绑定(MVVM)的原理js大全
- jsopenlayers4.6.5实现距离量测和面积量测js大全
- jsJSONObject与JSONArray使用方法解析js大全
- jsvue 验证两次输入的密码是否一致的方法示例js大全
- jsOpenlayers+EasyUI Tree动态实现图层控制js大全
- jsJS sort排序详细使用方法示例解析js大全
- jsvue中重定向redirect:‘/index‘,不显示问题、跳转出错的完美解决js大全
- JavaScriptjs前端传json后台接收‘‘被转为quot的问题解决
- JavaScriptjs通过canvas生成图片缩略图