添加交接柜补药页面

This commit is contained in:
maqiao 2024-08-01 13:42:50 +08:00
parent 0bc3542281
commit 469b8aebe1
5 changed files with 63 additions and 3 deletions

View File

@ -132,7 +132,8 @@ namespace DM_Weight
containerRegistry.RegisterForNavigation<OrderTakeDrugNewWindow, OrderTakeDrugNewWindowViewModel>();
containerRegistry.RegisterForNavigation<OrderTakeAllDrugDialog, OrderTakeAllDrugDialogViewModel>();
containerRegistry.RegisterForNavigation<OrderTakeNewDialog, OrderTakeNewDialogViewModel>();
//交接柜补药
containerRegistry.RegisterForNavigation<AddToJiaoJieWindow, AddToJiaoJieWindowViewModel>();
// 处方取药模态框
containerRegistry.RegisterDialog<OrderTakeDialog>();

View File

@ -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
{
}
}

View File

@ -171,11 +171,17 @@ namespace DM_Weight.ViewModels
// PremissionName = "处方取药",
// PremissionPath = "OrderTakeDrugWindow",
//};
//PremissionDm quyao1 = new PremissionDm
//{
// Id = 11,
// PremissionName = "处方取药",
// PremissionPath = "OrderTakeDrugNewWindow",
//};
PremissionDm quyao1 = new PremissionDm
{
Id = 11,
PremissionName = "处方取药",
PremissionPath = "OrderTakeDrugNewWindow",
PremissionName = "交接柜补药",
PremissionPath = "AddToJiaoJieWindow",
};
PremissionDm quyao2 = new PremissionDm
{

View File

@ -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>

View File

@ -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();
}
}
}