Commit 3e16bd15 by chehuidong

bug

parent 02d3caa7
...@@ -275,7 +275,9 @@ ...@@ -275,7 +275,9 @@
@change="onChange" @change="onChange"
placeholder="请输入域名" placeholder="请输入域名"
> >
<template slot="append">.jomalls.com</template> <template slot="append">{{
baseDomain
}}</template>
</el-input> </el-input>
</el-form-item> </el-form-item>
<el-form-item <el-form-item
...@@ -549,6 +551,7 @@ export default { ...@@ -549,6 +551,7 @@ export default {
selection: [], selection: [],
cloneEditForm: {}, cloneEditForm: {},
loading: false, loading: false,
baseDomain: '.jomalls.com',
} }
}, },
async created() { async created() {
...@@ -627,7 +630,7 @@ export default { ...@@ -627,7 +630,7 @@ export default {
this.editForm.databaseName = this.editForm.databaseName =
'saas_' + this.editForm.databaseName 'saas_' + this.editForm.databaseName
this.editForm.domain = this.editForm.domain =
this.editForm.domain + '.joshine.cn' this.editForm.domain + this.baseDomain
try { try {
if (this.editId) { if (this.editId) {
const res = await updateManageData(this.editForm) const res = await updateManageData(this.editForm)
......
...@@ -192,14 +192,12 @@ ...@@ -192,14 +192,12 @@
</p> </p>
</div> </div>
<div <div
style=" style="padding: 5px; overflow: auto"
padding: 5px;
overflow: auto;
"
v-html="detail.taskContent" v-html="detail.taskContent"
@click="fullScreenDisplay" @click="fullScreenDisplay"
>这里有一段描述</div> >
这里有一段描述
</div>
<div style="margin-top: 10px"> <div style="margin-top: 10px">
<div> <div>
<el-input <el-input
......
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