yshop1.4版本发布,新增积分会员功能等,详细看文档介绍

This commit is contained in:
hupeng
2019-12-08 17:03:34 +08:00
parent 17aa0f4676
commit 6d570d39c4
22 changed files with 994 additions and 31 deletions

View File

@ -0,0 +1,143 @@
<template>
<el-dialog :append-to-body="true" :close-on-click-modal="false" :before-close="cancel" :visible.sync="dialog" :title="isAdd ? '新增' : '编辑'" width="600px">
<el-form ref="form" :model="form" :rules="rules" size="small" label-width="100px">
<el-form-item label="等级名称" >
<el-input v-model="form.name" style="width: 370px;"/>
</el-form-item>
<el-form-item label="是否永久" >
<el-radio v-model="form.isForever" :label="1">是</el-radio>
<el-radio v-model="form.isForever" :label="0" style="width: 200px;">否</el-radio>
</el-form-item>
<el-form-item label="有效时间(天)" >
<el-input v-model="form.validDate" style="width: 370px;"/>
</el-form-item>
<el-form-item label="会员等级" >
<el-input v-model="form.grade" style="width: 370px;"/>
</el-form-item>
<el-form-item label="享受折扣" >
<el-input v-model="form.discount" style="width: 370px;"/>
</el-form-item>
<el-form-item label="会员背景" >
<pic-upload v-model="form.image"/>
</el-form-item>
<el-form-item label="会员图标" >
<pic-upload v-model="form.icon"/>
</el-form-item>
<el-form-item label="是否显示" >
<el-radio v-model="form.isShow" :label="1"></el-radio>
<el-radio v-model="form.isShow" :label="0" style="width: 200px;"></el-radio>
</el-form-item>
<el-form-item label="说明" >
<el-input v-model="form.explain" rows="3" type="textarea"/>
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="text" @click="cancel">取消</el-button>
<el-button :loading="loading" type="primary" @click="doSubmit">确认</el-button>
</div>
</el-dialog>
</template>
<script>
import { add, edit } from '@/api/yxSystemUserLevel'
import picUpload from '@/components/pic-upload'
export default {
components: { picUpload },
props: {
isAdd: {
type: Boolean,
required: true
}
},
data() {
return {
loading: false, dialog: false,
form: {
id: '',
merId: '',
name: '',
money: '',
validDate: '',
isForever: '',
isPay: '',
isShow: '',
grade: '',
discount: '',
image: '',
icon: '',
explain: '',
addTime: '',
isDel: ''
},
rules: {
}
}
},
methods: {
cancel() {
this.resetForm()
},
doSubmit() {
this.loading = true
if (this.isAdd) {
this.doAdd()
} else this.doEdit()
},
doAdd() {
add(this.form).then(res => {
this.resetForm()
this.$notify({
title: '添加成功',
type: 'success',
duration: 2500
})
this.loading = false
this.$parent.init()
}).catch(err => {
this.loading = false
console.log(err.response.data.message)
})
},
doEdit() {
edit(this.form).then(res => {
this.resetForm()
this.$notify({
title: '修改成功',
type: 'success',
duration: 2500
})
this.loading = false
this.$parent.init()
}).catch(err => {
this.loading = false
console.log(err.response.data.message)
})
},
resetForm() {
this.dialog = false
this.$refs['form'].resetFields()
this.form = {
id: '',
merId: '',
name: '',
money: '',
validDate: '',
isForever: '',
isPay: '',
isShow: '',
grade: '',
discount: '',
image: '',
icon: '',
explain: '',
addTime: '',
isDel: ''
}
}
}
}
</script>
<style scoped>
</style>

View File

