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