Commit 3320ead0 authored by zhengke's avatar zhengke

修改

parent 31bb62f1
...@@ -18,12 +18,6 @@ ...@@ -18,12 +18,6 @@
<q-btn color="accent" class="q-mr-md" size="sm" icon="add" label="新增漫画" @click="EditComic(null)" /> <q-btn color="accent" class="q-mr-md" size="sm" icon="add" label="新增漫画" @click="EditComic(null)" />
</div> </div>
</template> </template>
<template v-slot:body-cell-DealStatusStr="props">
<q-td>
<span v-if="props.row.DealStatus==1" style="color:rgb(103, 194, 58)">{{props.row.DealStatusStr}}</span>
<span v-if="props.row.DealStatus==0" style="color:rgb(233, 82, 82)">{{props.row.DealStatusStr}}</span>
</q-td>
</template>
<template v-slot:bottom> <template v-slot:bottom>
<q-pagination class="full-width justify-end" v-model="msg.pageIndex" color="primary" :max="pageCount" <q-pagination class="full-width justify-end" v-model="msg.pageIndex" color="primary" :max="pageCount"
:input="true" @input="changePage" /> :input="true" @input="changePage" />
...@@ -74,19 +68,6 @@ ...@@ -74,19 +68,6 @@
}], }],
data: [], data: [],
loading: true, loading: true,
ShowOpts: [{
label: '全部',
value: -1
},
{
label: '正常',
value: 0
},
{
label: '删除',
value: 1
}
],
msg: { msg: {
pageIndex: 1, pageIndex: 1,
pageSize: 12, pageSize: 12,
...@@ -128,7 +109,6 @@ ...@@ -128,7 +109,6 @@
if (!this.comicObjOption) { if (!this.comicObjOption) {
this.msg.pageIndex = 1; this.msg.pageIndex = 1;
this.msg.Name = ""; this.msg.Name = "";
this.msg.Status = -1;
} }
this.getList() this.getList()
}, },
......
...@@ -23,12 +23,6 @@ ...@@ -23,12 +23,6 @@
<img :src="props.row.CoverImg" style="width:50px;" /> <img :src="props.row.CoverImg" style="width:50px;" />
</q-td> </q-td>
</template> </template>
<template v-slot:body-cell-DealStatusStr="props">
<q-td>
<span v-if="props.row.DealStatus==1" style="color:rgb(103, 194, 58)">{{props.row.DealStatusStr}}</span>
<span v-if="props.row.DealStatus==0" style="color:rgb(233, 82, 82)">{{props.row.DealStatusStr}}</span>
</q-td>
</template>
<template v-slot:bottom> <template v-slot:bottom>
<q-pagination class="full-width justify-end" v-model="msg.pageIndex" color="primary" :max="pageCount" <q-pagination class="full-width justify-end" v-model="msg.pageIndex" color="primary" :max="pageCount"
:input="true" @input="changePage" /> :input="true" @input="changePage" />
...@@ -84,19 +78,6 @@ ...@@ -84,19 +78,6 @@
}], }],
data: [], data: [],
loading: true, loading: true,
ShowOpts: [{
label: '全部',
value: -1
},
{
label: '正常',
value: 0
},
{
label: '删除',
value: 1
}
],
msg: { msg: {
pageIndex: 1, pageIndex: 1,
pageSize: 12, pageSize: 12,
...@@ -138,7 +119,6 @@ ...@@ -138,7 +119,6 @@
if (!this.monthObjOption) { if (!this.monthObjOption) {
this.msg.pageIndex = 1; this.msg.pageIndex = 1;
this.msg.Name = ""; this.msg.Name = "";
this.msg.Status = -1;
} }
this.getList() this.getList()
}, },
......
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