Browse Source

添加足迹,收藏后端管理

master
xuwenbo 4 years ago
parent
commit
ff9668870b
  1. 27
      src/api/yxStoreProductRelation.js
  2. 145
      src/views/shop/collect/index.vue
  3. 20
      src/views/shop/foot/index.vue
  4. 3
      src/views/wechat/template/index.vue

27
src/api/yxStoreProductRelation.js

@ -0,0 +1,27 @@
import request from '@/utils/request'
export function add(data) {
return request({
url: 'api/yxStoreProductRelation',
method: 'post',
data
})
}
export function del(ids) {
return request({
url: 'api/yxStoreProductRelation/',
method: 'delete',
data: ids
})
}
export function edit(data) {
return request({
url: 'api/yxStoreProductRelation',
method: 'put',
data
})
}
export default { add, edit, del }

145
src/views/shop/collect/index.vue

@ -0,0 +1,145 @@
<template>
<div class="app-container">
<!--工具栏-->
<div class="head-container">
<!--如果想在工具栏加入更多按钮可以使用插槽方式 slot = 'left' or 'right'-->
<!--表单组件-->
<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="用户ID" prop="uid">
<el-input v-model="form.uid" style="width: 370px;" />
</el-form-item>
<el-form-item label="商品ID" prop="productId">
<el-input v-model="form.productId" style="width: 370px;" />
</el-form-item>
<el-form-item label="类型(收藏(collect)、点赞(like))">
<el-input v-model="form.type" style="width: 370px;" />
</el-form-item>
<el-form-item label="某种类型的商品(普通商品、秒杀商品)">
<el-input v-model="form.category" style="width: 370px;" />
</el-form-item>
<el-form-item label="添加时间" prop="createTime">
<el-input v-model="form.createTime" style="width: 370px;" />
</el-form-item>
<el-form-item label="updateTime">
<el-input v-model="form.updateTime" style="width: 370px;" />
</el-form-item>
<el-form-item label="isDel">
<el-input v-model="form.isDel" 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('uid')" prop="uid" label="用户ID" />
<el-table-column v-if="columns.visible('userName')" prop="uid" label="用户名" />
<el-table-column v-if="columns.visible('productId')" prop="productId" label="商品ID" />
<el-table-column v-if="columns.visible('product')" prop="product.name" label="商品名称" />
<el-table-column ref="table" prop="product.image" label="商品图片">
<template slot-scope="scope">
<a :href="scope.row.image" style="color: #42b983" target="_blank"><img :src="scope.row.image" alt="点击打开" class="el-avatar"></a>
</template>
</el-table-column>
<el-table-column prop="type" label="消息类型">
<template slot-scope="scope">
<div>
<el-tag v-if="scope.row.type == 'collect'" :type="''">收藏</el-tag>
<el-tag v-else :type=" 'info' ">足迹</el-tag>
</div>
</template>
</el-table-column>
<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="updateTime">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.updateTime) }}</span>
</template>
</el-table-column>
<el-table-column v-if="columns.visible('isDel')" prop="isDel" label="isDel" />
</el-table>
<!--分页组件-->
<pagination />
</div>
</div>
</template>
<script>
import crudYxStoreProductRelation from '@/api/yxStoreProductRelation'
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";
// crudpresenter
const defaultCrud = CRUD({ title: 'ProductRelation', url: 'api/yxStoreProductRelation', sort: 'creat_time,desc', crudMethod: { ...crudYxStoreProductRelation }})
const defaultForm = { id: null, uid: null, productId: null, type: null, category: null, createTime: null, updateTime: null, isDel: null }
export default {
name: 'YxStoreProductRelation',
components: { pagination, crudOperation, rrOperation, udOperation ,MaterialList},
mixins: [presenter(defaultCrud), header(), form(defaultForm), crud()],
data() {
return {
permission: {
add: ['admin', 'yxStoreProductRelation:add'],
edit: ['admin', 'yxStoreProductRelation:edit'],
del: ['admin', 'yxStoreProductRelation:del']
},
rules: {
uid: [
{ required: true, message: '用户ID不能为空', trigger: 'blur' }
],
productId: [
{ required: true, message: '商品ID不能为空', trigger: 'blur' }
],
createTime: [
{ required: true, message: '添加时间不能为空', trigger: 'blur' }
]
} }
},
watch: {
},
methods: {
//
[CRUD.HOOK.beforeRefresh]() {
this.crud.params[query.type] = 'collect'
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>

20
src/views/shop/foot/index.vue

@ -41,9 +41,22 @@
<el-table-column type="selection" width="55" /> <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('id')" prop="id" label="id" />
<el-table-column v-if="columns.visible('uid')" prop="uid" label="用户ID" /> <el-table-column v-if="columns.visible('uid')" prop="uid" label="用户ID" />
<el-table-column v-if="columns.visible('userName')" prop="uid" label="用户名" />
<el-table-column v-if="columns.visible('productId')" prop="productId" label="商品ID" /> <el-table-column v-if="columns.visible('productId')" prop="productId" label="商品ID" />
<el-table-column v-if="columns.visible('type')" prop="type" label="类型(收藏(collect)、点赞(like))" /> <el-table-column v-if="columns.visible('product')" prop="product.name" label="商品名称" />
<el-table-column v-if="columns.visible('category')" prop="category" label="某种类型的商品(普通商品、秒杀商品)" /> <el-table-column ref="table" prop="product.image" label="商品图片">
<template slot-scope="scope">
<a :href="scope.row.image" style="color: #42b983" target="_blank"><img :src="scope.row.image" alt="点击打开" class="el-avatar"></a>
</template>
</el-table-column>
<el-table-column prop="type" label="消息类型">
<template slot-scope="scope">
<div>
<el-tag v-if="scope.row.type == 'collect'" :type="''">收藏</el-tag>
<el-tag v-else :type=" 'info' ">足迹</el-tag>
</div>
</template>
</el-table-column>
<el-table-column v-if="columns.visible('createTime')" prop="createTime" label="添加时间"> <el-table-column v-if="columns.visible('createTime')" prop="createTime" label="添加时间">
<template slot-scope="scope"> <template slot-scope="scope">
<span>{{ parseTime(scope.row.createTime) }}</span> <span>{{ parseTime(scope.row.createTime) }}</span>
@ -72,7 +85,7 @@ import pagination from '@crud/Pagination'
import MaterialList from "@/components/material"; import MaterialList from "@/components/material";
// crudpresenter // crudpresenter
const defaultCrud = CRUD({ title: 'ProductRelation', url: 'api/yxStoreProductRelation', sort: 'id,desc', crudMethod: { ...crudYxStoreProductRelation }}) const defaultCrud = CRUD({ title: 'ProductRelation', url: 'api/yxStoreProductRelation', sort: 'creat_time,desc', crudMethod: { ...crudYxStoreProductRelation }})
const defaultForm = { id: null, uid: null, productId: null, type: null, category: null, createTime: null, updateTime: null, isDel: null } const defaultForm = { id: null, uid: null, productId: null, type: null, category: null, createTime: null, updateTime: null, isDel: null }
export default { export default {
name: 'YxStoreProductRelation', name: 'YxStoreProductRelation',
@ -103,6 +116,7 @@ export default {
methods: { methods: {
// //
[CRUD.HOOK.beforeRefresh]() { [CRUD.HOOK.beforeRefresh]() {
this.crud.params[query.type] = 'foot'
return true return true
}, // }, //
[CRUD.HOOK.afterToCU](crud, form) { [CRUD.HOOK.afterToCU](crud, form) {

3
src/views/wechat/template/index.vue

@ -128,7 +128,8 @@ export default {
content: data.content, content: data.content,
tempid: data.tempid, tempid: data.tempid,
addTime: data.addTime, addTime: data.addTime,
status: data.status status: data.status,
type: data.type
} }
_this.dialog = true _this.dialog = true
} }

Loading…
Cancel
Save