Commit cbbefe6a authored by houjn@hikoon.cn's avatar houjn@hikoon.cn

修改项目名

parent ca381181
......@@ -4,9 +4,9 @@ NODE_ENV = development
ENV = 'staging'
# 页面标题
VUE_APP_TITLE = 道管理系统
VUE_APP_TITLE = 道管理系统
# 道管理系统/测试环境
# 道管理系统/测试环境
VUE_APP_BASE_API = 'http://127.0.0.1:48080'
# 根据服务器或域名修改
......
......@@ -2,9 +2,9 @@
ENV = 'development'
# 页面标题
VUE_APP_TITLE = 道管理系统
VUE_APP_TITLE = 道管理系统
# 道管理系统/开发环境
# 道管理系统/开发环境
VUE_APP_BASE_API = '/dev-api'
# VUE_APP_BASE_API = '/api'
......
......@@ -2,9 +2,9 @@
ENV = 'production'
# 页面标题
VUE_APP_TITLE = 道管理系统
VUE_APP_TITLE = 道管理系统
# 道管理系统/生产环境
# 道管理系统/生产环境
VUE_APP_BASE_API = ''
# 根据服务器或域名修改
......
NODE_ENV = production
# 页面标题
VUE_APP_TITLE = 道管理系统
VUE_APP_TITLE = 道管理系统
# 测试环境配置
ENV = 'staging'
# 道管理系统/测试环境
# 道管理系统/测试环境
VUE_APP_BASE_API = 'http://api-dashboard.yudao.iocoder.cn'
# 静态资源地址
......
{
"name": "yudao-ui-admin",
"version": "1.6.1-snapshot",
"description": "道管理系统",
"author": "道",
"description": "道管理系统",
"author": "道",
"license": "MIT",
"scripts": {
"dev": "vue-cli-service serve",
......
......@@ -459,7 +459,7 @@ export default {
this.previewModelVisible = true;
});
},
/* ------------------------------------------------ 道源码 methods ------------------------------------------------------ */
/* ------------------------------------------------ 道源码 methods ------------------------------------------------------ */
async processSave() {
const { err, xml } = await this.bpmnModeler.saveXML();
// 读取异常时抛出异常
......
......@@ -174,7 +174,7 @@ export default {
this.$refs[this.formConf.formRef].validate(valid => {
if (!valid) return false
// 触发 submit 事件
// update by 道源码
// update by 道源码
// this.$emit('submit', this[this.formConf.formModel])
this.$emit('submit', {
conf: this.formConfCopy,
......
......@@ -35,7 +35,7 @@ export default {
},
data() {
return {
title: '道管理系统',
title: '道管理系统',
logo: logoImg
}
}
......
/**
* Created by 道源码
* Created by 道源码
*
* 枚举类
*/
......
/**
* Created by 道源码
* Created by 道源码
*
* 数据字典工具类
*/
......
......@@ -273,7 +273,7 @@ export function debounce(func, wait, immediate) {
// }
// 深拷贝对象
// add by 道源码 https://github.com/JakHuang/form-generator/blob/dev/src/utils/index.js#L107
// add by 道源码 https://github.com/JakHuang/form-generator/blob/dev/src/utils/index.js#L107
export function deepClone(obj) {
const _toString = Object.prototype.toString
......
......@@ -276,7 +276,7 @@ export default {
}
},
mounted() {
// 【add by 道源码】不读缓存
// 【add by 道源码】不读缓存
// if (Array.isArray(drawingListInDB) && drawingListInDB.length > 0) {
// this.drawingList = drawingListInDB
// } else {
......
......@@ -39,9 +39,9 @@
</el-row>
<el-row :gutter="20">
<el-col :sm="24" :lg="12" style="padding-left: 20px">
<h2>道后台管理框架</h2>
<h2>道后台管理框架</h2>
<p>
一直想做一款后台管理系统,看了很多优秀的开源项目但是发现没有合适自己的。于是利用空闲休息时间开始自己写一套后台系统。如此有了道管理系统。,她可以用于所有的Web应用程序,如网站管理后台,网站会员中心,CMS,CRM,OA等等,当然,您也可以对她进行深度定制,以做出更强系统。所有前端后台代码封装过后十分精简易上手,出错概率低。同时支持移动客户端访问。系统会陆续更新一些实用功能。
一直想做一款后台管理系统,看了很多优秀的开源项目但是发现没有合适自己的。于是利用空闲休息时间开始自己写一套后台系统。如此有了道管理系统。,她可以用于所有的Web应用程序,如网站管理后台,网站会员中心,CMS,CRM,OA等等,当然,您也可以对她进行深度定制,以做出更强系统。所有前端后台代码封装过后十分精简易上手,出错概率低。同时支持移动客户端访问。系统会陆续更新一些实用功能。
</p>
<p>
<b>当前版本:</b> <span>v{{ version }}</span>
......@@ -127,14 +127,14 @@
<p>
<i class="el-icon-chat-dot-round"></i> 微信:<a
href="javascript:;"
>/ *</a
>/ *</a
>
</p>
<p>
<i class="el-icon-money"></i> 支付宝:<a
href="javascript:;"
class="支付宝信息"
>/ *</a
>/ *</a
>
</p>
</div>
......@@ -460,7 +460,7 @@
</el-collapse-item>
<el-collapse-item title="v1.0.0 - 2019-10-08">
<ol>
<li>道前后端分离系统正式发布</li>
<li>道前后端分离系统正式发布</li>
</ol>
</el-collapse-item>
</el-collapse>
......
......@@ -11,7 +11,7 @@ Vue.component('tinymce', Tinymce)
Vue.config.productionTip = false
Vue.prototype.$axios = axios
// add by 道源码:引用自 https://github.com/JakHuang/form-generator/tree/dev/src/views/index
// add by 道源码:引用自 https://github.com/JakHuang/form-generator/tree/dev/src/views/index
new Vue({
router,
......
<template>
<div class="login">
<el-form ref="loginForm" :model="loginForm" :rules="loginRules" class="login-form">
<h3 class="title">道后台管理系统</h3>
<h3 class="title">道后台管理系统</h3>
<el-form-item prop="tenantName" v-if="tenantEnable">
<el-input v-model="loginForm.tenantName" type="text" auto-complete="off" placeholder='租户'>
<svg-icon slot="prefix" icon-class="tree" class="el-input__icon input-icon" />
......@@ -70,7 +70,7 @@ export default {
rememberMe: false,
code: "",
uuid: "",
tenantName: "道源码",
tenantName: "道源码",
},
loginRules: {
username: [
......
......@@ -8,7 +8,7 @@ function resolve(dir) {
const CompressionPlugin = require('compression-webpack-plugin')
const name = process.env.VUE_APP_TITLE || '道管理系统' // 网页标题
const name = process.env.VUE_APP_TITLE || '道管理系统' // 网页标题
const port = process.env.port || process.env.npm_config_port || 80 // 端口
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment