init
This commit is contained in:
44
src/api/xq/userBanner.js
Normal file
44
src/api/xq/userBanner.js
Normal file
@@ -0,0 +1,44 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 查询我的页面推广图列表
|
||||
export function listUserBanner(query) {
|
||||
return request({
|
||||
url: '/xq/userBanner/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询我的页面推广图详细
|
||||
export function getUserBanner(id) {
|
||||
return request({
|
||||
url: '/xq/userBanner/' + id,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 新增我的页面推广图
|
||||
export function addUserBanner(data) {
|
||||
return request({
|
||||
url: '/xq/userBanner',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 修改我的页面推广图
|
||||
export function updateUserBanner(data) {
|
||||
return request({
|
||||
url: '/xq/userBanner',
|
||||
method: 'put',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 删除我的页面推广图
|
||||
export function delUserBanner(id) {
|
||||
return request({
|
||||
url: '/xq/userBanner/' + id,
|
||||
method: 'delete'
|
||||
})
|
||||
}
|
||||
@@ -641,6 +641,13 @@ export const appUserTypeList = [
|
||||
{ value: 1, label: '内部用户',listClass: listClass.warning},
|
||||
]
|
||||
|
||||
export const linkTypeBannerList = [
|
||||
{ value: 0, label: '无链接',listClass: listClass.primary},
|
||||
{ value: 1, label: '站内链接',listClass: listClass.primary},
|
||||
{ value: 2, label: '站外链接',listClass: listClass.primary},
|
||||
{ value: 3, label: '图片',listClass: listClass.primary},
|
||||
]
|
||||
|
||||
|
||||
export const professionList = [
|
||||
{ value: '运动员', label: '运动员'},
|
||||
|
||||
174
src/views/xq/userBanner/index.vue
Normal file
174
src/views/xq/userBanner/index.vue
Normal file
@@ -0,0 +1,174 @@
|
||||
<template>
|
||||
<div class="app-container">
|
||||
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
|
||||
<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="['xq:userBanner:add']"
|
||||
>新增</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="['xq:userBanner:remove']"
|
||||
>删除</el-button>
|
||||
</el-col>
|
||||
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
||||
</el-row>
|
||||
|
||||
<el-table v-loading="loading" :data="userBannerList" @selection-change="handleSelectionChange">
|
||||
<el-table-column type="selection" width="55" align="center" />
|
||||
<el-table-column label="轮播" align="center" prop="banner" />
|
||||
<el-table-column label="状态" align="center" prop="enableStatus">
|
||||
<template v-slot="scope">
|
||||
<cai-dict-tag :options="enableStatusList" :value="scope.row.enableStatus"/>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="链接类型" align="center" prop="linkType">
|
||||
<template v-slot="scope">
|
||||
<cai-dict-tag :options="linkTypeBannerList" :value="scope.row.linkType"/>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="链接" align="center" prop="linkUrl" />
|
||||
<el-table-column label="排序" align="center" prop="sort" />
|
||||
<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="['xq:userBanner:edit']"
|
||||
>修改</el-button>
|
||||
<el-button
|
||||
size="mini"
|
||||
type="text"
|
||||
icon="el-icon-delete"
|
||||
@click="handleDelete(scope.row)"
|
||||
v-hasPermi="['xq:userBanner: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"
|
||||
/>
|
||||
<user-banner-add-update-dialog v-if="userBannerAddUpdateDialogVisible" ref="userBannerAddUpdateDialog" @refreshDataList="getList" />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { delUserBanner, listUserBanner } from '@/api/xq/userBanner'
|
||||
import { enableStatusList, linkTypeBannerList } from '@/constant/statusMap'
|
||||
import UserBannerAddUpdateDialog from '@/views/xq/userBanner/user-banner-add-update-dialog.vue'
|
||||
|
||||
export default {
|
||||
name: "UserBanner",
|
||||
components: { UserBannerAddUpdateDialog},
|
||||
data() {
|
||||
return {
|
||||
linkTypeBannerList,enableStatusList,
|
||||
userBannerAddUpdateDialogVisible: false,
|
||||
// 遮罩层
|
||||
loading: true,
|
||||
// 选中数组
|
||||
ids: [],
|
||||
// 非单个禁用
|
||||
single: true,
|
||||
// 非多个禁用
|
||||
multiple: true,
|
||||
// 显示搜索条件
|
||||
showSearch: true,
|
||||
// 总条数
|
||||
total: 0,
|
||||
// 我的页面推广图表格数据
|
||||
userBannerList: [],
|
||||
// 查询参数
|
||||
queryParams: {
|
||||
pageNum: 1,
|
||||
pageSize: 10,
|
||||
},
|
||||
};
|
||||
},
|
||||
created() {
|
||||
this.getList();
|
||||
},
|
||||
methods: {
|
||||
/** 查询我的页面推广图列表 */
|
||||
getList() {
|
||||
this.loading = true;
|
||||
listUserBanner(this.queryParams).then(response => {
|
||||
this.userBannerList = response.rows;
|
||||
this.total = response.total;
|
||||
this.loading = false;
|
||||
});
|
||||
},
|
||||
/** 搜索按钮操作 */
|
||||
handleQuery() {
|
||||
this.queryParams.pageNum = 1;
|
||||
this.getList();
|
||||
},
|
||||
/** 重置按钮操作 */
|
||||
resetQuery() {
|
||||
this.resetForm("queryForm");
|
||||
this.handleQuery();
|
||||
},
|
||||
// 多选框选中数据
|
||||
handleSelectionChange(selection) {
|
||||
this.ids = selection.map(item => item.id)
|
||||
this.single = selection.length!==1
|
||||
this.multiple = !selection.length
|
||||
},
|
||||
/** 新增按钮操作 */
|
||||
handleAdd() {
|
||||
this.userBannerAddUpdateDialogVisible = true
|
||||
this.$nextTick(() => {
|
||||
this.$refs.userBannerAddUpdateDialog.init()
|
||||
})
|
||||
},
|
||||
/** 修改按钮操作 */
|
||||
handleUpdate(row) {
|
||||
this.userBannerAddUpdateDialogVisible = true
|
||||
this.$nextTick(() => {
|
||||
this.$refs.userBannerAddUpdateDialog.init(row.id)
|
||||
})
|
||||
},
|
||||
/** 删除按钮操作 */
|
||||
handleDelete(row) {
|
||||
const ids = row.id || this.ids;
|
||||
this.$modal.confirm('是否确认删除我的页面推广图编号为"' + ids + '"的数据项?').then(() => {
|
||||
this.loading = true;
|
||||
return delUserBanner(ids);
|
||||
}).then(() => {
|
||||
this.loading = false;
|
||||
this.getList();
|
||||
this.$modal.msgSuccess("删除成功");
|
||||
}).catch(() => {
|
||||
}).finally(() => {
|
||||
this.loading = false;
|
||||
});
|
||||
},
|
||||
}
|
||||
};
|
||||
</script>
|
||||
132
src/views/xq/userBanner/user-banner-add-update-dialog.vue
Normal file
132
src/views/xq/userBanner/user-banner-add-update-dialog.vue
Normal file
@@ -0,0 +1,132 @@
|
||||
<template>
|
||||
<el-dialog :title="title" :close-on-click-modal="false" :visible.sync="open" width="700px" append-to-body>
|
||||
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
|
||||
<el-form-item label="轮播图" prop="banner">
|
||||
<image-upload2 v-model="form.banner"/>
|
||||
</el-form-item>
|
||||
<el-form-item label="排序" prop="sort">
|
||||
<el-input v-model="form.sort" placeholder="请输入排序" />
|
||||
</el-form-item>
|
||||
<el-form-item label="链接类型" prop="linkType">
|
||||
<el-select v-model="form.linkType" placeholder="链接类型" size="small">
|
||||
<el-option
|
||||
v-for="dict in linkTypeBannerList"
|
||||
:key="dict.value"
|
||||
:label="dict.label"
|
||||
:value="dict.value"
|
||||
/>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="链接" prop="linkUrl" v-if="form.linkType !== 0">
|
||||
<el-input v-model="form.linkUrl" placeholder="请输入链接" />
|
||||
</el-form-item>
|
||||
<el-form-item label="状态" prop="enableStatus">
|
||||
<el-select v-model="form.enableStatus" placeholder="状态" size="small">
|
||||
<el-option
|
||||
v-for="dict in enableStatusList"
|
||||
:key="dict.value"
|
||||
:label="dict.label"
|
||||
:value="dict.value"
|
||||
/>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
<div slot="footer" class="dialog-footer">
|
||||
<el-button :loading="buttonLoading" type="primary" @click="submitForm">确 定</el-button>
|
||||
<el-button @click="open = false">取 消</el-button>
|
||||
</div>
|
||||
</el-dialog>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { enableStatusList, linkTypeBannerList } from '@/constant/statusMap'
|
||||
import { addUserBanner, getUserBanner, updateUserBanner } from '@/api/xq/userBanner'
|
||||
|
||||
export default {
|
||||
components: {
|
||||
},
|
||||
data () {
|
||||
return {
|
||||
linkTypeBannerList,enableStatusList,
|
||||
open: false,
|
||||
title: '',
|
||||
form:{
|
||||
id: undefined,
|
||||
banner: undefined,
|
||||
sort: undefined,
|
||||
title: undefined,
|
||||
enableStatus: undefined,
|
||||
linkType: 0,
|
||||
linkUrl: undefined,
|
||||
},
|
||||
// 表单校验
|
||||
rules: {
|
||||
banner: [
|
||||
{ required: true, message: "数据不能为空", trigger: "blur" }
|
||||
],
|
||||
sort: [
|
||||
{ required: true, message: "数据不能为空", trigger: "blur" }
|
||||
],
|
||||
title: [
|
||||
{ required: true, message: "数据不能为空", trigger: "blur" }
|
||||
],
|
||||
enableStatus: [
|
||||
{ required: true, message: "数据不能为空", trigger: "change" }
|
||||
],
|
||||
linkType: [
|
||||
{ required: true, message: "数据不能为空", trigger: "change" }
|
||||
],
|
||||
linkUrl: [
|
||||
{ required: true, message: "数据不能为空", trigger: "change" }
|
||||
],
|
||||
},
|
||||
buttonLoading: false,
|
||||
}
|
||||
},
|
||||
created() {
|
||||
},
|
||||
methods: {
|
||||
init (id) {
|
||||
this.form.id = id || undefined;
|
||||
this.title = (id ? "修改" : "新增") + "推广轮播";
|
||||
this.open = true;
|
||||
this.$nextTick(() => {
|
||||
this.$refs['form'].resetFields();
|
||||
if(this.form.id){
|
||||
getUserBanner(id).then(response => {
|
||||
this.form = response.data;
|
||||
});
|
||||
}
|
||||
})
|
||||
},
|
||||
// 表单提交
|
||||
submitForm () {
|
||||
this.$refs['form'].validate((valid) => {
|
||||
if (valid) {
|
||||
this.buttonLoading = true;
|
||||
if (this.form.id != null) {
|
||||
updateUserBanner(this.form).then(data => {
|
||||
this.$modal.msgSuccess("修改成功");
|
||||
this.$modal.buttonLoading = false;
|
||||
this.open = false
|
||||
this.$emit('refreshDataList')
|
||||
}).finally(() => {
|
||||
this.buttonLoading = false;
|
||||
});
|
||||
}else{
|
||||
addUserBanner(this.form).then(data => {
|
||||
this.$modal.msgSuccess("修改成功");
|
||||
this.buttonLoading = false;
|
||||
this.open = false
|
||||
this.$emit('refreshDataList')
|
||||
}).finally(() => {
|
||||
this.buttonLoading = false;
|
||||
});
|
||||
}
|
||||
|
||||
}
|
||||
})
|
||||
},
|
||||
}
|
||||
}
|
||||
</script>
|
||||
Reference in New Issue
Block a user