src/store/modules/getSupplierName.js
@@ -12,9 +12,9 @@
  },
  actions:{
    getSupplier(context){
      getSupplierList({page:1,pageSize:50}).then((res) => {
        if (res.data.code == 200) {
          context.commit("supplierNameList", res.data.data.list)
      getSupplierList({page:1,pageSize:100,status:1}).then((res) => {
        if (res.code == 200) {
          context.commit("supplierNameList", res.data.list)
        } else {
          Message.error(res.msg)
        }