diff --git a/SlnMesnac.WPF/Page/EmployeeLoginPage.xaml b/SlnMesnac.WPF/Page/EmployeeLoginPage.xaml
index bdb53d2..6dea713 100644
--- a/SlnMesnac.WPF/Page/EmployeeLoginPage.xaml
+++ b/SlnMesnac.WPF/Page/EmployeeLoginPage.xaml
@@ -6,128 +6,7 @@
xmlns:local="clr-namespace:SlnMesnac.WPF.Page"
mc:Ignorable="d"
d:DesignHeight="450" d:DesignWidth="800">
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
diff --git a/SlnMesnac.WPF/Page/ExecutePage.xaml b/SlnMesnac.WPF/Page/ExecutePage.xaml
new file mode 100644
index 0000000..b0e952e
--- /dev/null
+++ b/SlnMesnac.WPF/Page/ExecutePage.xaml
@@ -0,0 +1,228 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/SlnMesnac.WPF/Page/ExecutePage.xaml.cs b/SlnMesnac.WPF/Page/ExecutePage.xaml.cs
new file mode 100644
index 0000000..7a0b566
--- /dev/null
+++ b/SlnMesnac.WPF/Page/ExecutePage.xaml.cs
@@ -0,0 +1,28 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows;
+using System.Windows.Controls;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Input;
+using System.Windows.Media;
+using System.Windows.Media.Imaging;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+
+namespace SlnMesnac.WPF.Page
+{
+ ///
+ /// ExecutePage.xaml 的交互逻辑
+ ///
+ public partial class ExecutePage : UserControl
+ {
+ public ExecutePage()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/SlnMesnac.WPF/ViewModel/MainWindowViewModel.cs b/SlnMesnac.WPF/ViewModel/MainWindowViewModel.cs
index 8414540..73c7568 100644
--- a/SlnMesnac.WPF/ViewModel/MainWindowViewModel.cs
+++ b/SlnMesnac.WPF/ViewModel/MainWindowViewModel.cs
@@ -17,6 +17,7 @@ namespace SlnMesnac.WPF.ViewModel
//代码生成
private readonly GenerateControl generateControl = new GenerateControl();
private readonly EmployeeLoginPage _employeeLoginPage = new EmployeeLoginPage();
+ private readonly ExecutePage _executePage = new ExecutePage();
#region 参数定义
///
@@ -81,7 +82,7 @@ namespace SlnMesnac.WPF.ViewModel
public MainWindowViewModel()
{
- UserContent = _employeeLoginPage;
+ UserContent = _executePage;
_logger = App.ServiceProvider.GetService>();
ControlOnClickCommand = new RelayCommand