From 7abab17e760b1e409ed5d37dad4bb432abeef316 Mon Sep 17 00:00:00 2001 From: songguoqiang <765017469@qq.com> Date: Thu, 14 Nov 2024 09:50:04 +0800 Subject: [PATCH] =?UTF-8?q?SCP=E5=BE=85=E5=BC=80=E7=A5=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../supplierinvoiceInvoiced/index.vue | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/views/wms/supplierManage/supplierinvoiceInvoiced/index.vue b/src/views/wms/supplierManage/supplierinvoiceInvoiced/index.vue index 0981356d6..827f95a2c 100644 --- a/src/views/wms/supplierManage/supplierinvoiceInvoiced/index.vue +++ b/src/views/wms/supplierManage/supplierinvoiceInvoiced/index.vue @@ -28,7 +28,7 @@ v-model:sort="tableObject.sort" > @@ -148,7 +148,7 @@ const butttondata = (row) =>{ // defaultButtons.mainListDeleteBtn({hasPermi:'wms:supplierinvoice-invoiced:delete'}), // 删除 // defaultButtons.mainListEditBtn({hasPermi:'wms:supplierinvoice-invoiced:update'}), { - label: t('ts.审核通过'), + label: t('审核通过'), name: 'agree', hide: isShowMainButton(row, ['1']), type: 'primary', @@ -157,7 +157,7 @@ const butttondata = (row) =>{ hasPermi: 'wms:supplierinvoice-invoiced:agree' }, { - label: t('ts.作废'), + label: t('作废'), name: 'refuse', hide: isShowMainButton(row, ['1']), type: 'danger', @@ -194,7 +194,7 @@ const formsSuccess = async (formType,data) => { }); if(isHave){ if(data.activeTime && data.expireTime && data.activeTime >=data.expireTime){ - message.error(t('ts.失效时间要大于生效时间')) + message.error(t('失效时间要大于生效时间')) return; } } @@ -234,11 +234,11 @@ const handleDelete = async (id: number) => { const handleAgree = async (id : number) => { try { // 审批通过的二次确认 - await message.confirm(t('ts.是否审批通过所选中数据?')) + await message.confirm(t('是否审批通过所选中数据?')) tableObject.loading = true // 发起审批通过 await SupplierinvoiceInvoicedApi.agreeSupplierinvoiceInvoiced(id) - message.success(t('ts.审批通过成功!')) + message.success(t('审批通过成功!')) tableObject.loading = false // 刷新列表 await getList() @@ -252,11 +252,11 @@ const handleAgree = async (id : number) => { const handleRefuse = async (id : number) => { try { // 审批通过的二次确认 - await message.confirm(t('ts.是否审批拒绝所选中数据?')) + await message.confirm(t('是否审批拒绝所选中数据?')) tableObject.loading = true // 发起审批通过 await SupplierinvoiceInvoicedApi.refuseSupplierinvoiceInvoiced(id) - message.success(t('ts.审批成功!')) + message.success(t('审批成功!')) tableObject.loading = false // 刷新列表 await getList()