摘要:
1.安装: 进入到工程根目录下,然后 运行命令安装: npm i axios -S 2.在src/util/request.js: import axios from 'axios' //导入const request = axios.create({ //创建一个request对象 baseURL 阅读全文
摘要:
1.npm install lib-flexible 2.然后在main里引入组件 : import 'lib-flexible/flexible.js' 3.npm install postcss-plugin-px2rem --save 4.然后在vue.config.js(在项目根目录下,没有 阅读全文
摘要:
1.table显示图片: <el-table-column min-width="55" prop="spliderimgurl" label="照片"> <template slot-scope="scope"> <img :src="scope.row.spliderimgurl" style= 阅读全文
摘要:
home.vue代码: <template> <el-container style="min-height: 100vh;"> <el-aside :width="sideWidth + 'px'" style="background-color: rgb(238, 241, 246); box- 阅读全文
摘要:
1.CorsConfig.java package com.example.demo.config; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.C 阅读全文
摘要:
1 阅读全文
摘要:
1.添加代码: <el-table-column lable="操作"> <template slot-scope="scope"> <el-button type="success">编辑 <i class="el-icon-edit"></i></el-button> <el-button ty 阅读全文
摘要:
1.增加代码: <!--两个div层之间都用margin,则会自动隔开--> <div style="margin: 10px 0px"> <el-button type="primary">新增 <i class="el-icon-circle-plus-outline"></i></el-but 阅读全文
摘要:
1.el-table中使用: <el-table :data="tableData" border stripe :header-cell-class-name="headerBg"> 2.在return中返回: export default { name: 'Home', data(){ cons 阅读全文
摘要:
添加代码: <div style="padding: 10px 0px"> <!--prefix-icon="el-icon-user",表示加一个搜素图标,设置在头--> <!--suffix-icon="el-icon-tickets"",表示加一个搜素图标,设置在尾--> <!--placeh 阅读全文
摘要:
el-table控件下增加分页代码 <div style="padding: 10px 0px"> <!--内边距空一些--> <el-pagination @size-change="handleSizeChange" @current-change="handleCurrentChange" : 阅读全文