Commit e1502d15 by YunaiV

【缺陷修复】商城:去掉 Number(params.propertyId) 的 Number,解决对雪花算法的兼容性

parent cb6e716c
...@@ -105,7 +105,7 @@ const list = ref([]) // 列表的数据 ...@@ -105,7 +105,7 @@ const list = ref([]) // 列表的数据
const queryParams = reactive({ const queryParams = reactive({
pageNo: 1, pageNo: 1,
pageSize: 10, pageSize: 10,
propertyId: Number(params.propertyId), propertyId: params.propertyId,
name: undefined name: undefined
}) })
const queryFormRef = ref() // 搜索的表单 const queryFormRef = ref() // 搜索的表单
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment