|
|
@@ -0,0 +1,249 @@
|
|
|
+<template>
|
|
|
+ <div class="p-2">
|
|
|
+ <transition :enter-active-class="proxy?.animate.searchAnimate.enter" :leave-active-class="proxy?.animate.searchAnimate.leave">
|
|
|
+ <div v-show="showSearch" class="mb-[10px]">
|
|
|
+ <el-card shadow="hover">
|
|
|
+ <el-form ref="queryFormRef" :model="queryParams" :inline="true">
|
|
|
+ <el-form-item label="数据来源" prop="dataSource">
|
|
|
+ <el-input v-model="queryParams.dataSource" placeholder="请输入数据来源" clearable @keyup.enter="handleQuery" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item>
|
|
|
+ <el-button type="primary" icon="Search" @click="handleQuery">搜索</el-button>
|
|
|
+ <el-button icon="Refresh" @click="resetQuery">重置</el-button>
|
|
|
+ </el-form-item>
|
|
|
+ </el-form>
|
|
|
+ </el-card>
|
|
|
+ </div>
|
|
|
+ </transition>
|
|
|
+
|
|
|
+ <el-card shadow="never">
|
|
|
+ <template #header>
|
|
|
+ <el-row :gutter="10" class="mb8">
|
|
|
+ <el-col :span="1.5">
|
|
|
+ <el-button type="primary" plain icon="Plus" @click="handleAdd" v-hasPermi="['system:taxrate:add']">新增</el-button>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="1.5">
|
|
|
+ <el-button type="success" plain icon="Edit" :disabled="single" @click="handleUpdate()" v-hasPermi="['system:taxrate:edit']">修改</el-button>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="1.5">
|
|
|
+ <el-button type="danger" plain icon="Delete" :disabled="multiple" @click="handleDelete()" v-hasPermi="['system:taxrate:remove']">删除</el-button>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="1.5">
|
|
|
+ <el-button type="warning" plain icon="Download" @click="handleExport" v-hasPermi="['system:taxrate:export']">导出</el-button>
|
|
|
+ </el-col>
|
|
|
+ <right-toolbar v-model:showSearch="showSearch" @queryTable="getList"></right-toolbar>
|
|
|
+ </el-row>
|
|
|
+ </template>
|
|
|
+
|
|
|
+ <el-table v-loading="loading" border :data="taxrateList" @selection-change="handleSelectionChange">
|
|
|
+ <el-table-column type="selection" width="55" align="center" />
|
|
|
+ <el-table-column label="主键,自增ID" align="center" prop="id" v-if="false" />
|
|
|
+ <el-table-column label="税率编号" align="center" prop="taxrateNo" />
|
|
|
+ <el-table-column label="税率名称" align="center" prop="taxrateName" />
|
|
|
+ <el-table-column label="税率" align="center" prop="taxrate" />
|
|
|
+ <el-table-column label="数据来源" align="center" prop="dataSource" />
|
|
|
+ <el-table-column label="是否展示" align="center" prop="isShow">
|
|
|
+ <template #default="scope">
|
|
|
+ <el-switch v-model="scope.row.isShow" active-value="1" inactive-value="0" @change="handleIsShowChange(scope.row)" />
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
|
|
+ <template #default="scope">
|
|
|
+ <el-tooltip content="修改" placement="top">
|
|
|
+ <el-button link type="primary" icon="Edit" @click="handleUpdate(scope.row)" v-hasPermi="['system:taxrate:edit']"></el-button>
|
|
|
+ </el-tooltip>
|
|
|
+ <el-tooltip content="删除" placement="top">
|
|
|
+ <el-button link type="primary" icon="Delete" @click="handleDelete(scope.row)" v-hasPermi="['system:taxrate:remove']"></el-button>
|
|
|
+ </el-tooltip>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ </el-table>
|
|
|
+
|
|
|
+ <pagination v-show="total > 0" :total="total" v-model:page="queryParams.pageNum" v-model:limit="queryParams.pageSize" @pagination="getList" />
|
|
|
+ </el-card>
|
|
|
+ <!-- 添加或修改产品税率配置对话框 -->
|
|
|
+ <el-dialog :title="dialog.title" v-model="dialog.visible" width="500px" append-to-body>
|
|
|
+ <el-form ref="taxrateFormRef" :model="form" :rules="rules" label-width="80px">
|
|
|
+ <el-form-item label="税率编号" prop="taxrateNo">
|
|
|
+ <el-input v-model="form.taxrateNo" placeholder="请输入税率编号" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="税率名称" prop="taxrateName">
|
|
|
+ <el-input v-model="form.taxrateName" placeholder="请输入税率名称" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="税率" prop="taxrate">
|
|
|
+ <el-input v-model="form.taxrate" placeholder="请输入税率" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="数据来源" prop="dataSource">
|
|
|
+ <el-input v-model="form.dataSource" placeholder="请输入数据来源" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="是否显示:1=是,0=否" prop="isShow">
|
|
|
+ <el-radio-group v-model="form.isShow">
|
|
|
+ <el-radio value="1">是</el-radio>
|
|
|
+ <el-radio value="0">否</el-radio>
|
|
|
+ </el-radio-group>
|
|
|
+ </el-form-item>
|
|
|
+ </el-form>
|
|
|
+ <template #footer>
|
|
|
+ <div class="dialog-footer">
|
|
|
+ <el-button :loading="buttonLoading" type="primary" @click="submitForm">确 定</el-button>
|
|
|
+ <el-button @click="cancel">取 消</el-button>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ </el-dialog>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script setup name="Taxrate" lang="ts">
|
|
|
+import { listTaxrate, getTaxrate, delTaxrate, addTaxrate, updateTaxrate } from '@/api/system/taxrate';
|
|
|
+import { TaxrateVO, TaxrateQuery, TaxrateForm } from '@/api/system/taxrate/types';
|
|
|
+
|
|
|
+const { proxy } = getCurrentInstance() as ComponentInternalInstance;
|
|
|
+
|
|
|
+const taxrateList = ref<TaxrateVO[]>([]);
|
|
|
+const buttonLoading = ref(false);
|
|
|
+const loading = ref(true);
|
|
|
+const showSearch = ref(true);
|
|
|
+const ids = ref<Array<string | number>>([]);
|
|
|
+const single = ref(true);
|
|
|
+const multiple = ref(true);
|
|
|
+const total = ref(0);
|
|
|
+
|
|
|
+const queryFormRef = ref<ElFormInstance>();
|
|
|
+const taxrateFormRef = ref<ElFormInstance>();
|
|
|
+
|
|
|
+const dialog = reactive<DialogOption>({
|
|
|
+ visible: false,
|
|
|
+ title: ''
|
|
|
+});
|
|
|
+
|
|
|
+const initFormData: TaxrateForm = {
|
|
|
+ id: undefined,
|
|
|
+ taxrateNo: undefined,
|
|
|
+ taxrateName: undefined,
|
|
|
+ taxrate: undefined,
|
|
|
+ dataSource: undefined,
|
|
|
+ isShow: undefined,
|
|
|
+}
|
|
|
+const data = reactive<PageData<TaxrateForm, TaxrateQuery>>({
|
|
|
+ form: {...initFormData},
|
|
|
+ queryParams: {
|
|
|
+ pageNum: 1,
|
|
|
+ pageSize: 10,
|
|
|
+ dataSource: undefined,
|
|
|
+ params: {
|
|
|
+ }
|
|
|
+ },
|
|
|
+ rules: {
|
|
|
+ }
|
|
|
+});
|
|
|
+
|
|
|
+const { queryParams, form, rules } = toRefs(data);
|
|
|
+
|
|
|
+/** 查询产品税率配置列表 */
|
|
|
+const getList = async () => {
|
|
|
+ loading.value = true;
|
|
|
+ const res = await listTaxrate(queryParams.value);
|
|
|
+ taxrateList.value = res.rows;
|
|
|
+ total.value = res.total;
|
|
|
+ loading.value = false;
|
|
|
+}
|
|
|
+
|
|
|
+/** 取消按钮 */
|
|
|
+const cancel = () => {
|
|
|
+ reset();
|
|
|
+ dialog.visible = false;
|
|
|
+}
|
|
|
+
|
|
|
+/** 表单重置 */
|
|
|
+const reset = () => {
|
|
|
+ form.value = {...initFormData};
|
|
|
+ taxrateFormRef.value?.resetFields();
|
|
|
+}
|
|
|
+
|
|
|
+/** 搜索按钮操作 */
|
|
|
+const handleQuery = () => {
|
|
|
+ queryParams.value.pageNum = 1;
|
|
|
+ getList();
|
|
|
+}
|
|
|
+
|
|
|
+/** 重置按钮操作 */
|
|
|
+const resetQuery = () => {
|
|
|
+ queryFormRef.value?.resetFields();
|
|
|
+ handleQuery();
|
|
|
+}
|
|
|
+
|
|
|
+/** 多选框选中数据 */
|
|
|
+const handleSelectionChange = (selection: TaxrateVO[]) => {
|
|
|
+ ids.value = selection.map(item => item.id);
|
|
|
+ single.value = selection.length != 1;
|
|
|
+ multiple.value = !selection.length;
|
|
|
+}
|
|
|
+
|
|
|
+/** 是否显示状态修改 */
|
|
|
+const handleIsShowChange = async (row: TaxrateVO) => {
|
|
|
+ const updateData: TaxrateForm = {
|
|
|
+ id: row.id,
|
|
|
+ taxrateNo: row.taxrateNo,
|
|
|
+ taxrateName: row.taxrateName,
|
|
|
+ taxrate: row.taxrate,
|
|
|
+ dataSource: row.dataSource,
|
|
|
+ isShow: row.isShow
|
|
|
+ };
|
|
|
+ await updateTaxrate(updateData);
|
|
|
+ proxy?.$modal.msgSuccess("修改成功");
|
|
|
+}
|
|
|
+
|
|
|
+/** 新增按钮操作 */
|
|
|
+const handleAdd = () => {
|
|
|
+ reset();
|
|
|
+ dialog.visible = true;
|
|
|
+ dialog.title = "添加产品税率配置";
|
|
|
+}
|
|
|
+
|
|
|
+/** 修改按钮操作 */
|
|
|
+const handleUpdate = async (row?: TaxrateVO) => {
|
|
|
+ reset();
|
|
|
+ const _id = row?.id || ids.value[0]
|
|
|
+ const res = await getTaxrate(_id);
|
|
|
+ Object.assign(form.value, res.data);
|
|
|
+ dialog.visible = true;
|
|
|
+ dialog.title = "修改产品税率配置";
|
|
|
+}
|
|
|
+
|
|
|
+/** 提交按钮 */
|
|
|
+const submitForm = () => {
|
|
|
+ taxrateFormRef.value?.validate(async (valid: boolean) => {
|
|
|
+ if (valid) {
|
|
|
+ buttonLoading.value = true;
|
|
|
+ if (form.value.id) {
|
|
|
+ await updateTaxrate(form.value).finally(() => buttonLoading.value = false);
|
|
|
+ } else {
|
|
|
+ await addTaxrate(form.value).finally(() => buttonLoading.value = false);
|
|
|
+ }
|
|
|
+ proxy?.$modal.msgSuccess("操作成功");
|
|
|
+ dialog.visible = false;
|
|
|
+ await getList();
|
|
|
+ }
|
|
|
+ });
|
|
|
+}
|
|
|
+
|
|
|
+/** 删除按钮操作 */
|
|
|
+const handleDelete = async (row?: TaxrateVO) => {
|
|
|
+ const _ids = row?.id || ids.value;
|
|
|
+ await proxy?.$modal.confirm('是否确认删除产品税率配置编号为"' + _ids + '"的数据项?').finally(() => loading.value = false);
|
|
|
+ await delTaxrate(_ids);
|
|
|
+ proxy?.$modal.msgSuccess("删除成功");
|
|
|
+ await getList();
|
|
|
+}
|
|
|
+
|
|
|
+/** 导出按钮操作 */
|
|
|
+const handleExport = () => {
|
|
|
+ proxy?.download('system/taxrate/export', {
|
|
|
+ ...queryParams.value
|
|
|
+ }, `taxrate_${new Date().getTime()}.xlsx`)
|
|
|
+}
|
|
|
+
|
|
|
+onMounted(() => {
|
|
|
+ getList();
|
|
|
+});
|
|
|
+</script>
|