Commit 68b8d462 authored by 华国豪's avatar 华国豪 🙄

'table 分页位置问题@'

parent 19653a75
...@@ -293,11 +293,12 @@ input:-webkit-autofill{-webkit-box-shadow: 0 0 0px 1000px white inset;} ...@@ -293,11 +293,12 @@ input:-webkit-autofill{-webkit-box-shadow: 0 0 0px 1000px white inset;}
cursor: default; cursor: default;
} }
.v-table-views .el-pagination{ .v-table-views .el-pagination{
bottom: 2px; position: absolute;
position: fixed; /* left: 70px; */
left: 70px; /* right: 20px; */
right: 20px; bottom: 0;
/* margin-top: 0px; */ /* margin-top: 0px; */
width: 100%;
background: #fff; background: #fff;
border: 1px solid #E5e5e5 !important; border: 1px solid #E5e5e5 !important;
} }
......
...@@ -372,7 +372,7 @@ ...@@ -372,7 +372,7 @@
</el-carousel-item> </el-carousel-item>
</el-carousel> </el-carousel>
</div> </div>
<template v-for="(file,fIndex) in GetDetail.VorcherInos" v-if="file.Type!=3"> <template v-for="(file,fIndex) in GetDetail.VorcherInos" v-if="file.Type===1">
<div class="_wenjian" @click="showUpLoadFile(file)"> <div class="_wenjian" @click="showUpLoadFile(file)">
<p v-if="file.Type==1" class="_wenjian_P iconfont icon-excel"></p> <p v-if="file.Type==1" class="_wenjian_P iconfont icon-excel"></p>
<!-- <p class="_addFile_name">{{file.Content}}</p> --> <!-- <p class="_addFile_name">{{file.Content}}</p> -->
......
...@@ -450,7 +450,7 @@ ...@@ -450,7 +450,7 @@
</el-carousel> </el-carousel>
</div> </div>
<div class="clearfix"> <div class="clearfix">
<template v-for="(file,fIndex) in GetDetail.VorcherInos" v-if="file.Type!=3"> <template v-for="(file,fIndex) in GetDetail.VorcherInos" v-if="file.Type===1">
<div class="_wenjian" @click="showUpLoadFile(file)"> <div class="_wenjian" @click="showUpLoadFile(file)">
<p v-if="file.Type==1" class="_wenjian_P iconfont" :class="file.Content.substring(file.Content.lastIndexOf('.')+1,file.Content.length).toUpperCase()=='PDF'? 'icon-pdf' : 'icon-excel'"></p> <p v-if="file.Type==1" class="_wenjian_P iconfont" :class="file.Content.substring(file.Content.lastIndexOf('.')+1,file.Content.length).toUpperCase()=='PDF'? 'icon-pdf' : 'icon-excel'"></p>
<!-- <p class="_addFile_name">{{file.Content}}</p> --> <!-- <p class="_addFile_name">{{file.Content}}</p> -->
...@@ -470,12 +470,6 @@ ...@@ -470,12 +470,6 @@
<div v-if="file.Type==1"> <div v-if="file.Type==1">
<div class="iconfont _wenjian_P" :class="file.Content.substring(file.Content.lastIndexOf('.')+1,file.Content.length).toUpperCase()=='PDF'? 'icon-pdf' : 'icon-excel'" @click="showUpLoadFileT(file)"> <div class="iconfont _wenjian_P" :class="file.Content.substring(file.Content.lastIndexOf('.')+1,file.Content.length).toUpperCase()=='PDF'? 'icon-pdf' : 'icon-excel'" @click="showUpLoadFileT(file)">
</div>
<span class="iconfont icon-guanbi1" @click="deleteUploadFile(fIndex)"></span>
</div>
<div v-if="file.Type==2">
<div class="iconfont icon-excel" @click="showUpLoadFileT(file)">
</div> </div>
<span class="iconfont icon-guanbi1" @click="deleteUploadFile(fIndex)"></span> <span class="iconfont icon-guanbi1" @click="deleteUploadFile(fIndex)"></span>
</div> </div>
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
<div style="margin: 15px 0;" v-show="!isShowPic"> <div style="margin: 15px 0;" v-show="!isShowPic">
<el-input placeholder="请输入金额" v-model="payMoney" <el-input placeholder="请输入金额" v-model="payMoney"
@input="payMoney=/^\d+\.?\d{0,2}$/.test(payMoney)||payMoney == '' ? payMoney : payMoney=''"> @input="payMoney=/^\d+\.?\d{0,2}$/.test(payMoney)||payMoney == '' ? payMoney : payMoney=''">
<el-select class='fz12 w120' v-model="payType" slot="prepend" placeholder="请选择费用类型"> <el-select class='fz12 w120' v-model="payType" slot="prepend" placeholder="请选择费用类型" filterable :readonly="false">
<el-option v-for='item in fylxList' :label="item.Name" :value="item.ID" :key='item.ID'> <el-option v-for='item in fylxList' :label="item.Name" :value="item.ID" :key='item.ID'>
</el-option> </el-option>
</el-select> </el-select>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment