Commit 311fcf50 authored by chenfenglei's avatar chenfenglei

修复剪贴板

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