摘要: watermark.js 'use strict' const watermark = {} const setWatermark = (str, display) => { const id = '1.23452384164.123412415' if (document.getElementBy 阅读全文
posted @ 2022-05-25 14:09 Stitchhhhh 阅读(297) 评论(0) 推荐(0) 编辑
摘要: (1)下载 npm i element-resize-detector --save (2)使用 // 导入 const elementResizeDetectorMaker = require('element-resize-detector') // 创建实例 const erd = eleme 阅读全文
posted @ 2022-05-11 17:13 Stitchhhhh 阅读(1424) 评论(0) 推荐(0) 编辑
摘要: 效果图: html: <div id="tree_container" /> js: initTree() { // 数据 const data = { id: 'root', label: 'root', children: [ { id: 'c1', label: 'c1', children: 阅读全文
posted @ 2022-05-10 17:24 Stitchhhhh 阅读(766) 评论(0) 推荐(0) 编辑
摘要: // 在main.js中加入以下代码 import AmountInput from '@/globalComponents/amountInput' Vue.use(AmountInput) 阅读全文
posted @ 2022-05-07 10:26 Stitchhhhh 阅读(18) 评论(0) 推荐(0) 编辑
摘要: <template> <el-input v-model="showValue" type="number" :name="name" :placeholder="placeholder" :readonly="readonly" :disabled="disabled" @focus="handl 阅读全文
posted @ 2022-05-07 10:22 Stitchhhhh 阅读(1993) 评论(0) 推荐(0) 编辑
摘要: <template> <div> <div class="institutionalScopeBox"> <amount-input v-model="query.amountMin" clearable placeholder="最小票据金额" :readonly="readonly" :is-i 阅读全文
posted @ 2022-05-07 10:21 Stitchhhhh 阅读(318) 评论(0) 推荐(0) 编辑
摘要: <template> <el-input v-model="showValue" :name="name" :placeholder="placeholder" :readonly="readonly" @focus="handleFocus" @blur="handleBlur" @change= 阅读全文
posted @ 2022-05-07 10:20 Stitchhhhh 阅读(1744) 评论(0) 推荐(0) 编辑
摘要: <template> <el-radio-group v-if="tagType=='radio'" v-model="dictValue" :disabled="disabled" @change="handleInput"> <el-radio v-for="(item, key) in dic 阅读全文
posted @ 2022-05-07 10:16 Stitchhhhh 阅读(143) 评论(0) 推荐(0) 编辑
摘要: 插件文档:https://www.itxst.com/sortablejs/neuinffi.html 本来想直接存innerHTML的,但是发现点击事件会失效 npm安装方式 下载:npm install sortablejs --save 页面引入:import Sortable from 's 阅读全文
posted @ 2022-04-21 16:50 Stitchhhhh 阅读(273) 评论(0) 推荐(0) 编辑
摘要: 应该给el-form-item加key 阅读全文
posted @ 2022-04-19 17:53 Stitchhhhh 阅读(101) 评论(0) 推荐(0) 编辑