123456789101112131415161718192021222324252627282930313233343536373839 |
- using AntDesign;
- using Microsoft.AspNetCore.Components;
- using Microsoft.AspNetCore.Components.Forms;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Net.Http;
- using System.Net.Http.Json;
- using System.Text.Json;
- using System.Threading.Tasks;
- using wispro.sp.entity;
- using wispro.sp.web.Models;
- using wispro.sp.web.Services;
- namespace wispro.sp.web.Components
- {
- public partial class ReviewerAppeal
- {
- private ReviewerAppealModel _Model;
- private IFeedbackRef feedbackRef;
- [Inject]
- protected AppealTypeService _atService { get; set; }
- [Inject]
- protected HttpClient _httpClient { get; set; }
- protected override void OnInitialized()
- {
- _Model = base.Options ?? new ReviewerAppealModel();
- //Console.WriteLine(System.Text.Json.JsonSerializer.Serialize(_Model));
- base.OnInitialized();
- feedbackRef = base.FeedbackRef;
- }
- }
- }
|