fetch(modify):修改账号列表中的分配角色弹窗
All checks were successful
构建并部署前端到测试环境 / build-and-deploy (push) Successful in 2m33s

This commit is contained in:
sexygoat
2026-02-09 10:22:23 +08:00
parent b94c043a56
commit e8700c2585
5 changed files with 602 additions and 61 deletions

View File

@@ -6,7 +6,7 @@
v-model:filter="searchForm"
:items="searchFormItems"
:show-expand="false"
:label-width="90"
label-width="90"
@reset="handleReset"
@search="handleSearch"
></ArtSearchBar>
@@ -210,7 +210,7 @@
import { h } from 'vue'
import { useRouter } from 'vue-router'
import { EnterpriseService, ShopService } from '@/api/modules'
import { ElMessage, ElMessageBox, ElTag, ElSwitch } from 'element-plus'
import { ElMessage, ElSwitch } from 'element-plus'
import type { FormInstance, FormRules } from 'element-plus'
import type { EnterpriseItem, ShopResponse } from '@/types/api'
import type { SearchFormItem } from '@/types'
@@ -220,8 +220,6 @@
import ArtMenuRight from '@/components/core/others/ArtMenuRight.vue'
import type { MenuItemType } from '@/components/core/others/ArtMenuRight.vue'
import { formatDateTime } from '@/utils/business/format'
import { BgColorEnum } from '@/enums/appEnum'
import { RoutesAlias } from '@/router/routesAlias'
defineOptions({ name: 'EnterpriseCustomer' })
@@ -807,9 +805,3 @@
}
}
</script>
<style lang="scss" scoped>
.enterprise-customer-page {
// 可以在这里添加企业客户页面特定样式
}
</style>