dbcltips.vue 852 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <template>
  2. <view class="zcbox">
  3. <view class="flex1 zctop">
  4. <view class="tit">皖源融资担保有限公司担保材料清单</view>
  5. </view>
  6. <view class="flex0 zcfbtns">
  7. <view class="rzbtn" @click="getDownFn">一键下载模板</view>
  8. </view>
  9. </view>
  10. </template>
  11. <script>
  12. import { checkPermi, checkRole } from "@/utils/permission"; // 权限判断函数
  13. export default{
  14. components:{},
  15. data(){
  16. return{
  17. }
  18. },
  19. methods:{
  20. checkPermi, checkRole,
  21. getDownFn(){
  22. }
  23. }
  24. }
  25. </script>
  26. <style lang="scss" scoped>
  27. page{background-color: #ffffff;}
  28. .zcbox{
  29. display: flex;flex-direction: column;height: 100vh;
  30. .zctop{
  31. overflow: auto;padding: 52rpx 36rpx 0;
  32. .tit{
  33. font-size: 30rpx;color: #222327;font-weight: bold;text-align: center;margin-bottom: 24rpx;
  34. }
  35. }
  36. .zcfbtns{padding:40rpx 36rpx 60rpx;}
  37. }
  38. </style>