摘要: <el-radio v-model="mainFormId" :label="scope.row.id" @change="handleRadioChange">{{""}}</el-radio> 阅读全文
posted @ 2025-07-18 09:51 熬夜的布偶猫# 阅读(20) 评论(0) 推荐(0)
摘要: "watermark-js-plus": "^1.6.2", import { Watermark } from 'watermark-js-plus' //创建水印 添加在main页面 const watermark = new Watermark({ content: `${personName 阅读全文
posted @ 2025-07-03 14:34 熬夜的布偶猫# 阅读(19) 评论(0) 推荐(0)
摘要: 父容器属性: flex-direction: 排列方向 (row, row-reverse, column, column-reverse) flex-wrap: 换行方式 (nowrap, wrap, wrap-reverse) justify-content: 主轴对齐方式 (flex-star 阅读全文
posted @ 2025-05-22 10:21 熬夜的布偶猫# 阅读(4) 评论(0) 推荐(0)
摘要: 这两个组件的主要区别: 组件类型: 第一个是 <gc-spread-sheets-designer>,这是一个设计器组件,用于创建和编辑电子表格模板 第二个是 <gc-spread-sheets>,这是一个基础的电子表格查看/显示组件 结构不同: 设计器组件是自闭合标签 基础电子表格组件包含两个工作 阅读全文
posted @ 2025-05-16 10:59 熬夜的布偶猫# 阅读(28) 评论(0) 推荐(0)
摘要: ​ 原来,在echarts进行 setOption()的方式时,有3个参数,其中第一个为要设定的option内容,而第2第3个是对setOption的参数进行配置: chart.setOption( option , notMerge , lazyUpdate ); option:图表的配置项和数据 阅读全文
posted @ 2025-04-23 16:02 熬夜的布偶猫# 阅读(21) 评论(0) 推荐(0)
摘要: <el-select v-model="streetValue" id="departNode" placeholder="请选择" @change="handleSelectStreet" :popper-append-to-body="false" clearable @clear="handl 阅读全文
posted @ 2025-04-21 15:08 熬夜的布偶猫# 阅读(81) 评论(0) 推荐(0)
摘要: axios axios({ url: "xxx", data: JSON.stringify({ a: "001", b: "xxx", }), async: false, cache: false, method: "POST", contentType: "application/json", 阅读全文
posted @ 2025-02-07 16:00 熬夜的布偶猫# 阅读(4) 评论(0) 推荐(0)
摘要: 父执子 在子组件上标注ref="childComponent" this.$refs.childComponent.getZoneQuery(); 子执父 this.$parent.xxx(res.data.result, '3', string) 阅读全文
posted @ 2025-01-13 15:57 熬夜的布偶猫# 阅读(10) 评论(0) 推荐(0)
摘要: 中文为主:可以默认使用 word-break: normal;。 中英文混排: overflow-wrap: break-word;。 主要为英文或数字:需要强制换行时,使用 word-break: break-all;。 阅读全文
posted @ 2025-01-10 17:18 熬夜的布偶猫# 阅读(53) 评论(0) 推荐(0)
摘要: https://vant-ui.github.io/vant/v2/#/zh-CN/advanced-usage 阅读全文
posted @ 2025-01-10 17:03 熬夜的布偶猫# 阅读(860) 评论(0) 推荐(0)