dotnetcore+vue+elementUI 前后端分离 三(前端篇)

说明:

本项目使用了 mysql employees数据库,使用了vue + axois + element UI 2.0 ,演示了 单页程序 架构 ,vue router 的使用,axois 使用,以及 element UI 控件的使用。通过这几种技术的组合,实现了对 employee 的增,删。查,改 ,分页操作,展示了在实际项目中,Vue 结合 elementUI 如何在前端项目中使用。

 

路由

说白了就是,页面的跳转如何控制。

当用户点击了部门信息就需要展示部门信息的;点击了员工信息就需要展示员工的总体信息,点击员工列表中明细信息就需要跳转到该员工的明细信息。如下图所示: 

 

 

 

 

在传统的web程序中,跳转是由连接来控制的,不同的连接可以跳转到具体的页面,也可以在mvc 结构中 ,不同的路由地址,由controller返回不同的view。

 

在SPA单页程序中,路由一般是由专门的Router 来控制,而且Router是前端的组件,而不是由后端来控制的。

 

在本项目中,Vue 路由组件 使用的是 Vue-Router,部门,员工列表信息,员工明细信息 ,都是一个个 活生生 vue 组件,是前端组件,而不是一个页面。这种方式也是把web前端开发带入了组件化开发模式,

 

相对传统的web开发模式,进步可不是一点点。 

 

项目结构:

 

  

 

核心组件介绍:

 

  • main

import Vue from 'vue'


import ElementUI from 'element-ui'


import 'element-ui/lib/theme-chalk/index.css'


import App from './App.vue'


import VueRouter from 'vue-router'


import routerMap from './router.js'


// 引入axios以及element ui中的loading和message组件


import axios from 'axios';


import { Loading, Message } from 'element-ui'


 


Vue.use(VueRouter);


Vue.use(ElementUI);


Vue.prototype.$http = axios;


//axios 配置最好提出专门的页面


//axios.defaults.baseURL = "http://localhost:5001/api";


axios.defaults.baseURL = "http://localhost/CMS.API/api";


 


/**


* http配置


*/


// 引入axios以及element ui中的loading和message组件


// 超时时间


axios.defaults.timeout = 5000;


// http请求拦截器


var loadinginstace


axios.interceptors.request.use(config => {


// element ui Loading方法


console.log(config);


loadinginstace = Loading.service({ fullscreen: true })


return config


}, error => {


loadinginstace.close()


Message.error({


message: '加载超时'


})


return Promise.reject(error)


})


// http响应拦截器


axios.interceptors.response.use(data => {// 响应成功关闭loading


loadinginstace.close()


return data


}, error => {


loadinginstace.close()


Message.error({


message: '服务端发生错误'


})


return Promise.reject(error)


})


export default axios


const router = new VueRouter({ routes: routerMap })


 


const app = new Vue({


router


}).$mount('#app');

axios 拦截器中添加的方法说明:

  1. 当http请求发出后,响应为返回前,前端页面弹出遮罩层,显示loading,避免用户在请求未响应前误操作。

  2. 当http请求发出后,发生异常后,前端提示用户,后台发生错误。

  3. 拦截一次处理了这两种通用的操作,其它地方再也不用以上两种操作。

 

 

  • router.js

/*!


//Router Map 文件


//hbb0b0@163.com


*/


import Help from './components/help/Help.vue';


import Feedback from './components/feedback/Feedback.vue';


import UserInfo from './components/business/UserInfo.vue';


import DepartmentList from './components/business/DepartmentList.vue';


import EmployeeList from './components/business/Employee/EmployeeList.vue';


import EmployeeDetail from './components/business/Employee/EmployeeDetail.vue';


import EmployeeAdd from './components/business/Employee/EmployeeAdd.vue';


import EmployeeEdit from './components/business/Employee/EmployeeEdit.vue';


import App from './App.vue'


