摘要: <Border Background="White" BorderBrush="Gray" BorderThickness="1" CornerRadius="2"> <Border.InputBindings> <MouseBinding Command="{Binding DataContext 阅读全文
posted @ 2023-11-20 20:46 优学者 阅读(307) 评论(0) 推荐(0)
摘要: <Button Width="300" Height="100" Content="自定义按钮" Background="Bisque" FontSize="23" Foreground="Orchid"> <Button.Template> <ControlTemplate TargetType= 阅读全文
posted @ 2023-11-20 20:44 优学者 阅读(66) 评论(0) 推荐(0)
摘要: 出现这种报错是因为uniapp对axios有适配问题,不兼容,需要在main.js或者封装axios的文件中加以下代码 axios.defaults.adapter = function(config) { return new Promise((resolve, reject) => { cons 阅读全文
posted @ 2022-08-26 17:47 优学者 阅读(1214) 评论(0) 推荐(0)
摘要: 模块vuexTest.js /** * 模块vuexTest.js */ export default { namespaced: true, actions: { actionsHello(context, val) { console.log(context, "context"); // 与 阅读全文
posted @ 2022-08-25 19:51 优学者 阅读(1200) 评论(0) 推荐(0)
摘要: 由于view2.0暂不支持使用自定义图标,只能通过修改源码去实现 第 1 步:先去图标库选择想要的icon加入项目,设置 设置后,保存。 第 2 步:再点击下载代码,解压后如下 第 3 步:编写createicon.js文件,并通过 node createicon.js 执行 let path1 = 阅读全文
posted @ 2022-08-12 10:26 优学者 阅读(1971) 评论(0) 推荐(0)
摘要: FastReport.Report report = new FastReport.Report(); report.Load(reportPath); report.RegisterData(ds);//刷新数据源 report.GetDataSource("Orders").Enabled = 阅读全文
posted @ 2022-04-14 17:56 优学者 阅读(350) 评论(0) 推荐(0)
摘要: (WMS,WCS,ERP,TMS,SCV,OMS,LMS,BMS,RCS,MES,SAP) WMS : Warehouse Management System 仓库管理系统,一般用于物料的进存出,拣货汇单等管理 介绍可看秒懂百科https://baike.baidu.com/item/%E4%BB% 阅读全文
posted @ 2022-04-13 11:59 优学者 阅读(1432) 评论(0) 推荐(0)
摘要: MIS 、MES、SIS、MRP、MRPII、MTL、SCM、ERP、OA、BPM、CMS、EAM、BI、PLM、SEO、SOA、ROSE、EDI、SFA、POA、CAD、PDM、TPM都是什么 一、 MIS(管理信息系统——Management Information System)系统 是一个由 阅读全文
posted @ 2022-04-11 11:47 优学者 阅读(3867) 评论(0) 推荐(0)
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>世界各地时间</t 阅读全文
posted @ 2022-04-08 14:49 优学者 阅读(263) 评论(0) 推荐(0)
摘要: server { #配置监听端口 listen 80; listen [::]:80; #设置网站根目录作为变量root set $root /var/www/web; #设置网站根目录 root $root; #设置访问日志存放路径 #access_log logs/access.log; #设置 阅读全文
posted @ 2022-04-05 17:49 优学者 阅读(587) 评论(0) 推荐(0)