上一页 1 2 3 4 5 6 7 8 9 ··· 26 下一页
摘要: 需求:查看详情中的表格模板,第一列需要合并。 <!-- 表格 --> <a-table :columns="columns2" :data-source="form1.prePlanProjectAppends" bordered rowKey="" style="margin-top: 20px" 阅读全文
posted @ 2021-06-06 22:06 紫诺花开 阅读(3242) 评论(0) 推荐(0) 编辑
摘要: 借助插件来解决vuex页面刷新后数据丢失的问题。 安装插件 npm install vuex-persistedstate --save 配置使用(默认存储到localStorage) import createPersistedState from "vuex-persistedstate" co 阅读全文
posted @ 2021-05-23 16:53 紫诺花开 阅读(204) 评论(0) 推荐(0) 编辑
摘要: 项目中使用下拉机构懒加载,tree Select控件。 <a-tree-select v-model="form1.constructionCompany" style="width: 100%" :dropdownStyle="{ maxHeight: '400px', overflow: 'au 阅读全文
posted @ 2021-05-20 19:54 紫诺花开 阅读(3724) 评论(0) 推荐(0) 编辑
摘要: 使用ant design vue的单元格编辑时候,报以下错误 (项目用的的是vue-cli3.0) 网上搜索发现这跟vue的构建版本有关 在项目配置的时候,默认 npm 包导出的是运行时构建,即 runtime 版本,不支持编译 template 模板 vue 在初始化项目配置的时候,有两个运行环境 阅读全文
posted @ 2021-05-10 09:35 紫诺花开 阅读(481) 评论(0) 推荐(0) 编辑
摘要: ant design vue中表格里面自带分页,目前使用的是远程加载数据的形式。 需要注意的是一定要设置total <a-table :columns="columns" :data-source="tableData" :row-key="record => record.id" :paginat 阅读全文
posted @ 2021-05-07 11:39 紫诺花开 阅读(3848) 评论(0) 推荐(0) 编辑
摘要: 当状态为1或者2的时候,就不能再发起流程,需要置灰复选框 <a-table :columns="columns" :data-source="tableData" :row-key="(record) => record.id" :pagination="pagination" :loading=" 阅读全文
posted @ 2021-04-29 15:10 紫诺花开 阅读(3630) 评论(0) 推荐(0) 编辑
摘要: 需求:发起会签时候,会签人是多人,会签审核是单人。 阅读全文
posted @ 2021-04-08 20:03 紫诺花开 阅读(2423) 评论(1) 推荐(0) 编辑
摘要: 使用ant design vue日期选择器报错。 原因:这里通过moment.format后的时间是一个string类型,而ant design vue datepicker 默认是个moment 所以会报错 解决:将v-model中的时间转化为moment形式 <a-date-picker sty 阅读全文
posted @ 2021-04-04 17:28 紫诺花开 阅读(9534) 评论(0) 推荐(0) 编辑
摘要: <a-form-model :model="form" :label-col="labelCol" :wrapper-col="wrapperCol"> <a-form-model-item label="年度/季度" > <a-date-picker mode="year" placeholder 阅读全文
posted @ 2021-03-27 17:25 紫诺花开 阅读(6381) 评论(0) 推荐(3) 编辑
摘要: element上传文件需要限制上传个数,结合limit和:on-exceed去处理。 <el-upload ref="upload" :action="uploadUrl()" multiple :limit="5" :on-preview="handlePreview" :on-remove="h 阅读全文
posted @ 2021-03-08 11:37 紫诺花开 阅读(6853) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 26 下一页