123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174 |
- <template>
- <div>
- <div class="tw-bg-white tw-p-5 tw-rounded-xl tw-mb-5">
- <a-input
- v-model:value="code"
- style="width: 178px"
- placeholder="顶级机构代码"
- allowClear
- ></a-input>
- <span class="tw-mr-4"></span>
- <a-input
- v-model:value="name"
- class="tw-mr-4"
- style="width: 178px"
- placeholder="顶级机构名称"
- allowClear
- ></a-input>
- <span class="tw-mr-4"></span>
- <StateSelect v-model:value="enable" />
- <span class="tw-mr-4"></span>
- <a-button @click="search" class="query-btn">查询</a-button>
- <a-button @click="handleRootOrgSync" style="float: right">同步</a-button>
- </div>
- <div class="tw-bg-white tw-p-5 tw-rounded-xl">
- <a-table
- row-key="code"
- :columns="columns"
- :data-source="data"
- :pagination="{
- pageSize: pageSize,
- current: pageNo,
- total: totalElements,
- showTotal: (total: number) => `总数:${total}`,
- onChange: (pageNoChanged: number, pageSizeChanged: number) => {
- pageNo = pageNoChanged;
- pageSize = pageSizeChanged;
- }
- }"
- >
- <template #enable="{ text }">
- <a>{{ $filters.booleanEnableDisableFilter(text) }}</a>
- </template>
- <template #action="{ record }">
- <span>
- <a-button @click="showModal(record)">编辑</a-button>
- <a-button @click="editRootOrgSettings(record.id)"
- >特殊设置</a-button
- >
- </span>
- </template>
- </a-table>
- </div>
- <a-modal
- v-model:visible="visible"
- title="顶级机构信息页"
- @ok="handleOk"
- ok-text="确定"
- cancel-text="取消"
- >
- <a-form :labelCol="{ span: 5 }">
- <a-form-item label="顶级机构代码">
- <a-input disabled v-model:value="rootOrgObj.code"></a-input>
- </a-form-item>
- <a-form-item label="顶级机构名称">
- <a-input disabled v-model:value="rootOrgObj.name"></a-input>
- </a-form-item>
- <a-form-item label="状态">
- <a-radio-group disabled v-model:value="rootOrgObj.enable">
- <a-radio :value="true">启用</a-radio>
- <a-radio :value="false">禁用</a-radio>
- </a-radio-group>
- </a-form-item>
- <a-form-item label="顶级机构域名">
- <a-input v-model:value="rootOrgObj.domainName"></a-input>
- </a-form-item>
- </a-form>
- </a-modal>
- </div>
- </template>
- <script setup lang="ts">
- import { getRootOrgList, syncRootOrg, updateRootOrg } from "@/api/rootOrgPage";
- import router from "@/router";
- import { useMainStore } from "@/store";
- import { message } from "ant-design-vue";
- import { ref, onMounted, reactive } from "vue";
- const store = useMainStore();
- store.currentLocation = "基础管理 / 顶级机构管理";
- let code = $ref("");
- let name = $ref("");
- let enable = $ref(undefined as undefined | boolean);
- let data = $ref([]);
- let pageSize = $ref(10);
- let pageNo = $ref(1);
- let totalElements = $ref(0);
- async function search() {
- const res = await getRootOrgList({ code, name, enable, pageSize, pageNo });
- // console.log(res);
- data = res.data.content;
- pageNo = res.data.pageNo;
- pageSize = res.data.pageSize;
- totalElements = res.data.totalElements;
- }
- const columns = [
- {
- title: "顶级机构代码",
- dataIndex: "code",
- width: 150,
- },
- {
- title: "顶级机构名称",
- dataIndex: "name",
- width: 150,
- },
- {
- title: "状态",
- dataIndex: "enable",
- slots: { customRender: "enable" },
- },
- {
- title: "顶级机构域名",
- dataIndex: "domainName",
- },
- {
- title: "更新时间",
- dataIndex: "updateTime",
- },
- {
- title: "操作",
- key: "action",
- slots: { customRender: "action" },
- },
- ];
- onMounted(async () => {
- await search();
- });
- const visible = ref<boolean>(false);
- const showModal = (record: any) => {
- Object.assign(rootOrgObj, record);
- visible.value = true;
- };
- const editRootOrgSettings = (orgId: number) => {
- router.push("/basic/rootOrg/edit/" + orgId);
- };
- const handleOk = async (e: MouseEvent) => {
- await updateRootOrg({ domainName: rootOrgObj.domainName });
- visible.value = false;
- await search();
- };
- const rootOrgObj = reactive({
- code: "",
- name: "",
- enable: true,
- domainName: "",
- });
- async function handleRootOrgSync() {
- await syncRootOrg();
- message.success("操作成功");
- }
- </script>
|