123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220 |
- <template>
- <div class="dictTenantDtl">
- <el-button type="primary" @click="openModal">添加</el-button>
- <div class="content">
- <byTable :source="sourceList.data" :pagination="sourceList.pagination" :config="config" :loading="loading" highlight-current-row @get-list="getList">
- <template #slotName="{ item }">
- {{ item.createTime }}
- </template>
- </byTable>
- </div>
- <el-dialog :title="modalType == 'add' ? '新增' : '编辑'" v-model="dialogVisible" width="400" v-loading="loading">
- <byForm :formConfig="formConfig" :formOption="formOption" v-model="formData.data" :rules="rules" ref="byform"> </byForm>
- <template #footer>
- <el-button @click="dialogVisible = false" size="large">取 消</el-button>
- <el-button type="primary" @click="submitForm('byform')" size="large" :loading="submitLoading"> 确 定 </el-button>
- </template>
- </el-dialog>
- </div>
- </template>
- <script setup>
- import { ElMessage, ElMessageBox } from "element-plus";
- import byTable from "@/components/byTable/index";
- import byForm from "@/components/byForm/index";
- import { computed, ref, watch } from "vue";
- const { proxy } = getCurrentInstance();
- const loading = ref(false);
- const submitLoading = ref(false);
- defineProps({
- data: {
- type: Object,
- default: false,
- },
- });
- watch(proxy.data, () => {
- getList();
- });
- const sourceList = ref({
- data: [],
- pagination: {
- total: 3,
- pageNum: 1,
- pageSize: 10,
- },
- });
- let dialogVisible = ref(false);
- let modalType = ref("add");
- let rules = ref({
- dictKey: [{ required: true, message: "请输入key", trigger: "blur" }],
- dictValue: [{ required: true, message: "请输入val", trigger: "blur" }],
- sort: [{ required: true, message: "请输入排序", trigger: "blur" }],
- });
- const config = computed(() => {
- return [
- {
- attrs: {
- label: "键",
- prop: "dictKey",
- },
- },
- {
- attrs: {
- label: "值",
- prop: "dictValue",
- },
- },
- {
- attrs: {
- label: "排序",
- prop: "sort",
- },
- },
- {
- attrs: {
- label: "操作",
- width: "200",
- align: "right",
- },
- // 渲染 el-button,一般用在最后一列。
- renderHTML(row) {
- if (row.type == 2) {
- return [
- {
- attrs: {
- label: "修改",
- type: "primary",
- text: true,
- },
- el: "button",
- click() {
- getDtl(row);
- },
- },
- {
- attrs: {
- label: "删除",
- type: "danger",
- text: true,
- },
- el: "button",
- click() {
- // 弹窗提示是否删除
- ElMessageBox.confirm("此操作将删除该数据, 是否继续?", "提示", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning",
- }).then(() => {
- // 删除
- proxy
- .post("/dictTenantData/delete", {
- id: row.id,
- })
- .then((res) => {
- ElMessage({
- message: "删除成功",
- type: "success",
- });
- getList();
- });
- });
- },
- },
- ];
- }
- },
- },
- ];
- });
- let formData = reactive({
- data: {},
- treeData: [],
- });
- const formOption = reactive({
- inline: true,
- labelWidth: 100,
- itemWidth: 100,
- rules: [],
- });
- const byform = ref(null);
- const formConfig = computed(() => {
- return [
- {
- type: "input",
- prop: "dictKey",
- label: "键",
- required: true,
- },
- {
- type: "input",
- prop: "dictValue",
- label: "值",
- },
- {
- label: "排序",
- prop: "sort",
- type: "input",
- itemType: "number",
- },
- ];
- });
- const getList = async (req) => {
- console.log(proxy.data.data.code);
- sourceList.value.pagination = {
- ...sourceList.value.pagination,
- ...req,
- dictCode: proxy.data.data.code,
- tenantId: proxy.data.data.tenantId,
- };
- loading.value = true;
- proxy.post("/dictTenantData/page", sourceList.value.pagination).then((message) => {
- sourceList.value.data = message.rows;
- sourceList.value.pagination.total = message.total;
- console.log(sourceList.value.data);
- setTimeout(() => {
- loading.value = false;
- }, 200);
- });
- };
- const openModal = () => {
- dialogVisible.value = true;
- modalType.value = "add";
- formData.data = {};
- };
- const submitForm = () => {
- console.log(byform.value);
- byform.value.handleSubmit(() => {
- submitLoading.value = true;
- formData.data.dictCode = proxy.data.data.code;
- formData.data.tenantId = proxy.data.data.tenantId;
- proxy
- .post("/dictTenantData/" + modalType.value, formData.data)
- .then(() => {
- ElMessage({
- message: modalType.value == "add" ? "添加成功" : "编辑成功",
- type: "success",
- });
- dialogVisible.value = false;
- submitLoading.value = false;
- getList();
- })
- .catch(() => {
- submitLoading.value = false;
- });
- });
- };
- const getDtl = (row) => {
- formData.data = { ...row };
- modalType.value = "edit";
- dialogVisible.value = true;
- };
- getList();
- </script>
- <style lang="scss" scoped>
- .tenant {
- padding: 20px;
- }
- </style>
|