This commit is contained in:
@@ -354,7 +354,7 @@ const getRecord = async () => {
|
||||
tt: item.Name,
|
||||
t: item.DrawTime,
|
||||
}));
|
||||
numList.value = data.value[0].hm;
|
||||
numList.value = data.value[0]?.hm;
|
||||
};
|
||||
|
||||
const getWin = async () => {
|
||||
@@ -625,7 +625,7 @@ const columns = ref([
|
||||
stylecolumn: "width: 300px; padding: 0px",
|
||||
render: ({ hm }) => {
|
||||
let el = [];
|
||||
el = hm.map((item) => {
|
||||
el = hm?.map((item) => {
|
||||
return h(
|
||||
"view",
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user