diff --git a/src/views/inout/DialogInvoice.vue b/src/views/inout/DialogInvoice.vue
index 6f41851..049457e 100644
--- a/src/views/inout/DialogInvoice.vue
+++ b/src/views/inout/DialogInvoice.vue
@@ -96,7 +96,7 @@
{{ choiceFile }}
-
只能上传 jpg,png,pdf,doc 文件,且不超过 10 MB
+ 只能上传 jpg,png 文件,且不超过 10 MB
diff --git a/src/views/inventory/InvSupProuducts.vue b/src/views/inventory/InvSupProuducts.vue
index d019003..75cae9d 100644
--- a/src/views/inventory/InvSupProuducts.vue
+++ b/src/views/inventory/InvSupProuducts.vue
@@ -231,6 +231,7 @@ export default {
list: [],
total: 0,
invList: [],
+ invLists: [],
loading: false,
deleteData: {
id: "",
@@ -322,7 +323,8 @@ export default {
getInvList() {
getInvListByUser()
.then((response) => {
- this.invList = response.data || [];
+ this.invLists = response.data || [];
+ this.invList = this.invLists.filter( item => item.code != 1000001 && item.code != 1000002)
this.getList();
})
.catch(() => {