File tree Expand file tree Collapse file tree 3 files changed +31
-0
lines changed
Vol.Vue3版本/src/components/basic/ViewGrid
开发版dev/Vue.NetCore/Vol.Vue3版本/src/components/basic/ViewGrid Expand file tree Collapse file tree 3 files changed +31
-0
lines changed Original file line number Diff line number Diff line change @@ -105,6 +105,7 @@ export default {
105105 this . viewModel = true ;
106106 } ,
107107 closeCustomModel ( ) {
108+ this . viewModel = false ;
108109 if ( this . checkColumnChanged ( ) ) {
109110 this . viewColumns = JSON . parse ( JSON . stringify ( this . viewColumnsClone ) ) ;
110111 }
Original file line number Diff line number Diff line change 1+ # See https://aka.ms/containerfastmode to understand how Visual Studio uses this Dockerfile to build your images for faster debugging.
2+
3+ FROM mcr.microsoft.com/dotnet/aspnet:6.0 AS base
4+ RUN apt-get update; apt-get install libfontconfig1 -y
5+
6+ WORKDIR /app
7+ EXPOSE 9991
8+
9+ FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build
10+ WORKDIR /src
11+ COPY ["VOL.WebApi/VOL.WebApi.csproj" , "VOL.WebApi/" ]
12+ COPY ["VOL.System/VOL.System.csproj" , "VOL.System/" ]
13+ COPY ["VOL.Core/VOL.Core.csproj" , "VOL.Core/" ]
14+ COPY ["VOL.Entity/VOL.Entity.csproj" , "VOL.Entity/" ]
15+ COPY ["VOL.Order/VOL.Order.csproj" , "VOL.Order/" ]
16+ COPY ["VOL.AppManager/VOL.AppManager.csproj" , "VOL.AppManager/" ]
17+ COPY ["VOL.Builder/VOL.Builder.csproj" , "VOL.Builder/" ]
18+ RUN dotnet restore "VOL.WebApi/VOL.WebApi.csproj"
19+ COPY . .
20+ WORKDIR "/src/VOL.WebApi"
21+ RUN dotnet build "VOL.WebApi.csproj" -c Release -o /app/build
22+
23+ FROM build AS publish
24+ RUN dotnet publish "VOL.WebApi.csproj" -c Release -o /app/publish
25+
26+ FROM base AS final
27+ WORKDIR /app
28+ COPY --from=publish /app/publish .
29+ ENTRYPOINT ["dotnet" , "VOL.WebApi.dll" ]
Original file line number Diff line number Diff line change @@ -105,6 +105,7 @@ export default {
105105 this . viewModel = true ;
106106 } ,
107107 closeCustomModel ( ) {
108+ this . viewModel = false ;
108109 if ( this . checkColumnChanged ( ) ) {
109110 this . viewColumns = JSON . parse ( JSON . stringify ( this . viewColumnsClone ) ) ;
110111 }
You can’t perform that action at this time.
0 commit comments