main
parent
51cc54d6a4
commit
ea0acaf167
@ -0,0 +1,10 @@
|
|||||||
|
import httpService from "@/request"
|
||||||
|
|
||||||
|
// 活动列表
|
||||||
|
export function activityList(params) {
|
||||||
|
return httpService({
|
||||||
|
url: `/user/activity/list`,
|
||||||
|
method: 'get',
|
||||||
|
params: params,
|
||||||
|
})
|
||||||
|
}
|
@ -0,0 +1,10 @@
|
|||||||
|
import httpService from "@/request"
|
||||||
|
|
||||||
|
// 收费标准列表
|
||||||
|
export function chargesList(params) {
|
||||||
|
return httpService({
|
||||||
|
url: `/user/charges/list`,
|
||||||
|
method: 'get',
|
||||||
|
params: params,
|
||||||
|
})
|
||||||
|
}
|
@ -1,46 +0,0 @@
|
|||||||
export const formItem = [
|
|
||||||
{
|
|
||||||
type: 'input',
|
|
||||||
label:'费用名称',
|
|
||||||
prop:'name',
|
|
||||||
placeholder:'请输入'
|
|
||||||
},
|
|
||||||
]
|
|
||||||
export const columns = [
|
|
||||||
{
|
|
||||||
title: "费用名称",
|
|
||||||
dataIndex: "name",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "计费方式",
|
|
||||||
dataIndex: "feetype",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "计量方式",
|
|
||||||
dataIndex: "type",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "单价",
|
|
||||||
dataIndex: "price",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "单位",
|
|
||||||
dataIndex: "unit",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "操作",
|
|
||||||
dataIndex: "action",
|
|
||||||
key: "action",
|
|
||||||
width: "180",
|
|
||||||
fixed: "right",
|
|
||||||
scopedSlots: { customRender: "action" },
|
|
||||||
},
|
|
||||||
]
|
|
||||||
export const pagination = {
|
|
||||||
current: 1,
|
|
||||||
total: 0,
|
|
||||||
pageSize: 10,
|
|
||||||
showTotal: (total) => `共 ${total} 条`,
|
|
||||||
showSizeChanger: true,
|
|
||||||
showQuickJumper: true,
|
|
||||||
}
|
|
@ -1,7 +0,0 @@
|
|||||||
export const form = {
|
|
||||||
id:null,
|
|
||||||
brandName: undefined,
|
|
||||||
}
|
|
||||||
export const rules = {
|
|
||||||
brandName:[{required:true,message:'请输入品牌名',trigger:'blur'}],
|
|
||||||
}
|
|
@ -1,72 +0,0 @@
|
|||||||
<template>
|
|
||||||
<div>
|
|
||||||
<a-drawer
|
|
||||||
:title="drawer.title"
|
|
||||||
:width="720"
|
|
||||||
:visible="drawer.show"
|
|
||||||
:body-style="{ paddingBottom: '80px' }"
|
|
||||||
@close="addClose"
|
|
||||||
>
|
|
||||||
<div class="drawer-content">
|
|
||||||
基本信息
|
|
||||||
<a-divider></a-divider>
|
|
||||||
<a-form-model
|
|
||||||
ref="ruleForm"
|
|
||||||
:model="form"
|
|
||||||
:rules="rules"
|
|
||||||
layout="vertical"
|
|
||||||
>
|
|
||||||
<a-form-model-item prop="brandName" label="品牌名称">
|
|
||||||
<a-input
|
|
||||||
v-model="form.brandName"
|
|
||||||
placeholder="请输入品牌名称"
|
|
||||||
style="width: 50%"
|
|
||||||
></a-input>
|
|
||||||
</a-form-model-item>
|
|
||||||
</a-form-model>
|
|
||||||
</div>
|
|
||||||
<div class="drawer-footer">
|
|
||||||
<a-button :style="{ marginRight: '8px' }" @click="addClose">
|
|
||||||
关闭
|
|
||||||
</a-button>
|
|
||||||
<a-button type="primary" @click="submit"> 提交 </a-button>
|
|
||||||
</div>
|
|
||||||
</a-drawer>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
export default {
|
|
||||||
methods: {
|
|
||||||
submit() {
|
|
||||||
console.log(this.form);
|
|
||||||
this.$refs.ruleForm.validate(async (valid) => {
|
|
||||||
if (valid) {
|
|
||||||
if (this.form.id === null) {
|
|
||||||
let res = await Insert(this.form);
|
|
||||||
if (res.code === 200) {
|
|
||||||
this.$message.success(res.msg);
|
|
||||||
this.addClose();
|
|
||||||
this.getData();
|
|
||||||
} else {
|
|
||||||
this.$message.error(res.msg);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
console.log(this.form);
|
|
||||||
let res = await Update(this.form);
|
|
||||||
if (res.code === 200) {
|
|
||||||
this.$message.success(res.msg);
|
|
||||||
this.addClose();
|
|
||||||
this.getData();
|
|
||||||
} else {
|
|
||||||
this.$message.error(res.msg);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
},
|
|
||||||
},
|
|
||||||
};
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style></style>
|
|
@ -1,46 +0,0 @@
|
|||||||
export const formItem = [
|
|
||||||
{
|
|
||||||
type: 'input',
|
|
||||||
label:'费用名称',
|
|
||||||
prop:'name',
|
|
||||||
placeholder:'请输入'
|
|
||||||
},
|
|
||||||
]
|
|
||||||
export const columns = [
|
|
||||||
{
|
|
||||||
title: "费用名称",
|
|
||||||
dataIndex: "name",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "计费方式",
|
|
||||||
dataIndex: "feetype",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "计量方式",
|
|
||||||
dataIndex: "type",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "单价",
|
|
||||||
dataIndex: "price",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "单位",
|
|
||||||
dataIndex: "unit",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "操作",
|
|
||||||
dataIndex: "action",
|
|
||||||
key: "action",
|
|
||||||
width: "180",
|
|
||||||
fixed: "right",
|
|
||||||
scopedSlots: { customRender: "action" },
|
|
||||||
},
|
|
||||||
]
|
|
||||||
export const pagination = {
|
|
||||||
current: 1,
|
|
||||||
total: 0,
|
|
||||||
pageSize: 10,
|
|
||||||
showTotal: (total) => `共 ${total} 条`,
|
|
||||||
showSizeChanger: true,
|
|
||||||
showQuickJumper: true,
|
|
||||||
}
|
|
@ -1,7 +0,0 @@
|
|||||||
export const form = {
|
|
||||||
id:null,
|
|
||||||
brandName: undefined,
|
|
||||||
}
|
|
||||||
export const rules = {
|
|
||||||
brandName:[{required:true,message:'请输入品牌名',trigger:'blur'}],
|
|
||||||
}
|
|
@ -1,72 +0,0 @@
|
|||||||
<template>
|
|
||||||
<div>
|
|
||||||
<a-drawer
|
|
||||||
:title="drawer.title"
|
|
||||||
:width="720"
|
|
||||||
:visible="drawer.show"
|
|
||||||
:body-style="{ paddingBottom: '80px' }"
|
|
||||||
@close="addClose"
|
|
||||||
>
|
|
||||||
<div class="drawer-content">
|
|
||||||
基本信息
|
|
||||||
<a-divider></a-divider>
|
|
||||||
<a-form-model
|
|
||||||
ref="ruleForm"
|
|
||||||
:model="form"
|
|
||||||
:rules="rules"
|
|
||||||
layout="vertical"
|
|
||||||
>
|
|
||||||
<a-form-model-item prop="brandName" label="品牌名称">
|
|
||||||
<a-input
|
|
||||||
v-model="form.brandName"
|
|
||||||
placeholder="请输入品牌名称"
|
|
||||||
style="width: 50%"
|
|
||||||
></a-input>
|
|
||||||
</a-form-model-item>
|
|
||||||
</a-form-model>
|
|
||||||
</div>
|
|
||||||
<div class="drawer-footer">
|
|
||||||
<a-button :style="{ marginRight: '8px' }" @click="addClose">
|
|
||||||
关闭
|
|
||||||
</a-button>
|
|
||||||
<a-button type="primary" @click="submit"> 提交 </a-button>
|
|
||||||
</div>
|
|
||||||
</a-drawer>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
export default {
|
|
||||||
methods: {
|
|
||||||
submit() {
|
|
||||||
console.log(this.form);
|
|
||||||
this.$refs.ruleForm.validate(async (valid) => {
|
|
||||||
if (valid) {
|
|
||||||
if (this.form.id === null) {
|
|
||||||
let res = await Insert(this.form);
|
|
||||||
if (res.code === 200) {
|
|
||||||
this.$message.success(res.msg);
|
|
||||||
this.addClose();
|
|
||||||
this.getData();
|
|
||||||
} else {
|
|
||||||
this.$message.error(res.msg);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
console.log(this.form);
|
|
||||||
let res = await Update(this.form);
|
|
||||||
if (res.code === 200) {
|
|
||||||
this.$message.success(res.msg);
|
|
||||||
this.addClose();
|
|
||||||
this.getData();
|
|
||||||
} else {
|
|
||||||
this.$message.error(res.msg);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
},
|
|
||||||
},
|
|
||||||
};
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style></style>
|
|
@ -1,46 +0,0 @@
|
|||||||
export const formItem = [
|
|
||||||
{
|
|
||||||
type: 'input',
|
|
||||||
label:'费用名称',
|
|
||||||
prop:'name',
|
|
||||||
placeholder:'请输入'
|
|
||||||
},
|
|
||||||
]
|
|
||||||
export const columns = [
|
|
||||||
{
|
|
||||||
title: "费用名称",
|
|
||||||
dataIndex: "name",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "计费方式",
|
|
||||||
dataIndex: "feetype",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "计量方式",
|
|
||||||
dataIndex: "type",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "单价",
|
|
||||||
dataIndex: "price",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "单位",
|
|
||||||
dataIndex: "unit",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "操作",
|
|
||||||
dataIndex: "action",
|
|
||||||
key: "action",
|
|
||||||
width: "180",
|
|
||||||
fixed: "right",
|
|
||||||
scopedSlots: { customRender: "action" },
|
|
||||||
},
|
|
||||||
]
|
|
||||||
export const pagination = {
|
|
||||||
current: 1,
|
|
||||||
total: 0,
|
|
||||||
pageSize: 10,
|
|
||||||
showTotal: (total) => `共 ${total} 条`,
|
|
||||||
showSizeChanger: true,
|
|
||||||
showQuickJumper: true,
|
|
||||||
}
|
|
@ -1,7 +0,0 @@
|
|||||||
export const form = {
|
|
||||||
id:null,
|
|
||||||
brandName: undefined,
|
|
||||||
}
|
|
||||||
export const rules = {
|
|
||||||
brandName:[{required:true,message:'请输入品牌名',trigger:'blur'}],
|
|
||||||
}
|
|
@ -1,72 +0,0 @@
|
|||||||
<template>
|
|
||||||
<div>
|
|
||||||
<a-drawer
|
|
||||||
:title="drawer.title"
|
|
||||||
:width="720"
|
|
||||||
:visible="drawer.show"
|
|
||||||
:body-style="{ paddingBottom: '80px' }"
|
|
||||||
@close="addClose"
|
|
||||||
>
|
|
||||||
<div class="drawer-content">
|
|
||||||
基本信息
|
|
||||||
<a-divider></a-divider>
|
|
||||||
<a-form-model
|
|
||||||
ref="ruleForm"
|
|
||||||
:model="form"
|
|
||||||
:rules="rules"
|
|
||||||
layout="vertical"
|
|
||||||
>
|
|
||||||
<a-form-model-item prop="brandName" label="品牌名称">
|
|
||||||
<a-input
|
|
||||||
v-model="form.brandName"
|
|
||||||
placeholder="请输入品牌名称"
|
|
||||||
style="width: 50%"
|
|
||||||
></a-input>
|
|
||||||
</a-form-model-item>
|
|
||||||
</a-form-model>
|
|
||||||
</div>
|
|
||||||
<div class="drawer-footer">
|
|
||||||
<a-button :style="{ marginRight: '8px' }" @click="addClose">
|
|
||||||
关闭
|
|
||||||
</a-button>
|
|
||||||
<a-button type="primary" @click="submit"> 提交 </a-button>
|
|
||||||
</div>
|
|
||||||
</a-drawer>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
export default {
|
|
||||||
methods: {
|
|
||||||
submit() {
|
|
||||||
console.log(this.form);
|
|
||||||
this.$refs.ruleForm.validate(async (valid) => {
|
|
||||||
if (valid) {
|
|
||||||
if (this.form.id === null) {
|
|
||||||
let res = await Insert(this.form);
|
|
||||||
if (res.code === 200) {
|
|
||||||
this.$message.success(res.msg);
|
|
||||||
this.addClose();
|
|
||||||
this.getData();
|
|
||||||
} else {
|
|
||||||
this.$message.error(res.msg);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
console.log(this.form);
|
|
||||||
let res = await Update(this.form);
|
|
||||||
if (res.code === 200) {
|
|
||||||
this.$message.success(res.msg);
|
|
||||||
this.addClose();
|
|
||||||
this.getData();
|
|
||||||
} else {
|
|
||||||
this.$message.error(res.msg);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
},
|
|
||||||
},
|
|
||||||
};
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style></style>
|
|
Loading…
Reference in new issue