diff --git a/src/views/moneyManage/executor/executor.vue b/src/views/moneyManage/executor/executor.vue index 990dcf0..a5d2f3e 100644 --- a/src/views/moneyManage/executor/executor.vue +++ b/src/views/moneyManage/executor/executor.vue @@ -11,7 +11,7 @@
{{ t('common.productName') }} - +
{{ t('common.market') }} @@ -139,7 +139,7 @@ {{ t('common_add.productName') }}
-
+
{{ t('common_add.productNum') }}  {{ t('cash.unit') }} @@ -247,7 +247,8 @@ const dateRange = ref([]) const searchForm = ref({ jwcode: '', market: [], - statuses: [] + statuses: [], + goodsName: [] }) const market = ref([]) const backRow = ref({})// 撤回存数据 @@ -298,7 +299,7 @@ const getRefund = async function () { } const goodsName = searchForm.value.goodsName && searchForm.value.goodsName.length > 0 - ? searchForm.value.goodsName[searchForm.value.goodsName.length - 1] : '' + ? searchForm.value.goodsName : [] if (searchForm.value.jwcode) { const isPositiveInteger = /^[1-9]\d*$/.test(searchForm.value.jwcode); @@ -320,7 +321,7 @@ const getRefund = async function () { jwcode: searchForm.value.jwcode,//精网号 name: searchForm.value.name,//姓名 markets: searchForm.value.market && searchForm.value.market.length > 0 ? [searchForm.value.market[searchForm.value.market.length - 1]] : [], - goodsName: goodsName,//商品名 + goodsNames: goodsName,//商品名 statuses: statusParam.value,//10:地区财务待审核;12:地区财务驳回; // 20:地区负责人待审核;22:地区负责人驳回; // 30:总部财务待审核;32:总部财务驳回; @@ -541,7 +542,8 @@ const reset = function () { searchForm.value = { jwcode: '', market: [], - statuses: [] + statuses: [], + goodsName: [] } // 重置页码 pagination.value.pageNum = 1