예제 #1
0
        /// <summary>
        /// 预览界面
        /// </summary>
        /// <returns></returns>
        public async Task <IActionResult> Preview(string Id)
        {
            if (string.IsNullOrEmpty(Id))
            {
                return(View());
            }
            Document entity = await documentAppService.GetDocumentDetail(Convert.ToInt32(Id));

            return(View(entity));
        }