components2

branch_lyj
Liuyujie 7 months ago
parent 6cacfd11d1
commit e8a2fc3417

@ -1,12 +1,16 @@
<template>  <template>
<!-- el-card组件作为表单的容器设置了类名和无阴影效果 -->
<el-card class="form-container" shadow="never"> <el-card class="form-container" shadow="never">
<!-- el-form表单组件绑定了数据模型coupon设置了验证规则表单引用标签宽度和尺寸等属性 -->
<el-form :model="coupon" <el-form :model="coupon"
:rules="rules" :rules="rules"
ref="couponFrom" ref="couponFrom"
label-width="150px" label-width="150px"
size="small"> size="small">
<!-- 优惠券类型的表单项使用el-select下拉选择框来选择类型 -->
<el-form-item label="优惠券类型:"> <el-form-item label="优惠券类型:">
<el-select v-model="coupon.type"> <el-select v-model="coupon.type">
<!-- 通过v-for循环生成下拉选项 -->
<el-option <el-option
v-for="type in typeOptions" v-for="type in typeOptions"
:key="type.value" :key="type.value"
@ -15,11 +19,14 @@
</el-option> </el-option>
</el-select> </el-select>
</el-form-item> </el-form-item>
<!-- 优惠券名称的表单项使用el-input输入框输入名称设置了数据绑定和类名 -->
<el-form-item label="优惠券名称:" prop="name"> <el-form-item label="优惠券名称:" prop="name">
<el-input v-model="coupon.name" class="input-width"></el-input> <el-input v-model="coupon.name" class="input-width"></el-input>
</el-form-item> </el-form-item>
<!-- 适用平台的表单项用el-select下拉选择框选择平台 -->
<el-form-item label="适用平台:"> <el-form-item label="适用平台:">
<el-select v-model="coupon.platform"> <el-select v-model="coupon.platform">
<!-- 通过v-for循环生成下拉选项 -->
<el-option <el-option
v-for="item in platformOptions" v-for="item in platformOptions"
:key="item.value" :key="item.value"
@ -28,33 +35,40 @@
</el-option> </el-option>
</el-select> </el-select>
</el-form-item> </el-form-item>
<!-- 总发行量的表单项用el-input输入框输入发行量设置了数据绑定和占位提示等属性 -->
<el-form-item label="总发行量:" prop="publishCount"> <el-form-item label="总发行量:" prop="publishCount">
<el-input v-model.number="coupon.publishCount" placeholder="只能输入正整数" class="input-width"></el-input> <el-input v-model.number="coupon.publishCount" placeholder="只能输入正整数" class="input-width"></el-input>
</el-form-item> </el-form-item>
<!-- 面额的表单项用el-input输入框输入面额设置了数据绑定占位提示和后缀文本等属性 -->
<el-form-item label="面额:" prop="amount"> <el-form-item label="面额:" prop="amount">
<el-input v-model.number="coupon.amount" placeholder="面值只能是数值限2位小数" class="input-width"> <el-input v-model.number="coupon.amount" placeholder="面值只能是数值限2位小数" class="input-width">
<template slot="append"></template> <template slot="append"></template>
</el-input> </el-input>
</el-form-item> </el-form-item>
<!-- 每人限领的表单项用el-input输入框输入限领数量设置了数据绑定和后缀文本等属性 -->
<el-form-item label="每人限领:"> <el-form-item label="每人限领:">
<el-input v-model="coupon.perLimit" placeholder="只能输入正整数" class="input-width"> <el-input v-model="coupon.perLimit" placeholder="只能输入正整数" class="input-width">
<template slot="append"></template> <template slot="append"></template>
</el-input> </el-input>
</el-form-item> </el-form-item>
<!-- 使用门槛的表单项用el-input输入框输入门槛金额设置了数据绑定前后缀文本等属性 -->
<el-form-item label="使用门槛:" prop="minPoint"> <el-form-item label="使用门槛:" prop="minPoint">
<el-input v-model.number="coupon.minPoint" placeholder="只能输入正整数" class="input-width"> <el-input v-model.number="coupon.minPoint" placeholder="只能输入正整数" class="input-width">
<template slot="prepend"></template> <template slot="prepend"></template>
<template slot="append">元可用</template> <template slot="append">元可用</template>
</el-input> </el-input>
</el-form-item> </el-form-item>
<!-- 领取日期的表单项用el-date-picker日期选择器选择日期设置了数据绑定和类名等属性 -->
<el-form-item label="领取日期:" prop="enableTime"> <el-form-item label="领取日期:" prop="enableTime">
<el-date-picker type="date" placeholder="选择日期" v-model="coupon.enableTime" class="input-width"></el-date-picker> <el-date-picker type="date" placeholder="选择日期" v-model="coupon.enableTime" class="input-width"></el-date-picker>
</el-form-item> </el-form-item>
<!-- 有效期的表单项通过两个el-date-picker日期选择器分别选择开始和结束日期 -->
<el-form-item label="有效期:"> <el-form-item label="有效期:">
<el-date-picker type="date" placeholder="选择日期" v-model="coupon.startTime" style="width: 150px"></el-date-picker> <el-date-picker type="date" placeholder="选择日期" v-model="coupon.startTime" style="width: 150px"></el-date-picker>
<span style="margin-left: 20px;margin-right: 20px"></span> <span style="margin-left: 20px;margin-right: 20px"></span>
<el-date-picker type="date" placeholder="选择日期" v-model="coupon.endTime" style="width: 150px"></el-date-picker> <el-date-picker type="date" placeholder="选择日期" v-model="coupon.endTime" style="width: 150px"></el-date-picker>
</el-form-item> </el-form-item>
<!-- 可使用商品的表单项用el-radio-group单选按钮组选择使用类型 -->
<el-form-item label="可使用商品:"> <el-form-item label="可使用商品:">
<el-radio-group v-model="coupon.useType"> <el-radio-group v-model="coupon.useType">
<el-radio-button :label="0">全场通用</el-radio-button> <el-radio-button :label="0">全场通用</el-radio-button>
@ -62,21 +76,27 @@
<el-radio-button :label="2">指定商品</el-radio-button> <el-radio-button :label="2">指定商品</el-radio-button>
</el-radio-group> </el-radio-group>
</el-form-item> </el-form-item>
<!-- 当可使用商品类型为指定分类时显示的内容包含分类选择器添加按钮和展示关联分类关系的表格 -->
<el-form-item v-show="coupon.useType===1"> <el-form-item v-show="coupon.useType===1">
<!-- el-cascader分类选择器用于选择分类设置了可清除占位提示等属性 -->
<el-cascader <el-cascader
clearable clearable
placeholder="请选择分类名称" placeholder="请选择分类名称"
v-model="selectProductCate" v-model="selectProductCate"
:options="productCateOptions"> :options="productCateOptions">
</el-cascader> </el-cascader>
<!-- 添加分类关联的按钮绑定点击事件 -->
<el-button @click="handleAddProductCategoryRelation()"></el-button> <el-button @click="handleAddProductCategoryRelation()"></el-button>
<!-- 展示已添加的分类关联关系的表格设置了数据绑定等属性 -->
<el-table ref="productCateRelationTable" <el-table ref="productCateRelationTable"
:data="coupon.productCategoryRelationList" :data="coupon.productCategoryRelationList"
style="width: 100%;margin-top: 20px" style="width: 100%;margin-top: 20px"
border> border>
<!-- 显示分类名称的表格列 -->
<el-table-column label="分类名称" align="center"> <el-table-column label="分类名称" align="center">
<template slot-scope="scope">{{scope.row.parentCategoryName}}>{{scope.row.productCategoryName}}</template> <template slot-scope="scope">{{scope.row.parentCategoryName}}>{{scope.row.productCategoryName}}</template>
</el-table-column> </el-table-column>
<!-- 显示操作按钮删除的表格列 -->
<el-table-column label="操作" align="center" width="100"> <el-table-column label="操作" align="center" width="100">
<template slot-scope="scope"> <template slot-scope="scope">
<el-button size="mini" <el-button size="mini"
@ -87,7 +107,9 @@
</el-table-column> </el-table-column>
</el-table> </el-table>
</el-form-item> </el-form-item>
<!-- 当可使用商品类型为指定商品时显示的内容包含商品选择框添加按钮和展示关联商品关系的表格 -->
<el-form-item v-show="coupon.useType===2"> <el-form-item v-show="coupon.useType===2">
<!-- el-select商品选择框设置了可过滤远程搜索等属性 -->
<el-select <el-select
v-model="selectProduct" v-model="selectProduct"
filterable filterable
@ -96,6 +118,7 @@
placeholder="商品名称/商品货号" placeholder="商品名称/商品货号"
:remote-method="searchProductMethod" :remote-method="searchProductMethod"
:loading="selectProductLoading"> :loading="selectProductLoading">
<!-- 通过v-for循环生成商品选项 -->
<el-option <el-option
v-for="item in selectProductOptions" v-for="item in selectProductOptions"
:key="item.productId" :key="item.productId"
@ -105,17 +128,22 @@
<span style="float: right; color: #8492a6; font-size: 13px">NO.{{ item.productSn }}</span> <span style="float: right; color: #8492a6; font-size: 13px">NO.{{ item.productSn }}</span>
</el-option> </el-option>
</el-select> </el-select>
<!-- 添加商品关联的按钮绑定点击事件 -->
<el-button @click="handleAddProductRelation()"></el-button> <el-button @click="handleAddProductRelation()"></el-button>
<!-- 展示已添加的商品关联关系的表格设置了数据绑定等属性 -->
<el-table ref="productRelationTable" <el-table ref="productRelationTable"
:data="coupon.productRelationList" :data="coupon.productRelationList"
style="width: 100%;margin-top: 20px" style="width: 100%;margin-top: 20px"
border> border>
<!-- 显示商品名称的表格列 -->
<el-table-column label="商品名称" align="center"> <el-table-column label="商品名称" align="center">
<template slot-scope="scope">{{scope.row.productName}}</template> <template slot-scope="scope">{{scope.row.productName}}</template>
</el-table-column> </el-table-column>
<!-- 显示商品货号的表格列 -->
<el-table-column label="货号" align="center" width="120" > <el-table-column label="货号" align="center" width="120" >
<template slot-scope="scope">NO.{{scope.row.productSn}}</template> <template slot-scope="scope">NO.{{scope.row.productSn}}</template>
</el-table-column> </el-table-column>
<!-- 显示操作按钮删除的表格列 -->
<el-table-column label="操作" align="center" width="100"> <el-table-column label="操作" align="center" width="100">
<template slot-scope="scope"> <template slot-scope="scope">
<el-button size="mini" <el-button size="mini"
@ -126,6 +154,7 @@
</el-table-column> </el-table-column>
</el-table> </el-table>
</el-form-item> </el-form-item>
<!-- 备注的表单项用el-input输入框输入备注内容设置了类名类型为文本域等属性 -->
<el-form-item label="备注:"> <el-form-item label="备注:">
<el-input <el-input
class="input-width" class="input-width"
@ -135,241 +164,276 @@
v-model="coupon.note"> v-model="coupon.note">
</el-input> </el-input>
</el-form-item> </el-form-item>
<!-- 提交和重置按钮所在的表单项 -->
<el-form-item> <el-form-item>
<!-- 提交按钮设置类型为primary绑定点击事件 -->
<el-button type="primary" @click="onSubmit('couponFrom')"></el-button> <el-button type="primary" @click="onSubmit('couponFrom')"></el-button>
<!-- 重置按钮根据条件判断是否显示绑定点击事件 -->
<el-button v-if="!isEdit" @click="resetForm('couponFrom')"></el-button> <el-button v-if="!isEdit" @click="resetForm('couponFrom')"></el-button>
</el-form-item> </el-form-item>
</el-form> </el-form>
</el-card> </el-card>
</template> </template>
<script> <script>
import {createCoupon,getCoupon,updateCoupon} from '@/api/coupon'; // '@/api/coupon'
import {fetchSimpleList as fetchProductList} from '@/api/product'; import {createCoupon, getCoupon, updateCoupon} from '@/api/coupon';
import {fetchListWithChildren} from '@/api/productCate' // '@/api/product'fetchProductList
const defaultCoupon = { import {fetchSimpleList as fetchProductList} from '@/api/product';
type: 0, // '@/api/productCate'
name: null, import {fetchListWithChildren} from '@/api/productCate';
platform: 0,
amount: null, //
perLimit: 1, const defaultCoupon = {
minPoint: null, type: 0,
startTime: null, name: null,
endTime: null, platform: 0,
useType: 0, amount: null,
note: null, perLimit: 1,
publishCount: null, minPoint: null,
productRelationList: [], startTime: null,
productCategoryRelationList: [] endTime: null,
}; useType: 0,
const defaultTypeOptions = [ note: null,
{ publishCount: null,
label: '全场赠券', productRelationList: [],
value: 0 productCategoryRelationList: []
}, };
{ //
label: '会员赠券', const defaultTypeOptions = [
value: 1 {
}, label: '全场赠券',
{ value: 0
label: '购物赠券', },
value: 2 {
}, label: '会员赠券',
{ value: 1
label: '注册赠券', },
value: 3 {
label: '购物赠券',
value: 2
},
{
label: '注册赠券',
value: 3
}
];
// PC
const defaultPlatformOptions = [
{
label: '全平台',
value: 0
},
{
label: '移动平台',
value: 1
},
{
label: 'PC平台',
value: 2
}
];
export default {
name: 'CouponDetail',
// isEditfalse
props: {
isEdit: {
type: Boolean,
default: false
} }
]; },
const defaultPlatformOptions = [ data() {
{ return {
label: '全平台', //
value: 0 coupon: Object.assign({}, defaultCoupon),
}, //
{ typeOptions: Object.assign({}, defaultTypeOptions),
label: '移动平台', //
value: 1 platformOptions: Object.assign({}, defaultPlatformOptions),
}, //
{ rules: {
label: 'PC平台', name: [
value: 2 {required: true, message: '请输入优惠券名称', trigger: 'blur'},
{min: 2, max: 140, message: '长度在 2 到 140 个字符', trigger: 'blur'}
],
publishCount: [
{type: 'number', required: true, message: '只能输入正整数', trigger: 'blur'}
],
amount: [
{type: 'number', required: true, message: '面值只能是数值0.01-10000限2位小数', trigger: 'blur'}
],
minPoint: [
{type: 'number', required: true, message: '只能输入正整数', trigger: 'blur'}
]
},
// null
selectProduct: null,
// false
selectProductLoading: false,
//
selectProductOptions: [],
// null
selectProductCate: null,
//
productCateOptions: []
} }
]; },
export default { created() {
name: 'CouponDetail', // coupon
props: { if (this.isEdit) {
isEdit: { getCoupon(this.$route.query.id).then(response => {
type: Boolean, this.coupon = response.data;
default: false });
} }
}, //
data() { this.getProductCateList();
return { },
coupon: Object.assign({}, defaultCoupon), methods: {
typeOptions: Object.assign({}, defaultTypeOptions), //
platformOptions: Object.assign({}, defaultPlatformOptions), onSubmit(formName) {
rules: { this.$refs[formName].validate((valid) => {
name: [ if (valid) {
{required: true, message: '请输入优惠券名称', trigger: 'blur'}, this.$confirm('是否提交数据', '提示', {
{min: 2, max: 140, message: '长度在 2 到 140 个字符', trigger: 'blur'} confirmButtonText: '确定',
], cancelButtonText: '取消',
publishCount: [ type: 'warning'
{type: 'number',required: true, message: '只能输入正整数', trigger: 'blur'} }).then(() => {
], if (this.isEdit) {
amount: [ updateCoupon(this.$route.query.id, this.coupon).then(response => {
{type: 'number',required: true,message: '面值只能是数值0.01-10000限2位小数',trigger: 'blur'} this.$refs[formName].resetFields();
], this.$message({
minPoint: [ message: '修改成功',
{type: 'number',required: true,message: '只能输入正整数',trigger: 'blur'} type: 'success',
] duration: 1000
},
selectProduct:null,
selectProductLoading: false,
selectProductOptions:[],
selectProductCate: null,
productCateOptions: []
}
},
created(){
if(this.isEdit){
getCoupon(this.$route.query.id).then(response=>{
this.coupon=response.data;
});
}
this.getProductCateList();
},
methods:{
onSubmit(formName) {
this.$refs[formName].validate((valid) => {
if (valid) {
this.$confirm('是否提交数据', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
if(this.isEdit){
updateCoupon(this.$route.query.id,this.coupon).then(response=>{
this.$refs[formName].resetFields();
this.$message({
message: '修改成功',
type: 'success',
duration:1000
});
this.$router.back();
}); });
}else{ this.$router.back();
createCoupon(this.coupon).then(response=>{ });
this.$refs[formName].resetFields(); } else {
this.$message({ createCoupon(this.coupon).then(response => {
message: '提交成功', this.$refs[formName].resetFields();
type: 'success', this.$message({
duration:1000 message: '提交成功',
}); type: 'success',
this.$router.back(); duration: 1000
}); });
} this.$router.back();
}); });
} else {
this.$message({
message: '验证失败',
type: 'error',
duration:1000
});
return false;
}
});
},
resetForm(formName) {
this.$refs[formName].resetFields();
this.coupon = Object.assign({},defaultCoupon);
},
searchProductMethod(query){
if (query !== '') {
this.loading = true;
fetchProductList({keyword:query}).then(response=>{
this.loading=false;
let productList = response.data;
this.selectProductOptions = [];
for(let i=0;i<productList.length;i++){
let item = productList[i];
this.selectProductOptions.push({productId:item.id,productName:item.name,productSn:item.productSn});
} }
}); });
} else { } else {
this.selectProductOptions = [];
}
},
handleAddProductRelation(){
if(this.selectProduct===null){
this.$message({ this.$message({
message: '请先选择商品', message: '验证失败',
type: 'warning' type: 'error',
duration: 1000
}); });
return return false;
} }
this.coupon.productRelationList.push(this.getProductById(this.selectProduct)); });
this.selectProduct=null; },
}, // coupon
handleDeleteProductRelation(index,row){ resetForm(formName) {
this.coupon.productRelationList.splice(index,1); this.$refs[formName].resetFields();
}, this.coupon = Object.assign({}, defaultCoupon);
handleAddProductCategoryRelation(){ },
if(this.selectProductCate===null||this.selectProductCate.length===0){ //
this.$message({ searchProductMethod(query) {
message: '请先选择商品分类', if (query!== '') {
type: 'warning' this.loading = true;
}); fetchProductList({keyword: query}).then(response => {
return this.loading = false;
} let productList = response.data;
this.coupon.productCategoryRelationList.push(this.getProductCateByIds(this.selectProductCate)); this.selectProductOptions = [];
this.selectProductCate=[]; for (let i = 0; i < productList.length; i++) {
}, let item = productList[i];
handleDeleteProductCateRelation(index,row){ this.selectProductOptions.push({productId: item.id, productName: item.name, productSn: item.productSn});
this.coupon.productCategoryRelationList.splice(index,1);
},
getProductById(id){
for(let i=0;i<this.selectProductOptions.length;i++){
if(id===this.selectProductOptions[i].productId){
return this.selectProductOptions[i];
} }
});
} else {
this.selectProductOptions = [];
}
},
//
handleAddProductRelation() {
if (this.selectProduct === null) {
this.$message({
message: '请先选择商品',
type: 'warning'
});
return
}
this.coupon.productRelationList.push(this.getProductById(this.selectProduct));
this.selectProduct = null;
},
//
handleDeleteProductRelation(index, row) {
this.coupon.productRelationList.splice(index, 1);
},
//
handleAddProductCategoryRelation() {
if (this.selectProductCate === null || this.selectProductCate.length === 0) {
this.$message({
message: '请先选择商品分类',
type: 'warning'
});
return
}
this.coupon.productCategoryRelationList.push(this.getProductCateByIds(this.selectProductCate));
this.selectProductCate = [];
},
//
handleDeleteProductCateRelation(index, row) {
this.coupon.productCategoryRelationList.splice(index, 1);
},
// idid
getProductById(id) {
for (let i = 0; i < this.selectProductOptions.length; i++) {
if (id === this.selectProductOptions[i].productId) {
return this.selectProductOptions[i];
} }
return null; }
}, return null;
getProductCateList() { },
fetchListWithChildren().then(response => { //
let list = response.data; getProductCateList() {
this.productCateOptions = []; fetchListWithChildren().then(response => {
for (let i = 0; i < list.length; i++) { let list = response.data;
let children = []; this.productCateOptions = [];
if (list[i].children != null && list[i].children.length > 0) { for (let i = 0; i < list.length; i++) {
for (let j = 0; j < list[i].children.length; j++) { let children = [];
children.push({label: list[i].children[j].name, value: list[i].children[j].id}); if (list[i].children!= null && list[i].children.length > 0) {
} for (let j = 0; j < list[i].children.length; j++) {
children.push({label: list[i].children[j].name, value: list[i].children[j].id});
} }
this.productCateOptions.push({label: list[i].name, value: list[i].id, children: children});
} }
}); this.productCateOptions.push({label: list[i].name, value: list[i].id, children: children});
}, }
getProductCateByIds(ids){ });
let name; },
let parentName; // idid
for (let i = 0; i < this.productCateOptions.length; i++) { getProductCateByIds(ids) {
if (this.productCateOptions[i].value === ids[0]) { let name;
parentName = this.productCateOptions[i].label; let parentName;
for (let j = 0; j < this.productCateOptions[i].children.length; j++) { for (let i = 0; i < this.productCateOptions.length; i++) {
if (this.productCateOptions[i].children[j].value === ids[1]) { if (this.productCateOptions[i].value === ids[0]) {
name = this.productCateOptions[i].children[j].label; parentName = this.productCateOptions[i].label;
} for (let j = 0; j < this.productCateOptions[i].children.length; j++) {
if (this.productCateOptions[i].children[j].value === ids[1]) {
name = this.productCateOptions[i].children[j].label;
} }
} }
} }
return {productCategoryId: ids[1], productCategoryName: name, parentCategoryName: parentName};
} }
return {productCategoryId: ids[1], productCategoryName: name, parentCategoryName: parentName};
} }
} }
}
</script> </script>
<style scoped> <style scoped>
.input-width { <!-- 带有scoped属性的style标签意味着里面定义的样式仅作用于当前组件内的元素 -->
width: 60%; .input-width {
} <!-- 定义了一个类选择器样式作用是将应用该类的元素宽度设置为其父元素宽度的60% -->
width: 60%;
}
</style> </style>

Loading…
Cancel
Save