private void ExecuteEnterCommand()
        {
            if (_cookies == null || NumberList.Count <= 0)
            {
                return;
            }
            for (; _index < NumberList.Count; _index++)
            {
                if (NumberList[_index].Status == ExecuteStatus.Complete)
                {
                    continue;
                }
                break;
            }
            var http = new Request($"https://weixin110.qq.com/security/frozen?action=2&lang=zh_CN&step=1&deviceid=&accttype=mobile&acctcc={NumberList[_index].Number}&imgcode={Code}&&callback=jsonp1");

            http.Accept    = Accepts.Js;
            http.UserAgent = UserAgents.WeChat;
            http.Referer   = "https://weixin110.qq.com/security/frozen?action=2&lang=zh_CN&step=1&deviceid=&";
            http.Cookies   = _cookies;
            var html = http.Post("");

            LocalHelper.SaveTxt(html);
            _showMessage("保存成功!");
            //_getImage();
        }