edu/admin/src/views/channel/wx_oa/menu.vue

37 lines
963 B
Vue
Raw Normal View History

2022-09-07 08:24:24 +00:00
<template>
<div class="menu-oa">
<el-card class="!border-none" shadow="never">
<el-alert
type="warning"
title="配置微信公众号菜单,点击确认,保存菜单并发布至微信公众号"
:closable="false"
show-icon
/>
2022-09-07 08:24:24 +00:00
</el-card>
<el-card class="!border-none mt-4" shadow="never">
<div class="flex flex-1">
<!-- Phone -->
<oa-phone></oa-phone>
2022-09-07 08:24:24 +00:00
<!-- Attr -->
<oa-attr></oa-attr>
</div>
2022-09-07 08:24:24 +00:00
</el-card>
<footer-btns v-perms="['channel:h5:save']">
2022-09-07 10:37:01 +00:00
<el-button type="primary" @click="">保存</el-button>
2022-09-07 08:24:24 +00:00
</footer-btns>
</div>
</template>
<script setup lang="ts">
import OaPhone from "./menu_com/oa-phone.vue";
import OaAttr from "./menu_com/oa-attr.vue";
2022-09-07 08:24:24 +00:00
</script>
<style lang="scss" scoped>
.menu-oa {
}
</style>