同步最新bladex私服的Saber,并且集成好了工作流插件
包含表单设计器
https://git.nutflow.vip/blade-workflow/Saber
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
586 B
26 lines
586 B
<template> |
|
<div> |
|
<div style="height: 2000px; background-color: #fff"> |
|
<div style="padding: 15px 20px; font-size: 18px">往下拉就会出现返回菜单</div> |
|
</div> |
|
<avue-back-top id="avue-view"></avue-back-top> |
|
<avue-back-top id="avue-view" :height="100" :bottom="200"> |
|
<div class="top">返回顶端</div> |
|
</avue-back-top> |
|
</div> |
|
</template> |
|
|
|
<script> |
|
export default {}; |
|
</script> |
|
|
|
<style scoped> |
|
.top { |
|
padding: 10px; |
|
font-size: 14px; |
|
background: rgba(0, 153, 229, 0.7); |
|
color: #fff; |
|
text-align: center; |
|
border-radius: 2px; |
|
} |
|
</style>
|
|
|