From 1a61475f57f45ad16fc86eddc669d5c845e7a918 Mon Sep 17 00:00:00 2001 From: aixianling Date: Thu, 9 Jan 2025 16:36:36 +0800 Subject: [PATCH] =?UTF-8?q?fix(xumu):=20=E4=BF=AE=E5=A4=8D=E8=80=B3?= =?UTF-8?q?=E6=A0=87=E5=8F=B7=E6=9F=A5=E8=AF=A2=E6=8E=A5=E5=8F=A3=E7=9A=84?= =?UTF-8?q?=E5=8F=82=E6=95=B0=E4=BC=A0=E9=80=92=E6=96=B9=E5=BC=8F-=20?= =?UTF-8?q?=E5=B0=86=E5=8F=82=E6=95=B0=E4=BB=8E=E7=AC=AC=E4=B8=89=E4=B8=AA?= =?UTF-8?q?=E5=8F=82=E6=95=B0=E7=A7=BB=E5=88=B0=E7=AC=AC=E4=BA=8C=E4=B8=AA?= =?UTF-8?q?=E5=8F=82=E6=95=B0=E4=BD=8D=E7=BD=AE=EF=BC=8C=E4=BB=A5=E7=AC=A6?= =?UTF-8?q?=E5=90=88=20Axios=E5=BA=93=E7=9A=84=E6=AD=A3=E7=A1=AE=E7=94=A8?= =?UTF-8?q?=E6=B3=95=20-=E8=BF=99=E4=B8=AA=E4=BF=AE=E6=94=B9=E5=8F=AF?= =?UTF-8?q?=E4=BB=A5=E8=A7=A3=E5=86=B3=E8=80=B3=E6=A0=87=E5=8F=B7=E6=9F=A5?= =?UTF-8?q?=E8=AF=A2=E5=8A=9F=E8=83=BD=E4=B8=8D=E5=B7=A5=E4=BD=9C=E7=9A=84?= =?UTF-8?q?=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- project/xumu/components/AiEartagRemote.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/xumu/components/AiEartagRemote.vue b/project/xumu/components/AiEartagRemote.vue index 10ad70ed..f26d2d0e 100644 --- a/project/xumu/components/AiEartagRemote.vue +++ b/project/xumu/components/AiEartagRemote.vue @@ -14,7 +14,7 @@ export default { methods: { getText(biochipEarNumber) { this.info = {} - return this.instance.post("/api/breed/earTag/page", null, {params: {biochipEarNumber, pageSize: 10, pageNum: 1}}).then(res => { + return this.instance.post("/api/breed/earTag/page", {params: {biochipEarNumber, pageSize: 10, pageNum: 1}}).then(res => { if (res?.data?.records) { this.info = res.data.records[0] this.$emit('enter', this.info)