@ -0,0 +1,147 @@
<template>
<div class="app-container">
<!--工具栏-->
<div class="head-container">
<!-- 新增 -->
<div style="display: inline-block;margin: 0px 2px;">
<el-button
v-permission="['ADMIN','YXSYSTEMUSERLEVEL_ALL','YXSYSTEMUSERLEVEL_CREATE']"
class="filter-item"
size="mini"
type="primary"
icon="el-icon-plus"
@click="add">新增</el-button>
</div>
</div>
<!--表单组件-->
<eForm ref="form" :is-add="isAdd"/>
<!--表格渲染-->
<el-table v-loading="loading" :data="data" size="small" style="width: 100%;">
<el-table-column prop="id" label="id"/>
<el-table-column prop="icon" label="等级图标">
<template slot-scope="scope">
<a :href="scope.row.icon" style="color: #42b983" target="_blank"><img :src="scope.row.icon" alt="点击打开" class="el-avatar"></a>
</template>
</el-table-column>
<el-table-column prop="name" label="等级名称"/>
<el-table-column prop="grade" label="会员等级"/>
<el-table-column prop="discount" label="享受折扣"/>
<el-table-column prop="validDate" label="有效时间"/>
<el-table-column prop="isForever" label="是否永久">
<template slot-scope="scope">
<el-tag v-if="scope.row.isForever === 1" style="cursor: pointer" :type="''"></el-tag>
<el-tag style="cursor: pointer" v-else :type=" 'info' "></el-tag>
</template>
</el-table-column>
<el-table-column prop="isShow" label="是否显示">
<template slot-scope="scope">
<el-tag v-if="scope.row.isShow === 1" style="cursor: pointer" :type="''"></el-tag>
<el-tag style="cursor: pointer" v-else :type=" 'info' "></el-tag>
</template>
</el-table-column>
<el-table-column v-if="checkPermission(['ADMIN','YXSYSTEMUSERLEVEL_ALL','YXSYSTEMUSERLEVEL_EDIT','YXSYSTEMUSERLEVEL_DELETE'])" label="操作" width="150px" align="center">
<template slot-scope="scope">
<el-button v-permission="['ADMIN','YXSYSTEMUSERLEVEL_ALL','YXSYSTEMUSERLEVEL_EDIT']" size="mini" type="primary" icon="el-icon-edit" @click="edit(scope.row)"/>
<el-popover
v-permission="['ADMIN','YXSYSTEMUSERLEVEL_ALL','YXSYSTEMUSERLEVEL_DELETE']"
:ref="scope.row.id"
placement="top"
width="180">
<p>确定删除本条数据吗</p>
<div style="text-align: right; margin: 0">
<el-button size="mini" type="text" @click="$refs[scope.row.id].doClose()">取消</el-button>
<el-button :loading="delLoading" type="primary" size="mini" @click="subDelete(scope.row.id)">确定</el-button>
</div>
<el-button slot="reference" type="danger" icon="el-icon-delete" size="mini"/>
</el-popover>
</template>
</el-table-column>
</el-table>
<!--分页组件-->
<el-pagination
:total="total"
:current-page="page + 1"
style="margin-top: 8px;"
layout="total, prev, pager, next, sizes"
@size-change="sizeChange"
@current-change="pageChange"/>
</div>
</template>
<script>
import checkPermission from '@/utils/permission'
import initData from '@/mixins/initData'
import { del } from '@/api/yxSystemUserLevel'
import eForm from './form'
export default {
components: { eForm },
mixins: [initData],
data() {
return {
delLoading: false,
}
},
created() {
this.$nextTick(() => {
this.init()
})
},
methods: {
checkPermission,
beforeInit() {
this.url = 'api/yxSystemUserLevel'
const sort = 'id,desc'
this.params = { page: this.page, size: this.size, sort: sort }
return true
},
subDelete(id) {
this.delLoading = true
del(id).then(res => {
this.delLoading = false
this.$refs[id].doClose()
this.dleChangePage()
this.init()
this.$notify({
title: '删除成功',
type: 'success',
duration: 2500
})
}).catch(err => {
this.delLoading = false
this.$refs[id].doClose()
console.log(err.response.data.message)
})
},
add() {
this.isAdd = true
this.$refs.form.dialog = true
},
edit(data) {
this.isAdd = false
const _this = this.$refs.form
_this.form = {
id: data.id,
merId: data.merId,
name: data.name,
money: data.money,
validDate: data.validDate,
isForever: data.isForever,
isPay: data.isPay,
isShow: data.isShow,
grade: data.grade,
discount: data.discount,
image: data.image,
icon: data.icon,
explain: data.explain,
addTime: data.addTime,
isDel: data.isDel
}
_this.dialog = true
}
}
}
</script>
<style scoped>
</style>