8 changed files with 196 additions and 14 deletions
@ -0,0 +1,27 @@ |
|||||||
|
import request from '@/utils/request' |
||||||
|
|
||||||
|
export function add(data) { |
||||||
|
return request({ |
||||||
|
url: 'bxg/api/yxStoreBrand', |
||||||
|
method: 'post', |
||||||
|
data |
||||||
|
}) |
||||||
|
} |
||||||
|
|
||||||
|
export function del(ids) { |
||||||
|
return request({ |
||||||
|
url: 'bxg/api/yxStoreBrand/', |
||||||
|
method: 'delete', |
||||||
|
data: ids |
||||||
|
}) |
||||||
|
} |
||||||
|
|
||||||
|
export function edit(data) { |
||||||
|
return request({ |
||||||
|
url: 'bxg/api/yxStoreBrand', |
||||||
|
method: 'put', |
||||||
|
data |
||||||
|
}) |
||||||
|
} |
||||||
|
|
||||||
|
export default { add, edit, del } |
@ -0,0 +1,134 @@ |
|||||||
|
<template> |
||||||
|
<div class="app-container"> |
||||||
|
<!--工具栏--> |
||||||
|
<div class="head-container"> |
||||||
|
<!--如果想在工具栏加入更多按钮,可以使用插槽方式, slot = 'left' or 'right'--> |
||||||
|
<div v-if="crud.props.searchToggle"> |
||||||
|
<!-- 搜索 --> |
||||||
|
<el-input v-model="query.cateName" clearable size="small" placeholder="输入品牌名称搜索" style="width: 200px;" class="filter-item" @keyup.enter.native="crud.toQuery" /> |
||||||
|
<rrOperation :crud="crud" /> |
||||||
|
</div> |
||||||
|
<crudOperation :permission="permission" /> |
||||||
|
<!--表单组件--> |
||||||
|
<el-dialog :close-on-click-modal="false" :before-close="crud.cancelCU" :visible.sync="crud.status.cu > 0" :title="crud.status.title" width="500px"> |
||||||
|
<el-form ref="form" :model="form" :rules="rules" size="small" label-width="80px"> |
||||||
|
<el-form-item label="品牌ID"> |
||||||
|
<el-input v-model="form.id" style="width: 370px;" /> |
||||||
|
</el-form-item> |
||||||
|
<el-form-item label="品牌名称" prop="brandName"> |
||||||
|
<el-input v-model="form.brandName" style="width: 370px;" /> |
||||||
|
</el-form-item> |
||||||
|
<el-form-item label="排序"> |
||||||
|
<el-input v-model="form.sort" style="width: 370px;" /> |
||||||
|
</el-form-item> |
||||||
|
<el-form-item label="图标"> |
||||||
|
<!-- <el-input v-model="form.pic" style="width: 370px;" />--> |
||||||
|
<MaterialList v-model="picArr" type="image" :num="1" :width="150" :height="150" /> |
||||||
|
</el-form-item> |
||||||
|
<el-form-item label="是否推荐"> |
||||||
|
<el-input v-model="form.isShow" style="width: 370px;" /> |
||||||
|
</el-form-item> |
||||||
|
</el-form> |
||||||
|
<div slot="footer" class="dialog-footer"> |
||||||
|
<el-button type="text" @click="crud.cancelCU">取消</el-button> |
||||||
|
<el-button :loading="crud.cu === 2" type="primary" @click="crud.submitCU">确认</el-button> |
||||||
|
</div> |
||||||
|
</el-dialog> |
||||||
|
<!--表格渲染--> |
||||||
|
<el-table ref="table" v-loading="crud.loading" :data="crud.data" size="small" style="width: 100%;" @selection-change="crud.selectionChangeHandler"> |
||||||
|
<el-table-column type="selection" width="55" /> |
||||||
|
<el-table-column v-if="columns.visible('id')" prop="id" label="品牌ID" /> |
||||||
|
<el-table-column v-if="columns.visible('brandName')" prop="brandName" label="品牌名称" /> |
||||||
|
<el-table-column v-if="columns.visible('sort')" prop="sort" label="排序" /> |
||||||
|
<el-table-column v-if="columns.visible('pic')" prop="pic" label="图标" /> |
||||||
|
<el-table-column v-if="columns.visible('isShow')" prop="isShow" label="是否推荐" /> |
||||||
|
<el-table-column v-if="columns.visible('createTime')" prop="createTime" label="添加时间"> |
||||||
|
<template slot-scope="scope"> |
||||||
|
<span>{{ parseTime(scope.row.createTime) }}</span> |
||||||
|
</template> |
||||||
|
</el-table-column> |
||||||
|
<el-table-column v-if="columns.visible('updateTime')" prop="updateTime" label="更新时间"> |
||||||
|
<template slot-scope="scope"> |
||||||
|
<span>{{ parseTime(scope.row.updateTime) }}</span> |
||||||
|
</template> |
||||||
|
</el-table-column> |
||||||
|
<el-table-column v-permission="['admin','yxStoreBrand:edit','yxStoreBrand:del']" label="操作" width="150px" align="center"> |
||||||
|
<template slot-scope="scope"> |
||||||
|
<udOperation |
||||||
|
:data="scope.row" |
||||||
|
:permission="permission" |
||||||
|
/> |
||||||
|
</template> |
||||||
|
</el-table-column> |
||||||
|
</el-table> |
||||||
|
<!--分页组件--> |
||||||
|
<pagination /> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
</template> |
||||||
|
|
||||||
|
<script> |
||||||
|
import crudYxStoreBrand from '@/api/bxg/yxStoreBrand' |
||||||
|
import CRUD, { presenter, header, form, crud } from '@crud/crud' |
||||||
|
import rrOperation from '@crud/RR.operation' |
||||||
|
import crudOperation from '@crud/CRUD.operation' |
||||||
|
import udOperation from '@crud/UD.operation' |
||||||
|
import pagination from '@crud/Pagination' |
||||||
|
import MaterialList from "@/components/material"; |
||||||
|
|
||||||
|
// crud交由presenter持有 |
||||||
|
const defaultCrud = CRUD({ title: 'brand', url: '/bxg/api/yxStoreBrand', sort: 'id,desc', crudMethod: { ...crudYxStoreBrand }}) |
||||||
|
const defaultForm = { id: null, brandName: null, sort: null, pic: null, isShow: null, createTime: null, updateTime: null, isDel: null, tenantId: null } |
||||||
|
export default { |
||||||
|
name: 'YxStoreBrand', |
||||||
|
components: { pagination, crudOperation, rrOperation, udOperation ,MaterialList}, |
||||||
|
mixins: [presenter(defaultCrud), header(), form(defaultForm), crud()], |
||||||
|
data() { |
||||||
|
return { |
||||||
|
picArr: [], |
||||||
|
permission: { |
||||||
|
add: ['admin', 'yxStoreBrand:add'], |
||||||
|
edit: ['admin', 'yxStoreBrand:edit'], |
||||||
|
del: ['admin', 'yxStoreBrand:del'] |
||||||
|
}, |
||||||
|
rules: { |
||||||
|
brandName: [ |
||||||
|
{ required: true, message: '品牌名称不能为空', trigger: 'blur' } |
||||||
|
] |
||||||
|
} } |
||||||
|
}, |
||||||
|
watch: { |
||||||
|
picArr: function(val) { |
||||||
|
console.log(); |
||||||
|
this.form.pic = val.join(',') |
||||||
|
} |
||||||
|
}, |
||||||
|
methods: { |
||||||
|
// 获取数据前设置好接口地址 |
||||||
|
[CRUD.HOOK.beforeRefresh]() { |
||||||
|
return true |
||||||
|
}, // 新增与编辑前做的操作 |
||||||
|
[CRUD.HOOK.afterToCU](crud, form) { |
||||||
|
}, |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</script> |
||||||
|
|
||||||
|
<style scoped> |
||||||
|
.table-img { |
||||||
|
display: inline-block; |
||||||
|
text-align: center; |
||||||
|
background: #ccc; |
||||||
|
color: #fff; |
||||||
|
white-space: nowrap; |
||||||
|
position: relative; |
||||||
|
overflow: hidden; |
||||||
|
vertical-align: middle; |
||||||
|
width: 32px; |
||||||
|
height: 32px; |
||||||
|
line-height: 32px; |
||||||
|
} |
||||||
|
</style> |
Loading…
Reference in new issue