摘要: dav 编译报错 v8内存溢出 FATAL ERROR: Reached heap limit Allocation failed - JavaScript heap out of memory 到node_modules中/.bin/roadhog.cmd把最后一句改成 endLocal & go 阅读全文
posted @ 2023-08-15 13:53 liuyong111 阅读(59) 评论(0) 推荐(0) 编辑
摘要: yield put({ type: "getPRDPPBOMHeaderList", payload: { value } }); yield take(['getPRDPPBOMHeaderList/@@end']); 或 yield put.resolve({ type: "getPRDPPBO 阅读全文
posted @ 2022-10-31 23:38 liuyong111 阅读(137) 评论(0) 推荐(0) 编辑
摘要: 项目中用到了MaterialDesignTheme,他只有两种主题,light和dark。 查看源码,将他dark主题copy到我们项目中 <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presenta 阅读全文
posted @ 2021-05-17 10:49 liuyong111 阅读(3529) 评论(0) 推荐(0) 编辑
摘要: <a-table ref="table" :columns="columns" :rowKey="row => row.Id" :dataSource="data" :pagination="pagination" :loading="loading" @change="handleTableCha 阅读全文
posted @ 2021-04-09 23:27 liuyong111 阅读(3216) 评论(0) 推荐(0) 编辑
摘要: <a-form-model-item label="物料" prop="MaterialId"> <a-select v-model="entity.MaterialId" allowClear @select="onMaterialChanged"> <a-select-option v-for= 阅读全文
posted @ 2021-04-09 00:39 liuyong111 阅读(6331) 评论(0) 推荐(0) 编辑
摘要: 修改nginx.conf listen 8089; server_name localhost; #charset koi8-r; #access_log logs/host.access.log main; location / { root vuetest\dist; index index.h 阅读全文
posted @ 2021-03-15 22:46 liuyong111 阅读(524) 评论(0) 推荐(0) 编辑
摘要: antdesign2.0版,form 和 formmodel合并成form了,保留了formmodel的功能。 <a-form class="ant-advanced-search-form" :model="ruleForm" :rules="rules" /> a-input v-model绑定 阅读全文
posted @ 2021-03-13 00:30 liuyong111 阅读(4292) 评论(0) 推荐(0) 编辑
摘要: 创建项目后 安装antdesign npm i --save ant-design-vue@next main.js中添加引用 import { createApp } from 'vue' import Antd from 'ant-design-vue'; import 'ant-design- 阅读全文
posted @ 2021-03-13 00:17 liuyong111 阅读(5802) 评论(0) 推荐(0) 编辑
摘要: 安装vue-router npm install vue-router@4.0.0-beta.13 创建src/router/index.js import { createRouter, createWebHashHistory } from 'vue-router' const router = 阅读全文
posted @ 2021-03-07 23:49 liuyong111 阅读(2771) 评论(0) 推荐(1) 编辑
摘要: 安装axios npm install axios vue-axios main.js里 import axios from 'axios' import VueAxios from 'vue-axios' const app = createApp(App) // 创建实例 app.config. 阅读全文
posted @ 2021-03-04 15:21 liuyong111 阅读(732) 评论(0) 推荐(0) 编辑