export default [{


path: '/index',


component: App,


children: [


{


name: '部门信息',


path: 'departmentList',


component: DepartmentList


},


{


name: '员工信息',


path: 'employee/list',


component: EmployeeList


},


 


{


name: '帮助中心',


path: 'help',


component: Help


}, 


{


name: '意见反馈',


path: 'feedback',


component: Feedback


},


{


name:'员工详细信息',


path:'employee/detail/:id',


component:EmployeeDetail


},


{


name:'员工信息编辑',


path:'employee/edit/:id',


component:EmployeeEdit


},


{


name:'员工信息增加',


path:'employee/add/',


component:EmployeeAdd


}


]


},


{


path: '*',


redirect: '/index/departmentList'


}


]

  • EmployeeList.vue

<template>


<div class="testUser">


<div class="function">


<el-row>


<el-form :model="queryCondition" label-width="150px" class="common-margin common-form" ref="form" :rules="rules">


<el-form-item label="First Name" prop="param.first_Name">


<el-col :span="6">


<el-input placeholder="First Name" v-model="queryCondition.param.first_Name"></el-input>


</el-col>


</el-form-item>


<el-form-item label="Last Name" prop="param.last_Name">


<el-col :span="6">


<el-input placeholder="Last Name" v-model="queryCondition.param.last_Name"></el-input>


</el-col>


</el-form-item>


<el-form-item label="Gender">


<el-col :span="6">


<el-select placeholder="Gender" v-model="queryCondition.param.gender">


<el-option v-for="item in genderStatus" :key="item.value" :label="item.label" :value="item.value">


</el-option>


</el-select>


</el-col>


</el-form-item>


<el-form-item label="Hire Date">


<el-date-picker format="yyyy-MM-dd" value-format="yyyy-MM-dd" :editable="false" v-model="queryCondition.param.hire_date_range" type="daterange" start-placeholder="start " end-placeholder="end" default-value="1980-01-01">


</el-date-picker>


 


</el-form-item>


<el-form-item label="Birth Date">


<el-date-picker format="yyyy-MM-dd" value-format="yyyy-MM-dd" :editable="false" v-model="queryCondition.param.birth_date_range" type="daterange" start-placeholder="start" end-placeholder="end" default-value="1950-01-01"></el-date-picker>


 


</el-form-item>


<el-form-item label="">


<el-button type="primary" icon="el-icon-search" @click="getData()">查询</el-button>


<el-button type="primary" @click="addEmployeeInfo()" icon="el-icon-circle-plus">增加</el-button>


</el-form-item>


</el-form>


</el-row>


</div>


<div style="height: 10px; background-color: rgb(242, 242, 242);"></div>


<div id="table">


<el-table :data="pageList.items" stripe style="width: 100%" border>


<el-table-column prop="emp_No" sortable label="No">


</el-table-column>


<el-table-column prop="first_Name" sortable label="First Name">


</el-table-column>


<el-table-column prop="last_Name" sortable label="Last Name">


</el-table-column>


<el-table-column prop="gender" sortable label="Gender">


</el-table-column>


<el-table-column prop="hire_Date_Display" sortable label="Hire Date">


</el-table-column>


<el-table-column prop="birth_Date_Display" sortable label="Birth Date">


</el-table-column>


 


<el-table-column label="操作">


<template slot-scope="scope">


<el-button


@click="getDetail(scope.row)"


type="primary"


size="small" icon="el-icon-info">


</el-button>


<el-button


@click="editEmployeeInfo(scope.row)"


type="primary"


size="small" icon="el-icon-edit">


</el-button>


<el-button


@click="deleteEmployeeInfo(scope.row)"


type="primary"


size="small" icon="el-icon-delete">


</el-button>


</template>


</el-table-column>


</el-table>


<div class="block">


<el-pagination :data="pageList" @size-change="handleSizeChange" @current-change="handleCurrentChange" :current-page="queryCondition.pageInfo.pageIndex" :page-sizes="[10,100, 200, 300, 400]" :page-size="queryCondition.pageInfo.pageSize" layout="total, sizes, prev, pager, next, jumper"


