API收费建表

This commit is contained in:
墨大叔 2024-08-08 11:48:52 +08:00
parent 333b6a457d
commit 15e05eb6fe
3 changed files with 462 additions and 1 deletions

44
src/api/ss/apiPrice.js Normal file
View File

@ -0,0 +1,44 @@
import request from '@/utils/request'
// 查询API收费标准列表
export function listApiPrice(query) {
return request({
url: '/ss/apiPrice/list',
method: 'get',
params: query
})
}
// 查询API收费标准详细
export function getApiPrice(id) {
return request({
url: '/ss/apiPrice/' + id,
method: 'get'
})
}
// 新增API收费标准
export function addApiPrice(data) {
return request({
url: '/ss/apiPrice',
method: 'post',
data: data
})
}
// 修改API收费标准
export function updateApiPrice(data) {
return request({
url: '/ss/apiPrice',
method: 'put',
data: data
})
}
// 删除API收费标准
export function delApiPrice(id) {
return request({
url: '/ss/apiPrice/' + id,
method: 'delete'
})
}

View File

@ -1,5 +1,5 @@
<template>
<div>
<div v-loading="loading">
<div class="account-item" style="background-color:#00BA88;" @click="onClickItem(data.WECHAT)">
<div class="name">
<svg-icon icon-class="wechat"/> 微信支付
@ -64,6 +64,7 @@ export default {
components: { QrCode },
data() {
return {
loading: false,
data: {},
showBind: false, //
showQrCode: false, // 线
@ -85,8 +86,11 @@ export default {
}
},
getData() {
this.loading = true;
appGroupAccount().then(res => {
this.data = res.data;
}).finally(() => {
this.loading = false;
})
}
}

View File

@ -0,0 +1,413 @@
<template>
<div class="app-container">
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
<el-form-item label="API收费标准" prop="id">
<el-input
v-model="queryParams.id"
placeholder="请输入API收费标准"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="类型" prop="type">
<el-select v-model="queryParams.type" placeholder="请选择类型" clearable>
<el-option
v-for="dict in dict.type.api_price_type"
:key="dict.value"
:label="dict.label"
:value="dict.value"
/>
</el-select>
</el-form-item>
<el-form-item label="单位" prop="unit">
<el-input
v-model="queryParams.unit"
placeholder="请输入单位"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="标准名称" prop="name">
<el-input
v-model="queryParams.name"
placeholder="请输入标准名称"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="价格" prop="price">
<el-input
v-model="queryParams.price"
placeholder="请输入价格"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="创建人" prop="createBy">
<el-input
v-model="queryParams.createBy"
placeholder="请输入创建人"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="更新人" prop="updateBy">
<el-date-picker clearable
v-model="queryParams.updateBy"
type="date"
value-format="yyyy-MM-dd"
placeholder="请选择更新人">
</el-date-picker>
</el-form-item>
<el-form-item label="逻辑删除标志" prop="deleted">
<el-input
v-model="queryParams.deleted"
placeholder="请输入逻辑删除标志"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item>
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
</el-form-item>
</el-form>
<el-row :gutter="10" class="mb8">
<el-col :span="1.5">
<el-button
type="primary"
plain
icon="el-icon-plus"
size="mini"
@click="handleAdd"
v-hasPermi="['ss:apiPrice:add']"
>新增</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="success"
plain
icon="el-icon-edit"
size="mini"
:disabled="single"
@click="handleUpdate"
v-hasPermi="['ss:apiPrice:edit']"
>修改</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="danger"
plain
icon="el-icon-delete"
size="mini"
:disabled="multiple"
@click="handleDelete"
v-hasPermi="['ss:apiPrice:remove']"
>删除</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="warning"
plain
icon="el-icon-download"
size="mini"
@click="handleExport"
v-hasPermi="['ss:apiPrice:export']"
>导出</el-button>
</el-col>
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList" :columns="columns"></right-toolbar>
</el-row>
<el-table v-loading="loading" :data="apiPriceList" @selection-change="handleSelectionChange" :default-sort="defaultSort" @sort-change="onSortChange">
<el-table-column type="selection" width="55" align="center" />
<template v-for="column of showColumns">
<el-table-column
:key="column.key"
:label="column.label"
:prop="column.key"
:align="column.align"
:min-width="column.minWidth"
:sort-orders="orderSorts"
:sortable="column.sortable"
:show-overflow-tooltip="column.overflow"
>
<template slot-scope="d">
<template v-if="column.key === 'id'">
{{d.row[column.key]}}
</template>
<template v-else-if="column.key === 'type'">
<dict-tag :options="dict.type.api_price_type" :value="d.row[column.key]"/>
</template>
<template v-else-if="column.key === 'unit'">
<dict-tag :options="dict.type.api_price_unit" :value="d.row[column.key]"/>
</template>
<template v-else>
{{d.row[column.key]}}
</template>
</template>
</el-table-column>
</template>
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
<template slot-scope="scope">
<el-button
size="mini"
type="text"
icon="el-icon-edit"
@click="handleUpdate(scope.row)"
v-hasPermi="['ss:apiPrice:edit']"
>修改</el-button>
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
v-hasPermi="['ss:apiPrice:remove']"
>删除</el-button>
</template>
</el-table-column>
</el-table>
<pagination
v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
<!-- 添加或修改API收费标准对话框 -->
<el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
<el-form-item label="类型" prop="type">
<el-select v-model="form.type" placeholder="请选择类型">
<el-option
v-for="dict in dict.type.api_price_type"
:key="dict.value"
:label="dict.label"
:value="dict.value"
></el-option>
</el-select>
</el-form-item>
<el-form-item label="数值" prop="num">
<el-input v-model="form.num" placeholder="请输入数值" />
</el-form-item>
<el-form-item label="单位" prop="unit">
<el-input v-model="form.unit" placeholder="请输入单位" />
</el-form-item>
<el-form-item label="标准名称" prop="name">
<el-input v-model="form.name" placeholder="请输入标准名称" />
</el-form-item>
<el-form-item label="标准描述" prop="description">
<el-input v-model="form.description" type="textarea" placeholder="请输入内容" />
</el-form-item>
<el-form-item label="价格" prop="price">
<el-input v-model="form.price" placeholder="请输入价格" />
</el-form-item>
<el-form-item label="逻辑删除标志" prop="deleted">
<el-input v-model="form.deleted" placeholder="请输入逻辑删除标志" />
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitForm"> </el-button>
<el-button @click="cancel"> </el-button>
</div>
</el-dialog>
</div>
</template>
<script>
import { listApiPrice, getApiPrice, delApiPrice, addApiPrice, updateApiPrice } from "@/api/ss/apiPrice";
import { $showColumns } from '@/utils/mixins';
//
const defaultSort = {
prop: "createTime",
order: "descending"
}
export default {
name: "ApiPrice",
mixins: [$showColumns],
dicts: ['api_price_type'],
data() {
return {
//
columns: [
{key: 'id', visible: true, label: 'API收费标准', minWidth: null, sortable: true, overflow: false, align: 'center'},
{key: 'type', visible: true, label: '类型', minWidth: null, sortable: true, overflow: false, align: 'center'},
{key: 'num', visible: true, label: '数值', minWidth: null, sortable: true, overflow: false, align: 'center'},
{key: 'unit', visible: true, label: '单位', minWidth: null, sortable: true, overflow: false, align: 'center'},
{key: 'name', visible: true, label: '标准名称', minWidth: null, sortable: true, overflow: false, align: 'center'},
{key: 'description', visible: true, label: '标准描述', minWidth: null, sortable: true, overflow: false, align: 'center'},
{key: 'price', visible: true, label: '价格(元)', minWidth: null, sortable: true, overflow: false, align: 'center'},
{key: 'deleted', visible: true, label: '逻辑删除标志', minWidth: null, sortable: true, overflow: false, align: 'center'},
],
//
orderSorts: ['ascending', 'descending', null],
//
loading: true,
//
ids: [],
//
single: true,
//
multiple: true,
//
showSearch: true,
//
total: 0,
// API
apiPriceList: [],
//
title: "",
//
open: false,
defaultSort,
//
queryParams: {
pageNum: 1,
pageSize: 10,
orderByColumn: defaultSort.prop,
isAsc: defaultSort.order,
id: null,
type: null,
unit: null,
name: null,
description: null,
price: null,
createBy: null,
updateBy: null,
deleted: null
},
//
form: {},
//
rules: {
createTime: [
{ required: true, message: "创建时间不能为空", trigger: "blur" }
],
deleted: [
{ required: true, message: "逻辑删除标志不能为空", trigger: "blur" }
]
}
};
},
created() {
this.getList();
},
methods: {
/** 当排序按钮被点击时触发 **/
onSortChange(column) {
if (column.order == null) {
this.queryParams.orderByColumn = defaultSort.prop;
this.queryParams.isAsc = defaultSort.order;
} else {
this.queryParams.orderByColumn = column.prop;
this.queryParams.isAsc = column.order;
}
this.getList();
},
/** 查询API收费标准列表 */
getList() {
this.loading = true;
listApiPrice(this.queryParams).then(response => {
this.apiPriceList = response.rows;
this.total = response.total;
this.loading = false;
});
},
//
cancel() {
this.open = false;
this.reset();
},
//
reset() {
this.form = {
id: null,
type: null,
num: null,
unit: null,
name: null,
description: null,
price: null,
createTime: null,
createBy: null,
updateTime: null,
updateBy: null,
deleted: null
};
this.resetForm("form");
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.resetForm("queryForm");
this.handleQuery();
},
//
handleSelectionChange(selection) {
this.ids = selection.map(item => item.id)
this.single = selection.length!==1
this.multiple = !selection.length
},
/** 新增按钮操作 */
handleAdd() {
this.reset();
this.open = true;
this.title = "添加API收费标准";
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
const id = row.id || this.ids
getApiPrice(id).then(response => {
this.form = response.data;
this.open = true;
this.title = "修改API收费标准";
});
},
/** 提交按钮 */
submitForm() {
this.$refs["form"].validate(valid => {
if (valid) {
if (this.form.id != null) {
updateApiPrice(this.form).then(response => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.getList();
});
} else {
addApiPrice(this.form).then(response => {
this.$modal.msgSuccess("新增成功");
this.open = false;
this.getList();
});
}
}
});
},
/** 删除按钮操作 */
handleDelete(row) {
const ids = row.id || this.ids;
this.$modal.confirm('是否确认删除API收费标准编号为"' + ids + '"的数据项?').then(function() {
return delApiPrice(ids);
}).then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
}).catch(() => {});
},
/** 导出按钮操作 */
handleExport() {
this.download('ss/apiPrice/export', {
...this.queryParams
}, `apiPrice_${new Date().getTime()}.xlsx`)
}
}
};
</script>