-
项目介绍
-
- - renren-fast-vue基于vue、element-ui构建开发,实现renren-fast后台管理前端功能,提供一套更优的前端解决方案
- - 前后端分离,通过token进行数据交互,可独立部署
- - 主题定制,通过scss变量统一一站式定制
- - 动态菜单,通过菜单管理统一管理访问路由
- - 数据切换,通过mock配置对接口数据/mock模拟数据进行切换
- - 发布时,可动态配置CDN静态资源/切换新旧版本
- - 演示地址:http://demo.open.renren.io/renren-fast (账号密码:admin/admin)
-
-
获取帮助
-
-
官方QQ群
-
- - 高级群:324780204(大牛云集,跟大牛学习新技能)
- - 普通群:145799952(学习交流,互相解答各种疑问)
-
+
+
+
+
+
+ 进工业炉加工
+
+
+
+
+
+ 出库
+
+
+
+
+
+ 追加加工
+
+
+
+
+
当前任务列表
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
diff --git a/src/views/common/order-process-add.vue b/src/views/common/order-process-add.vue
new file mode 100644
index 0000000..bbadefb
--- /dev/null
+++ b/src/views/common/order-process-add.vue
@@ -0,0 +1,102 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/common/order-process-point.vue b/src/views/common/order-process-point.vue
new file mode 100644
index 0000000..d69e848
--- /dev/null
+++ b/src/views/common/order-process-point.vue
@@ -0,0 +1,75 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/common/order-process.vue b/src/views/common/order-process.vue
new file mode 100644
index 0000000..e9b3c16
--- /dev/null
+++ b/src/views/common/order-process.vue
@@ -0,0 +1,232 @@
+
+
+
+
+ 新增
+
+
+ 任务起点位置 :
+ {{startBtnName}}
+
+
+ 窑炉 :
+ {{kilnBtnName}}
+
+
+ 提交任务
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 修改
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/main-sidebar.vue b/src/views/main-sidebar.vue
index e3b18e8..93e3fb6 100644
--- a/src/views/main-sidebar.vue
+++ b/src/views/main-sidebar.vue
@@ -6,10 +6,24 @@
:collapse="sidebarFold"
:collapseTransition="false"
class="site-sidebar__menu">
-
+
+
- 首页
-
+
首页
+
+
+
+ 订单加工
+
+
+
+ 货物出库
+
+
+
+ 追加加工
+
+
diff --git a/static/config/index.js b/static/config/index.js
index aca2f56..26cfab7 100644
--- a/static/config/index.js
+++ b/static/config/index.js
@@ -1,14 +1,21 @@
+/*
+ * @Author: zwq
+ * @Date: 2021-11-15 08:20:28
+ * @LastEditors: zwq
+ * @LastEditTime: 2021-11-15 10:22:19
+ * @Description:
+ */
/**
* 开发环境
*/
;(function () {
- window.SITE_CONFIG = {};
+ window.SITE_CONFIG = {}
// api接口请求地址
- window.SITE_CONFIG['baseUrl'] = 'http://localhost:8080/renren-fast';
+ window.SITE_CONFIG['baseUrl'] = 'http://demo.open.renren.io/renren-fast-server'
// cdn地址 = 域名 + 版本号
- window.SITE_CONFIG['domain'] = './'; // 域名
- window.SITE_CONFIG['version'] = ''; // 版本号(年月日时分)
- window.SITE_CONFIG['cdnUrl'] = window.SITE_CONFIG.domain + window.SITE_CONFIG.version;
-})();
+ window.SITE_CONFIG['domain'] = './' // 域名
+ window.SITE_CONFIG['version'] = '' // 版本号(年月日时分)
+ window.SITE_CONFIG['cdnUrl'] = window.SITE_CONFIG.domain + window.SITE_CONFIG.version
+})()