:total="pageList.totalCount">


</el-pagination>


</div>


</div>


</div>


</template>


 


<script>


export default {


data() {


return {


input: "",


pageList: [],


genderStatus: [{


vale: "",


label: ""


},


{


value: "F",


label: "Female"


},


{


value: "M",


label: "Male"


}


],


queryCondition: {


 


param: {


first_Name: "",


last_Name: "",


gender: "",


hire_date_range: null,


birth_date_range: null,


 


},


pageInfo: {


pageIndex: 1,


pageSize: 10


}


 


},


rules: {


'param.first_Name': [{


required: false,


message: "只允许字母或数字",


pattern: /[a-zA-Z0-9]/


}]


}


}


},


mounted: function() {


//debugger;


this.getData();


},


methods: {


handleSizeChange(val) {


//debugger;


//console.log(`每页 ${val} 条`);


this.queryCondition.pageInfo.pageSize = val;


this.getData();


},


handleCurrentChange(val) {


//debugger;


this.queryCondition.pageInfo.pageIndex = val;


this.getData();


},


getData() {


let _self = this;


_self.$refs["form"].validate(function(isValid) {


if (isValid) {


let url = "/Employee/query";


//debugger;


_self.$http


.post(url, _self.queryCondition)


.then(function(response) {


//debugger;


//console.log(response.data.data);


_self.pageList = response.data.data;


 


})


.catch(function(error) {


console.log(error);


});


} else {


return false;


}


})


 


},


hire_date_pick(maxDate, minDate) {


//debugger;


alert(maxDate);


},


getDetail(currentRow) {


 


this.$router.push({


path: '/index/employee/detail/' + currentRow.emp_No


});


 


},


editEmployeeInfo(currentRow) {


this.$router.push({


path: '/index/employee/edit/' + currentRow.emp_No


});


},


deleteEmployeeInfo(currentRow) {


this.$confirm('此操作将永久删除该记录, 是否继续?', '提示', {


confirmButtonText: '确定',


cancelButtonText: '取消',


type: 'warning'


}).then(() => {


let _self = this;


let url = "/employee/delete/" + currentRow.emp_No;


//debugger;


_self.$http


.post(url)


.then(function(response) {


//debugger;


//console.log(response.data.data);


if (response.data.isSuccess) {


_self.$message({


type: 'success',


message: '删除成功!'


});


 


_self.getData();


} else {


_self.$message.error("删除失败");


}


})


.catch(function(error) {


console.log(error);


});


 


 


}).catch(() => {


this.$message({


type: 'info',


message: '已取消删除'


});


});


},


addEmployeeInfo() { 


this.$router.push({


path: '/index/employee/add'


}); 


}


}


};


</script> 


<style scoped>


@import '/static/default.css';


</style>

运行效果:

 

  • ElementUI table 排序 

 

 

 

 

  • 分页 

 

 

 

  • 设置分页大小

 

 

 

  • 提交验证功能

 

 

 

  • 异步验证功能

 

 

  • 多表格信息展示

 

 

 

  • 日期选择

 

 

 

  • 时间段选择

 

 

  

  • 确认提示 

 

 

github 地址 https://github.com/hbb0b0/Hbb0b0.CMS/tree/master/hbb0b0.CMS.Portal

相关文章:

原文地址:http://www.cnblogs.com/hbb0b0/p/8399996.html


.NET社区新闻,深度好文,欢迎访问公众号文章汇总 http://www.csharpkit.com

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/322139.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

SpringCloud Greenwich(一)注册中心之nacos、Zuul和 gateway网关配置

本项目是搭建基于nacos注册中心的springcloud&#xff0c;使用zuul网关和gateway网关。 一、框架搭建 &#xff08;1&#xff09;项目结构 micro-service 服务提供者 zuul-gateway zuul网关 springcloud-gateway gateway网关 &#xff08;2&#xff09;环境 nacos 1.4.1…

欢乐ssl暑假赛【2019.8.6】

