Commit 311fcf50 authored by chenfenglei's avatar chenfenglei

修复剪贴板

parent 6e920ee6
...@@ -168,7 +168,7 @@ ...@@ -168,7 +168,7 @@
<el-button @click="noCashUserDialog.show = false">确 定</el-button> <el-button @click="noCashUserDialog.show = false">确 定</el-button>
</span> </span>
</el-dialog> </el-dialog>
<choose-good-dialog v-if="chooseGoodDialogObj.show" :dialogObj="chooseGoodDialogObj" @changeShow="changeShow"/> <choose-good-dialog :dialogObj="chooseGoodDialogObj" @changeShow="changeShow"/>
</div> </div>
</template> </template>
...@@ -227,7 +227,7 @@ ...@@ -227,7 +227,7 @@
multipleSelection: [], multipleSelection: [],
noCashUserDialog: { noCashUserDialog: {
total: 0, total: 0,
limit: 1000, limit: 200,
nowPage: 1, nowPage: 1,
show: false show: false
}, },
......
...@@ -78,7 +78,7 @@ ...@@ -78,7 +78,7 @@
initPage(){ initPage(){
let json = { let json = {
order_coupon_id:this.dialogObj.order_coupon_id, order_coupon_id:this.dialogObj.order_coupon_id,
limit:10000 limit:200
}; };
getCouponListApi(json).then(res=>{ getCouponListApi(json).then(res=>{
this.detail = res.list this.detail = res.list
......
...@@ -92,7 +92,7 @@ ...@@ -92,7 +92,7 @@
initPage(){ initPage(){
let json = { let json = {
out_trade_no:this.dialogObj.out_trade_no, out_trade_no:this.dialogObj.out_trade_no,
limit:10000 limit:200
}; };
getRefundListApi(json).then(res=>{ getRefundListApi(json).then(res=>{
this.detail = res.list this.detail = res.list
......
...@@ -114,7 +114,7 @@ ...@@ -114,7 +114,7 @@
initPage(){ initPage(){
let json = { let json = {
out_trade_no:this.dialogObj.out_trade_no, out_trade_no:this.dialogObj.out_trade_no,
limit:10000 limit:200
}; };
getWithdrawListApi(json).then(res=>{ getWithdrawListApi(json).then(res=>{
this.detail = res.list this.detail = res.list
......
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