唐召明
authored
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
using CommunityToolkit.Mvvm.ComponentModel;
using CommunityToolkit.Mvvm.Input;
using HandyControl.Data;
using HHECS.BllModel;
using HHECS.DAQClient.DataAccess;
using HHECS.DAQClient.Model;
using HHECS.DAQClient.View.CommunicationsView;
using LinqKit;
using System.Collections.ObjectModel;
using System.Linq.Expressions;
using MessageBox = HandyControl.Controls.MessageBox;
namespace HHECS.DAQClient.ViewModel.CommunicationVM
{
public partial class CommunicationVM : ObservableObject
{
[ObservableProperty]
private string code;
[ObservableProperty]
private string name;
[ObservableProperty]
|
唐召明
authored
|
24
25
26
27
28
29
|
private Dictionary<string, CommunicationTypeConst?> communicationTypes = new Dictionary<string, CommunicationTypeConst?>();
[ObservableProperty]
private CommunicationTypeConst? communicationType;
[ObservableProperty]
|
唐召明
authored
|
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
private int pageIndex = 1;
[ObservableProperty]
private long maxPage;
[ObservableProperty]
private int pageSize = 30;
[ObservableProperty]
private ObservableCollection<CommunicationConfig> communicationConfigs = new ObservableCollection<CommunicationConfig>();
private readonly DataContext _context;
public CommunicationVM(DataContext context)
{
_context = context;
|
唐召明
authored
|
46
|
InitialData();
|
唐召明
authored
|
47
48
49
|
LoadData();
}
|
唐召明
authored
|
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
private void InitialData()
{
var keyValuePairs = new Dictionary<string, CommunicationTypeConst?>()
{
{ "全部", null },
};
foreach (var item in Enum.GetNames<CommunicationTypeConst>())
{
keyValuePairs.Add(item, Enum.Parse<CommunicationTypeConst>(item));
}
CommunicationTypes = keyValuePairs;
}
|
唐召明
authored
|
64
65
66
67
68
69
70
71
72
73
74
|
[RelayCommand]
public void Serach()
{
var result = LoadData();
if (!result.Success)
{
MessageBox.Error($"加载数据失败.{result.Msg}");
}
}
[RelayCommand]
|
唐召明
authored
|
75
|
public void Add()
|
唐召明
authored
|
76
77
|
{
var view = new CommunicationAddView();
|
唐召明
authored
|
78
79
80
81
82
|
var result = view.ShowDialog();
if (result == true)
{
LoadData();
}
|
唐召明
authored
|
83
84
85
|
}
[RelayCommand]
|
唐召明
authored
|
86
|
public void Edit(int communicationId)
|
唐召明
authored
|
87
|
{
|
唐召明
authored
|
88
|
MessageBox.Warning($"功能开发中...");
|
唐召明
authored
|
89
90
91
|
}
[RelayCommand]
|
唐召明
authored
|
92
|
public void Delete(int communicationId)
|
唐召明
authored
|
93
|
{
|
唐召明
authored
|
94
95
96
97
98
99
100
101
102
103
104
|
try
{
_context.CommunicationConfigs.Remove(new CommunicationConfig { Id = communicationId });
_context.SaveChanges();
LoadData();
MessageBox.Success("删除数据成功");
}
catch (Exception ex)
{
MessageBox.Error($"删除数据失败.{ex.Message}");
}
|
唐召明
authored
|
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
|
}
/// <summary>
/// 页码改变
/// </summary>
[RelayCommand]
private void PageUpdated(FunctionEventArgs<int> info)
{
PageIndex = info.Info;
LoadData();
}
private BllResult LoadData()
{
try
{
var query = _context.CommunicationConfigs.Where(GetFilter());
var total = query.Count();
MaxPage = total / PageSize + Convert.ToInt32(total % PageSize != 0);
var result = query.Page(PageIndex, PageSize).ToList();
CommunicationConfigs = new ObservableCollection<CommunicationConfig>(result);
return BllResultFactory.Success();
}
catch (Exception ex)
{
return BllResultFactory.Error(ex.Message);
}
}
private Expression<Func<CommunicationConfig, bool>> GetFilter()
{
var filter = PredicateBuilder.New<CommunicationConfig>(true);
if (!string.IsNullOrWhiteSpace(Code))
{
filter = filter.And(x => x.Code.Contains(Code));
}
if (!string.IsNullOrWhiteSpace(Name))
{
filter = filter.And(x => x.Name.Contains(Name));
}
|
唐召明
authored
|
145
146
147
148
|
if (CommunicationType != null)
{
filter = filter.And(x => x.CommunicationType.Equals(CommunicationType));
}
|
唐召明
authored
|
149
150
151
152
|
return filter;
}
}
}
|