Skip to content

Commit 463c40f

Browse files
author
283591387@qq.com
committed
修复vue3版本自定义列点击取消时没有关闭的问题
1 parent 5a8ed72 commit 463c40f

File tree

3 files changed

+31
-0
lines changed

3 files changed

+31
-0
lines changed

Vol.Vue3版本/src/components/basic/ViewGrid/ViewGridCustomColumn.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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
}

Vue.Net/VOL.WebApi/Dockerfile

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
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"]

开发版dev/Vue.NetCore/Vol.Vue3版本/src/components/basic/ViewGrid/ViewGridCustomColumn.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)