修改BUG:菜单URL属性太短,改为4000

This commit is contained in:
Argo-Lenovo 2016-11-23 18:26:22 +08:00
parent 5805c36a60
commit f3d72f9a2d
3 changed files with 3 additions and 4 deletions

View File

@ -122,8 +122,7 @@
digits: true
},
url: {
required: true,
maxlength: 50
required: true
},
category: {
required: true,

View File

@ -91,7 +91,7 @@
</div>
<div class="form-group col-lg-6">
<label class="control-label" for="url">路径</label>
<input type="text" class="form-control" id="url" name="url" placeholder="不可为空" maxlength="50" />
<input type="text" class="form-control" id="url" name="url" placeholder="不可为空" />
</div>
<div class="form-group col-lg-6">
<label class="control-label" for="order">菜单序号</label>

View File

@ -171,7 +171,7 @@ CREATE TABLE [dbo].[Navigations](
[Name] [nvarchar](50) NOT NULL,
[Order] [int] NOT NULL,
[Icon] [varchar](50) NULL,
[Url] [varchar](50) NULL,
[Url] [varchar](4000) NULL,
[Category] [nvarchar](50) NOT NULL,
CONSTRAINT [PK_Navigations] PRIMARY KEY CLUSTERED
(