添加交接柜补药页面
This commit is contained in:
parent
0bc3542281
commit
469b8aebe1
|
@ -132,7 +132,8 @@ namespace DM_Weight
|
||||||
containerRegistry.RegisterForNavigation<OrderTakeDrugNewWindow, OrderTakeDrugNewWindowViewModel>();
|
containerRegistry.RegisterForNavigation<OrderTakeDrugNewWindow, OrderTakeDrugNewWindowViewModel>();
|
||||||
containerRegistry.RegisterForNavigation<OrderTakeAllDrugDialog, OrderTakeAllDrugDialogViewModel>();
|
containerRegistry.RegisterForNavigation<OrderTakeAllDrugDialog, OrderTakeAllDrugDialogViewModel>();
|
||||||
containerRegistry.RegisterForNavigation<OrderTakeNewDialog, OrderTakeNewDialogViewModel>();
|
containerRegistry.RegisterForNavigation<OrderTakeNewDialog, OrderTakeNewDialogViewModel>();
|
||||||
|
//交接柜补药
|
||||||
|
containerRegistry.RegisterForNavigation<AddToJiaoJieWindow, AddToJiaoJieWindowViewModel>();
|
||||||
|
|
||||||
// 处方取药模态框
|
// 处方取药模态框
|
||||||
containerRegistry.RegisterDialog<OrderTakeDialog>();
|
containerRegistry.RegisterDialog<OrderTakeDialog>();
|
||||||
|
|
|
@ -0,0 +1,13 @@
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace DM_Weight.ViewModels
|
||||||
|
{
|
||||||
|
public class AddToJiaoJieWindowViewModel
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
|
@ -171,11 +171,17 @@ namespace DM_Weight.ViewModels
|
||||||
// PremissionName = "处方取药",
|
// PremissionName = "处方取药",
|
||||||
// PremissionPath = "OrderTakeDrugWindow",
|
// PremissionPath = "OrderTakeDrugWindow",
|
||||||
//};
|
//};
|
||||||
|
//PremissionDm quyao1 = new PremissionDm
|
||||||
|
//{
|
||||||
|
// Id = 11,
|
||||||
|
// PremissionName = "处方取药",
|
||||||
|
// PremissionPath = "OrderTakeDrugNewWindow",
|
||||||
|
//};
|
||||||
PremissionDm quyao1 = new PremissionDm
|
PremissionDm quyao1 = new PremissionDm
|
||||||
{
|
{
|
||||||
Id = 11,
|
Id = 11,
|
||||||
PremissionName = "处方取药",
|
PremissionName = "交接柜补药",
|
||||||
PremissionPath = "OrderTakeDrugNewWindow",
|
PremissionPath = "AddToJiaoJieWindow",
|
||||||
};
|
};
|
||||||
PremissionDm quyao2 = new PremissionDm
|
PremissionDm quyao2 = new PremissionDm
|
||||||
{
|
{
|
||||||
|
|
|
@ -0,0 +1,12 @@
|
||||||
|
<UserControl x:Class="DM_Weight.Views.AddToJiaoJieWindow"
|
||||||
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||||
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||||
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||||
|
xmlns:local="clr-namespace:DM_Weight.Views"
|
||||||
|
mc:Ignorable="d"
|
||||||
|
d:DesignHeight="450" d:DesignWidth="800">
|
||||||
|
<Grid>
|
||||||
|
|
||||||
|
</Grid>
|
||||||
|
</UserControl>
|
|
@ -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 DM_Weight.Views
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// AddToJiaoJieWindow.xaml 的交互逻辑
|
||||||
|
/// </summary>
|
||||||
|
public partial class AddToJiaoJieWindow : UserControl
|
||||||
|
{
|
||||||
|
public AddToJiaoJieWindow()
|
||||||
|
{
|
||||||
|
InitializeComponent();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue