Files
dvcp_v2_webapp/project/oms/apps/develop/AppDeployCustom/add.vue

195 lines
7.4 KiB
Vue
Raw Normal View History

2022-07-01 18:26:52 +08:00
<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/>
2022-07-04 14:48:21 +08:00
</el-form-item>
<el-row type="flex">
<div class="fill">
<el-form-item label="系统类型" prop="type">
2022-07-14 10:11:17 +08:00
<ai-select v-model="form.type" :selectList="dict.getDict('systemType')" @change="form.apps = [],handleSysTypeChange(form.type)"/>
</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"
2022-07-13 11:09:06 +08:00
:action="`/node/wechatapps/list?type=${form.type}&isMain=1`" border/>
<ai-empty v-else>请先选择系统类型</ai-empty>
</template>
</ai-card>
<ai-card title="扩展设置">
<template #content>
2022-07-14 10:11:17 +08:00
<template v-if="form.type=='mp'">
2022-07-14 11:52:00 +08:00
<el-form-item label="小程序AppId">
<el-input v-model="form.appId" clearable placeholder="小程序appId"/>
</el-form-item>
2022-07-15 18:12:50 +08:00
<ai-title title="底部导航栏"/>
<ai-table :tableData="tabBar.list" :colConfigs="colConfigs" tableSize="mini" :isShowPagination="false" border>
<el-table-column slot="options" label="操作" width="80" align="center">
<template slot-scope="{row}">
<ai-dialog-btn text="更换" dialogTitle="选择应用">
<ai-lib-table :meta="appList" v-model="row.id" @select="v=>handleTabbarChange(row,v)" :isShowPagination="false" v-bind="$props"
:border="false"/>
</ai-dialog-btn>
</template>
</el-table-column>
</ai-table>
2022-07-14 10:11:17 +08:00
</template>
</template>
</ai-card>
</el-form>
</el-tab-pane>
<el-tab-pane label="方案应用" lazy>
2022-07-14 12:01:12 +08:00
<ai-lib-table :meta="appList" :isShowPagination="false" v-bind="$props" disabled :colConfigs="appListConfigs"/>
</el-tab-pane>
</el-tabs>
2022-07-01 18:26:52 +08:00
</template>
<template #footer>
<el-button @click="back">取消</el-button>
<el-button type="primary" @click="submit">提交</el-button>
</template>
</ai-detail>
</section>
</template>
<script>
2022-07-04 14:16:07 +08:00
import AiLibTable from "./AiLibTable";
2022-07-01 18:26:52 +08:00
export default {
name: "add",
2022-07-04 14:16:07 +08:00
components: {AiLibTable},
2022-07-01 18:26:52 +08:00
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
2022-07-14 11:52:00 +08:00
}) || []
2022-07-14 10:11:17 +08:00
},
2022-07-01 18:26:52 +08:00
},
data() {
return {
2022-07-14 10:11:17 +08:00
form: {apps: [], type: null},
2022-07-01 18:26:52 +08:00
rules: {
name: {required: true, message: "请输入"},
type: {required: true, message: "请选择"},
customPath: {required: true, message: "请输入"},
},
2022-07-14 10:11:17 +08:00
colConfigs: [
{prop: 'text', label: "名称"},
{prop: 'pagePath', label: "应用路径"},
{prop: 'iconPath', label: "默认图标"},
{prop: 'selectedIconPath', label: "选中图标"},
2022-07-14 12:01:12 +08:00
],
appListConfigs: [
{prop: 'label', label: "应用名称", render: (h, {row}) => h(row.tabbar ? 'b' : 'p', row.label + ` ${row.tabbar ? '(底部导航栏)' : ''}`)},
{prop: 'project', label: "项目/框架"},
{prop: 'category', label: "分类", dict: "appsCategory"},
{prop: 'name', label: "模块名"}
2022-07-15 18:12:50 +08:00
],
tabBar: {
color: "#666666",
selectedColor: "#197DF0",
backgroundColor: "#ffffff",
list: [
{pagePath: "pages/AppHome/AppHome", text: "首页", iconPath: "static/TabBar/home.png", selectedIconPath: "static/TabBar/home_selected.png"},
{pagePath: "pages/service/service", text: "应用", iconPath: "static/TabBar/service.png", selectedIconPath: "static/TabBar/service_selected.png"},
{
pagePath: "pages/AppEnteringVillage/AppEnteringVillage", text: "进村",
iconPath: "static/TabBar/custom.png", selectedIconPath: "static/TabBar/custom_selected.png"
},
{pagePath: "pages/mine/my", text: "我的", iconPath: "static/TabBar/me.png", selectedIconPath: "static/TabBar/me_selected.png"}
]
}
2022-07-01 18:26:52 +08:00
}
},
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
2022-07-14 10:11:17 +08:00
this.handleSysTypeChange(this.form.type, this.form.extra)
2022-07-01 18:26:52 +08:00
}
})
},
back() {
this.$router.push({})
},
submit() {
this.$refs.AddForm.validate(v => {
if (v) {
2022-07-14 11:52:00 +08:00
const {tabBar, appId, form: {type}} = this
2022-07-14 10:11:17 +08:00
if (type == 'mp') {
2022-07-14 11:52:00 +08:00
this.form.extra = {tabBar, appId}
2022-07-14 10:11:17 +08:00
}
2022-07-01 18:26:52 +08:00
this.instance.post("/node/custom/addOrUpdate", this.form).then(res => {
if (res?.code == 0) {
this.$message.success("提交成功!")
this.back()
}
})
}
})
},
2022-07-14 10:11:17 +08:00
handleSysTypeChange(v, data) {
if (v == 'mp') {
2022-07-14 11:52:00 +08:00
this.form.appId = data.appId
2022-07-15 18:12:50 +08:00
this.tabBar = data?.tabBar || this.tabBar
2022-07-14 10:11:17 +08:00
}
2022-07-15 18:12:50 +08:00
},
handleTabbarChange(row, {name, label}) {
row.label = label
row.pagePath = `pages/${name}/${name}`
2022-07-14 10:11:17 +08:00
}
2022-07-01 18:26:52 +08:00
},
created() {
this.getDetail()
}
}
</script>
<style lang="scss" scoped>
.add {
height: 100%;
2022-07-04 14:48:21 +08:00
.mar-l16 {
margin-left: 16px;
2022-07-01 18:26:52 +08:00
}
}
</style>