Compare commits

...

3 Commits

Author SHA1 Message Date
yaoxin f19f87d31d day_01作业前台 2024-02-29 11:58:15 +08:00
yaoxin 7370dfb27a day_01作业前台 2024-02-26 15:05:07 +08:00
yaoxin 47d3ecd828 day_01作业前台 2024-02-23 15:07:56 +08:00
6 changed files with 402 additions and 15 deletions

View File

@ -0,0 +1,44 @@
import request from '@/utils/request'
// 查询【请填写功能名称】列表
export function listInfo(query) {
return request({
url: '/system/info/list',
method: 'get',
params: query
})
}
// 查询【请填写功能名称】详细
export function getInfo(bid) {
return request({
url: '/system/info/' + bid,
method: 'get'
})
}
// 新增【请填写功能名称】
export function addInfo(data) {
return request({
url: '/system/info',
method: 'post',
data: data
})
}
// 修改【请填写功能名称】
export function updateInfo(data) {
return request({
url: '/system/info',
method: 'put',
data: data
})
}
// 删除【请填写功能名称】
export function delInfo(bid) {
return request({
url: '/system/info/' + bid,
method: 'delete'
})
}

View File

@ -149,7 +149,8 @@ export default {
}, },
// //
handleUploadSuccess(res, file) { handleUploadSuccess(res, file) {
if (res.data.code === 200) { if (res.code === 200) {
console.log(res)
this.uploadList.push({name: res.data.url, url: res.data.url}); this.uploadList.push({name: res.data.url, url: res.data.url});
this.uploadedSuccessfully(); this.uploadedSuccessfully();
} else { } else {

View File

@ -0,0 +1,329 @@
<template>
<div class="app-container">
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
<el-form-item label="书籍名称" prop="title">
<el-input
v-model="queryParams.title"
placeholder="请输入书籍名称"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="作者名称" prop="author">
<el-input
v-model="queryParams.author"
placeholder="请输入作者名称"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="书籍类型" prop="type">
<el-select v-model="queryParams.type" clearable placeholder="书籍类型">
<el-option
v-for="dict in dict.type.book_type"
:key="dict.value"
:label="dict.label"
:value="dict.value"
/>
</el-select>
</el-form-item>
<el-form-item label="创建时间">
<el-date-picker
v-model="queryParams.staTime"
type="datetime"
value-format="yyyy-MM-dd HH:mm:ss"
placeholder="选择开始时间">
</el-date-picker>-
<el-date-picker
v-model="queryParams.endTime"
type="datetime"
value-format="yyyy-MM-dd HH:mm:ss"
placeholder="选择结束时间">
</el-date-picker>
</el-form-item>
<el-form-item>
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery"></el-button>
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery"></el-button>
</el-form-item>
</el-form>
<el-row :gutter="10" class="mb8">
<el-col :span="1.5">
<el-button
type="primary"
plain
icon="el-icon-plus"
size="mini"
@click="handleAdd"
v-hasPermi="['system:book:list']"
>新增</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="success"
plain
icon="el-icon-edit"
size="mini"
:disabled="single"
@click="handleUpdate"
v-hasPermi="['system:info:edit']"
>修改</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="danger"
plain
icon="el-icon-delete"
size="mini"
:disabled="multiple"
@click="handleDelete"
v-hasPermi="['system:info:remove']"
>删除</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="warning"
plain
icon="el-icon-download"
size="mini"
@click="handleExport"
v-hasPermi="['system:info:export']"
>导出</el-button>
</el-col>
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
<el-table v-loading="loading" :data="infoList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" />
<el-table-column label="书籍编号" align="center" prop="bid" />
<el-table-column label="书籍名称" align="center" prop="title" />
<el-table-column label="作者名称" align="center" prop="author" />
<el-table-column align="center" label="书籍类型" prop="type">
<template slot-scope="scope">
<dict-tag :options="dict.type.book_type" :value="scope.row.type"/>
</template>
</el-table-column>
<el-table-column label="图片" align="center" prop="image" width="100">
<template slot-scope="scope">
<image-preview :src="scope.row.image" :width="50" :height="50"/>
</template>
</el-table-column>
<el-table-column label="书籍介绍" align="center" prop="description" />
<el-table-column label="创建时间" align="center" prop="createTime" width="180">
<template slot-scope="scope">
<span>{{ scope.row.createTime }}</span>
</template>
</el-table-column>
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
<template slot-scope="scope">
<el-button
size="mini"
type="text"
icon="el-icon-edit"
@click="handleUpdate(scope.row)"
v-hasPermi="['system:info:edit']"
>修改</el-button>
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
v-hasPermi="['system:info:remove']"
>删除</el-button>
</template>
</el-table-column>
</el-table>
<pagination
v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
<!-- 添加或修改请填写功能名称对话框 -->
<el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
<el-form-item label="书籍名称" prop="title">
<el-input v-model="form.title" placeholder="请输入书籍名称" />
</el-form-item>
<el-form-item label="作者名称" prop="author">
<el-input v-model="form.author" placeholder="请输入作者名称" />
</el-form-item>
<el-form-item label="图片" prop="image">
<image-upload v-model="form.image"/>
</el-form-item>
<el-form-item label="书籍介绍" prop="description">
<el-input v-model="form.description" placeholder="请输入书籍介绍" />
</el-form-item>
<el-form-item label="书籍类型" prop="type">
<el-select v-model="form.type" clearable placeholder="书籍类型">
<el-option
v-for="dict in dict.type.book_type"
:key="dict.value"
:label="dict.label"
:value="dict.value"
/>
</el-select>
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitForm"> </el-button>
<el-button @click="cancel"> </el-button>
</div>
</el-dialog>
</div>
</template>
<script>
import { listInfo, getInfo, delInfo, addInfo, updateInfo } from "@/api/system/book";
export default {
name: "Info",
dicts: ['book_type'],
data() {
return {
//
loading: true,
//
ids: [],
//
single: true,
//
multiple: true,
//
showSearch: true,
//
total: 0,
//
infoList: [],
//
title: "",
//
open: false,
//
queryParams: {
pageNum: 1,
pageSize: 10,
title: null,
author: null,
type: null
},
//
form: {},
//
rules: {
}
};
},
created() {
this.getList();
},
methods: {
/** 查询【请填写功能名称】列表 */
getList() {
this.loading = true;
listInfo(this.queryParams).then(response => {
console.log(response)
this.infoList = response.data.rows;
this.total = response.data.total;
this.loading = false;
});
},
//
cancel() {
this.open = false;
this.reset();
},
//
reset() {
this.form = {
bid: null,
title: null,
author: null,
type: null,
image: null,
description: null,
shelfTime: null,
createBy: null,
createTime: null,
updateBy: null,
updateTime: null,
remark: null
};
this.resetForm("form");
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.resetForm("queryForm");
this.handleQuery();
},
//
handleSelectionChange(selection) {
this.ids = selection.map(item => item.bid)
this.single = selection.length!==1
this.multiple = !selection.length
},
/** 新增按钮操作 */
handleAdd() {
this.reset();
this.open = true;
this.title = "添加【请填写功能名称】";
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
const bid = row.bid || this.ids
getInfo(bid).then(response => {
this.form = response.data;
this.open = true;
this.title = "修改【请填写功能名称】";
});
},
/** 提交按钮 */
submitForm() {
this.$refs["form"].validate(valid => {
if (valid) {
if (this.form.bid != null) {
updateInfo(this.form).then(response => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.getList();
});
} else {
addInfo(this.form).then(response => {
this.$modal.msgSuccess("新增成功");
this.open = false;
this.getList();
});
}
}
});
},
/** 删除按钮操作 */
handleDelete(row) {
const bids = row.bid || this.ids;
this.$modal.confirm('是否确认删除【请填写功能名称】编号为"' + bids + '"的数据项?').then(function() {
return delInfo(bids);
}).then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
}).catch(() => {});
},
/** 导出按钮操作 */
handleExport() {
this.download('system/info/export', {
...this.queryParams
}, `info_${new Date().getTime()}.xlsx`)
}
}
};
</script>

View File

@ -1,26 +1,26 @@
<template> <template>
<div class="app-container"> <div class="app-container">
<el-form v-show="showSearch" ref="queryForm" :inline="true" :model="queryParams" label-width="68px" size="small"> <el-form v-show="showSearch" ref="queryForm" :inline="true" :model="queryParams" label-width="68px" size="small">
<el-form-item label="参数名称" prop="configName"> <el-form-item label="书籍名称" prop="title">
<el-input <el-input
v-model="queryParams.configName" v-model="queryParams.title"
clearable clearable
placeholder="请输入参数名称" placeholder="请输入书籍名称"
style="width: 240px" style="width: 240px"
@keyup.enter.native="handleQuery" @keyup.enter.native="handleQuery"
/> />
</el-form-item> </el-form-item>
<el-form-item label="参数键名" prop="configKey"> <el-form-item label="作者名称" prop="author">
<el-input <el-input
v-model="queryParams.configKey" v-model="queryParams.author"
clearable clearable
placeholder="请输入参数键名" placeholder="请输入作者名称"
style="width: 240px" style="width: 240px"
@keyup.enter.native="handleQuery" @keyup.enter.native="handleQuery"
/> />
</el-form-item> </el-form-item>
<el-form-item label="系统内置" prop="configType"> <el-form-item label="书籍类型" prop="type">
<el-select v-model="queryParams.configType" clearable placeholder="系统内置"> <el-select v-model="queryParams.type" clearable placeholder="书籍类型">
<el-option <el-option
v-for="dict in dict.type.sys_yes_no" v-for="dict in dict.type.sys_yes_no"
:key="dict.value" :key="dict.value"
@ -193,7 +193,7 @@ import {addConfig, delConfig, getConfig, listConfig, refreshCache, updateConfig}
export default { export default {
name: "Config", name: "Config",
dicts: ['sys_yes_no'], dicts: ['book_type'],
data() { data() {
return { return {
// //
@ -220,8 +220,8 @@ export default {
queryParams: { queryParams: {
pageNum: 1, pageNum: 1,
pageSize: 10, pageSize: 10,
configName: undefined, title: undefined,
configKey: undefined, author: undefined,
configType: undefined configType: undefined
}, },
// //
@ -262,8 +262,8 @@ export default {
// //
reset() { reset() {
this.form = { this.form = {
configId: undefined, title: undefined,
configName: undefined, author: undefined,
configKey: undefined, configKey: undefined,
configValue: undefined, configValue: undefined,
configType: "Y", configType: "Y",

View File

@ -0,0 +1,13 @@
<template>
</template>
<script>
export default {
name: "index"
}
</script>
<style scoped>
</style>

View File

@ -35,7 +35,7 @@ module.exports = {
proxy: { proxy: {
// detail: https://cli.vuejs.org/config/#devserver-proxy // detail: https://cli.vuejs.org/config/#devserver-proxy
[process.env.VUE_APP_BASE_API]: { [process.env.VUE_APP_BASE_API]: {
target: `http://localhost:8080`, target: `http://127.0.0.1:18080`,
changeOrigin: true, changeOrigin: true,
pathRewrite: { pathRewrite: {
['^' + process.env.VUE_APP_BASE_API]: '' ['^' + process.env.VUE_APP_BASE_API]: ''