Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mall.oytour.com
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
黄奎
mall.oytour.com
Commits
9afa17cf
Commit
9afa17cf
authored
Sep 03, 2021
by
吴春
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://gitlab.oytour.com/Kui2/mall.oytour.com
parents
68d59e46
0a84e487
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
23 additions
and
19 deletions
+23
-19
RB_Custom_Form_Extend.cs
Mall.Model/Extend/TradePavilion/RB_Custom_Form_Extend.cs
+5
-0
CustomFormModule.cs
Mall.Module.TradePavilion/CustomFormModule.cs
+10
-0
FirstShopListModule.cs
Mall.Module.TradePavilion/FirstShopListModule.cs
+4
-4
TradeController.cs
Mall.WebApi/Controllers/TradePavilion/TradeController.cs
+4
-0
Mall.WebApi.csproj.user
Mall.WebApi/Mall.WebApi.csproj.user
+0
-15
No files found.
Mall.Model/Extend/TradePavilion/RB_Custom_Form_Extend.cs
View file @
9afa17cf
...
...
@@ -141,6 +141,11 @@ namespace Mall.Model.Extend.TradePavilion
/// </summary>
public
int
FileCount
{
get
;
set
;
}
/// <summary>
/// 上传文件类型
/// </summary>
public
string
FileType
{
get
;
set
;
}
/// <summary>
/// 上传文件大小M
/// </summary>
...
...
Mall.Module.TradePavilion/CustomFormModule.cs
View file @
9afa17cf
...
...
@@ -205,6 +205,15 @@ namespace Mall.Module.TradePavilion
}
dataItem
.
CompData
=
videoItem
;
break
;
//通用上传组件
case
"CommonUploadComp"
:
UploadItem
commonUpload
=
GetUploadItem
(
compData
);
if
(!
isGetAnswer
)
{
commonUpload
.
FileList
=
new
List
<
string
>();
}
dataItem
.
CompData
=
commonUpload
;
break
;
}
dataList
.
Add
(
dataItem
);
}
...
...
@@ -290,6 +299,7 @@ namespace Mall.Module.TradePavilion
{
Name
=
uploadObj
.
GetStringValue
(
"Name"
),
FileCount
=
uploadObj
.
GetInt
(
"FileCount"
),
FileType
=
uploadObj
.
GetStringValue
(
"FileType"
),
FileSizeLimit
=
uploadObj
.
GetInt
(
"FileSizeLimit"
),
Remark
=
uploadObj
.
GetStringValue
(
"Remark"
),
FileList
=
new
List
<
string
>(),
...
...
Mall.Module.TradePavilion/FirstShopListModule.cs
View file @
9afa17cf
...
...
@@ -553,9 +553,9 @@ namespace Mall.Module.TradePavilion
ExcelDataSource
header
=
new
ExcelDataSource
()
{
ExcelRows
=
new
List
<
ExcelColumn
>(
30
)
{
new
ExcelColumn
(
value
:
"企业名称"
)
{
CellWidth
=
1
5
,
HAlignmentEnum
=
HAlignmentEnum
.
CENTER
,
VAlignmentEnum
=
VAlignmentEnum
.
CENTER
},
new
ExcelColumn
(
value
:
"企业名称"
)
{
CellWidth
=
2
5
,
HAlignmentEnum
=
HAlignmentEnum
.
CENTER
,
VAlignmentEnum
=
VAlignmentEnum
.
CENTER
},
new
ExcelColumn
(
value
:
"类型"
)
{
CellWidth
=
15
,
HAlignmentEnum
=
HAlignmentEnum
.
CENTER
,
VAlignmentEnum
=
VAlignmentEnum
.
CENTER
},
new
ExcelColumn
(
value
:
"对象名称"
)
{
CellWidth
=
15
,
HAlignmentEnum
=
HAlignmentEnum
.
CENTER
,
VAlignmentEnum
=
VAlignmentEnum
.
CENTER
}
new
ExcelColumn
(
value
:
"对象名称"
)
{
CellWidth
=
20
,
HAlignmentEnum
=
HAlignmentEnum
.
CENTER
,
VAlignmentEnum
=
VAlignmentEnum
.
CENTER
}
},
ColumnHight
=
30
};
...
...
@@ -607,7 +607,7 @@ namespace Mall.Module.TradePavilion
else
{
var
objv
=
JsonHelper
.
DeserializeObject
<
UploadItem
>(
qitem
.
CompData
.
ToString
());
value
=
JsonHelper
.
Serialize
(
objv
.
FileList
);
value
=
string
.
Join
(
","
,
objv
.
FileList
);
}
row
.
ExcelRows
.
Add
(
new
ExcelColumn
(
value
:
value
)
{
});
}
...
...
@@ -640,7 +640,7 @@ namespace Mall.Module.TradePavilion
ExcelDataSource
header
=
new
ExcelDataSource
()
{
ExcelRows
=
new
List
<
ExcelColumn
>(
30
)
{
new
ExcelColumn
(
value
:
"企业名称"
)
{
CellWidth
=
1
5
,
HAlignmentEnum
=
HAlignmentEnum
.
CENTER
,
VAlignmentEnum
=
VAlignmentEnum
.
CENTER
}
new
ExcelColumn
(
value
:
"企业名称"
)
{
CellWidth
=
2
5
,
HAlignmentEnum
=
HAlignmentEnum
.
CENTER
,
VAlignmentEnum
=
VAlignmentEnum
.
CENTER
}
},
ColumnHight
=
30
};
...
...
Mall.WebApi/Controllers/TradePavilion/TradeController.cs
View file @
9afa17cf
...
...
@@ -2265,6 +2265,8 @@ namespace Mall.WebApi.Controllers.TradePavilion
x
.
UserId
,
x
.
UserName
,
x
.
UserIcon
,
x
.
ObjectType
,
x
.
ObjectId
,
x
.
Content
,
x
.
Reviews
,
x
.
Rank
,
...
...
@@ -2273,6 +2275,8 @@ namespace Mall.WebApi.Controllers.TradePavilion
x
.
CandidateState
,
x
.
RankListState
,
x
.
CompanyName
,
x
.
Principal
,
x
.
Mobile
,
x
.
ObjectName
,
x
.
ObjectIcon
,
CreateDate
=
x
.
CreateDate
.
ToString
(
"yyyy-MM-dd HH:mm:ss"
)
...
...
Mall.WebApi/Mall.WebApi.csproj.user
deleted
100644 → 0
View file @
68d59e46
<?xml version="1.0" encoding="utf-8"?>
<Project
ToolsVersion=
"Current"
xmlns=
"http://schemas.microsoft.com/developer/msbuild/2003"
>
<PropertyGroup>
<Controller_SelectedScaffolderID>
MvcControllerEmptyScaffolder
</Controller_SelectedScaffolderID>
<Controller_SelectedScaffolderCategoryPath>
root/Common/MVC/Controller
</Controller_SelectedScaffolderCategoryPath>
<WebStackScaffolding_ControllerDialogWidth>
600
</WebStackScaffolding_ControllerDialogWidth>
<WebStackScaffolding_IsLayoutPageSelected>
True
</WebStackScaffolding_IsLayoutPageSelected>
<WebStackScaffolding_IsPartialViewSelected>
False
</WebStackScaffolding_IsPartialViewSelected>
<WebStackScaffolding_IsReferencingScriptLibrariesSelected>
True
</WebStackScaffolding_IsReferencingScriptLibrariesSelected>
<WebStackScaffolding_LayoutPageFile
/>
<WebStackScaffolding_IsAsyncSelected>
False
</WebStackScaffolding_IsAsyncSelected>
<NameOfLastUsedPublishProfile>
FolderProfile
</NameOfLastUsedPublishProfile>
<ShowAllFiles>
false
</ShowAllFiles>
</PropertyGroup>
</Project>
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment