diff --git a/BPASmartClient.Tourism/Model/ControlData.cs b/BPASmartClient.Tourism/Model/ControlData.cs index 82a8f3fa..8814c78e 100644 --- a/BPASmartClient.Tourism/Model/ControlData.cs +++ b/BPASmartClient.Tourism/Model/ControlData.cs @@ -21,12 +21,17 @@ namespace BPASmartClient.MorkCL.Model /// 菜品类型 /// public EDishType DishType { get; set; } - + /// /// 功能配方 /// public ConcurrentQueue ControlFuncs { get; set; } = new ConcurrentQueue(); + /// + /// 备注 + /// + public string Remark { get; set; } + } diff --git a/BPASmartClient.Tourism/Model/Json/RecipesInfo.cs b/BPASmartClient.Tourism/Model/Json/RecipesInfo.cs index a2936186..552c701b 100644 --- a/BPASmartClient.Tourism/Model/Json/RecipesInfo.cs +++ b/BPASmartClient.Tourism/Model/Json/RecipesInfo.cs @@ -9,6 +9,6 @@ namespace BPASmartClient.MorkCL.Model.Json { public class RecipesInfo { - public ObservableCollection LocalRecipes { get; set; }=new ObservableCollection(); + public ObservableCollection LocalRecipes { get; set; } = new ObservableCollection(); } } diff --git a/BPASmartClient.Tourism/View/EditRecipeView.xaml b/BPASmartClient.Tourism/View/EditRecipeView.xaml index f074a3b0..5f9df4bc 100644 --- a/BPASmartClient.Tourism/View/EditRecipeView.xaml +++ b/BPASmartClient.Tourism/View/EditRecipeView.xaml @@ -66,13 +66,13 @@ - + + IsReadOnly="True" + ItemsSource="{Binding AllDishType}" + Text="{Binding DishType}" />