前言 莫得前言 成绩 JJJ表示初中&#xff0c;HHH表示高中后面加的是几年级&#xff0c;只放前10 RankRankRankPersonPersonPersonScoreScoreScoreAAABBBCCCDDDEEE111(J−3)WYC(J-3)WYC(J−3)WYC500500500100100100100100100100100100100100100100100100222(H−1)QYH(H-1)QYH(H…

Actor-ES框架:Ray-Handler-消息订阅器编写

消息订阅器&#xff1a;Ray是基于Event Sourcing设计的ES/Actor框架&#xff0c;消息发布后需要订阅处理&#xff0c;订阅器主要有以下两类&#xff1a;CoreHandler消息订阅器RabbitSubSubHandlerToReadHandler消息订阅器RabbitSubSQLToReadHandler&#xff08;ToReadHandler的…

Actor-ES框架:Actor编写-ESGrain与ESRepGrain

ESGrain生命周期Ray中ESGrain继承自Grain扩展了Grain的生命周期。Grain的生命周期参加文档附录&#xff1a;1-Grain生命周期-译注.mdESGrain重写了Grain的OnActivateAsync方法。ESGrain的初始化过程如下&#xff1a;初始化ESGrain中的State调用ReadSnapshotAsync()读快照。如果…

DotNetAnywhere:可供选择的 .NET 运行时

我最近在收听一个名为DotNetRock 的优质播客&#xff0c;其中有以Knockout.js而闻名的Steven Sanderson 正在讨论 " WebAssembly And Blazor "。也许你还没听过&#xff0c;Blazor 正试图凭借WebAssembly的魔力将 .NET 带入到浏览器中。如果您想了解更多信息&#xf…

SpringCloud Greenwich(二)注册中心之consul、Zuul和 gateway网关配置

本项目是搭建基于consul注册中心的springcloud&#xff0c;使用zuul网关和gateway网关 一、框架搭建 &#xff08;1&#xff09;项目结构 micro-service 服务提供者 zuul-gateway zuul网关 springcloud-gateway gateway网关 &#xff08;2&#xff09;环境 consul 1.9.0…

Actor-ES框架:消息发布器与消息存储器

消息发布器&#xff1a;Ray是基于Event Sourcing设计的ES/Actor框架&#xff0c;ESGrain状态&#xff08;State&#xff09;的修改、ESGrain之间的通信默认使用RabbitMQ通信。消息的发布器主要是RabbitPubESGrain。RabbitPub特性RabbitPub特性是RabbitMQ消息发布器。RabbitSub特…

consul的安装搭建

一、下载consul consul官网下载地址&#xff1a;https://www.consul.io/downloads 旧版本下载 consul 1.9.3直接下载地址&#xff1a; consul_1.9.3_windows_amd64.zip consul_1.9.3_linux_amd64.zip 二、安装 将consul_1.9.3_xxx.zip解压的xxx/consul目录 &#xff08;1&…

使用xUnit为.net core程序进行单元测试

一. 导读为什么要编写自动化测试程序&#xff08;Automated Tests&#xff09;&#xff1f;可以频繁的进行测试可以在任何时间进行测试&#xff0c;也可以按计划定时进行&#xff0c;例如&#xff1a;可以在半夜进行自动测试。肯定比人工测试要快。可以更快速的发现错误。基本上…

jzoj6276-[Noip提高组模拟1]树【线段树,扫描线,倍增】

正题 题目大意 一棵树&#xff0c;若干个点对&#xff0c;求不包括任何一个点对的路径数量。 解题思路 我们考虑将不合法的方案在坐标系上表示。 我们先只考虑一个点对(x,y)(x,y)(x,y)&#xff0c;若xxx和yyy没有祖先关系&#xff0c;则不合法的路径一个点在xxx的子树中&…

SpringCloud Greenwich(三)注册中心之zookeeper、Zuul和 gateway网关配置

