148 lines
4.8 KiB
Vue
148 lines
4.8 KiB
Vue
<template>
|
|
<section class="add">
|
|
<ai-detail>
|
|
<ai-title slot="title" :title="pageTitle" isShowBottomBorder/>
|
|
<template #content>
|
|
<el-tabs tab-position="left">
|
|
<el-tab-pane label="方案设置">
|
|
<el-form ref="AddForm" :model="form" size="small" label-width="120px" :rules="rules">
|
|
<ai-card title="基本信息">
|
|
<template #content>
|
|
<el-form-item label="项目/系统名称" prop="name">
|
|
<el-input v-model="form.name" placeholder="请输入" clearable/>
|
|
</el-form-item>
|
|
<el-row type="flex">
|
|
<div class="fill">
|
|
<el-form-item label="系统类型" prop="type">
|
|
<ai-select v-model="form.type" :selectList="dict.getDict('systemType')"/>
|
|
</el-form-item>
|
|
<el-form-item label="更新项目路径" prop="dist">
|
|
<el-input v-model="form.dist" placeholder="常填写nginx路径,下载包从这里取" clearable/>
|
|
</el-form-item>
|
|
</div>
|
|
<div class="fill mar-l16">
|
|
<el-form-item label="库项目根路径" prop="customPath">
|
|
<el-input v-model="form.customPath" placeholder="请输入" clearable/>
|
|
</el-form-item>
|
|
<el-form-item label="版本号" prop="version">
|
|
<el-input v-model="form.version" placeholder="请输入" clearable/>
|
|
</el-form-item>
|
|
</div>
|
|
</el-row>
|
|
</template>
|
|
</ai-card>
|
|
<ai-card title="主库应用">
|
|
<template #content>
|
|
<ai-lib-table v-if="form.type" v-model="form.apps" v-bind="$props" multiple searchKey="name"
|
|
:action="`/node/wechatapps/list?type=${form.type}&isMain=1`"/>
|
|
<ai-empty v-else>请先选择系统类型</ai-empty>
|
|
</template>
|
|
</ai-card>
|
|
<ai-card title="扩展设置">
|
|
<template #content>
|
|
<el-form-item label="主包应用设置" prop="extra">
|
|
|
|
</el-form-item>
|
|
</template>
|
|
</ai-card>
|
|
</el-form>
|
|
</el-tab-pane>
|
|
<el-tab-pane label="方案应用" lazy>
|
|
<ai-table :tableData="appList" :colConfigs="colConfigs" :isShowPagination="false" :dict="dict"/>
|
|
</el-tab-pane>
|
|
</el-tabs>
|
|
</template>
|
|
<template #footer>
|
|
<el-button @click="back">取消</el-button>
|
|
<el-button type="primary" @click="submit">提交</el-button>
|
|
</template>
|
|
</ai-detail>
|
|
</section>
|
|
</template>
|
|
|
|
<script>
|
|
import AiLibTable from "./AiLibTable";
|
|
|
|
export default {
|
|
name: "add",
|
|
components: {AiLibTable},
|
|
props: {
|
|
instance: Function,
|
|
dict: Object,
|
|
permissions: Function
|
|
},
|
|
computed: {
|
|
isEdit: v => !!v.$route.query.id,
|
|
pageTitle: v => v.isEdit ? "编辑定制方案" : "新增定制方案",
|
|
appList() {
|
|
return this.form.appList?.map(e => {
|
|
e.category = e.libPath.replace(/^\/[^\/]+\/([^\/]+)\/.+/, '$1')
|
|
if (/\/project\//.test(e.libPath)) {
|
|
e.project = e.libPath.replace(/.*project\/([^\/]+)\/.+/, '$1')
|
|
} else if (/\/core\//.test(e.libPath)) {
|
|
e.project = "core"
|
|
} else e.project = "standard"
|
|
return e
|
|
})
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
form: {apps: []},
|
|
rules: {
|
|
name: {required: true, message: "请输入"},
|
|
type: {required: true, message: "请选择"},
|
|
customPath: {required: true, message: "请输入"},
|
|
extra: {required: true, message: "请设置主页配置"},
|
|
},
|
|
colConfigs: [
|
|
{prop: 'label', label: "应用名称"},
|
|
{prop: 'project', label: "项目/框架"},
|
|
{prop: 'category', label: "分类", dict: "appsCategory"},
|
|
{prop: 'name', label: "模块名"},
|
|
]
|
|
}
|
|
},
|
|
methods: {
|
|
getDetail() {
|
|
let {id} = this.$route.query
|
|
id && this.instance.post("/node/custom/detail", null, {
|
|
params: {id}
|
|
}).then(res => {
|
|
if (res?.data) {
|
|
this.form = res.data
|
|
}
|
|
})
|
|
},
|
|
back() {
|
|
this.$router.push({})
|
|
},
|
|
submit() {
|
|
this.$refs.AddForm.validate(v => {
|
|
if (v) {
|
|
this.instance.post("/node/custom/addOrUpdate", this.form).then(res => {
|
|
if (res?.code == 0) {
|
|
this.$message.success("提交成功!")
|
|
this.back()
|
|
}
|
|
})
|
|
}
|
|
})
|
|
},
|
|
},
|
|
created() {
|
|
this.getDetail()
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.add {
|
|
height: 100%;
|
|
|
|
.mar-l16 {
|
|
margin-left: 16px;
|
|
}
|
|
}
|
|
</style>
|