We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 702f23e commit 22206b2Copy full SHA for 22206b2
src/views/crm/customerLimitConfig/CustomerLimitConfDetails.vue
@@ -89,6 +89,8 @@ defineOptions({ name: 'CustomerLimitConfDetails' })
89
const message = useMessage() // 消息弹窗
90
const { t } = useI18n() // 国际化
91
92
+const { confType } = defineProps<{ confType: LimitConfType }>()
93
+
94
const loading = ref(true) // 列表的加载中
95
const total = ref(0) // 列表的总页数
96
const list = ref([]) // 列表的数据
@@ -131,8 +133,6 @@ const handleDelete = async (id: number) => {
131
133
} catch {}
132
134
}
135
-const { confType } = defineProps<{ confType: LimitConfType }>()
-
136
/** 搜索按钮操作 */
137
const handleQuery = () => {
138
queryParams.pageNo = 1
0 commit comments