|
@@ -0,0 +1,222 @@
|
|
|
|
+<template>
|
|
|
|
+ <div>
|
|
|
|
+ <BasicTable @register="registerTable">
|
|
|
|
+ <template #toolbar>
|
|
|
|
+ <a-button type="primary" @click="handleEdit" v-if="getCheckPerm('algorithm-add')"
|
|
|
|
+ >授权</a-button
|
|
|
|
+ >
|
|
|
|
+ </template>
|
|
|
|
+ <template #copy="{ record }">
|
|
|
|
+ <a @click="handleCopy(record.authorizeKey)">
|
|
|
|
+ {{ record.authorizeKey }}
|
|
|
|
+ </a>
|
|
|
|
+ </template>
|
|
|
|
+ <template #action="{ record }">
|
|
|
|
+ <TableAction
|
|
|
|
+ :actions="[
|
|
|
|
+ {
|
|
|
|
+ label: '编辑',
|
|
|
|
+ ifShow: getCheckPerm('algorithm-updata'),
|
|
|
|
+ onClick: handleEdit.bind(null, record),
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ label: '删除',
|
|
|
|
+ color: 'error',
|
|
|
|
+ ifShow: getCheckPerm('algorithm-delete'),
|
|
|
|
+ onClick: handleDelete.bind(null, record),
|
|
|
|
+ },
|
|
|
|
+ ]"
|
|
|
|
+ />
|
|
|
|
+ </template>
|
|
|
|
+ </BasicTable>
|
|
|
|
+ <AddModal @register="register" @update="reload" />
|
|
|
|
+ </div>
|
|
|
|
+</template>
|
|
|
|
+<script lang="ts">
|
|
|
|
+ import { defineComponent, h } from 'vue';
|
|
|
|
+ import {
|
|
|
|
+ BasicTable,
|
|
|
|
+ useTable,
|
|
|
|
+ TableAction,
|
|
|
|
+ BasicColumn,
|
|
|
|
+ TableImg,
|
|
|
|
+ FormProps,
|
|
|
|
+ } from '/@/components/Table';
|
|
|
|
+ import { rtkInfoList, rtkdelOrEdit } from '/@/api/product';
|
|
|
|
+ import { useModal } from '/@/components/Modal';
|
|
|
|
+ import { useI18n } from '/@/hooks/web/useI18n';
|
|
|
|
+ import { copyTextToClipboard } from '/@/hooks/web/useCopyToClipboard';
|
|
|
|
+ import AddModal from './AddModal.vue';
|
|
|
|
+ import { useMessage } from '/@/hooks/web/useMessage';
|
|
|
|
+ import { usePermissionStore } from '/@/store/modules/permission';
|
|
|
|
+ import { incrementUseTypeList } from '/@/api/account';
|
|
|
|
+ export default defineComponent({
|
|
|
|
+ components: {
|
|
|
|
+ BasicTable,
|
|
|
|
+ AddModal,
|
|
|
|
+ TableAction,
|
|
|
|
+ TableImg,
|
|
|
|
+ },
|
|
|
|
+ setup() {
|
|
|
|
+ const { t } = useI18n();
|
|
|
|
+ const { createMessage, createConfirm } = useMessage();
|
|
|
|
+ const permissionStore = usePermissionStore();
|
|
|
|
+ const { getCheckPerm } = permissionStore;
|
|
|
|
+ const [register, { openModal }] = useModal();
|
|
|
|
+ const columns: BasicColumn[] = [
|
|
|
|
+ {
|
|
|
|
+ title: '板卡类型',
|
|
|
|
+ dataIndex: 'rtkType',
|
|
|
|
+ ellipsis: true,
|
|
|
|
+ width: 120,
|
|
|
|
+ customRender: ({ record }) => {
|
|
|
|
+ let obj = {
|
|
|
|
+ 0: '千寻板卡千寻账号',
|
|
|
|
+ 1: '千寻板卡移动账号',
|
|
|
|
+ 2: '北云板卡移动账号',
|
|
|
|
+ };
|
|
|
|
+ return obj[record.rtkType] || '-';
|
|
|
|
+ },
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: 'IP地址',
|
|
|
|
+ ellipsis: true,
|
|
|
|
+ dataIndex: 'ipAddr',
|
|
|
|
+ width: 100,
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: '挂载点',
|
|
|
|
+ ellipsis: true,
|
|
|
|
+ dataIndex: 'mountPoint',
|
|
|
|
+ width: 120,
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: '端口',
|
|
|
|
+ ellipsis: true,
|
|
|
|
+ dataIndex: 'port',
|
|
|
|
+ width: 50,
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: '用户名称',
|
|
|
|
+ ellipsis: true,
|
|
|
|
+ dataIndex: 'userName',
|
|
|
|
+ width: 120,
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: '板卡sn号',
|
|
|
|
+ ellipsis: true,
|
|
|
|
+ dataIndex: 'rtkSnCode',
|
|
|
|
+ width: 150,
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: '运营商',
|
|
|
|
+ ellipsis: true,
|
|
|
|
+ dataIndex: 'operator',
|
|
|
|
+ width: 120,
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: '创建时间',
|
|
|
|
+ ellipsis: true,
|
|
|
|
+ dataIndex: 'createTime',
|
|
|
|
+ width: 160,
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: 'RTK使用状态',
|
|
|
|
+ dataIndex: 'status',
|
|
|
|
+ ellipsis: true,
|
|
|
|
+ width: 120,
|
|
|
|
+ customRender: ({ record }) => {
|
|
|
|
+ return record.status == 0 ? '正常' : '待激活';
|
|
|
|
+ },
|
|
|
|
+ },
|
|
|
|
+ ];
|
|
|
|
+ const searchForm: Partial<FormProps> = {
|
|
|
|
+ labelWidth: 100,
|
|
|
|
+ autoSubmitOnEnter: true,
|
|
|
|
+ schemas: [
|
|
|
|
+ {
|
|
|
|
+ field: 'rtkSnCode',
|
|
|
|
+ label: '板卡sn号',
|
|
|
|
+ component: 'Input',
|
|
|
|
+ colProps: {
|
|
|
|
+ xl: 8,
|
|
|
|
+ xxl: 8,
|
|
|
|
+ },
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ field: 'userName',
|
|
|
|
+ label: '用户名称',
|
|
|
|
+ component: 'Input',
|
|
|
|
+ colProps: {
|
|
|
|
+ xl: 8,
|
|
|
|
+ xxl: 8,
|
|
|
|
+ },
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ field: 'operator',
|
|
|
|
+ label: '运营商',
|
|
|
|
+ component: 'Input',
|
|
|
|
+ colProps: {
|
|
|
|
+ xl: 8,
|
|
|
|
+ xxl: 8,
|
|
|
|
+ },
|
|
|
|
+ },
|
|
|
|
+ ],
|
|
|
|
+ };
|
|
|
|
+ const [registerTable, { reload }] = useTable({
|
|
|
|
+ api: rtkInfoList,
|
|
|
|
+ title: 'rtk列表',
|
|
|
|
+ columns: columns,
|
|
|
|
+ useSearchForm: true,
|
|
|
|
+ showIndexColumn: true,
|
|
|
|
+ formConfig: searchForm,
|
|
|
|
+ showTableSetting: true,
|
|
|
|
+ fetchSetting: {
|
|
|
|
+ pageField: 'pageNum',
|
|
|
|
+ sizeField: 'pageSize',
|
|
|
|
+ listField: 'list',
|
|
|
|
+ totalField: 'total',
|
|
|
|
+ },
|
|
|
|
+ actionColumn: {
|
|
|
|
+ width: 100,
|
|
|
|
+ title: '操作',
|
|
|
|
+ dataIndex: 'action',
|
|
|
|
+ slots: { customRender: 'action' },
|
|
|
|
+ },
|
|
|
|
+ rowKey: 'id',
|
|
|
|
+ canResize: true,
|
|
|
|
+ });
|
|
|
|
+ async function handleDelete(record) {
|
|
|
|
+ createConfirm({
|
|
|
|
+ iconType: 'warning',
|
|
|
|
+ title: () => h('span', '温馨提示'),
|
|
|
|
+ content: () => h('span', '确定要删除吗?'),
|
|
|
|
+ onOk: async () => {
|
|
|
|
+ await rtkdelOrEdit({ id: record.id });
|
|
|
|
+ reload();
|
|
|
|
+ createMessage.success(t('common.optSuccess'));
|
|
|
|
+ },
|
|
|
|
+ });
|
|
|
|
+ }
|
|
|
|
+ function handleCopy(str: string) {
|
|
|
|
+ copyTextToClipboard(str)
|
|
|
|
+ createMessage.success('复制成功');
|
|
|
|
+ }
|
|
|
|
+ function handleEdit(record = {}) {
|
|
|
|
+ openModal(true, {
|
|
|
|
+ ...record,
|
|
|
|
+ authorizeTime: `${record.authorizeTime || '10'}_${record.authorizeTimeUnit || '1'}`,
|
|
|
|
+ });
|
|
|
|
+ }
|
|
|
|
+ return {
|
|
|
|
+ registerTable,
|
|
|
|
+ handleCopy,
|
|
|
|
+ handleDelete,
|
|
|
|
+ reload,
|
|
|
|
+ register,
|
|
|
|
+ getCheckPerm,
|
|
|
|
+ handleEdit,
|
|
|
|
+ };
|
|
|
|
+ },
|
|
|
|
+ });
|
|
|
|
+</script>
|