12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <template>
- <view class="zcbox">
- <view class="flex1 zctop">
- <view class="tit">皖源融资担保有限公司担保材料清单</view>
- </view>
- <view class="flex0 zcfbtns">
- <view class="rzbtn" @click="getDownFn">一键下载模板</view>
- </view>
- </view>
- </template>
- <script>
- import { checkPermi, checkRole } from "@/utils/permission"; // 权限判断函数
- export default{
- components:{},
- data(){
- return{
-
- }
- },
- methods:{
- checkPermi, checkRole,
- getDownFn(){
-
- }
- }
- }
- </script>
- <style>
- page{background:#ffffff;}
- </style>
- <style lang="scss" scoped>
- .zcbox{
- display: flex;flex-direction: column;height: 100vh;
- .zctop{
- overflow: auto;padding: 52rpx 36rpx 0;
- .tit{
- font-size: 30rpx;color: #222327;font-weight: bold;text-align: center;margin-bottom: 24rpx;
- }
- }
- .zcfbtns{padding:40rpx 36rpx 60rpx;}
- }
- </style>
|