Commit b3757ded by chehuidong

Merge branch 'taskManage' into 'dev'

Task manage

See merge request !4
parents 7cab68d9 3e16bd15
......@@ -24,6 +24,7 @@ import {
MenuItemGroup,
Tag,
Checkbox,
Tree,
} from 'element-ui'
const components = [
......@@ -47,6 +48,7 @@ const components = [
MenuItemGroup,
Tag,
Checkbox,
Tree,
]
export default {
......@@ -58,13 +60,13 @@ export default {
Vue.prototype.$message = (message) =>
typeof message === 'string'
? Message({
duration: 2500,
message,
})
duration: 2500,
message,
})
: Message({
duration: 2500,
...message,
})
duration: 2500,
...message,
})
Vue.prototype.$message.success = (message) =>
typeof message === 'string'
? Message.success({ duration: 2500, message })
......
......@@ -63,7 +63,8 @@
}
.pagination {
text-align: center;
padding-top: 10px;
padding-top: 5px;
padding-bottom: 5px;
}
.icon-view{
font-size: 18px;
......
......@@ -275,7 +275,9 @@
@change="onChange"
placeholder="请输入域名"
>
<template slot="append">.jomalls.com</template>
<template slot="append">{{
baseDomain
}}</template>
</el-input>
</el-form-item>
<el-form-item
......@@ -549,6 +551,7 @@ export default {
selection: [],
cloneEditForm: {},
loading: false,
baseDomain: '.jomalls.com',
}
},
async created() {
......@@ -627,7 +630,7 @@ export default {
this.editForm.databaseName =
'saas_' + this.editForm.databaseName
this.editForm.domain =
this.editForm.domain + '.joshine.cn'
this.editForm.domain + this.baseDomain
try {
if (this.editId) {
const res = await updateManageData(this.editForm)
......
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