This commit is contained in:
2026-03-20 11:09:53 +08:00
3 changed files with 80 additions and 1 deletions
@@ -4,7 +4,7 @@ const PUSH_FORMAL_DIALOG = {
<el-dialog
:close-on-click-modal="false"
:visible.sync="dialogVisible"
title="筹备组推选"
title="正式委员录入"
width="70%"
>
@@ -0,0 +1,55 @@
<!--#
layout("/layouts/platform_h5.html"){
#-->
<style scoped>
body {
background: white;
}
.weui-msg {
background: white;
height: auto;
min-height: auto;
}
.weui-msg__title {
font-weight: normal;
}
.weui-msg__msg {
font-weight: bolder;
}
</style>
<div id="app">
<div class="weui-msg">
<div class="weui-msg__icon-area">
<i class="weui-icon-info weui-icon_msg"></i>
</div>
<div class="weui-msg__text-area">
<div class="weui-msg__title">温馨提醒</div>
<div class="weui-msg__msg">请到电脑端智慧工会系统审核</div>
</div>
</div>
</div>
<script nonce="${cspNonce!}">
const vue = new Vue({
el: "#app",
store,
components: {},
data() {
return {
}
},
methods: {
},
created() {
}
})
</script>
<!--#
}
#-->