本项目是搭建基于zookeeper注册中心的springcloud&#xff0c;使用zuul网关和gateway网关 一、框架搭建 &#xff08;1&#xff09;项目结构 micro-service 服务提供者 zuul-gateway zuul网关 springcloud-gateway gateway网关 &#xff08;2&#xff09;环境 zookeeper…

Metrics, tracing 和 logging 的关系

译者注Peter Bourgon原作&#xff1a; Metrics, tracing, and logging译者&#xff1a;吴晟原作发表时间&#xff1a; 2017年2月21日这是在OpenTracing和分布式追踪领域内广受欢迎的一篇博客文章。在构建监控系统时&#xff0c;大家往往在这几个名词和方式之间纠结。 通过这篇文…

快速序列化组件MessagePack介绍

简介MessagePack for C&#xff03;&#xff08;MessagePack-CSharp&#xff09;是用于C&#xff03;的极速MessagePack序列化程序&#xff0c;比MsgPack-Cli快10倍&#xff0c;与其他所有C&#xff03;序列化程序相比&#xff0c;具有最好的性能。 MessagePack for C&#xff…

SpringCloud Greenwich(四)注册中心之eureka、Zuul和 gateway网关配置

本项目是搭建基于eureka注册中心的springcloud&#xff0c;使用zuul网关和gateway网关 一、框架搭建 &#xff08;1&#xff09;项目结构 eureka-server eureka注册中心 micro-service 服务提供者 zuul-gateway zuul网关 springcloud-gateway gateway网关 &#xff08;…

【ASP.NET Core】给路由规则命名有何用处

上一篇中老周给伙伴们介绍了自定义视图搜索路径的方法&#xff0c;本篇咱们扯一下有关 URL 路径规则的名称问题。在扯今天的话题之前&#xff0c;先补充点东东。在上一篇中设置视图搜索路径时用到三个有序参数&#xff1a;{2}{1}{0}&#xff0c;分别是 Area、Controller、Actio…

SpringCloud Greenwich(五)之nacos、dubbo、Zuul和 gateway集成

本项目是搭建基于nacos注册中心的springcloud&#xff0c;集成dubbo框架&#xff0c;使用zuul网关和gateway网关 一、框架搭建 &#xff08;1&#xff09;项目结构 micro-service 服务提供者 zuul-gateway zuul网关 springcloud-gateway gateway网关 class-provider dubo…

.NET/.NET Core中更清晰的堆栈跟踪

在基于异常的语言中&#xff0c;堆栈跟踪是用于诊断问题最重要的工具之一。在某些情况下&#xff0c;开发人员能得到的仅为一条简短的错误信息以及堆栈跟踪&#xff0c;尤其是当个人可识别信息&#xff08;PII&#xff09;约束限制了日志记录的内容时。随着任务并行库&#xff…

SpringCloud Greenwich(六)集成dubbo与openfeign的feignTargeter报错,cannot access its superinterface Targeter

一、现象 org.springframework.beans.factory.BeanCreationException: Error creating bean with name feignTargeter defined in class path resource [org/springframework/cloud/openfeign/FeignAutoConfiguration$HystrixFeignTargeterConfiguration.class]: Initializati…

一个开源的强类型客户端(.NET 中的 Open Fegin)— Rabbit Go

在做RabbitCloud&#xff08;之前是一个RPC&#xff0c;现在是一个微服务框架&#xff09;的时候往往避不开客户端代理&#xff0c;之前把这些客户端代理都算作服务框架不可缺少的一部分&#xff0c;随着后期的深入发现这些客户端代理其实可以互通&#xff0c;类似spring cloud…

SpringCloud Greenwich(七)集成dubbo先启动消费者(check=false),然后启动提供者无法自动发现注册

SpringCloud Greenwich集成dubbo先启动消费者&#xff08;checkfalse&#xff09;&#xff0c;然后启动提供者无法自动发现注册问题。 官方说明&#xff1a;修复bug的提交时间 spring-cloud-starter-dubbo 2.2.4.RELEASE之前的版本都会有先启动消费者&#xff08;checkfalse&am…