增加专业查询接口
parent
0210507de1
commit
fd5db888c5
|
|
@ -66,7 +66,7 @@ namespace New_College.Api.Controllers.Front
|
||||||
return new MessageModel<List<SameScoreLineDataDto>>()
|
return new MessageModel<List<SameScoreLineDataDto>>()
|
||||||
{
|
{
|
||||||
msg = "ok",
|
msg = "ok",
|
||||||
response = response.OrderByDescending(c=>c.Years).ToList(),
|
response = response.OrderByDescending(c => c.Years).ToList(),
|
||||||
success = true
|
success = true
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -231,6 +231,25 @@ namespace New_College.Api.Controllers.Front
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 搜索专业名称得到专业列表
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="query"></param>
|
||||||
|
/// <returns></returns>
|
||||||
|
[HttpGet]
|
||||||
|
public async Task<MessageModel<List<SeachMajorDtoResponse>>> SeachMajor([FromQuery] SeachMajorDtoRequest query)
|
||||||
|
{
|
||||||
|
var result = await iD_LongIdMapServices.SeachMajor(query);
|
||||||
|
return new MessageModel<List<SeachMajorDtoResponse>>()
|
||||||
|
{
|
||||||
|
msg = "ok",
|
||||||
|
success = result.Any() ? true : false,
|
||||||
|
response = result
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 获取专业介绍
|
/// 获取专业介绍
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
|
||||||
|
|
@ -25,6 +25,28 @@ namespace New_College.Api.Controllers.Front
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 获取新闻分类
|
||||||
|
/// </summary>
|
||||||
|
/// <returns></returns>
|
||||||
|
[HttpGet]
|
||||||
|
public async Task<MessageModel<List<NewsClassCategoryResponse>>> GetNewsCategory()
|
||||||
|
{
|
||||||
|
|
||||||
|
|
||||||
|
return new MessageModel<List<NewsClassCategoryResponse>>()
|
||||||
|
{
|
||||||
|
msg = "ok",
|
||||||
|
success = true,
|
||||||
|
response = (await iD_NewsCategory.Query(c => c.IsDelete == false)).Select(c => new NewsClassCategoryResponse()
|
||||||
|
{
|
||||||
|
Sort = c.OrderSort,
|
||||||
|
CategoryName = c.CategoryName,
|
||||||
|
Id = c.Id
|
||||||
|
}).OrderBy(c => c.Sort).ToList(),
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 获取top多少的新闻
|
/// 获取top多少的新闻
|
||||||
|
|
|
||||||
|
|
@ -15,6 +15,7 @@ using Microsoft.AspNetCore.Authorization;
|
||||||
using Microsoft.AspNetCore.Http;
|
using Microsoft.AspNetCore.Http;
|
||||||
using Microsoft.AspNetCore.Mvc;
|
using Microsoft.AspNetCore.Mvc;
|
||||||
using System.Net.Http;
|
using System.Net.Http;
|
||||||
|
using New_College.Common;
|
||||||
|
|
||||||
namespace New_College.Controllers
|
namespace New_College.Controllers
|
||||||
{
|
{
|
||||||
|
|
@ -52,6 +53,44 @@ namespace New_College.Controllers
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public class SwaggerLoginRequest
|
||||||
|
{
|
||||||
|
public string name { get; set; }
|
||||||
|
public string pwd { get; set; }
|
||||||
|
}
|
||||||
|
/// <summary>
|
||||||
|
/// swagger登录
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="loginRequest"></param>
|
||||||
|
/// <returns></returns>
|
||||||
|
[HttpPost]
|
||||||
|
[Route("/api/Login/swgLogin")]
|
||||||
|
public async Task<dynamic> SwgLogin([FromBody] SwaggerLoginRequest loginRequest)
|
||||||
|
{
|
||||||
|
if (loginRequest is null)
|
||||||
|
{
|
||||||
|
return new { result = false };
|
||||||
|
}
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
var result = await GetJwtToken3(loginRequest.name, loginRequest.pwd);
|
||||||
|
if (result.success)
|
||||||
|
{
|
||||||
|
|
||||||
|
HttpContext.SuccessSwagger();
|
||||||
|
HttpContext.SuccessSwaggerJwt(result.response.token);
|
||||||
|
return new { result = true };
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
// _logger.LogWarning(ex, "Swagger登录异常");
|
||||||
|
}
|
||||||
|
|
||||||
|
return new { result = false };
|
||||||
|
}
|
||||||
|
|
||||||
#region 获取token的第1种方法
|
#region 获取token的第1种方法
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 获取JWT的方法1
|
/// 获取JWT的方法1
|
||||||
|
|
|
||||||
|
|
@ -65,11 +65,13 @@
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<None Include="..\.editorconfig" Link=".editorconfig" />
|
<None Include="..\.editorconfig" Link=".editorconfig" />
|
||||||
<None Include="wwwroot\BlogCore.Data.json\BlogArticle.tsv" />
|
<None Include="wwwroot\BlogCore.Data.json\BlogArticle.tsv" />
|
||||||
|
<None Include="wwwroot\BlogCore.Data.json\Department.tsv" />
|
||||||
<None Include="wwwroot\BlogCore.Data.json\Modules.tsv" />
|
<None Include="wwwroot\BlogCore.Data.json\Modules.tsv" />
|
||||||
<None Include="wwwroot\BlogCore.Data.json\Permission.tsv" />
|
<None Include="wwwroot\BlogCore.Data.json\Permission.tsv" />
|
||||||
<None Include="wwwroot\BlogCore.Data.json\Role.tsv" />
|
<None Include="wwwroot\BlogCore.Data.json\Role.tsv" />
|
||||||
<None Include="wwwroot\BlogCore.Data.json\RoleModulePermission.tsv" />
|
<None Include="wwwroot\BlogCore.Data.json\RoleModulePermission.tsv" />
|
||||||
<None Include="wwwroot\BlogCore.Data.json\sysUserInfo.tsv" />
|
<None Include="wwwroot\BlogCore.Data.json\sysUserInfo.tsv" />
|
||||||
|
<None Include="wwwroot\BlogCore.Data.json\TasksQz.tsv" />
|
||||||
<None Include="wwwroot\BlogCore.Data.json\Topic.tsv" />
|
<None Include="wwwroot\BlogCore.Data.json\Topic.tsv" />
|
||||||
<None Include="wwwroot\BlogCore.Data.json\TopicDetail.tsv" />
|
<None Include="wwwroot\BlogCore.Data.json\TopicDetail.tsv" />
|
||||||
<None Include="wwwroot\BlogCore.Data.json\UserRole.tsv" />
|
<None Include="wwwroot\BlogCore.Data.json\UserRole.tsv" />
|
||||||
|
|
|
||||||
|
|
@ -5075,6 +5075,11 @@
|
||||||
科目要求
|
科目要求
|
||||||
</summary>
|
</summary>
|
||||||
</member>
|
</member>
|
||||||
|
<member name="P:New_College.Model.ViewModels.SeachMajorDtoResponse.Type">
|
||||||
|
<summary>
|
||||||
|
专业的类型(本科专业,专科专业)
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
<member name="T:New_College.Model.ViewModels.MajorDetail">
|
<member name="T:New_College.Model.ViewModels.MajorDetail">
|
||||||
<summary>
|
<summary>
|
||||||
专业介绍
|
专业介绍
|
||||||
|
|
|
||||||
|
|
@ -349,6 +349,13 @@
|
||||||
<param name="query"></param>
|
<param name="query"></param>
|
||||||
<returns></returns>
|
<returns></returns>
|
||||||
</member>
|
</member>
|
||||||
|
<member name="M:New_College.Api.Controllers.Front.LibraryController.SeachMajor(New_College.Model.ViewModels.SeachMajorDtoRequest)">
|
||||||
|
<summary>
|
||||||
|
搜索专业名称得到专业列表
|
||||||
|
</summary>
|
||||||
|
<param name="query"></param>
|
||||||
|
<returns></returns>
|
||||||
|
</member>
|
||||||
<member name="M:New_College.Api.Controllers.Front.LibraryController.GetMajorDetail(New_College.Model.ViewModels.MajorQuery)">
|
<member name="M:New_College.Api.Controllers.Front.LibraryController.GetMajorDetail(New_College.Model.ViewModels.MajorQuery)">
|
||||||
<summary>
|
<summary>
|
||||||
获取专业介绍
|
获取专业介绍
|
||||||
|
|
@ -471,6 +478,12 @@
|
||||||
<param name="CustomerId"></param>
|
<param name="CustomerId"></param>
|
||||||
<returns></returns>
|
<returns></returns>
|
||||||
</member>
|
</member>
|
||||||
|
<member name="M:New_College.Api.Controllers.Front.NewsInfoController.GetNewsCategory">
|
||||||
|
<summary>
|
||||||
|
获取新闻分类
|
||||||
|
</summary>
|
||||||
|
<returns></returns>
|
||||||
|
</member>
|
||||||
<member name="M:New_College.Api.Controllers.Front.NewsInfoController.GetTopNews(New_College.Model.Request.NewsRequest)">
|
<member name="M:New_College.Api.Controllers.Front.NewsInfoController.GetTopNews(New_College.Model.Request.NewsRequest)">
|
||||||
<summary>
|
<summary>
|
||||||
获取top多少的新闻
|
获取top多少的新闻
|
||||||
|
|
@ -1106,6 +1119,13 @@
|
||||||
<param name="requirement"></param>
|
<param name="requirement"></param>
|
||||||
<param name="roleModulePermissionServices"></param>
|
<param name="roleModulePermissionServices"></param>
|
||||||
</member>
|
</member>
|
||||||
|
<member name="M:New_College.Controllers.LoginController.SwgLogin(New_College.Controllers.LoginController.SwaggerLoginRequest)">
|
||||||
|
<summary>
|
||||||
|
swagger登录
|
||||||
|
</summary>
|
||||||
|
<param name="loginRequest"></param>
|
||||||
|
<returns></returns>
|
||||||
|
</member>
|
||||||
<member name="M:New_College.Controllers.LoginController.GetJwtStr(System.String,System.String)">
|
<member name="M:New_College.Controllers.LoginController.GetJwtStr(System.String,System.String)">
|
||||||
<summary>
|
<summary>
|
||||||
获取JWT的方法1
|
获取JWT的方法1
|
||||||
|
|
|
||||||
|
|
@ -92,7 +92,7 @@ namespace New_College
|
||||||
services.AddHttpContextSetup();
|
services.AddHttpContextSetup();
|
||||||
services.AddAppConfigSetup();
|
services.AddAppConfigSetup();
|
||||||
services.AddHttpApi();
|
services.AddHttpApi();
|
||||||
|
|
||||||
// 授权+认证 (jwt or ids4)
|
// 授权+认证 (jwt or ids4)
|
||||||
services.AddAuthorizationSetup();
|
services.AddAuthorizationSetup();
|
||||||
if (Permissions.IsUseIds4)
|
if (Permissions.IsUseIds4)
|
||||||
|
|
@ -113,7 +113,7 @@ namespace New_College
|
||||||
services.Configure<KestrelServerOptions>(x => x.AllowSynchronousIO = true)
|
services.Configure<KestrelServerOptions>(x => x.AllowSynchronousIO = true)
|
||||||
.Configure<IISServerOptions>(x => x.AllowSynchronousIO = true);
|
.Configure<IISServerOptions>(x => x.AllowSynchronousIO = true);
|
||||||
|
|
||||||
|
// services.AddSession();
|
||||||
services.AddControllers(o =>
|
services.AddControllers(o =>
|
||||||
{
|
{
|
||||||
// 全局异常过滤
|
// 全局异常过滤
|
||||||
|
|
@ -156,7 +156,8 @@ namespace New_College
|
||||||
//options.SerializerSettings.Converters.Add(new NumberConverter(NumberConverterShip.Int64));
|
//options.SerializerSettings.Converters.Add(new NumberConverter(NumberConverterShip.Int64));
|
||||||
});
|
});
|
||||||
//全局配置Json序列化处理
|
//全局配置Json序列化处理
|
||||||
|
services.AddMvc().AddSessionStateTempDataProvider();
|
||||||
|
services.AddSession();
|
||||||
_services = services;
|
_services = services;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -192,6 +193,7 @@ namespace New_College
|
||||||
// 强制实施 HTTPS 在 ASP.NET Core,配合 app.UseHttpsRedirection
|
// 强制实施 HTTPS 在 ASP.NET Core,配合 app.UseHttpsRedirection
|
||||||
//app.UseHsts();
|
//app.UseHsts();
|
||||||
}
|
}
|
||||||
|
// app.UseSession();
|
||||||
app.UseSwaggerAuthorized();
|
app.UseSwaggerAuthorized();
|
||||||
// 封装Swagger展示
|
// 封装Swagger展示
|
||||||
app.UseSwaggerMildd(() => GetType().GetTypeInfo().Assembly.GetManifestResourceStream("New_College.Api.index.html"));
|
app.UseSwaggerMildd(() => GetType().GetTypeInfo().Assembly.GetManifestResourceStream("New_College.Api.index.html"));
|
||||||
|
|
@ -206,6 +208,7 @@ namespace New_College
|
||||||
app.UseStaticFiles();
|
app.UseStaticFiles();
|
||||||
// 使用cookie
|
// 使用cookie
|
||||||
app.UseCookiePolicy();
|
app.UseCookiePolicy();
|
||||||
|
app.UseSession();
|
||||||
// 返回错误码
|
// 返回错误码
|
||||||
app.UseStatusCodePages();
|
app.UseStatusCodePages();
|
||||||
// Routing
|
// Routing
|
||||||
|
|
|
||||||
|
|
@ -26,7 +26,7 @@
|
||||||
"Name": "New_College"
|
"Name": "New_College"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"urls": "http://*:8082", // IIS 部署,注释掉
|
"urls": "http://*:8083", // IIS 部署,注释掉
|
||||||
"AllowedHosts": "*",
|
"AllowedHosts": "*",
|
||||||
"AppSettings": {
|
"AppSettings": {
|
||||||
"RedisCachingAOP": {
|
"RedisCachingAOP": {
|
||||||
|
|
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -10,6 +10,6 @@
|
||||||
"bUpdateTime": "\/Date(1546272000000+0800)\/",
|
"bUpdateTime": "\/Date(1546272000000+0800)\/",
|
||||||
"bCreateTime": "\/Date(1546272000000+0800)\/",
|
"bCreateTime": "\/Date(1546272000000+0800)\/",
|
||||||
"bRemark": null,
|
"bRemark": null,
|
||||||
"IsDeleted": "0"
|
"IsDeleted": 0
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
|
||||||
|
Can't render this file because it contains an unexpected character in line 3 and column 5.
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
|
@ -1,10 +1,10 @@
|
||||||
[
|
[
|
||||||
{
|
{
|
||||||
"IsDeleted": "0",
|
"IsDeleted": 0,
|
||||||
"Name": "Admin",
|
"Name": "Admin",
|
||||||
"Description": "普通管理",
|
"Description": "普通管理",
|
||||||
"OrderSort": 1,
|
"OrderSort": 1,
|
||||||
"Enabled": "1",
|
"Enabled": 1,
|
||||||
"CreateId": null,
|
"CreateId": null,
|
||||||
"CreateBy": null,
|
"CreateBy": null,
|
||||||
"CreateTime": "\/Date(1546272000000+0800)\/",
|
"CreateTime": "\/Date(1546272000000+0800)\/",
|
||||||
|
|
@ -14,11 +14,11 @@
|
||||||
"Id": 1
|
"Id": 1
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"IsDeleted": "0",
|
"IsDeleted": 0,
|
||||||
"Name": "System",
|
"Name": "System",
|
||||||
"Description": "系统管理",
|
"Description": "系统管理",
|
||||||
"OrderSort": 1,
|
"OrderSort": 1,
|
||||||
"Enabled": "1",
|
"Enabled": 1,
|
||||||
"CreateId": null,
|
"CreateId": null,
|
||||||
"CreateBy": null,
|
"CreateBy": null,
|
||||||
"CreateTime": "\/Date(1546272000000+0800)\/",
|
"CreateTime": "\/Date(1546272000000+0800)\/",
|
||||||
|
|
@ -28,11 +28,11 @@
|
||||||
"Id": 2
|
"Id": 2
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"IsDeleted": "0",
|
"IsDeleted": 0,
|
||||||
"Name": "Tibug",
|
"Name": "Tibug",
|
||||||
"Description": "tibug系统管理",
|
"Description": "tibug系统管理",
|
||||||
"OrderSort": 1,
|
"OrderSort": 1,
|
||||||
"Enabled": "1",
|
"Enabled": 1,
|
||||||
"CreateId": null,
|
"CreateId": null,
|
||||||
"CreateBy": null,
|
"CreateBy": null,
|
||||||
"CreateTime": "\/Date(1546272000000+0800)\/",
|
"CreateTime": "\/Date(1546272000000+0800)\/",
|
||||||
|
|
@ -42,11 +42,11 @@
|
||||||
"Id": 3
|
"Id": 3
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"IsDeleted": "0",
|
"IsDeleted": 0,
|
||||||
"Name": "SuperAdmin",
|
"Name": "SuperAdmin",
|
||||||
"Description": "超级管理",
|
"Description": "超级管理",
|
||||||
"OrderSort": 0,
|
"OrderSort": 0,
|
||||||
"Enabled": "1",
|
"Enabled": 1,
|
||||||
"CreateId": 23,
|
"CreateId": 23,
|
||||||
"CreateBy": "blogadmin",
|
"CreateBy": "blogadmin",
|
||||||
"CreateTime": "\/Date(1546272000000+0800)\/",
|
"CreateTime": "\/Date(1546272000000+0800)\/",
|
||||||
|
|
@ -56,11 +56,11 @@
|
||||||
"Id": 4
|
"Id": 4
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"IsDeleted": "1",
|
"IsDeleted": 1,
|
||||||
"Name": "AdminTest",
|
"Name": "AdminTest",
|
||||||
"Description": null,
|
"Description": null,
|
||||||
"OrderSort": 1,
|
"OrderSort": 1,
|
||||||
"Enabled": "1",
|
"Enabled": 1,
|
||||||
"CreateId": 18,
|
"CreateId": 18,
|
||||||
"CreateBy": "提bug账号",
|
"CreateBy": "提bug账号",
|
||||||
"CreateTime": "\/Date(1546272000000+0800)\/",
|
"CreateTime": "\/Date(1546272000000+0800)\/",
|
||||||
|
|
@ -70,11 +70,11 @@
|
||||||
"Id": 5
|
"Id": 5
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"IsDeleted": "0",
|
"IsDeleted": 0,
|
||||||
"Name": "AdminTest",
|
"Name": "AdminTest",
|
||||||
"Description": "测试管理",
|
"Description": "测试管理",
|
||||||
"OrderSort": 1,
|
"OrderSort": 1,
|
||||||
"Enabled": "1",
|
"Enabled": 1,
|
||||||
"CreateId": 23,
|
"CreateId": 23,
|
||||||
"CreateBy": "后台总管理员",
|
"CreateBy": "后台总管理员",
|
||||||
"CreateTime": "\/Date(1546272000000+0800)\/",
|
"CreateTime": "\/Date(1546272000000+0800)\/",
|
||||||
|
|
@ -84,11 +84,11 @@
|
||||||
"Id": 6
|
"Id": 6
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"IsDeleted": "0",
|
"IsDeleted": 0,
|
||||||
"Name": "AdminTest2",
|
"Name": "AdminTest2",
|
||||||
"Description": "测试管理2",
|
"Description": "测试管理2",
|
||||||
"OrderSort": 1,
|
"OrderSort": 1,
|
||||||
"Enabled": "1",
|
"Enabled": 1,
|
||||||
"CreateId": 23,
|
"CreateId": 23,
|
||||||
"CreateBy": "后台总管理员",
|
"CreateBy": "后台总管理员",
|
||||||
"CreateTime": "\/Date(1546272000000+0800)\/",
|
"CreateTime": "\/Date(1546272000000+0800)\/",
|
||||||
|
|
@ -98,11 +98,11 @@
|
||||||
"Id": 7
|
"Id": 7
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"IsDeleted": "1",
|
"IsDeleted": 1,
|
||||||
"Name": "sss",
|
"Name": "sss",
|
||||||
"Description": null,
|
"Description": null,
|
||||||
"OrderSort": 1,
|
"OrderSort": 1,
|
||||||
"Enabled": "1",
|
"Enabled": 1,
|
||||||
"CreateId": null,
|
"CreateId": null,
|
||||||
"CreateBy": null,
|
"CreateBy": null,
|
||||||
"CreateTime": "\/Date(1546272000000+0800)\/",
|
"CreateTime": "\/Date(1546272000000+0800)\/",
|
||||||
|
|
@ -112,11 +112,11 @@
|
||||||
"Id": 8
|
"Id": 8
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"IsDeleted": "1",
|
"IsDeleted": 1,
|
||||||
"Name": "sss",
|
"Name": "sss",
|
||||||
"Description": null,
|
"Description": null,
|
||||||
"OrderSort": 1,
|
"OrderSort": 1,
|
||||||
"Enabled": "1",
|
"Enabled": 1,
|
||||||
"CreateId": null,
|
"CreateId": null,
|
||||||
"CreateBy": null,
|
"CreateBy": null,
|
||||||
"CreateTime": "\/Date(1546272000000+0800)\/",
|
"CreateTime": "\/Date(1546272000000+0800)\/",
|
||||||
|
|
@ -126,11 +126,11 @@
|
||||||
"Id": 9
|
"Id": 9
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"IsDeleted": "1",
|
"IsDeleted": 1,
|
||||||
"Name": "sss",
|
"Name": "sss",
|
||||||
"Description": null,
|
"Description": null,
|
||||||
"OrderSort": 1,
|
"OrderSort": 1,
|
||||||
"Enabled": "1",
|
"Enabled": 1,
|
||||||
"CreateId": null,
|
"CreateId": null,
|
||||||
"CreateBy": null,
|
"CreateBy": null,
|
||||||
"CreateTime": "\/Date(1546272000000+0800)\/",
|
"CreateTime": "\/Date(1546272000000+0800)\/",
|
||||||
|
|
@ -140,11 +140,11 @@
|
||||||
"Id": 10
|
"Id": 10
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"IsDeleted": "1",
|
"IsDeleted": 1,
|
||||||
"Name": "sss",
|
"Name": "sss",
|
||||||
"Description": null,
|
"Description": null,
|
||||||
"OrderSort": 1,
|
"OrderSort": 1,
|
||||||
"Enabled": "1",
|
"Enabled": 1,
|
||||||
"CreateId": null,
|
"CreateId": null,
|
||||||
"CreateBy": null,
|
"CreateBy": null,
|
||||||
"CreateTime": "\/Date(1546272000000+0800)\/",
|
"CreateTime": "\/Date(1546272000000+0800)\/",
|
||||||
|
|
@ -154,11 +154,11 @@
|
||||||
"Id": 11
|
"Id": 11
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"IsDeleted": "1",
|
"IsDeleted": 1,
|
||||||
"Name": "sss",
|
"Name": "sss",
|
||||||
"Description": null,
|
"Description": null,
|
||||||
"OrderSort": 1,
|
"OrderSort": 1,
|
||||||
"Enabled": "1",
|
"Enabled": 1,
|
||||||
"CreateId": null,
|
"CreateId": null,
|
||||||
"CreateBy": null,
|
"CreateBy": null,
|
||||||
"CreateTime": "\/Date(1546272000000+0800)\/",
|
"CreateTime": "\/Date(1546272000000+0800)\/",
|
||||||
|
|
@ -168,11 +168,11 @@
|
||||||
"Id": 12
|
"Id": 12
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"IsDeleted": "1",
|
"IsDeleted": 1,
|
||||||
"Name": "sss",
|
"Name": "sss",
|
||||||
"Description": null,
|
"Description": null,
|
||||||
"OrderSort": 1,
|
"OrderSort": 1,
|
||||||
"Enabled": "1",
|
"Enabled": 1,
|
||||||
"CreateId": null,
|
"CreateId": null,
|
||||||
"CreateBy": null,
|
"CreateBy": null,
|
||||||
"CreateTime": "\/Date(1546272000000+0800)\/",
|
"CreateTime": "\/Date(1546272000000+0800)\/",
|
||||||
|
|
@ -182,11 +182,11 @@
|
||||||
"Id": 13
|
"Id": 13
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"IsDeleted": "1",
|
"IsDeleted": 1,
|
||||||
"Name": "sss",
|
"Name": "sss",
|
||||||
"Description": null,
|
"Description": null,
|
||||||
"OrderSort": 1,
|
"OrderSort": 1,
|
||||||
"Enabled": "1",
|
"Enabled": 1,
|
||||||
"CreateId": null,
|
"CreateId": null,
|
||||||
"CreateBy": null,
|
"CreateBy": null,
|
||||||
"CreateTime": "\/Date(1546272000000+0800)\/",
|
"CreateTime": "\/Date(1546272000000+0800)\/",
|
||||||
|
|
@ -196,11 +196,11 @@
|
||||||
"Id": 14
|
"Id": 14
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"IsDeleted": "1",
|
"IsDeleted": 1,
|
||||||
"Name": "sss",
|
"Name": "sss",
|
||||||
"Description": null,
|
"Description": null,
|
||||||
"OrderSort": 1,
|
"OrderSort": 1,
|
||||||
"Enabled": "1",
|
"Enabled": 1,
|
||||||
"CreateId": null,
|
"CreateId": null,
|
||||||
"CreateBy": null,
|
"CreateBy": null,
|
||||||
"CreateTime": "\/Date(1546272000000+0800)\/",
|
"CreateTime": "\/Date(1546272000000+0800)\/",
|
||||||
|
|
@ -210,11 +210,11 @@
|
||||||
"Id": 15
|
"Id": 15
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"IsDeleted": "1",
|
"IsDeleted": 1,
|
||||||
"Name": "sss",
|
"Name": "sss",
|
||||||
"Description": null,
|
"Description": null,
|
||||||
"OrderSort": 1,
|
"OrderSort": 1,
|
||||||
"Enabled": "1",
|
"Enabled": 1,
|
||||||
"CreateId": null,
|
"CreateId": null,
|
||||||
"CreateBy": null,
|
"CreateBy": null,
|
||||||
"CreateTime": "\/Date(1546272000000+0800)\/",
|
"CreateTime": "\/Date(1546272000000+0800)\/",
|
||||||
|
|
@ -224,11 +224,11 @@
|
||||||
"Id": 16
|
"Id": 16
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"IsDeleted": "1",
|
"IsDeleted": 1,
|
||||||
"Name": "sss",
|
"Name": "sss",
|
||||||
"Description": null,
|
"Description": null,
|
||||||
"OrderSort": 1,
|
"OrderSort": 1,
|
||||||
"Enabled": "1",
|
"Enabled": 1,
|
||||||
"CreateId": null,
|
"CreateId": null,
|
||||||
"CreateBy": null,
|
"CreateBy": null,
|
||||||
"CreateTime": "\/Date(1546272000000+0800)\/",
|
"CreateTime": "\/Date(1546272000000+0800)\/",
|
||||||
|
|
@ -238,11 +238,11 @@
|
||||||
"Id": 17
|
"Id": 17
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"IsDeleted": "1",
|
"IsDeleted": 1,
|
||||||
"Name": "sss",
|
"Name": "sss",
|
||||||
"Description": null,
|
"Description": null,
|
||||||
"OrderSort": 1,
|
"OrderSort": 1,
|
||||||
"Enabled": "1",
|
"Enabled": 1,
|
||||||
"CreateId": null,
|
"CreateId": null,
|
||||||
"CreateBy": null,
|
"CreateBy": null,
|
||||||
"CreateTime": "\/Date(1546272000000+0800)\/",
|
"CreateTime": "\/Date(1546272000000+0800)\/",
|
||||||
|
|
@ -252,11 +252,11 @@
|
||||||
"Id": 18
|
"Id": 18
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"IsDeleted": "1",
|
"IsDeleted": 1,
|
||||||
"Name": "sss",
|
"Name": "sss",
|
||||||
"Description": null,
|
"Description": null,
|
||||||
"OrderSort": 1,
|
"OrderSort": 1,
|
||||||
"Enabled": "1",
|
"Enabled": 1,
|
||||||
"CreateId": null,
|
"CreateId": null,
|
||||||
"CreateBy": null,
|
"CreateBy": null,
|
||||||
"CreateTime": "\/Date(1546272000000+0800)\/",
|
"CreateTime": "\/Date(1546272000000+0800)\/",
|
||||||
|
|
@ -266,11 +266,11 @@
|
||||||
"Id": 19
|
"Id": 19
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"IsDeleted": "1",
|
"IsDeleted": 1,
|
||||||
"Name": "sss",
|
"Name": "sss",
|
||||||
"Description": null,
|
"Description": null,
|
||||||
"OrderSort": 1,
|
"OrderSort": 1,
|
||||||
"Enabled": "1",
|
"Enabled": 1,
|
||||||
"CreateId": null,
|
"CreateId": null,
|
||||||
"CreateBy": null,
|
"CreateBy": null,
|
||||||
"CreateTime": "\/Date(1546272000000+0800)\/",
|
"CreateTime": "\/Date(1546272000000+0800)\/",
|
||||||
|
|
@ -280,11 +280,11 @@
|
||||||
"Id": 20
|
"Id": 20
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"IsDeleted": "1",
|
"IsDeleted": 1,
|
||||||
"Name": "sss",
|
"Name": "sss",
|
||||||
"Description": null,
|
"Description": null,
|
||||||
"OrderSort": 1,
|
"OrderSort": 1,
|
||||||
"Enabled": "1",
|
"Enabled": 1,
|
||||||
"CreateId": null,
|
"CreateId": null,
|
||||||
"CreateBy": null,
|
"CreateBy": null,
|
||||||
"CreateTime": "\/Date(1546272000000+0800)\/",
|
"CreateTime": "\/Date(1546272000000+0800)\/",
|
||||||
|
|
@ -294,11 +294,11 @@
|
||||||
"Id": 21
|
"Id": 21
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"IsDeleted": "1",
|
"IsDeleted": 1,
|
||||||
"Name": "sss",
|
"Name": "sss",
|
||||||
"Description": null,
|
"Description": null,
|
||||||
"OrderSort": 1,
|
"OrderSort": 1,
|
||||||
"Enabled": "1",
|
"Enabled": 1,
|
||||||
"CreateId": null,
|
"CreateId": null,
|
||||||
"CreateBy": null,
|
"CreateBy": null,
|
||||||
"CreateTime": "\/Date(1546272000000+0800)\/",
|
"CreateTime": "\/Date(1546272000000+0800)\/",
|
||||||
|
|
@ -308,11 +308,11 @@
|
||||||
"Id": 22
|
"Id": 22
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"IsDeleted": "1",
|
"IsDeleted": 1,
|
||||||
"Name": "sss",
|
"Name": "sss",
|
||||||
"Description": null,
|
"Description": null,
|
||||||
"OrderSort": 1,
|
"OrderSort": 1,
|
||||||
"Enabled": "1",
|
"Enabled": 1,
|
||||||
"CreateId": null,
|
"CreateId": null,
|
||||||
"CreateBy": null,
|
"CreateBy": null,
|
||||||
"CreateTime": "\/Date(1546272000000+0800)\/",
|
"CreateTime": "\/Date(1546272000000+0800)\/",
|
||||||
|
|
@ -322,11 +322,11 @@
|
||||||
"Id": 23
|
"Id": 23
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"IsDeleted": "1",
|
"IsDeleted": 1,
|
||||||
"Name": "sss",
|
"Name": "sss",
|
||||||
"Description": null,
|
"Description": null,
|
||||||
"OrderSort": 1,
|
"OrderSort": 1,
|
||||||
"Enabled": "1",
|
"Enabled": 1,
|
||||||
"CreateId": null,
|
"CreateId": null,
|
||||||
"CreateBy": null,
|
"CreateBy": null,
|
||||||
"CreateTime": "\/Date(1546272000000+0800)\/",
|
"CreateTime": "\/Date(1546272000000+0800)\/",
|
||||||
|
|
@ -340,7 +340,7 @@
|
||||||
"Name": "sss",
|
"Name": "sss",
|
||||||
"Description": null,
|
"Description": null,
|
||||||
"OrderSort": 1,
|
"OrderSort": 1,
|
||||||
"Enabled": "1",
|
"Enabled": 1,
|
||||||
"CreateId": null,
|
"CreateId": null,
|
||||||
"CreateBy": null,
|
"CreateBy": null,
|
||||||
"CreateTime": "\/Date(1546272000000+0800)\/",
|
"CreateTime": "\/Date(1546272000000+0800)\/",
|
||||||
|
|
@ -354,7 +354,7 @@
|
||||||
"Name": "213",
|
"Name": "213",
|
||||||
"Description": null,
|
"Description": null,
|
||||||
"OrderSort": 1,
|
"OrderSort": 1,
|
||||||
"Enabled": "1",
|
"Enabled": 1,
|
||||||
"CreateId": null,
|
"CreateId": null,
|
||||||
"CreateBy": null,
|
"CreateBy": null,
|
||||||
"CreateTime": "\/Date(1546272000000+0800)\/",
|
"CreateTime": "\/Date(1546272000000+0800)\/",
|
||||||
|
|
@ -368,7 +368,7 @@
|
||||||
"Name": "抬头填",
|
"Name": "抬头填",
|
||||||
"Description": null,
|
"Description": null,
|
||||||
"OrderSort": 1,
|
"OrderSort": 1,
|
||||||
"Enabled": "1",
|
"Enabled": 1,
|
||||||
"CreateId": null,
|
"CreateId": null,
|
||||||
"CreateBy": null,
|
"CreateBy": null,
|
||||||
"CreateTime": "\/Date(1546272000000+0800)\/",
|
"CreateTime": "\/Date(1546272000000+0800)\/",
|
||||||
|
|
@ -378,11 +378,11 @@
|
||||||
"Id": 27
|
"Id": 27
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"IsDeleted": "0",
|
"IsDeleted": 0,
|
||||||
"Name": "hello1",
|
"Name": "hello1",
|
||||||
"Description": "测试 常用 get post put 请求",
|
"Description": "测试 常用 get post put 请求",
|
||||||
"OrderSort": 1,
|
"OrderSort": 1,
|
||||||
"Enabled": "1",
|
"Enabled": 1,
|
||||||
"CreateId": 12,
|
"CreateId": 12,
|
||||||
"CreateBy": "后台总管理员",
|
"CreateBy": "后台总管理员",
|
||||||
"CreateTime": "\/Date(1546272000000+0800)\/",
|
"CreateTime": "\/Date(1546272000000+0800)\/",
|
||||||
|
|
@ -392,11 +392,11 @@
|
||||||
"Id": 28
|
"Id": 28
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"IsDeleted": "1",
|
"IsDeleted": 1,
|
||||||
"Name": "55",
|
"Name": "55",
|
||||||
"Description": "555",
|
"Description": "555",
|
||||||
"OrderSort": 1,
|
"OrderSort": 1,
|
||||||
"Enabled": "0",
|
"Enabled": 0,
|
||||||
"CreateId": 39,
|
"CreateId": 39,
|
||||||
"CreateBy": "Kawhi",
|
"CreateBy": "Kawhi",
|
||||||
"CreateTime": "\/Date(1546272000000+0800)\/",
|
"CreateTime": "\/Date(1546272000000+0800)\/",
|
||||||
|
|
|
||||||
|
Can't render this file because it contains an unexpected character in line 3 and column 5.
|
File diff suppressed because it is too large
Load Diff
|
|
@ -2,17 +2,18 @@
|
||||||
{
|
{
|
||||||
"Name": "博客管理",
|
"Name": "博客管理",
|
||||||
"JobGroup": "博客测试组",
|
"JobGroup": "博客测试组",
|
||||||
"TriggerType": 1,
|
"TriggerType": 1,
|
||||||
"Cron": "0 */1 * * * ?",
|
"Cron": "0 */5 * * * ?",
|
||||||
"AssemblyName": "New_College.Tasks",
|
"AssemblyName": "Blog.Core.Tasks",
|
||||||
"ClassName": "Job_Blogs_Quartz",
|
"ClassName": "Job_Blogs_Quartz",
|
||||||
"Remark": "",
|
"Remark": "",
|
||||||
"RunTimes": 0,
|
"RunTimes": 0,
|
||||||
"BeginTime": "\/Date(1546272000000+0800)\/",
|
"BeginTime": "\/Date(1546272000000+0800)\/",
|
||||||
"EndTime": "\/Date(1640966400000+0800)\/",
|
"EndTime": "\/Date(8888888800000+0800)\/",
|
||||||
"IntervalSecond": 0,
|
"IntervalSecond": 0,
|
||||||
|
"CycleRunTimes": 0,
|
||||||
"IsStart": true,
|
"IsStart": true,
|
||||||
"JobParams": "1",
|
"JobParams": 1,
|
||||||
"IsDeleted": false,
|
"IsDeleted": false,
|
||||||
"CreateTime": "\/Date(1546272000000+0800)\/",
|
"CreateTime": "\/Date(1546272000000+0800)\/",
|
||||||
"Id": 1
|
"Id": 1
|
||||||
|
|
|
||||||
|
Can't render this file because it contains an unexpected character in line 3 and column 5.
|
|
|
@ -5,7 +5,7 @@
|
||||||
"tDetail": "这是一个荡气回肠的故事",
|
"tDetail": "这是一个荡气回肠的故事",
|
||||||
"tAuthor": "Laozhang",
|
"tAuthor": "Laozhang",
|
||||||
"tSectendDetail": null,
|
"tSectendDetail": null,
|
||||||
"tIsDelete": "0",
|
"tIsDelete": 0,
|
||||||
"tRead": 0,
|
"tRead": 0,
|
||||||
"tCommend": 0,
|
"tCommend": 0,
|
||||||
"tGood": 0,
|
"tGood": 0,
|
||||||
|
|
|
||||||
|
Can't render this file because it contains an unexpected character in line 3 and column 5.
|
File diff suppressed because one or more lines are too long
|
|
@ -1,6 +1,6 @@
|
||||||
[
|
[
|
||||||
{
|
{
|
||||||
"IsDeleted": "0",
|
"IsDeleted": 0,
|
||||||
"UserId": 4,
|
"UserId": 4,
|
||||||
"RoleId": 1,
|
"RoleId": 1,
|
||||||
"CreateId": null,
|
"CreateId": null,
|
||||||
|
|
@ -12,7 +12,7 @@
|
||||||
"Id": 1
|
"Id": 1
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"IsDeleted": "0",
|
"IsDeleted": 0,
|
||||||
"UserId": 3,
|
"UserId": 3,
|
||||||
"RoleId": 2,
|
"RoleId": 2,
|
||||||
"CreateId": null,
|
"CreateId": null,
|
||||||
|
|
@ -24,9 +24,9 @@
|
||||||
"Id": 2
|
"Id": 2
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"IsDeleted": "0",
|
"IsDeleted": 0,
|
||||||
"UserId": 7,
|
"UserId": 7,
|
||||||
"RoleId": 3,
|
"RoleId": 4,
|
||||||
"CreateId": null,
|
"CreateId": null,
|
||||||
"CreateBy": null,
|
"CreateBy": null,
|
||||||
"CreateTime": "\/Date(1546272000000+0800)\/",
|
"CreateTime": "\/Date(1546272000000+0800)\/",
|
||||||
|
|
@ -36,7 +36,7 @@
|
||||||
"Id": 3
|
"Id": 3
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"IsDeleted": "0",
|
"IsDeleted": 0,
|
||||||
"UserId": 12,
|
"UserId": 12,
|
||||||
"RoleId": 4,
|
"RoleId": 4,
|
||||||
"CreateId": 23,
|
"CreateId": 23,
|
||||||
|
|
@ -48,7 +48,7 @@
|
||||||
"Id": 4
|
"Id": 4
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"IsDeleted": "0",
|
"IsDeleted": 0,
|
||||||
"UserId": 1,
|
"UserId": 1,
|
||||||
"RoleId": 2,
|
"RoleId": 2,
|
||||||
"CreateId": 1,
|
"CreateId": 1,
|
||||||
|
|
@ -60,7 +60,7 @@
|
||||||
"Id": 5
|
"Id": 5
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"IsDeleted": "0",
|
"IsDeleted": 0,
|
||||||
"UserId": 1,
|
"UserId": 1,
|
||||||
"RoleId": 1,
|
"RoleId": 1,
|
||||||
"CreateId": 1,
|
"CreateId": 1,
|
||||||
|
|
@ -72,7 +72,7 @@
|
||||||
"Id": 6
|
"Id": 6
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"IsDeleted": "0",
|
"IsDeleted": 0,
|
||||||
"UserId": 2,
|
"UserId": 2,
|
||||||
"RoleId": 1,
|
"RoleId": 1,
|
||||||
"CreateId": 13,
|
"CreateId": 13,
|
||||||
|
|
@ -84,7 +84,7 @@
|
||||||
"Id": 7
|
"Id": 7
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"IsDeleted": "0",
|
"IsDeleted": 0,
|
||||||
"UserId": 8,
|
"UserId": 8,
|
||||||
"RoleId": 6,
|
"RoleId": 6,
|
||||||
"CreateId": 19,
|
"CreateId": 19,
|
||||||
|
|
@ -96,7 +96,7 @@
|
||||||
"Id": 8
|
"Id": 8
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"IsDeleted": "0",
|
"IsDeleted": 0,
|
||||||
"UserId": 13,
|
"UserId": 13,
|
||||||
"RoleId": 7,
|
"RoleId": 7,
|
||||||
"CreateId": 24,
|
"CreateId": 24,
|
||||||
|
|
@ -108,7 +108,7 @@
|
||||||
"Id": 9
|
"Id": 9
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"IsDeleted": "0",
|
"IsDeleted": 0,
|
||||||
"UserId": 0,
|
"UserId": 0,
|
||||||
"RoleId": 0,
|
"RoleId": 0,
|
||||||
"CreateId": 0,
|
"CreateId": 0,
|
||||||
|
|
@ -120,7 +120,7 @@
|
||||||
"Id": 10
|
"Id": 10
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"IsDeleted": "0",
|
"IsDeleted": 0,
|
||||||
"UserId": 39,
|
"UserId": 39,
|
||||||
"RoleId": 28,
|
"RoleId": 28,
|
||||||
"CreateId": 39,
|
"CreateId": 39,
|
||||||
|
|
|
||||||
|
Can't render this file because it contains an unexpected character in line 3 and column 5.
|
File diff suppressed because it is too large
Load Diff
|
|
@ -2,7 +2,7 @@
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<title>New_College</title>
|
<title>Blog.Core</title>
|
||||||
<script src="https://cdn.bootcss.com/jquery/1.10.2/jquery.min.js"></script>
|
<script src="https://cdn.bootcss.com/jquery/1.10.2/jquery.min.js"></script>
|
||||||
<style>
|
<style>
|
||||||
div {
|
div {
|
||||||
|
|
@ -15,13 +15,13 @@
|
||||||
$(document).ready(function () {
|
$(document).ready(function () {
|
||||||
$("#jsonp").click(function () {
|
$("#jsonp").click(function () {
|
||||||
|
|
||||||
$.getJSON("http://localhost:8081/api/Login/jsonp?callBack=?", function (data) {
|
$.getJSON("http://localhost:9291/api/Login/jsonp?callBack=?", function (data) {
|
||||||
$("#data-jsonp").html("数据: " + data.value);
|
$("#data-jsonp").html("数据: " + data.value);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
$("#cors").click(function () {
|
$("#cors").click(function () {
|
||||||
$.get("http://localhost:8081/api/Login/Token", function (data, status) {
|
$.get("http://localhost:9291/api/Login/Token", function (data, status) {
|
||||||
console.log(data);
|
console.log(data);
|
||||||
$("#status-cors").html("状态: " + status);
|
$("#status-cors").html("状态: " + status);
|
||||||
$("#data-cors").html("数据: " + data? data.token:"失败");
|
$("#data-cors").html("数据: " + data? data.token:"失败");
|
||||||
|
|
@ -43,7 +43,7 @@
|
||||||
};
|
};
|
||||||
$.ajax({
|
$.ajax({
|
||||||
type: 'post',
|
type: 'post',
|
||||||
url: 'http://localhost:8081/api/Values',
|
url: 'http://localhost:9291/api/Values',
|
||||||
contentType: 'application/json',
|
contentType: 'application/json',
|
||||||
data: JSON.stringify(postdata),
|
data: JSON.stringify(postdata),
|
||||||
success: function (data, status) {
|
success: function (data, status) {
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,71 @@
|
||||||
|
/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
|
||||||
|
for details on configuring this project to bundle and minify static web assets. */
|
||||||
|
|
||||||
|
a.navbar-brand {
|
||||||
|
white-space: normal;
|
||||||
|
text-align: center;
|
||||||
|
word-break: break-all;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Provide sufficient contrast against white background */
|
||||||
|
a {
|
||||||
|
color: #0366d6;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-primary {
|
||||||
|
color: #fff;
|
||||||
|
background-color: #1b6ec2;
|
||||||
|
border-color: #1861ac;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
|
||||||
|
color: #fff;
|
||||||
|
background-color: #1b6ec2;
|
||||||
|
border-color: #1861ac;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Sticky footer styles
|
||||||
|
-------------------------------------------------- */
|
||||||
|
html {
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
@media (min-width: 768px) {
|
||||||
|
html {
|
||||||
|
font-size: 16px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.border-top {
|
||||||
|
border-top: 1px solid #e5e5e5;
|
||||||
|
}
|
||||||
|
.border-bottom {
|
||||||
|
border-bottom: 1px solid #e5e5e5;
|
||||||
|
}
|
||||||
|
|
||||||
|
.box-shadow {
|
||||||
|
box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
|
||||||
|
}
|
||||||
|
|
||||||
|
button.accept-policy {
|
||||||
|
font-size: 1rem;
|
||||||
|
line-height: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Sticky footer styles
|
||||||
|
-------------------------------------------------- */
|
||||||
|
html {
|
||||||
|
position: relative;
|
||||||
|
min-height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
/* Margin bottom by footer height */
|
||||||
|
margin-bottom: 60px;
|
||||||
|
}
|
||||||
|
.footer {
|
||||||
|
position: absolute;
|
||||||
|
bottom: 0;
|
||||||
|
width: 100%;
|
||||||
|
white-space: nowrap;
|
||||||
|
line-height: 60px; /* Vertically center the text there */
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,132 @@
|
||||||
|
@charset "utf-8";
|
||||||
|
::selection {
|
||||||
|
background: #2D2F36;
|
||||||
|
}
|
||||||
|
::-webkit-selection {
|
||||||
|
background: #2D2F36;
|
||||||
|
}
|
||||||
|
::-moz-selection {
|
||||||
|
background: #2D2F36;
|
||||||
|
}
|
||||||
|
body {
|
||||||
|
background: white;
|
||||||
|
font-family: 'Inter UI', sans-serif;
|
||||||
|
margin: 0;
|
||||||
|
padding: 20px;
|
||||||
|
}
|
||||||
|
.page {
|
||||||
|
background: #e2e2e5;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
height: calc(100% - 40px);
|
||||||
|
position: absolute;
|
||||||
|
place-content: center;
|
||||||
|
width: calc(100% - 40px);
|
||||||
|
}
|
||||||
|
@media (max-width: 767px) {
|
||||||
|
.page {
|
||||||
|
height: auto;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
padding-bottom: 20px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.container {
|
||||||
|
display: flex;
|
||||||
|
height: 320px;
|
||||||
|
margin: 0 auto;
|
||||||
|
width: 640px;
|
||||||
|
}
|
||||||
|
@media (max-width: 767px) {
|
||||||
|
.container {
|
||||||
|
flex-direction: column;
|
||||||
|
height: 630px;
|
||||||
|
width: 320px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.left {
|
||||||
|
background: white;
|
||||||
|
height: calc(100% - 40px);
|
||||||
|
top: 20px;
|
||||||
|
position: relative;
|
||||||
|
width: 50%;
|
||||||
|
}
|
||||||
|
@media (max-width: 767px) {
|
||||||
|
.left {
|
||||||
|
height: 100%;
|
||||||
|
left: 20px;
|
||||||
|
width: calc(100% - 40px);
|
||||||
|
max-height: 270px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.login {
|
||||||
|
font-size: 33px;
|
||||||
|
font-weight: 900;
|
||||||
|
margin: 50px 40px 40px;
|
||||||
|
}
|
||||||
|
.eula {
|
||||||
|
color: #999;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 1.5;
|
||||||
|
margin: 40px;
|
||||||
|
}
|
||||||
|
.right {
|
||||||
|
background: #474A59;
|
||||||
|
box-shadow: 0px 0px 40px 16px rgba(0,0,0,0.22);
|
||||||
|
color: #F1F1F2;
|
||||||
|
position: relative;
|
||||||
|
width: 50%;
|
||||||
|
}
|
||||||
|
@media (max-width: 767px) {
|
||||||
|
.right {
|
||||||
|
flex-shrink: 0;
|
||||||
|
height: 100%;
|
||||||
|
width: 100%;
|
||||||
|
max-height: 350px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
svg {
|
||||||
|
position: absolute;
|
||||||
|
width: 320px;
|
||||||
|
}
|
||||||
|
path {
|
||||||
|
fill: none;
|
||||||
|
stroke: url(#linearGradient);;
|
||||||
|
stroke-width: 4;
|
||||||
|
stroke-dasharray: 240 1386;
|
||||||
|
}
|
||||||
|
.form {
|
||||||
|
margin: 40px;
|
||||||
|
position: absolute;
|
||||||
|
}
|
||||||
|
label {
|
||||||
|
color: #c2c2c5;
|
||||||
|
display: block;
|
||||||
|
font-size: 14px;
|
||||||
|
height: 16px;
|
||||||
|
margin-top: 20px;
|
||||||
|
margin-bottom: 5px;
|
||||||
|
}
|
||||||
|
input {
|
||||||
|
background: transparent;
|
||||||
|
border: 0;
|
||||||
|
color: #f2f2f2;
|
||||||
|
font-size: 20px;
|
||||||
|
height: 30px;
|
||||||
|
line-height: 30px;
|
||||||
|
outline: none !important;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
input::-moz-focus-inner {
|
||||||
|
border: 0;
|
||||||
|
}
|
||||||
|
#submit {
|
||||||
|
color: #707075;
|
||||||
|
margin-top: 40px;
|
||||||
|
transition: color 300ms;
|
||||||
|
}
|
||||||
|
#submit:focus {
|
||||||
|
color: #f2f2f2;
|
||||||
|
}
|
||||||
|
#submit:active {
|
||||||
|
color: #d0d0d2;
|
||||||
|
}
|
||||||
|
|
@ -18,7 +18,7 @@
|
||||||
"bRemark": "string"
|
"bRemark": "string"
|
||||||
};
|
};
|
||||||
$.ajax({
|
$.ajax({
|
||||||
url: "http://localhost:8081/api/Values",
|
url: "http://localhost:9291/api/Values",
|
||||||
type: "POST",
|
type: "POST",
|
||||||
contentType: "application/json; charset=utf-8",
|
contentType: "application/json; charset=utf-8",
|
||||||
data: JSON.stringify(postdata),
|
data: JSON.stringify(postdata),
|
||||||
|
|
@ -34,7 +34,7 @@
|
||||||
<body>
|
<body>
|
||||||
<button id="btn">点击我请求数据</button>
|
<button id="btn">点击我请求数据</button>
|
||||||
<div id="requestMsg"></div>
|
<div id="requestMsg"></div>
|
||||||
<form id="sub1" method="post" action="http://localhost:8081/api/Values">
|
<form id="sub1" method="post" action="http://localhost:9291/api/Values">
|
||||||
<input name="name" type="text" />
|
<input name="name" type="text" />
|
||||||
<input type="submit" value="提交吧" />
|
<input type="submit" value="提交吧" />
|
||||||
</form>
|
</form>
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,33 @@
|
||||||
|
/*
|
||||||
|
2017 Julian Garnier
|
||||||
|
Released under the MIT license
|
||||||
|
*/
|
||||||
|
var $jscomp={scope:{}};$jscomp.defineProperty="function"==typeof Object.defineProperties?Object.defineProperty:function(e,r,p){if(p.get||p.set)throw new TypeError("ES3 does not support getters and setters.");e!=Array.prototype&&e!=Object.prototype&&(e[r]=p.value)};$jscomp.getGlobal=function(e){return"undefined"!=typeof window&&window===e?e:"undefined"!=typeof global&&null!=global?global:e};$jscomp.global=$jscomp.getGlobal(this);$jscomp.SYMBOL_PREFIX="jscomp_symbol_";
|
||||||
|
$jscomp.initSymbol=function(){$jscomp.initSymbol=function(){};$jscomp.global.Symbol||($jscomp.global.Symbol=$jscomp.Symbol)};$jscomp.symbolCounter_=0;$jscomp.Symbol=function(e){return $jscomp.SYMBOL_PREFIX+(e||"")+$jscomp.symbolCounter_++};
|
||||||
|
$jscomp.initSymbolIterator=function(){$jscomp.initSymbol();var e=$jscomp.global.Symbol.iterator;e||(e=$jscomp.global.Symbol.iterator=$jscomp.global.Symbol("iterator"));"function"!=typeof Array.prototype[e]&&$jscomp.defineProperty(Array.prototype,e,{configurable:!0,writable:!0,value:function(){return $jscomp.arrayIterator(this)}});$jscomp.initSymbolIterator=function(){}};$jscomp.arrayIterator=function(e){var r=0;return $jscomp.iteratorPrototype(function(){return r<e.length?{done:!1,value:e[r++]}:{done:!0}})};
|
||||||
|
$jscomp.iteratorPrototype=function(e){$jscomp.initSymbolIterator();e={next:e};e[$jscomp.global.Symbol.iterator]=function(){return this};return e};$jscomp.array=$jscomp.array||{};$jscomp.iteratorFromArray=function(e,r){$jscomp.initSymbolIterator();e instanceof String&&(e+="");var p=0,m={next:function(){if(p<e.length){var u=p++;return{value:r(u,e[u]),done:!1}}m.next=function(){return{done:!0,value:void 0}};return m.next()}};m[Symbol.iterator]=function(){return m};return m};
|
||||||
|
$jscomp.polyfill=function(e,r,p,m){if(r){p=$jscomp.global;e=e.split(".");for(m=0;m<e.length-1;m++){var u=e[m];u in p||(p[u]={});p=p[u]}e=e[e.length-1];m=p[e];r=r(m);r!=m&&null!=r&&$jscomp.defineProperty(p,e,{configurable:!0,writable:!0,value:r})}};$jscomp.polyfill("Array.prototype.keys",function(e){return e?e:function(){return $jscomp.iteratorFromArray(this,function(e){return e})}},"es6-impl","es3");var $jscomp$this=this;
|
||||||
|
(function(e,r){"function"===typeof define&&define.amd?define([],r):"object"===typeof module&&module.exports?module.exports=r():e.anime=r()})(this,function(){function e(a){if(!h.col(a))try{return document.querySelectorAll(a)}catch(c){}}function r(a,c){for(var d=a.length,b=2<=arguments.length?arguments[1]:void 0,f=[],n=0;n<d;n++)if(n in a){var k=a[n];c.call(b,k,n,a)&&f.push(k)}return f}function p(a){return a.reduce(function(a,d){return a.concat(h.arr(d)?p(d):d)},[])}function m(a){if(h.arr(a))return a;
|
||||||
|
h.str(a)&&(a=e(a)||a);return a instanceof NodeList||a instanceof HTMLCollection?[].slice.call(a):[a]}function u(a,c){return a.some(function(a){return a===c})}function C(a){var c={},d;for(d in a)c[d]=a[d];return c}function D(a,c){var d=C(a),b;for(b in a)d[b]=c.hasOwnProperty(b)?c[b]:a[b];return d}function z(a,c){var d=C(a),b;for(b in c)d[b]=h.und(a[b])?c[b]:a[b];return d}function T(a){a=a.replace(/^#?([a-f\d])([a-f\d])([a-f\d])$/i,function(a,c,d,k){return c+c+d+d+k+k});var c=/^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(a);
|
||||||
|
a=parseInt(c[1],16);var d=parseInt(c[2],16),c=parseInt(c[3],16);return"rgba("+a+","+d+","+c+",1)"}function U(a){function c(a,c,b){0>b&&(b+=1);1<b&&--b;return b<1/6?a+6*(c-a)*b:.5>b?c:b<2/3?a+(c-a)*(2/3-b)*6:a}var d=/hsl\((\d+),\s*([\d.]+)%,\s*([\d.]+)%\)/g.exec(a)||/hsla\((\d+),\s*([\d.]+)%,\s*([\d.]+)%,\s*([\d.]+)\)/g.exec(a);a=parseInt(d[1])/360;var b=parseInt(d[2])/100,f=parseInt(d[3])/100,d=d[4]||1;if(0==b)f=b=a=f;else{var n=.5>f?f*(1+b):f+b-f*b,k=2*f-n,f=c(k,n,a+1/3),b=c(k,n,a);a=c(k,n,a-1/3)}return"rgba("+
|
||||||
|
255*f+","+255*b+","+255*a+","+d+")"}function y(a){if(a=/([\+\-]?[0-9#\.]+)(%|px|pt|em|rem|in|cm|mm|ex|ch|pc|vw|vh|vmin|vmax|deg|rad|turn)?$/.exec(a))return a[2]}function V(a){if(-1<a.indexOf("translate")||"perspective"===a)return"px";if(-1<a.indexOf("rotate")||-1<a.indexOf("skew"))return"deg"}function I(a,c){return h.fnc(a)?a(c.target,c.id,c.total):a}function E(a,c){if(c in a.style)return getComputedStyle(a).getPropertyValue(c.replace(/([a-z])([A-Z])/g,"$1-$2").toLowerCase())||"0"}function J(a,c){if(h.dom(a)&&
|
||||||
|
u(W,c))return"transform";if(h.dom(a)&&(a.getAttribute(c)||h.svg(a)&&a[c]))return"attribute";if(h.dom(a)&&"transform"!==c&&E(a,c))return"css";if(null!=a[c])return"object"}function X(a,c){var d=V(c),d=-1<c.indexOf("scale")?1:0+d;a=a.style.transform;if(!a)return d;for(var b=[],f=[],n=[],k=/(\w+)\((.+?)\)/g;b=k.exec(a);)f.push(b[1]),n.push(b[2]);a=r(n,function(a,b){return f[b]===c});return a.length?a[0]:d}function K(a,c){switch(J(a,c)){case "transform":return X(a,c);case "css":return E(a,c);case "attribute":return a.getAttribute(c)}return a[c]||
|
||||||
|
0}function L(a,c){var d=/^(\*=|\+=|-=)/.exec(a);if(!d)return a;var b=y(a)||0;c=parseFloat(c);a=parseFloat(a.replace(d[0],""));switch(d[0][0]){case "+":return c+a+b;case "-":return c-a+b;case "*":return c*a+b}}function F(a,c){return Math.sqrt(Math.pow(c.x-a.x,2)+Math.pow(c.y-a.y,2))}function M(a){a=a.points;for(var c=0,d,b=0;b<a.numberOfItems;b++){var f=a.getItem(b);0<b&&(c+=F(d,f));d=f}return c}function N(a){if(a.getTotalLength)return a.getTotalLength();switch(a.tagName.toLowerCase()){case "circle":return 2*
|
||||||
|
Math.PI*a.getAttribute("r");case "rect":return 2*a.getAttribute("width")+2*a.getAttribute("height");case "line":return F({x:a.getAttribute("x1"),y:a.getAttribute("y1")},{x:a.getAttribute("x2"),y:a.getAttribute("y2")});case "polyline":return M(a);case "polygon":var c=a.points;return M(a)+F(c.getItem(c.numberOfItems-1),c.getItem(0))}}function Y(a,c){function d(b){b=void 0===b?0:b;return a.el.getPointAtLength(1<=c+b?c+b:0)}var b=d(),f=d(-1),n=d(1);switch(a.property){case "x":return b.x;case "y":return b.y;
|
||||||
|
case "angle":return 180*Math.atan2(n.y-f.y,n.x-f.x)/Math.PI}}function O(a,c){var d=/-?\d*\.?\d+/g,b;b=h.pth(a)?a.totalLength:a;if(h.col(b))if(h.rgb(b)){var f=/rgb\((\d+,\s*[\d]+,\s*[\d]+)\)/g.exec(b);b=f?"rgba("+f[1]+",1)":b}else b=h.hex(b)?T(b):h.hsl(b)?U(b):void 0;else f=(f=y(b))?b.substr(0,b.length-f.length):b,b=c&&!/\s/g.test(b)?f+c:f;b+="";return{original:b,numbers:b.match(d)?b.match(d).map(Number):[0],strings:h.str(a)||c?b.split(d):[]}}function P(a){a=a?p(h.arr(a)?a.map(m):m(a)):[];return r(a,
|
||||||
|
function(a,d,b){return b.indexOf(a)===d})}function Z(a){var c=P(a);return c.map(function(a,b){return{target:a,id:b,total:c.length}})}function aa(a,c){var d=C(c);if(h.arr(a)){var b=a.length;2!==b||h.obj(a[0])?h.fnc(c.duration)||(d.duration=c.duration/b):a={value:a}}return m(a).map(function(a,b){b=b?0:c.delay;a=h.obj(a)&&!h.pth(a)?a:{value:a};h.und(a.delay)&&(a.delay=b);return a}).map(function(a){return z(a,d)})}function ba(a,c){var d={},b;for(b in a){var f=I(a[b],c);h.arr(f)&&(f=f.map(function(a){return I(a,
|
||||||
|
c)}),1===f.length&&(f=f[0]));d[b]=f}d.duration=parseFloat(d.duration);d.delay=parseFloat(d.delay);return d}function ca(a){return h.arr(a)?A.apply(this,a):Q[a]}function da(a,c){var d;return a.tweens.map(function(b){b=ba(b,c);var f=b.value,e=K(c.target,a.name),k=d?d.to.original:e,k=h.arr(f)?f[0]:k,w=L(h.arr(f)?f[1]:f,k),e=y(w)||y(k)||y(e);b.from=O(k,e);b.to=O(w,e);b.start=d?d.end:a.offset;b.end=b.start+b.delay+b.duration;b.easing=ca(b.easing);b.elasticity=(1E3-Math.min(Math.max(b.elasticity,1),999))/
|
||||||
|
1E3;b.isPath=h.pth(f);b.isColor=h.col(b.from.original);b.isColor&&(b.round=1);return d=b})}function ea(a,c){return r(p(a.map(function(a){return c.map(function(b){var c=J(a.target,b.name);if(c){var d=da(b,a);b={type:c,property:b.name,animatable:a,tweens:d,duration:d[d.length-1].end,delay:d[0].delay}}else b=void 0;return b})})),function(a){return!h.und(a)})}function R(a,c,d,b){var f="delay"===a;return c.length?(f?Math.min:Math.max).apply(Math,c.map(function(b){return b[a]})):f?b.delay:d.offset+b.delay+
|
||||||
|
b.duration}function fa(a){var c=D(ga,a),d=D(S,a),b=Z(a.targets),f=[],e=z(c,d),k;for(k in a)e.hasOwnProperty(k)||"targets"===k||f.push({name:k,offset:e.offset,tweens:aa(a[k],d)});a=ea(b,f);return z(c,{children:[],animatables:b,animations:a,duration:R("duration",a,c,d),delay:R("delay",a,c,d)})}function q(a){function c(){return window.Promise&&new Promise(function(a){return p=a})}function d(a){return g.reversed?g.duration-a:a}function b(a){for(var b=0,c={},d=g.animations,f=d.length;b<f;){var e=d[b],
|
||||||
|
k=e.animatable,h=e.tweens,n=h.length-1,l=h[n];n&&(l=r(h,function(b){return a<b.end})[0]||l);for(var h=Math.min(Math.max(a-l.start-l.delay,0),l.duration)/l.duration,w=isNaN(h)?1:l.easing(h,l.elasticity),h=l.to.strings,p=l.round,n=[],m=void 0,m=l.to.numbers.length,t=0;t<m;t++){var x=void 0,x=l.to.numbers[t],q=l.from.numbers[t],x=l.isPath?Y(l.value,w*x):q+w*(x-q);p&&(l.isColor&&2<t||(x=Math.round(x*p)/p));n.push(x)}if(l=h.length)for(m=h[0],w=0;w<l;w++)p=h[w+1],t=n[w],isNaN(t)||(m=p?m+(t+p):m+(t+" "));
|
||||||
|
else m=n[0];ha[e.type](k.target,e.property,m,c,k.id);e.currentValue=m;b++}if(b=Object.keys(c).length)for(d=0;d<b;d++)H||(H=E(document.body,"transform")?"transform":"-webkit-transform"),g.animatables[d].target.style[H]=c[d].join(" ");g.currentTime=a;g.progress=a/g.duration*100}function f(a){if(g[a])g[a](g)}function e(){g.remaining&&!0!==g.remaining&&g.remaining--}function k(a){var k=g.duration,n=g.offset,w=n+g.delay,r=g.currentTime,x=g.reversed,q=d(a);if(g.children.length){var u=g.children,v=u.length;
|
||||||
|
if(q>=g.currentTime)for(var G=0;G<v;G++)u[G].seek(q);else for(;v--;)u[v].seek(q)}if(q>=w||!k)g.began||(g.began=!0,f("begin")),f("run");if(q>n&&q<k)b(q);else if(q<=n&&0!==r&&(b(0),x&&e()),q>=k&&r!==k||!k)b(k),x||e();f("update");a>=k&&(g.remaining?(t=h,"alternate"===g.direction&&(g.reversed=!g.reversed)):(g.pause(),g.completed||(g.completed=!0,f("complete"),"Promise"in window&&(p(),m=c()))),l=0)}a=void 0===a?{}:a;var h,t,l=0,p=null,m=c(),g=fa(a);g.reset=function(){var a=g.direction,c=g.loop;g.currentTime=
|
||||||
|
0;g.progress=0;g.paused=!0;g.began=!1;g.completed=!1;g.reversed="reverse"===a;g.remaining="alternate"===a&&1===c?2:c;b(0);for(a=g.children.length;a--;)g.children[a].reset()};g.tick=function(a){h=a;t||(t=h);k((l+h-t)*q.speed)};g.seek=function(a){k(d(a))};g.pause=function(){var a=v.indexOf(g);-1<a&&v.splice(a,1);g.paused=!0};g.play=function(){g.paused&&(g.paused=!1,t=0,l=d(g.currentTime),v.push(g),B||ia())};g.reverse=function(){g.reversed=!g.reversed;t=0;l=d(g.currentTime)};g.restart=function(){g.pause();
|
||||||
|
g.reset();g.play()};g.finished=m;g.reset();g.autoplay&&g.play();return g}var ga={update:void 0,begin:void 0,run:void 0,complete:void 0,loop:1,direction:"normal",autoplay:!0,offset:0},S={duration:1E3,delay:0,easing:"easeOutElastic",elasticity:500,round:0},W="translateX translateY translateZ rotate rotateX rotateY rotateZ scale scaleX scaleY scaleZ skewX skewY perspective".split(" "),H,h={arr:function(a){return Array.isArray(a)},obj:function(a){return-1<Object.prototype.toString.call(a).indexOf("Object")},
|
||||||
|
pth:function(a){return h.obj(a)&&a.hasOwnProperty("totalLength")},svg:function(a){return a instanceof SVGElement},dom:function(a){return a.nodeType||h.svg(a)},str:function(a){return"string"===typeof a},fnc:function(a){return"function"===typeof a},und:function(a){return"undefined"===typeof a},hex:function(a){return/(^#[0-9A-F]{6}$)|(^#[0-9A-F]{3}$)/i.test(a)},rgb:function(a){return/^rgb/.test(a)},hsl:function(a){return/^hsl/.test(a)},col:function(a){return h.hex(a)||h.rgb(a)||h.hsl(a)}},A=function(){function a(a,
|
||||||
|
d,b){return(((1-3*b+3*d)*a+(3*b-6*d))*a+3*d)*a}return function(c,d,b,f){if(0<=c&&1>=c&&0<=b&&1>=b){var e=new Float32Array(11);if(c!==d||b!==f)for(var k=0;11>k;++k)e[k]=a(.1*k,c,b);return function(k){if(c===d&&b===f)return k;if(0===k)return 0;if(1===k)return 1;for(var h=0,l=1;10!==l&&e[l]<=k;++l)h+=.1;--l;var l=h+(k-e[l])/(e[l+1]-e[l])*.1,n=3*(1-3*b+3*c)*l*l+2*(3*b-6*c)*l+3*c;if(.001<=n){for(h=0;4>h;++h){n=3*(1-3*b+3*c)*l*l+2*(3*b-6*c)*l+3*c;if(0===n)break;var m=a(l,c,b)-k,l=l-m/n}k=l}else if(0===
|
||||||
|
n)k=l;else{var l=h,h=h+.1,g=0;do m=l+(h-l)/2,n=a(m,c,b)-k,0<n?h=m:l=m;while(1e-7<Math.abs(n)&&10>++g);k=m}return a(k,d,f)}}}}(),Q=function(){function a(a,b){return 0===a||1===a?a:-Math.pow(2,10*(a-1))*Math.sin(2*(a-1-b/(2*Math.PI)*Math.asin(1))*Math.PI/b)}var c="Quad Cubic Quart Quint Sine Expo Circ Back Elastic".split(" "),d={In:[[.55,.085,.68,.53],[.55,.055,.675,.19],[.895,.03,.685,.22],[.755,.05,.855,.06],[.47,0,.745,.715],[.95,.05,.795,.035],[.6,.04,.98,.335],[.6,-.28,.735,.045],a],Out:[[.25,
|
||||||
|
.46,.45,.94],[.215,.61,.355,1],[.165,.84,.44,1],[.23,1,.32,1],[.39,.575,.565,1],[.19,1,.22,1],[.075,.82,.165,1],[.175,.885,.32,1.275],function(b,c){return 1-a(1-b,c)}],InOut:[[.455,.03,.515,.955],[.645,.045,.355,1],[.77,0,.175,1],[.86,0,.07,1],[.445,.05,.55,.95],[1,0,0,1],[.785,.135,.15,.86],[.68,-.55,.265,1.55],function(b,c){return.5>b?a(2*b,c)/2:1-a(-2*b+2,c)/2}]},b={linear:A(.25,.25,.75,.75)},f={},e;for(e in d)f.type=e,d[f.type].forEach(function(a){return function(d,f){b["ease"+a.type+c[f]]=h.fnc(d)?
|
||||||
|
d:A.apply($jscomp$this,d)}}(f)),f={type:f.type};return b}(),ha={css:function(a,c,d){return a.style[c]=d},attribute:function(a,c,d){return a.setAttribute(c,d)},object:function(a,c,d){return a[c]=d},transform:function(a,c,d,b,f){b[f]||(b[f]=[]);b[f].push(c+"("+d+")")}},v=[],B=0,ia=function(){function a(){B=requestAnimationFrame(c)}function c(c){var b=v.length;if(b){for(var d=0;d<b;)v[d]&&v[d].tick(c),d++;a()}else cancelAnimationFrame(B),B=0}return a}();q.version="2.2.0";q.speed=1;q.running=v;q.remove=
|
||||||
|
function(a){a=P(a);for(var c=v.length;c--;)for(var d=v[c],b=d.animations,f=b.length;f--;)u(a,b[f].animatable.target)&&(b.splice(f,1),b.length||d.pause())};q.getValue=K;q.path=function(a,c){var d=h.str(a)?e(a)[0]:a,b=c||100;return function(a){return{el:d,property:a,totalLength:N(d)*(b/100)}}};q.setDashoffset=function(a){var c=N(a);a.setAttribute("stroke-dasharray",c);return c};q.bezier=A;q.easings=Q;q.timeline=function(a){var c=q(a);c.pause();c.duration=0;c.add=function(d){c.children.forEach(function(a){a.began=
|
||||||
|
!0;a.completed=!0});m(d).forEach(function(b){var d=z(b,D(S,a||{}));d.targets=d.targets||a.targets;b=c.duration;var e=d.offset;d.autoplay=!1;d.direction=c.direction;d.offset=h.und(e)?b:L(e,b);c.began=!0;c.completed=!0;c.seek(d.offset);d=q(d);d.began=!0;d.completed=!0;d.duration>b&&(c.duration=d.duration);c.children.push(d)});c.seek(0);c.reset();c.autoplay&&c.restart();return c};return c};q.random=function(a,c){return Math.floor(Math.random()*(c-a+1))+a};return q});
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -0,0 +1,4 @@
|
||||||
|
// Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
|
||||||
|
// for details on configuring this project to bundle and minify static web assets.
|
||||||
|
|
||||||
|
// Write your JavaScript code.
|
||||||
|
|
@ -0,0 +1,141 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8"/>
|
||||||
|
<title>登录 - 接口文档</title>
|
||||||
|
<script src="js/jquery-3.3.1.min.js"></script>
|
||||||
|
<link type="text/css" href="css/style.css" rel="stylesheet"/>
|
||||||
|
<script src="js/anime.min.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="page">
|
||||||
|
<div class="container">
|
||||||
|
<div class="left">
|
||||||
|
<div></div>
|
||||||
|
|
||||||
|
<div class="login"><img src="/logo.jpg.jpg" height="30" alt="Alternate Text"/> Blog.Core 接口文档</div>
|
||||||
|
<div class="eula">欢迎使用!</div>
|
||||||
|
<div class="eula">使用真实用户账号登录,测试账号: blogadmin/blogadmin</div>
|
||||||
|
</div>
|
||||||
|
<div class="right">
|
||||||
|
<svg viewBox="0 0 320 300">
|
||||||
|
<defs>
|
||||||
|
<linearGradient inkscape:collect="always"
|
||||||
|
id="linearGradient"
|
||||||
|
x1="13"
|
||||||
|
y1="193.49992"
|
||||||
|
x2="307"
|
||||||
|
y2="193.49992"
|
||||||
|
gradientUnits="userSpaceOnUse">
|
||||||
|
<stop style="stop-color:#ff00ff;"
|
||||||
|
offset="0"
|
||||||
|
id="stop876"/>
|
||||||
|
<stop style="stop-color:#ff0000;"
|
||||||
|
offset="1"
|
||||||
|
id="stop878"/>
|
||||||
|
</linearGradient>
|
||||||
|
</defs>
|
||||||
|
<path d="m 40,120.00016 239.99984,-3.2e-4 c 0,0 24.99263,0.79932 25.00016,35.00016 0.008,34.20084 -25.00016,35 -25.00016,35 h -239.99984 c 0,-0.0205 -25,4.01348 -25,38.5 0,34.48652 25,38.5 25,38.5 h 215 c 0,0 20,-0.99604 20,-25 0,-24.00396 -20,-25 -20,-25 h -190 c 0,0 -20,1.71033 -20,25 0,24.00396 20,25 20,25 h 168.57143"/>
|
||||||
|
</svg>
|
||||||
|
<div class="form">
|
||||||
|
<label for="email">用户名</label>
|
||||||
|
<input type="email" id="email">
|
||||||
|
<label for="password">密码</label>
|
||||||
|
<input type="password" id="password">
|
||||||
|
<input type="submit" id="submit" onclick="submit()" value="登 录">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
var current = null;
|
||||||
|
document.querySelector('#email').addEventListener('focus', function (e) {
|
||||||
|
if (current) current.pause();
|
||||||
|
current = anime({
|
||||||
|
targets: 'path',
|
||||||
|
strokeDashoffset: {
|
||||||
|
value: 0,
|
||||||
|
duration: 700,
|
||||||
|
easing: 'easeOutQuart'
|
||||||
|
},
|
||||||
|
strokeDasharray: {
|
||||||
|
value: '240 1386',
|
||||||
|
duration: 700,
|
||||||
|
easing: 'easeOutQuart'
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
document.querySelector('#password').addEventListener('focus', function (e) {
|
||||||
|
if (current) current.pause();
|
||||||
|
current = anime({
|
||||||
|
targets: 'path',
|
||||||
|
strokeDashoffset: {
|
||||||
|
value: -336,
|
||||||
|
duration: 700,
|
||||||
|
easing: 'easeOutQuart'
|
||||||
|
},
|
||||||
|
strokeDasharray: {
|
||||||
|
value: '240 1386',
|
||||||
|
duration: 700,
|
||||||
|
easing: 'easeOutQuart'
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
document.querySelector('#submit').addEventListener('focus', function (e) {
|
||||||
|
if (current) current.pause();
|
||||||
|
current = anime({
|
||||||
|
targets: 'path',
|
||||||
|
strokeDashoffset: {
|
||||||
|
value: -730,
|
||||||
|
duration: 700,
|
||||||
|
easing: 'easeOutQuart'
|
||||||
|
},
|
||||||
|
strokeDasharray: {
|
||||||
|
value: '530 1386',
|
||||||
|
duration: 700,
|
||||||
|
easing: 'easeOutQuart'
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
function GetQueryString(name) {
|
||||||
|
var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)");
|
||||||
|
var r = window.location.search.substr(1).match(reg);
|
||||||
|
if (r != null) return decodeURI(r[2]);
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
function submit() {
|
||||||
|
let postdata = {
|
||||||
|
"name": $("#email").val(),
|
||||||
|
"pwd": $("#password").val(),
|
||||||
|
};
|
||||||
|
if (!(postdata.name && postdata.pwd)) {
|
||||||
|
alert('参数不正确');
|
||||||
|
return
|
||||||
|
}
|
||||||
|
$.ajax({
|
||||||
|
url: "/api/Login/swgLogin",
|
||||||
|
type: "POST",
|
||||||
|
contentType: "application/json; charset=utf-8",
|
||||||
|
data: JSON.stringify(postdata),
|
||||||
|
dataType: 'json',
|
||||||
|
success: function (data) {
|
||||||
|
if (data?.result) {
|
||||||
|
var returnUrl = GetQueryString("returnUrl");
|
||||||
|
if (returnUrl != null && returnUrl.length > 0) {
|
||||||
|
window.location.href = returnUrl;
|
||||||
|
} else {
|
||||||
|
window.location.href = "/index.html";
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
alert('参数不正确');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
Binary file not shown.
File diff suppressed because one or more lines are too long
|
|
@ -0,0 +1 @@
|
||||||
|
.role-item{cursor:pointer;padding:10px}.role-item.active,.role-item:hover{background:#ebf5ff}.custom-tree-node{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;font-size:14px;padding-right:8px}.text{font-size:14px}.clearfix:after,.clearfix:before{display:table;content:""}.clearfix:after{clear:both}.box-card{width:90%}.morechildren .el-checkbox{margin-right:5px!important;float:left}.morechildren .el-checkbox-group{margin-left:50px;padding:5px}.morechildren .el-tree-node__content{height:auto!important}
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
.clearfix[data-v-f4008632]{*zoom:1}.clearfix[data-v-f4008632]:after{content:"";display:table;clear:both}div[data-v-f4008632]{text-align:left}.public-account-management[data-v-f4008632]{padding:20px;min-width:1200px;width:1200px;margin:0 auto}.public-account-management .left[data-v-f4008632]{font-family:Times New Roman,Times,serif;float:left;width:301px;background-size:100% auto;padding:490px 25px 88px;position:relative;-webkit-box-sizing:border-box;box-sizing:border-box}.public-account-management .left .menu .menu_bottom[data-v-f4008632]{position:relative;float:left;-webkit-box-sizing:border-box;box-sizing:border-box;width:83px;text-align:center;background-color:#e2e2e2;border:1px solid #ebedee;cursor:pointer}.public-account-management .left .menu .menu_bottom.menu_addicon[data-v-f4008632]{height:46px;line-height:46px}.public-account-management .left .menu .menu_bottom .menu_item[data-v-f4008632]{height:44px;line-height:44px;text-align:center;-webkit-box-sizing:border-box;box-sizing:border-box}.public-account-management .left .menu .menu_bottom .menu_item.active[data-v-f4008632]{border:1px solid #2bb673}.public-account-management .left .menu .menu_bottom .menu_subItem[data-v-f4008632]{height:44px;line-height:44px;text-align:center;-webkit-box-sizing:border-box;box-sizing:border-box}.public-account-management .left .menu .menu_bottom .menu_subItem.active[data-v-f4008632]{border:1px solid #2bb673}.public-account-management .left .menu i[data-v-f4008632]{color:#2bb673}.public-account-management .left .menu .submenu[data-v-f4008632]{position:absolute;width:83px;bottom:45px}.public-account-management .left .menu .submenu .subtitle[data-v-f4008632]{background-color:#e8e7e7;-webkit-box-sizing:border-box;box-sizing:border-box;margin-bottom:2px}.public-account-management .left .save_btn[data-v-f4008632]{position:relative;margin-top:100px;left:45px}.public-account-management .right[data-v-f4008632]{font-family:Times New Roman,Times,serif;float:left;width:70%;background-color:#e8e7e7;padding:25px 10px 0 20px;min-height:610px;margin-left:20px;-webkit-box-sizing:border-box;box-sizing:border-box}.public-account-management .right p[data-v-f4008632]{font-size:16px;margin-top:-10px;font-weight:700}.public-account-management .right .configure_page .delete_btn[data-v-f4008632]{text-align:right;margin-bottom:15px}.public-account-management .right .configure_page .configur_content[data-v-f4008632],.public-account-management .right .configure_page .menu_content[data-v-f4008632]{margin-top:20px}.public-account-management .right .configure_page .blue[data-v-f4008632]{color:#29b6f6;margin-top:10px}.public-account-management .right .configure_page .applet[data-v-f4008632]{margin-bottom:20px}.public-account-management .right .configure_page .applet span[data-v-f4008632]{margin-right:18px}.public-account-management .right .configure_page .material .input_width[data-v-f4008632]{width:30%}.public-account-management .right .configure_page .material .el-textarea[data-v-f4008632]{width:80%}
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -0,0 +1 @@
|
||||||
|
.avatar-uploader .el-upload{border:1px dashed #d9d9d9;border-radius:6px;cursor:pointer;position:relative;overflow:hidden}.avatar-uploader .el-upload:hover{border-color:#409eff}.avatar-uploader-icon{font-size:28px;color:#8c939d;width:120px;height:120px;text-align:center}.plus-sign{line-height:120px!important}.avatar{width:120px;height:120px;display:block}.markdown-body{height:500px!important}
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
.page-container{font-size:25px;text-align:center;color:#c0ccda}
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
.box-card[data-v-5495408c]{width:600px;max-width:100%;margin:20px auto}.item-btn[data-v-5495408c]{margin-bottom:15px;margin-left:0}.block[data-v-5495408c]{padding:25px}
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
.content-title[data-v-20a4f040]{clear:both;font-weight:400;line-height:50px;padding:10px 10px;font-size:22px;color:#1f2f3d}
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
.demo-table-expand[data-v-6e805334]{font-size:0}.demo-table-expand label[data-v-6e805334]{width:90px;color:#99a9bf}.demo-table-expand .el-form-item[data-v-6e805334]{margin-right:0;margin-bottom:0;width:30%}.EXC[data-v-6e805334]{color:red}
|
||||||
File diff suppressed because one or more lines are too long
Binary file not shown.
|
After Width: | Height: | Size: 9.2 KiB |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
|
After Width: | Height: | Size: 434 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 1.3 MiB |
|
|
@ -0,0 +1 @@
|
||||||
|
<!DOCTYPE html><html lang=zh><head><meta charset=utf-8><meta http-equiv=X-UA-Compatible content="IE=edge"><meta name=viewport content="width=device-width,initial-scale=1"><link rel=icon href=/ui/favicon.ico><title>blog.admin</title><link href=/ui/css/chunk-47211100.6b9a8428.css rel=prefetch><link href=/ui/css/chunk-4b6066be.57cc0d2f.css rel=prefetch><link href=/ui/css/chunk-7287e918.735a054c.css rel=prefetch><link href=/ui/css/chunk-789b0e7e.2afc78bb.css rel=prefetch><link href=/ui/css/chunk-c673e236.597cf4d0.css rel=prefetch><link href=/ui/css/chunk-c75b8e6e.40b63f23.css rel=prefetch><link href=/ui/css/chunk-d726e0f8.ac918284.css rel=prefetch><link href=/ui/css/chunk-ef28925c.f5aa9d10.css rel=prefetch><link href=/ui/js/chunk-23e41f57.ae5fabaa.js rel=prefetch><link href=/ui/js/chunk-276b085c.39103cdf.js rel=prefetch><link href=/ui/js/chunk-2d0a4854.aee50383.js rel=prefetch><link href=/ui/js/chunk-2d0c0c66.4faa5607.js rel=prefetch><link href=/ui/js/chunk-2d0c4aa3.703d6172.js rel=prefetch><link href=/ui/js/chunk-2d0cf4f3.4034e115.js rel=prefetch><link href=/ui/js/chunk-2d0d2f25.359b78e4.js rel=prefetch><link href=/ui/js/chunk-2d0da5bf.c22ad0ee.js rel=prefetch><link href=/ui/js/chunk-2d213196.5c2d76ce.js rel=prefetch><link href=/ui/js/chunk-2d21f214.ec5ee5a8.js rel=prefetch><link href=/ui/js/chunk-2d229214.cfe33fe9.js rel=prefetch><link href=/ui/js/chunk-2d22d746.bc86ccfd.js rel=prefetch><link href=/ui/js/chunk-40df6ae2.e79ba86d.js rel=prefetch><link href=/ui/js/chunk-47211100.16761898.js rel=prefetch><link href=/ui/js/chunk-479d738e.57cdb42a.js rel=prefetch><link href=/ui/js/chunk-47dd42da.97513c3e.js rel=prefetch><link href=/ui/js/chunk-4b6066be.f63d0f19.js rel=prefetch><link href=/ui/js/chunk-6e83591c.a520c082.js rel=prefetch><link href=/ui/js/chunk-6f1c3bea.5a9acc22.js rel=prefetch><link href=/ui/js/chunk-7287e918.7e428c29.js rel=prefetch><link href=/ui/js/chunk-735deb8e.2bbe62a6.js rel=prefetch><link href=/ui/js/chunk-770e833a.0890b50d.js rel=prefetch><link href=/ui/js/chunk-77279526.e54ae03e.js rel=prefetch><link href=/ui/js/chunk-789b0e7e.df774071.js rel=prefetch><link href=/ui/js/chunk-bf843d8a.ed731235.js rel=prefetch><link href=/ui/js/chunk-c5ac0cca.605768e7.js rel=prefetch><link href=/ui/js/chunk-c673e236.156eaf15.js rel=prefetch><link href=/ui/js/chunk-c75b8e6e.73103030.js rel=prefetch><link href=/ui/js/chunk-cae4df82.7e75b1da.js rel=prefetch><link href=/ui/js/chunk-d726e0f8.c8fe5894.js rel=prefetch><link href=/ui/js/chunk-ef28925c.a547d73e.js rel=prefetch><link href=/ui/css/app.77b8d2be.css rel=preload as=style><link href=/ui/css/chunk-vendors.9b6f85aa.css rel=preload as=style><link href=/ui/js/app.d6fdef78.js rel=preload as=script><link href=/ui/js/chunk-vendors.60d435c3.js rel=preload as=script><link href=/ui/css/chunk-vendors.9b6f85aa.css rel=stylesheet><link href=/ui/css/app.77b8d2be.css rel=stylesheet></head><body><noscript><strong>We're sorry but blog.admin doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id=app></div><script src=/ui/js/chunk-vendors.60d435c3.js></script><script src=/ui/js/app.d6fdef78.js></script></body></html>
|
||||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -0,0 +1,2 @@
|
||||||
|
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-2d0a4854"],{"0790":function(e,n,t){"use strict";t.r(n);var a=function(){var e=this,n=e.$createElement,t=e._self._c||n;return t("div",{staticStyle:{padding:"30px"}},[t("el-alert",{attrs:{closable:!1,title:"menu - 1 -2 ",type:"warning"}})],1)},l=[],i={name:"Menu12"},u=i,c=t("2877"),s=Object(c["a"])(u,a,l,!1,null,"bf2c837a",null);s.options.__file="Menu_1_2.vue";n["default"]=s.exports}}]);
|
||||||
|
//# sourceMappingURL=chunk-2d0a4854.aee50383.js.map
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
{"version":3,"sources":["webpack:///./src/views/Recursion/Menu_1/Menu_1_2.vue?cc3d","webpack:///src/views/Recursion/Menu_1/Menu_1_2.vue","webpack:///./src/views/Recursion/Menu_1/Menu_1_2.vue?cce0","webpack:///./src/views/Recursion/Menu_1/Menu_1_2.vue"],"names":["render","_vm","this","_h","$createElement","_c","_self","staticStyle","padding","attrs","closable","title","type","staticRenderFns","Menu_1_2vue_type_script_lang_js_","name","Menu_1_Menu_1_2vue_type_script_lang_js_","component","Object","componentNormalizer","options","__file","__webpack_exports__"],"mappings":"yHAAA,IAAAA,EAAA,WAA0B,IAAAC,EAAAC,KAAaC,EAAAF,EAAAG,eAA0BC,EAAAJ,EAAAK,MAAAD,IAAAF,EAAwB,OAAAE,EAAA,OAAiBE,YAAA,CAAaC,QAAA,SAAkB,CAAAH,EAAA,YAAiBI,MAAA,CAAOC,UAAA,EAAAC,MAAA,eAAAC,KAAA,cAA0D,IAC3NC,EAAA,GCMAC,EAAA,CACAC,KAAA,UCRgXC,EAAA,cCOhXC,EAAgBC,OAAAC,EAAA,KAAAD,CACdF,EACAhB,EACAa,GACF,EACA,KACA,WACA,MAIAI,EAAAG,QAAAC,OAAA,eACeC,EAAA,WAAAL","file":"js/chunk-2d0a4854.aee50383.js","sourcesContent":["var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticStyle:{\"padding\":\"30px\"}},[_c('el-alert',{attrs:{\"closable\":false,\"title\":\"menu - 1 -2 \",\"type\":\"warning\"}})],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","<template>\r\n <div style=\"padding:30px;\">\r\n <el-alert :closable=\"false\" title=\"menu - 1 -2 \" type=\"warning\" />\r\n </div>\r\n</template>\r\n\r\n<script>\r\n export default {\r\n name: \"Menu12\"\r\n }\r\n</script>\r\n\r\n<style scoped>\r\n\r\n</style>\r\n","import mod from \"-!../../../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../../../node_modules/thread-loader/dist/cjs.js!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Menu_1_2.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../../../node_modules/thread-loader/dist/cjs.js!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Menu_1_2.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./Menu_1_2.vue?vue&type=template&id=bf2c837a&scoped=true&\"\nimport script from \"./Menu_1_2.vue?vue&type=script&lang=js&\"\nexport * from \"./Menu_1_2.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"bf2c837a\",\n null\n \n)\n\ncomponent.options.__file = \"Menu_1_2.vue\"\nexport default component.exports"],"sourceRoot":""}
|
||||||
|
|
@ -0,0 +1,2 @@
|
||||||
|
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-2d0c0c66"],{"42e7":function(e,t,a){"use strict";a.r(t);var l=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("section",[a("el-col",{staticClass:"toolbar",staticStyle:{"padding-bottom":"0px"},attrs:{span:24}},[a("el-form",{attrs:{inline:!0},nativeOn:{submit:function(e){e.preventDefault()}}},[a("el-form-item",[a("el-select",{attrs:{placeholder:"请选择要操作的公众号"},model:{value:e.selectWeChat,callback:function(t){e.selectWeChat=t},expression:"selectWeChat"}},e._l(e.wechats,function(t){return a("el-option",{key:t.value,attrs:{label:t.label,value:t.value}},[a("span",{staticStyle:{float:"left"}},[e._v(e._s(t.label))]),a("span",{staticStyle:{float:"right",color:"#8492a6","font-size":"13px"}},[e._v(e._s(t.value))])])}),1)],1),e.selectWeChat?a("el-form-item",[a("el-select",{attrs:{placeholder:"请选择要操作的客户"},model:{value:e.selectCompany,callback:function(t){e.selectCompany=t},expression:"selectCompany"}},e._l(e.companys,function(t){return a("el-option",{key:t.value,attrs:{label:t.label,value:t.value}},[a("span",{staticStyle:{float:"left"}},[e._v(e._s(t.label))]),a("span",{staticStyle:{float:"right",color:"#8492a6","font-size":"13px"}},[e._v(e._s(t.value))])])}),1)],1):e._e(),a("el-form-item",[a("el-button",{attrs:{type:"primary",disabled:""==e.selectWeChat},on:{click:e.searchWeChatAccount}},[e._v("刷新")])],1)],1)],1),a("el-table",{directives:[{name:"loading",rawName:"v-loading",value:e.listLoading,expression:"listLoading"}],staticStyle:{width:"100%"},attrs:{data:e.tableData,"highlight-current-row":""},on:{"selection-change":e.selsChange}},[a("el-table-column",{attrs:{type:"index",width:"80"}}),a("el-table-column",{attrs:{prop:"PushLogPublicAccount",label:"微信公众号",width:"100"}}),a("el-table-column",{attrs:{prop:"PushLogCompanyID",label:"客户",width:""}}),a("el-table-column",{attrs:{prop:"PushLogToUserID",label:"员工ID",width:""}}),a("el-table-column",{attrs:{prop:"PushLogOpenid",label:"微信ID",width:"300"}}),a("el-table-column",{attrs:{prop:"PushLogTime",label:"推送时间",width:"250"}}),a("el-table-column",{attrs:{prop:"PushLogStatus",label:"推送状态",width:""}}),a("el-table-column",{attrs:{prop:"PushLogRemark",label:"信息",width:""}}),a("el-table-column",{attrs:{prop:"PushLogIP",label:"推送IP",width:""}}),a("el-table-column",{attrs:{prop:"PushLogTemplateID",label:"推送模板ID",width:"150"}}),a("el-table-column",{attrs:{prop:"PushLogContent",label:"推送内容",width:"500"}})],1),a("div",{staticClass:"block"},[a("el-pagination",{attrs:{"current-page":e.page.pageIndex,"hide-on-single-page":!0,"page-sizes":[10,100,500,1e3],"page-size":e.page.pageSize,layout:"total, sizes, prev, pager, next, jumper",total:e.page.pageTotal},on:{"size-change":e.handleSizeChange,"current-change":e.handleCurrentChange}})],1)],1)},n=[],s=(a("ac6a"),a("cadf"),a("551c"),a("097d"),a("4ec3")),o={name:"WeChatCompany",data:function(){return{wechats:[],companys:[],selectWeChat:"",selectCompany:"",listLoading:!1,tableData:[],sels:[],page:{pageSize:10,pageIndex:1,pageTotal:0}}},created:function(){this.getWeChats(),this.getWeCompanys()},methods:{selsChange:function(e){this.sels=e},handleCurrentChange:function(e){this.page.pageIndex=e,this.searchWeChatAccount()},handleSizeChange:function(e){this.page.pageIndex=1,this.page.pageSize=e,this.searchWeChatAccount()},searchWeChatAccount:function(){var e=this;this.listLoading=!0;var t={intPageIndex:this.page.pageIndex,intPageSize:this.page.pageSize,strOrderByFileds:"PushLogTime desc",conditions:"PushLogPublicAccount = "+this.selectWeChat};this.selectCompany&&(t.conditions+=" & PushLogCompanyID = "+this.selectCompany),Object(s["W"])(t).then(function(t){e.listLoading=!1,console.log(t),t.data.success&&(e.tableData=t.data.response.data,e.page.pageTotal=t.data.response.dataCount,e.$message({type:"success",message:"获取成功!"}))})},getWeCompanys:function(){var e=this;Object(s["U"])().then(function(t){e.companys=[],console.log(t),t.data.response.data.forEach(function(t){e.companys.push({value:t.CompanyID,label:t.CompanyName})})})},getWeChats:function(){var e=this;Object(s["S"])().then(function(t){e.wechats=[],t.data.response.data.forEach(function(t){e.wechats.push({value:t.publicAccount,label:t.publicNick})})})}},mounted:function(){},watch:{selectWeChat:function(e,t){this.searchWeChatAccount()},selectCompany:function(e,t){this.searchWeChatAccount()}}},c=o,i=a("2877"),p=Object(i["a"])(c,l,n,!1,null,null,null);p.options.__file="PushLog.vue";t["default"]=p.exports}}]);
|
||||||
|
//# sourceMappingURL=chunk-2d0c0c66.4faa5607.js.map
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -0,0 +1,2 @@
|
||||||
|
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-2d0c4aa3"],{"3c96":function(e,t,n){"use strict";n.r(t);var a=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticStyle:{padding:"30px"}},[n("el-alert",{attrs:{closable:!1,title:"menu - 1 - 1 - 2",type:"error"}})],1)},l=[],c={name:"Menu111"},r=c,u=n("2877"),i=Object(u["a"])(r,a,l,!1,null,"275f2839",null);i.options.__file="Menu_1_1_2.vue";t["default"]=i.exports}}]);
|
||||||
|
//# sourceMappingURL=chunk-2d0c4aa3.703d6172.js.map
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
{"version":3,"sources":["webpack:///./src/views/Recursion/Menu_1/Menu_1_1/Menu_1_1_2.vue?0f20","webpack:///src/views/Recursion/Menu_1/Menu_1_1/Menu_1_1_2.vue","webpack:///./src/views/Recursion/Menu_1/Menu_1_1/Menu_1_1_2.vue?de4a","webpack:///./src/views/Recursion/Menu_1/Menu_1_1/Menu_1_1_2.vue"],"names":["render","_vm","this","_h","$createElement","_c","_self","staticStyle","padding","attrs","closable","title","type","staticRenderFns","Menu_1_1_2vue_type_script_lang_js_","name","Menu_1_1_Menu_1_1_2vue_type_script_lang_js_","component","Object","componentNormalizer","options","__file","__webpack_exports__"],"mappings":"yHAAA,IAAAA,EAAA,WAA0B,IAAAC,EAAAC,KAAaC,EAAAF,EAAAG,eAA0BC,EAAAJ,EAAAK,MAAAD,IAAAF,EAAwB,OAAAE,EAAA,OAAiBE,YAAA,CAAaC,QAAA,SAAkB,CAAAH,EAAA,YAAiBI,MAAA,CAAOC,UAAA,EAAAC,MAAA,mBAAAC,KAAA,YAA4D,IAC7NC,EAAA,GCMAC,EAAA,CACAC,KAAA,WCRiYC,EAAA,cCOjYC,EAAgBC,OAAAC,EAAA,KAAAD,CACdF,EACAhB,EACAa,GACF,EACA,KACA,WACA,MAIAI,EAAAG,QAAAC,OAAA,iBACeC,EAAA,WAAAL","file":"js/chunk-2d0c4aa3.703d6172.js","sourcesContent":["var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticStyle:{\"padding\":\"30px\"}},[_c('el-alert',{attrs:{\"closable\":false,\"title\":\"menu - 1 - 1 - 2\",\"type\":\"error\"}})],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","<template >\r\n <div style=\"padding:30px;\">\r\n <el-alert :closable=\"false\" title=\"menu - 1 - 1 - 2\" type=\"error\" />\r\n </div>\r\n</template>\r\n\r\n<script>\r\n export default {\r\n name: \"Menu111\"\r\n }\r\n</script>\r\n\r\n<style scoped>\r\n\r\n</style>\r\n","import mod from \"-!../../../../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../../../../node_modules/thread-loader/dist/cjs.js!../../../../../node_modules/babel-loader/lib/index.js!../../../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Menu_1_1_2.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../../../../node_modules/thread-loader/dist/cjs.js!../../../../../node_modules/babel-loader/lib/index.js!../../../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Menu_1_1_2.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./Menu_1_1_2.vue?vue&type=template&id=275f2839&scoped=true&\"\nimport script from \"./Menu_1_1_2.vue?vue&type=script&lang=js&\"\nexport * from \"./Menu_1_1_2.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"275f2839\",\n null\n \n)\n\ncomponent.options.__file = \"Menu_1_1_2.vue\"\nexport default component.exports"],"sourceRoot":""}
|
||||||
|
|
@ -0,0 +1,2 @@
|
||||||
|
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-2d0cf4f3"],{"62bc":function(e,t,l){"use strict";l.r(t);var a=function(){var e=this,t=e.$createElement,l=e._self._c||t;return l("el-form",{ref:"form",staticStyle:{margin:"20px",width:"60%","min-width":"600px"},attrs:{model:e.form,"label-width":"80px"},on:{submit:function(t){return t.preventDefault(),e.onSubmit(t)}}},[l("el-form-item",{attrs:{label:"活动名称"}},[l("el-input",{model:{value:e.form.name,callback:function(t){e.$set(e.form,"name",t)},expression:"form.name"}})],1),l("el-form-item",{attrs:{label:"活动区域"}},[l("el-select",{attrs:{placeholder:"请选择活动区域"},model:{value:e.form.region,callback:function(t){e.$set(e.form,"region",t)},expression:"form.region"}},[l("el-option",{attrs:{label:"区域一",value:"shanghai"}}),l("el-option",{attrs:{label:"区域二",value:"beijing"}})],1)],1),l("el-form-item",{attrs:{label:"活动时间"}},[l("el-col",{attrs:{span:11}},[l("el-date-picker",{staticStyle:{width:"100%"},attrs:{type:"date",placeholder:"选择日期"},model:{value:e.form.date1,callback:function(t){e.$set(e.form,"date1",t)},expression:"form.date1"}})],1),l("el-col",{staticClass:"line",attrs:{span:2}},[e._v("-")]),l("el-col",{attrs:{span:11}},[l("el-time-picker",{staticStyle:{width:"100%"},attrs:{type:"fixed-time",placeholder:"选择时间"},model:{value:e.form.date2,callback:function(t){e.$set(e.form,"date2",t)},expression:"form.date2"}})],1)],1),l("el-form-item",{attrs:{label:"即时配送"}},[l("el-switch",{attrs:{"on-text":"","off-text":""},model:{value:e.form.delivery,callback:function(t){e.$set(e.form,"delivery",t)},expression:"form.delivery"}})],1),l("el-form-item",{attrs:{label:"活动性质"}},[l("el-checkbox-group",{model:{value:e.form.type,callback:function(t){e.$set(e.form,"type",t)},expression:"form.type"}},[l("el-checkbox",{attrs:{label:"美食/餐厅线上活动",name:"type"}}),l("el-checkbox",{attrs:{label:"地推活动",name:"type"}}),l("el-checkbox",{attrs:{label:"线下主题活动",name:"type"}}),l("el-checkbox",{attrs:{label:"单纯品牌曝光",name:"type"}})],1)],1),l("el-form-item",{attrs:{label:"特殊资源"}},[l("el-radio-group",{model:{value:e.form.resource,callback:function(t){e.$set(e.form,"resource",t)},expression:"form.resource"}},[l("el-radio",{attrs:{label:"线上品牌商赞助"}}),l("el-radio",{attrs:{label:"线下场地免费"}})],1)],1),l("el-form-item",{attrs:{label:"活动形式"}},[l("el-input",{attrs:{type:"textarea"},model:{value:e.form.desc,callback:function(t){e.$set(e.form,"desc",t)},expression:"form.desc"}})],1),l("el-form-item",[l("el-button",{attrs:{type:"primary"}},[e._v("立即创建")]),l("el-button",{nativeOn:{click:function(e){e.preventDefault()}}},[e._v("取消")])],1)],1)},r=[],o={data:function(){return{form:{name:"",region:"",date1:"2019-01-01",date2:"",delivery:!1,type:[],resource:"",desc:""}}},methods:{onSubmit:function(){console.log("submit!")}}},n=o,s=l("2877"),i=Object(s["a"])(n,a,r,!1,null,null,null);i.options.__file="Form.vue";t["default"]=i.exports}}]);
|
||||||
|
//# sourceMappingURL=chunk-2d0cf4f3.4034e115.js.map
|
||||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -0,0 +1,2 @@
|
||||||
|
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-2d213196"],{aadd:function(e,t,a){"use strict";a.r(t);var n=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("section",[a("el-col",{staticClass:"toolbar",staticStyle:{"padding-bottom":"0px"},attrs:{span:24}},[a("el-form",{attrs:{inline:!0},nativeOn:{submit:function(e){e.preventDefault()}}},[a("el-form-item",[a("el-select",{attrs:{placeholder:"请选择要操作的公众号"},model:{value:e.selectWeChat,callback:function(t){e.selectWeChat=t},expression:"selectWeChat"}},e._l(e.wechats,function(t){return a("el-option",{key:t.value,attrs:{label:t.label,value:t.value}},[a("span",{staticStyle:{float:"left"}},[e._v(e._s(t.label))]),a("span",{staticStyle:{float:"right",color:"#8492a6","font-size":"13px"}},[e._v(e._s(t.value))])])}),1)],1),a("el-form-item",[a("el-button",{attrs:{type:"primary",disabled:""==e.selectWeChat},on:{click:e.searchWeChatAccount}},[e._v("刷新")])],1)],1)],1),a("el-table",{directives:[{name:"loading",rawName:"v-loading",value:e.listLoading,expression:"listLoading"}],staticStyle:{width:"100%"},attrs:{data:e.tableData,"highlight-current-row":""},on:{"selection-change":e.selsChange}},[a("el-table-column",{attrs:{type:"index",width:"80"}}),a("el-table-column",{attrs:{prop:"openid",label:"OpenID",width:"300"}}),a("el-table-column",{attrs:{prop:"nickname",label:"昵称",width:"200"}}),a("el-table-column",{attrs:{prop:"country",label:"国家",width:"100"}}),a("el-table-column",{attrs:{prop:"province",label:"省份",width:"100"}}),a("el-table-column",{attrs:{prop:"city",label:"城市",width:"50"}}),a("el-table-column",{attrs:{prop:"headimgurl",label:"头像",width:""},scopedSlots:e._u([{key:"default",fn:function(e){return[a("img",{staticStyle:{width:"50px",height:"50px"},attrs:{src:e.row.headimgurl,alt:""}})]}}])})],1),a("div",{staticClass:"block"},[a("el-pagination",{attrs:{"current-page":e.page.pageIndex,"hide-on-single-page":!0,"page-sizes":[10,100,500,1e3],"page-size":e.page.pageSize,layout:"total, sizes, prev, pager, next, jumper",total:e.page.pageTotal},on:{"size-change":e.handleSizeChange,"current-change":e.handleCurrentChange}})],1)],1)},l=[],s=(a("ac6a"),a("cadf"),a("551c"),a("097d"),a("4ec3")),i={name:"WeChatCompany",data:function(){return{wechats:[],selectWeChat:"",listLoading:!1,tableData:[],sels:[],page:{pageSize:10,pageIndex:1,pageTotal:0}}},created:function(){this.getWeChats()},methods:{selsChange:function(e){this.sels=e},handleCurrentChange:function(e){this.page.pageIndex=e,this.searchWeChatAccount()},handleSizeChange:function(e){this.page.pageIndex=1,this.page.pageSize=e,this.searchWeChatAccount()},searchWeChatAccount:function(){var e=this;this.listLoading=!0,Object(s["X"])({id:this.selectWeChat,intPageIndex:this.page.pageIndex,intPageSize:this.page.pageSize,strOrderByFileds:"PushLogTime desc"}).then(function(t){e.listLoading=!1,console.log(t),t.data.success&&(console.log(t.data.response.users),e.tableData=t.data.response.users,e.page.pageTotal=t.data.response.total,e.$message({type:"success",message:t.data.msg}))})},getWeChats:function(){var e=this;Object(s["S"])().then(function(t){e.wechats=[],t.data.response.data.forEach(function(t){e.wechats.push({value:t.publicAccount,label:t.publicNick})})})}},mounted:function(){},watch:{selectWeChat:function(e,t){this.page.pageIndex=1,this.searchWeChatAccount()}}},c=i,o=a("2877"),r=Object(o["a"])(c,n,l,!1,null,null,null);r.options.__file="SubUser.vue";t["default"]=r.exports}}]);
|
||||||
|
//# sourceMappingURL=chunk-2d213196.5c2d76ce.js.map
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -0,0 +1,2 @@
|
||||||
|
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-2d21f214"],{d909:function(e,n,t){"use strict";t.r(n);var o=function(){var e=this,n=e.$createElement,t=e._self._c||n;return t("div",[e._v("我是测试的第二个页面.")])},s=[],u={name:"TestTwo"},a=u,c=t("2877"),i=Object(c["a"])(a,o,s,!1,null,"25b3917a",null);i.options.__file="TestTwo.vue";n["default"]=i.exports}}]);
|
||||||
|
//# sourceMappingURL=chunk-2d21f214.ec5ee5a8.js.map
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
{"version":3,"sources":["webpack:///./src/views/TestShow/TestTwo.vue?7e6e","webpack:///src/views/TestShow/TestTwo.vue","webpack:///./src/views/TestShow/TestTwo.vue?c0db","webpack:///./src/views/TestShow/TestTwo.vue"],"names":["render","_vm","this","_h","$createElement","_c","_self","_v","staticRenderFns","TestTwovue_type_script_lang_js_","name","TestShow_TestTwovue_type_script_lang_js_","component","Object","componentNormalizer","options","__file","__webpack_exports__"],"mappings":"uHAAA,IAAAA,EAAA,WAA0B,IAAAC,EAAAC,KAAaC,EAAAF,EAAAG,eAA0BC,EAAAJ,EAAAK,MAAAD,IAAAF,EAAwB,OAAAE,EAAA,OAAAJ,EAAAM,GAAA,kBACzFC,EAAA,GCKAC,EAAA,CACAC,KAAA,WCPgWC,EAAA,cCOhWC,EAAgBC,OAAAC,EAAA,KAAAD,CACdF,EACAX,EACAQ,GACF,EACA,KACA,WACA,MAIAI,EAAAG,QAAAC,OAAA,cACeC,EAAA,WAAAL","file":"js/chunk-2d21f214.ec5ee5a8.js","sourcesContent":["var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_vm._v(\"我是测试的第二个页面.\")])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","<template>\r\n <div>我是测试的第二个页面.</div>\r\n\r\n</template>\r\n\r\n<script>\r\n export default {\r\n name: \"TestTwo\"\r\n }\r\n</script>\r\n\r\n<style scoped>\r\n\r\n</style>\r\n","import mod from \"-!../../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../../node_modules/thread-loader/dist/cjs.js!../../../node_modules/babel-loader/lib/index.js!../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./TestTwo.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../../node_modules/thread-loader/dist/cjs.js!../../../node_modules/babel-loader/lib/index.js!../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./TestTwo.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./TestTwo.vue?vue&type=template&id=25b3917a&scoped=true&\"\nimport script from \"./TestTwo.vue?vue&type=script&lang=js&\"\nexport * from \"./TestTwo.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"25b3917a\",\n null\n \n)\n\ncomponent.options.__file = \"TestTwo.vue\"\nexport default component.exports"],"sourceRoot":""}
|
||||||
|
|
@ -0,0 +1,2 @@
|
||||||
|
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-2d229214"],{dbaa:function(n,e,a){"use strict";a.r(e);var t=function(){var n=this,e=n.$createElement,a=n._self._c||e;return a("div",[n._v("我是测试的第一个页面. name is "+n._s(n.msg))])},s=[],o=(a("7f7f"),a("bc3a")),c=a.n(o),u={name:"TestOne",data:function(){return{msg:""}},mounted:function(){var n=this;c.a.post("/api/Values/TestPostPara?name=anson zhang",{}).then(function(e){n.msg=e.data.name}).catch(function(n){console.error(n)})}},i=u,r=a("2877"),d=Object(r["a"])(i,t,s,!1,null,"6a35dd41",null);d.options.__file="TestOne.vue";e["default"]=d.exports}}]);
|
||||||
|
//# sourceMappingURL=chunk-2d229214.cfe33fe9.js.map
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
{"version":3,"sources":["webpack:///./src/views/TestShow/TestOne.vue?79b8","webpack:///src/views/TestShow/TestOne.vue","webpack:///./src/views/TestShow/TestOne.vue?8c57","webpack:///./src/views/TestShow/TestOne.vue"],"names":["render","_vm","this","_h","$createElement","_c","_self","_v","_s","msg","staticRenderFns","TestOnevue_type_script_lang_js_","name","data","mounted","that","axios_default","a","post","then","res","catch","err","console","error","TestShow_TestOnevue_type_script_lang_js_","component","Object","componentNormalizer","options","__file","__webpack_exports__"],"mappings":"uHAAA,IAAAA,EAAA,WAA0B,IAAAC,EAAAC,KAAaC,EAAAF,EAAAG,eAA0BC,EAAAJ,EAAAK,MAAAD,IAAAF,EAAwB,OAAAE,EAAA,OAAAJ,EAAAM,GAAA,uBAAAN,EAAAO,GAAAP,EAAAQ,SACzFC,EAAA,oCCMAC,EAAA,CACAC,KAAA,UACAC,KAFA,WAGA,OACAJ,IAAA,KAGAK,QAPA,WAQA,IAAAC,EAAAb,KACAc,EAAAC,EAAAC,KAAA,gDACAC,KAAA,SAAAC,GACAL,EAAAN,IAAAW,EAAAP,KAAAD,OAEAS,MAAA,SAAAC,GACAC,QAAAC,MAAAF,OCrBgWG,EAAA,cCOhWC,EAAgBC,OAAAC,EAAA,KAAAD,CACdF,EACAzB,EACAU,GACF,EACA,KACA,WACA,MAIAgB,EAAAG,QAAAC,OAAA,cACeC,EAAA,WAAAL","file":"js/chunk-2d229214.cfe33fe9.js","sourcesContent":["var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_vm._v(\"我是测试的第一个页面. name is \"+_vm._s(_vm.msg))])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","<template>\r\n <div>我是测试的第一个页面. name is {{ msg }}</div>\r\n</template>\r\n\r\n<script>\r\n import axios from 'axios';\r\n\r\n export default {\r\n name: \"TestOne\",\r\n data(){\r\n return{\r\n msg:''\r\n }\r\n },\r\n mounted(){\r\n let that=this;\r\n axios.post('/api/Values/TestPostPara?name=anson zhang', {})\r\n .then(res => {\r\n that.msg=res.data.name\r\n })\r\n .catch(err => {\r\n console.error(err);\r\n })\r\n }\r\n }\r\n</script>\r\n\r\n<style scoped>\r\n\r\n</style>\r\n","import mod from \"-!../../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../../node_modules/thread-loader/dist/cjs.js!../../../node_modules/babel-loader/lib/index.js!../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./TestOne.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../../node_modules/thread-loader/dist/cjs.js!../../../node_modules/babel-loader/lib/index.js!../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./TestOne.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./TestOne.vue?vue&type=template&id=6a35dd41&scoped=true&\"\nimport script from \"./TestOne.vue?vue&type=script&lang=js&\"\nexport * from \"./TestOne.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"6a35dd41\",\n null\n \n)\n\ncomponent.options.__file = \"TestOne.vue\"\nexport default component.exports"],"sourceRoot":""}
|
||||||
|
|
@ -0,0 +1,2 @@
|
||||||
|
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-2d22d746"],{f820:function(t,e,n){"use strict";n.r(e);var s=function(){var t=this,e=t.$createElement;t._self._c;return t._m(0)},u=[function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"about"},[n("h1",[t._v("This is an about page")])])}],a=n("2877"),i={},c=Object(a["a"])(i,s,u,!1,null,null,null);c.options.__file="About.vue";e["default"]=c.exports}}]);
|
||||||
|
//# sourceMappingURL=chunk-2d22d746.bc86ccfd.js.map
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
{"version":3,"sources":["webpack:///./src/views/About.vue?3cc8","webpack:///./src/views/About.vue"],"names":["render","_vm","this","_h","$createElement","_self","_c","_m","staticRenderFns","staticClass","_v","script","component","Object","componentNormalizer","options","__file","__webpack_exports__"],"mappings":"uHAAA,IAAAA,EAAA,WAA0B,IAAAC,EAAAC,KAAaC,EAAAF,EAAAG,eAA0BH,EAAAI,MAAAC,GAAwB,OAAAL,EAAAM,GAAA,IACzFC,EAAA,YAAoC,IAAAP,EAAAC,KAAaC,EAAAF,EAAAG,eAA0BE,EAAAL,EAAAI,MAAAC,IAAAH,EAAwB,OAAAG,EAAA,OAAiBG,YAAA,SAAoB,CAAAH,EAAA,MAAAL,EAAAS,GAAA,2CCAxIC,EAAA,GAKAC,EAAgBC,OAAAC,EAAA,KAAAD,CAChBF,EACEX,EACAQ,GACF,EACA,KACA,KACA,MAIAI,EAAAG,QAAAC,OAAA,YACeC,EAAA,WAAAL","file":"js/chunk-2d22d746.bc86ccfd.js","sourcesContent":["var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _vm._m(0)}\nvar staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"about\"},[_c('h1',[_vm._v(\"This is an about page\")])])}]\n\nexport { render, staticRenderFns }","import { render, staticRenderFns } from \"./About.vue?vue&type=template&id=0391505c&\"\nvar script = {}\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\ncomponent.options.__file = \"About.vue\"\nexport default component.exports"],"sourceRoot":""}
|
||||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -0,0 +1,2 @@
|
||||||
|
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-770e833a"],{c8c13:function(e,t,a){"use strict";a.r(t);var n=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("section",[a("el-col",{staticClass:"toolbar",staticStyle:{"padding-bottom":"0px"},attrs:{span:24}},[a("el-form",{attrs:{inline:!0},nativeOn:{submit:function(e){e.preventDefault()}}},[a("el-form-item",[a("el-select",{attrs:{placeholder:"请选择要操作的公众号"},model:{value:e.selectWeChat,callback:function(t){e.selectWeChat=t},expression:"selectWeChat"}},e._l(e.wechats,function(t){return a("el-option",{key:t.value,attrs:{label:t.label,value:t.value}},[a("span",{staticStyle:{float:"left"}},[e._v(e._s(t.label))]),a("span",{staticStyle:{float:"right",color:"#8492a6","font-size":"13px"}},[e._v(e._s(t.value))])])}),1)],1),e.selectWeChat?a("el-form-item",[a("el-select",{attrs:{placeholder:"请选择要操作的客户"},model:{value:e.selectCompany,callback:function(t){e.selectCompany=t},expression:"selectCompany"}},e._l(e.companys,function(t){return a("el-option",{key:t.value,attrs:{label:t.label,value:t.value}},[a("span",{staticStyle:{float:"left"}},[e._v(e._s(t.label))]),a("span",{staticStyle:{float:"right",color:"#8492a6","font-size":"13px"}},[e._v(e._s(t.value))])])}),1)],1):e._e(),a("el-form-item",[a("el-button",{attrs:{type:"primary",disabled:""==e.selectWeChat||""==e.selectCompany},on:{click:e.searchWeChatAccount}},[e._v("刷新")])],1)],1)],1),a("el-table",{directives:[{name:"loading",rawName:"v-loading",value:e.listLoading,expression:"listLoading"}],staticStyle:{width:"100%"},attrs:{data:e.tableData,"highlight-current-row":""},on:{"selection-change":e.selsChange}},[a("el-table-column",{attrs:{type:"index",width:"80"}}),a("el-table-column",{attrs:{prop:"SubFromPublicAccount",label:"来自公众号",width:"100"}}),a("el-table-column",{attrs:{prop:"CompanyID",label:"来自公司",width:"100"}}),a("el-table-column",{attrs:{prop:"SubUserOpenID",label:"OpenID",width:"300"}}),a("el-table-column",{attrs:{prop:"SubJobID",label:"员工ID",width:"150"}}),a("el-table-column",{attrs:{prop:"SubUserRegTime",label:"注册时间",width:"200"}}),a("el-table-column",{attrs:{prop:"SubUserRefTime",label:"更新时间",width:"200"}})],1),a("div",{staticClass:"block"},[a("el-pagination",{attrs:{"current-page":e.page.pageIndex,"hide-on-single-page":!0,"page-sizes":[10,100,500,1e3],"page-size":e.page.pageSize,layout:"total, sizes, prev, pager, next, jumper",total:e.page.pageTotal},on:{"size-change":e.handleSizeChange,"current-change":e.handleCurrentChange}})],1)],1)},l=[],s=(a("ac6a"),a("4ec3")),o={name:"WeChatCompany",data:function(){return{wechats:[],companys:[],selectWeChat:"",selectCompany:"",listLoading:!1,tableData:[],sels:[],page:{pageSize:10,pageIndex:1,pageTotal:0}}},created:function(){this.getWeChats(),this.getWeCompanys()},methods:{selsChange:function(e){this.sels=e},handleCurrentChange:function(e){this.page.pageIndex=e,this.searchWeChatAccount()},handleSizeChange:function(e){this.page.pageIndex=1,this.page.pageSize=e,this.searchWeChatAccount()},searchWeChatAccount:function(){var e=this;if(""!=this.selectWeChat&&""!=this.selectCompany){this.listLoading=!0;var t={intPageIndex:this.page.pageIndex,intPageSize:this.page.pageSize,strOrderByFileds:"SubFromPublicAccount asc",conditions:"SubFromPublicAccount = "+this.selectWeChat+" & IsUnBind = false"};this.selectCompany&&(t.conditions+="& CompanyID = "+this.selectCompany),Object(s["T"])(t).then(function(t){e.listLoading=!1,console.log(t),t.data.success&&(e.tableData=t.data.response.data,e.page.pageTotal=t.data.response.dataCount,e.$message({type:"success",message:"获取成功!"}))})}},getWeChats:function(){var e=this;Object(s["S"])().then(function(t){e.wechats=[],t.data.response.data.forEach(function(t){e.wechats.push({value:t.publicAccount,label:t.publicNick})})})},getWeCompanys:function(){var e=this;Object(s["U"])().then(function(t){e.companys=[],console.log(t),t.data.response.data.forEach(function(t){e.companys.push({value:t.CompanyID,label:t.CompanyName})})})}},mounted:function(){},watch:{selectWeChat:function(e,t){this.page.pageIndex=1,this.searchWeChatAccount()},selectCompany:function(e,t){this.page.pageIndex=1,this.searchWeChatAccount()}}},c=o,i=a("2877"),p=Object(i["a"])(c,n,l,!1,null,null,null);p.options.__file="BindUser.vue";t["default"]=p.exports}}]);
|
||||||
|
//# sourceMappingURL=chunk-770e833a.0890b50d.js.map
|
||||||
File diff suppressed because one or more lines are too long
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue