Commit b231f874 authored by hubaoshan's avatar hubaoshan

wcp

parent aee01501
...@@ -98,7 +98,7 @@ ...@@ -98,7 +98,7 @@
> >
<div class="buttionText"> <div class="buttionText">
<span>A</span> <span>A</span>
<span v-if="totalA" style="color: red">({{ totalA }})</span> <span style="color: red">({{ totalA }})</span>
</div> </div>
</el-button> </el-button>
<el-button <el-button
...@@ -108,7 +108,7 @@ ...@@ -108,7 +108,7 @@
> >
<div class="buttionText"> <div class="buttionText">
<span>B</span> <span>B</span>
<span v-if="totalB" style="color: red">({{ totalB }})</span> <span style="color: red">({{ totalB }})</span>
</div> </div>
</el-button> </el-button>
<el-button <el-button
...@@ -118,7 +118,7 @@ ...@@ -118,7 +118,7 @@
> >
<div class="buttionText"> <div class="buttionText">
<span>C</span> <span>C</span>
<span v-if="totalC" style="color: red">({{ totalC }})</span> <span style="color: red">({{ totalC }})</span>
</div> </div>
</el-button> </el-button>
<el-button <el-button
...@@ -128,7 +128,7 @@ ...@@ -128,7 +128,7 @@
> >
<div class="buttionText"> <div class="buttionText">
<span>D</span> <span>D</span>
<span v-if="totalD" style="color: red">({{ totalD }})</span> <span style="color: red">({{ totalD }})</span>
</div> </div>
</el-button> </el-button>
<el-button <el-button
...@@ -138,7 +138,7 @@ ...@@ -138,7 +138,7 @@
> >
<div class="buttionText"> <div class="buttionText">
<span>E</span> <span>E</span>
<span v-if="totalE" style="color: red">({{ totalE }})</span> <span style="color: red">({{ totalE }})</span>
</div> </div>
</el-button> </el-button>
<el-button <el-button
...@@ -148,7 +148,7 @@ ...@@ -148,7 +148,7 @@
> >
<div class="buttionText"> <div class="buttionText">
<span>F</span> <span>F</span>
<span v-if="totalF" style="color: red">({{ totalF }})</span> <span style="color: red">({{ totalF }})</span>
</div> </div>
</el-button> </el-button>
<el-button <el-button
...@@ -158,7 +158,7 @@ ...@@ -158,7 +158,7 @@
> >
<div class="buttionText"> <div class="buttionText">
<span></span> <span></span>
<span v-if="total0" style="color: red">({{ total0 }})</span> <span style="color: red">({{ total0 }})</span>
</div> </div>
</el-button> </el-button>
</div> </div>
...@@ -196,6 +196,7 @@ ...@@ -196,6 +196,7 @@
v-show="total>0" v-show="total>0"
class="page" class="page"
:total="total" :total="total"
layout="total, sizes, prev, next"
:page.sync="queryPdDel.page" :page.sync="queryPdDel.page"
:limit.sync="queryPdDel.rows" :limit.sync="queryPdDel.rows"
@pagination="handlePa" @pagination="handlePa"
...@@ -458,16 +459,6 @@ export default { ...@@ -458,16 +459,6 @@ export default {
this.totalF = response.data.total this.totalF = response.data.total
} }
}) })
this.resetTotal()
},
resetTotal() {
this.totalA = ''
this.totalB = ''
this.totalC = ''
this.totalD = ''
this.totalE = ''
this.totalF = ''
this.total0 = ''
}, },
getList() { getList() {
getInfo().then(response => { getInfo().then(response => {
......
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