Commit 43825bf2 authored by zhangjianguo's avatar zhangjianguo

1

parent 66787efa
......@@ -135,6 +135,11 @@
<view class="field">
<view class="label">订单编号:</view>
<view class="content">{{ orders.OrderNo }}</view>
<view style='margin-left: 20px;'>
<u-button size="mini" shape="circle" @click="paste(orders.OrderNo)"
>复制</u-button
>
</view>
</view>
<view class="field">
<view class="label">下单时间:</view>
......@@ -588,6 +593,17 @@ export default {
}
);
},
paste(value) {
uni.setClipboardData({
data: value,
});
// uni.showToast({
// title: "复制售后服务单号成功",
// position: "bottom",
// icon: "none",
// duration: 2000,
// });
},
},
};
</script>
......
......@@ -252,7 +252,7 @@ export default {
{
url: "/api/AppletGoods/GetAppletGoodsPageListForZY",
data: {
pageIndex:1,
pageIndex:this.page,
pageSize:20,
Name:this.searchKey,
GoodsType:0,
......@@ -264,7 +264,7 @@ export default {
console.log(res,'搜索ress');
this.showLoading = true;
this.g = this.g.concat(res.data.pageData);
this.page_count = res.data.page_count;
this.page_count = res.data.pageCount;
if (this.page_count == 1) {
this.isover = true;
this.status = "nomore";
......
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