MWE
\documentclass[a4paper,11pt]{book}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{lmodern}
\usepackage{enumitem}
\makeatletter
\protected\def\pmzerodot{%
\nfss@text{%
\sbox0{$\vcenter{}$}% math axis
\sbox2{0}%
\sbox4{0\/}%
\ooalign{%
0\cr
\hidewidth
\kern\dimexpr\wd4-\wd2\relax % compensate for slanted fonts
\raise\dimexpr(\ht2-\dp2)/2-\ht0\relax\hbox{%
\if b\expandafter\@car\f@series\@nil\relax
\mathversion{bold}%
\fi
$\cdot\m@th$%
}%
\hidewidth
\cr
\vphantom{0}% correct depth of final symbol
}%
}%
}
\newcommand*{\dotarabic}[1]{%
\expandafter\@dotarabic\csname c@#1\endcsname
}
\newcommand*{\@dotarabic}[1]{%
\expandafter\dotarabic@scan\number #1\relax
}
\newcommand*{\dotarabic@scan}[1]{%
\ifx\relax#1%
\expandafter\@gobble
\else
\expandafter\@firstofone
\fi
{%
\ifnum#1=0 %
\ifincsname
0%
\else
\pmzerodot
\fi
\else
#1%
\fi
\dotarabic@scan
}%
}
\makeatother
\renewcommand*{\theequation}{\dotarabic{chapter}.\dotarabic{equation}}
\renewcommand*{\thepage}{\dotarabic{page}}
\renewcommand*{\thechapter}{\dotarabic{chapter}}
\renewcommand*{\thesection}{\dotarabic{chapter}.\dotarabic{section}}
\renewcommand*{\thetable}{\dotarabic{chapter}.\dotarabic{table}}
\renewcommand*{\thefigure}{\dotarabic{chapter}.\dotarabic{figure}}
%\renewcommand*{\labelenumi}{\dotarabic{enumi}} <- Don't working
%\renewcommand*{\theenumi}{\dotarabic{enumi}} <- Don't working
\begin{document}
\begin{enumerate}
\item One
\item Two
\item Three
\item Four
\item Five
\item Six
\item Seven
\item Eight
\item Nine
\item Ten
\end{enumerate}
\end{document}
I can not run \item Ten. I added \renewcommand*{\labelenumi}{\dotarabic{enumi}} and \renewcommand*{\theenumi}{\dotarabic{enumi}}, don't working. I marked what I was trying to do as red.
I don't know how to do it. I'm waiting for your help.
Thanks to @Heiko Oberdiek: https://tex.stackexchange.com/a/240271/33075

