Commit dc068bd4 by zhangmengjie

23.3.9

parent 64d4553b
......@@ -8,7 +8,7 @@ ENV = 'development'
VUE_APP_BASE_API = '/api'
# 应用访问路径 例如使用前缀 /admin/
VUE_APP_CONTEXT_PATH = '/'
VUE_APP_CONTEXT_PATH = './'
# 监控地址
VUE_APP_MONITRO_ADMIN = 'http://localhost:9090/admin/login'
......
# 页面标题
VUE_APP_TITLE = 康巴赫智能终端系统
NODE_ENV = production
# 测试环境配置
ENV = 'staging'
# 康巴赫智能终端系统/测试环境
VUE_APP_BASE_API = '/stage-api'
# 应用访问路径 例如使用前缀 /admin/
VUE_APP_CONTEXT_PATH = '/'
......@@ -7,6 +7,7 @@
"scripts": {
"dev": "vue-cli-service serve",
"build:prod": "vue-cli-service build",
"build:stage": "vue-cli-service build --mode staging",
"preview": "node build/index.js --preview",
"lint": "eslint --ext .js,.vue src"
},
......
......@@ -6,7 +6,7 @@
<el-input v-model="form.name"></el-input>
</el-form-item>
<el-form-item label="动态内容" prop="desc">
<Editor></Editor>
<Editor v-model="currentInfo.content" :height="300"></Editor>
</el-form-item>
<el-form-item label="添加图片" class="customer" prop="name">
......@@ -50,6 +50,7 @@ export default {
name: '',
desc: ''
},
currentInfo:{},
rules: {
name: [
{ required: true, message: '请输入活动名称', trigger: 'blur' },
......@@ -62,6 +63,11 @@ export default {
};
},
created() { },
watch:{
currentInfo(sta,val){
console.log(sta,val,'kllllllllllllll')
}
},
methods: {
dialog() {
this.$emit('diaisibl')
......
......@@ -67,6 +67,7 @@ export default {
dialogVi: false,
control: 0,
total: 5,
value1:'',
title: '修改订单',
options: [{
value: '选项1',
......
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