Browse Source

feat(scenes): add device mock and data structrue

gemercheung 3 years ago
parent
commit
d99a27d1c1

+ 38 - 0
mock/scene/list.ts

@@ -0,0 +1,38 @@
+import { MockMethod } from 'vite-plugin-mock';
+import { mock, Random } from 'mockjs';
+import { resultPageSuccess } from '../_util';
+Random.extend({
+  phone: function () {
+    const phonePrefixs = ['132', '135', '189']; // 自己写前缀哈
+    return this.pick(phonePrefixs) + mock(/\d{8}/); //Number()
+  },
+});
+// console.log(Random.phone());
+// 生成 1 - 10 个 随机手机号码
+
+const demoList = (() => {
+  const result: any[] = [];
+  for (let index = 0; index < 200; index++) {
+    result.push({
+      id: `${index}`,
+      name: '@ctitle(5,15)',
+      cover: `@image('313x200', '@color', 'demo封面')`,
+      link: `https://zfb.4dkankan.com/smobile.html?m=@string( 'lower/number',5,10)`,
+      createTime: '@datetime',
+      isShow: '@boolean(1, 9, true)',
+    });
+  }
+  return result;
+})();
+
+export default [
+  {
+    url: '/basic-api/zfb/scene/list',
+    timeout: 1000,
+    method: 'get',
+    response: ({ query }) => {
+      const { page = 1, pageSize = 20 } = query;
+      return resultPageSuccess(page, pageSize, demoList);
+    },
+  },
+] as MockMethod[];

+ 20 - 0
src/api/scene/list.ts

@@ -0,0 +1,20 @@
+import { defHttp } from '/@/utils/http/axios';
+import { PageParams, RentListGetResultModel } from './model';
+
+enum Api {
+  pageList = '/zfb/scene/list',
+}
+
+/**
+ * @description: Get sample list value
+ */
+
+export const ListApi = (params: PageParams) =>
+  defHttp.get<RentListGetResultModel>({
+    url: Api.pageList,
+    params,
+    headers: {
+      // @ts-ignore
+      ignoreCancelToken: true,
+    },
+  });

+ 19 - 0
src/api/scene/model.ts

@@ -0,0 +1,19 @@
+import { BasicPageParams, BasicFetchResult } from '/@/api/model/baseModel';
+/**
+ * @description: Request list interface parameters
+ */
+export type PageParams = BasicPageParams;
+
+export interface DeviceListItem {
+  id: number;
+  name: string;
+  image: string;
+  link: string;
+  createTime: string;
+  isShow: boolean;
+}
+
+/**
+ * @description: Request list return value
+ */
+export type RentListGetResultModel = BasicFetchResult<DeviceListItem>;

+ 3 - 0
src/locales/lang/en/common.ts

@@ -17,4 +17,7 @@ export default {
 
   light: 'Light',
   dark: 'Dark',
+
+  yes: 'yes',
+  no: 'yes',
 };

+ 3 - 0
src/locales/lang/zh-CN/common.ts

@@ -17,4 +17,7 @@ export default {
 
   light: '亮色主题',
   dark: '黑暗主题',
+
+  yes: '是',
+  no: '否',
 };

+ 2 - 2
src/router/routes/modules/scenes.ts

@@ -17,7 +17,7 @@ const scenes: AppRouteModule = {
     {
       path: 'down',
       name: 'ScenesDownload',
-      component: () => import('/@/views/dashboard/scenes/list.vue'),
+      component: () => import('/@/views/dashboard/scenes/download.vue'),
       meta: {
         title: t('routes.dashboard.scenesDownload'),
         icon: 'mdi:box-download',
@@ -35,7 +35,7 @@ const scenes: AppRouteModule = {
     {
       path: 'live',
       name: 'ScenesLive',
-      component: () => import('/@/views/dashboard/scenes/list.vue'),
+      component: () => import('/@/views/dashboard/scenes/live.vue'),
       meta: {
         title: t('routes.dashboard.scenesLive'),
         icon: 'carbon:flow-stream',

+ 165 - 2
src/views/dashboard/scenes/list.vue

@@ -1,5 +1,168 @@
 <template>
-  <div> 场景列表</div>
+  <div class="p-4">
+    <BasicTable @register="registerTable">
+      <template #toolbar> </template>
+      <template #cover="{ record }">
+        <TableImg :size="150" :simpleShow="true" :imgList="[record.cover]" />
+      </template>
+      <template #action>
+        <TableAction
+          :actions="[
+            {
+              icon: 'clarity:note-edit-line',
+              label: '编辑',
+              onClick: () => {
+                createMessage.info(`暂未接入`);
+              },
+            },
+            {
+              icon: 'ant-design:delete-outlined',
+              color: 'error',
+              label: '删除',
+              popConfirm: {
+                title: '是否确认删除',
+                confirm: () => {
+                  createMessage.info(`暂未接入`);
+                },
+              },
+            },
+          ]"
+        />
+      </template>
+    </BasicTable>
+  </div>
 </template>
+<script lang="ts">
+  import { defineComponent } from 'vue';
+  import {
+    BasicTable,
+    useTable,
+    BasicColumn,
+    FormProps,
+    TableAction,
+    TableImg,
+  } from '/@/components/Table';
+  import { useMessage } from '/@/hooks/web/useMessage';
+  import { uploadApi } from '/@/api/sys/upload';
+  import { Switch } from 'ant-design-vue';
+  import { h } from 'vue';
+  import { ListApi } from '/@/api/scene/list';
+  import { useI18n } from '/@/hooks/web/useI18n';
 
-<script lang="ts" setup></script>
+  export default defineComponent({
+    components: { BasicTable, TableAction, TableImg },
+    setup() {
+      const { createMessage } = useMessage();
+      const { t } = useI18n();
+      const columns: BasicColumn[] = [
+        {
+          title: 'ID',
+          dataIndex: 'id',
+          fixed: 'left',
+          width: 100,
+        },
+        {
+          title: '场景名称',
+          dataIndex: 'name',
+          width: 230,
+        },
+        {
+          title: '封面',
+          dataIndex: 'cover',
+          slots: { customRender: 'cover' },
+          width: 120,
+        },
+        {
+          title: '场景链接',
+          dataIndex: 'link',
+          slots: { customRender: 'link' },
+          width: 180,
+        },
+        {
+          title: '是否显示',
+          dataIndex: 'isShow',
+          width: 180,
+          customRender: ({ record }) => {
+            if (!Reflect.has(record, 'pendingStatus')) {
+              record.pendingStatus = false;
+            }
+            return h(Switch, {
+              checked: record.isShow,
+              checkedChildren: t('common.yes'),
+              unCheckedChildren: t('common.no'),
+              loading: false,
+              onChange(checked: boolean) {
+                record.pendingStatus = true;
+                const newStatus = checked ? '1' : '0';
+                const { createMessage } = useMessage();
+                createMessage.info(`暂未接入` + newStatus);
+                // setRoleStatus(record.id, newStatus)
+                //   .then(() => {
+                //     record.status = newStatus;
+                //     createMessage.success(`已成功修改角色状态`);
+                //   })
+                //   .catch(() => {
+                //     createMessage.error('修改角色状态失败');
+                //   })
+                //   .finally(() => {
+                //     record.pendingStatus = false;
+                //   });
+              },
+            });
+          },
+        },
+
+        {
+          title: '操作',
+          dataIndex: '',
+          slots: { customRender: 'action' },
+          width: 120,
+        },
+      ];
+
+      const searchForm: Partial<FormProps> = {
+        labelWidth: 100,
+        schemas: [
+          {
+            field: 'id',
+            label: 'id',
+            component: 'Input',
+            colProps: {
+              xl: 3,
+              xxl: 3,
+            },
+          },
+          {
+            field: 'userName',
+            label: '企业账号',
+            component: 'Input',
+            colProps: {
+              xl: 12,
+              xxl: 8,
+            },
+          },
+        ],
+      };
+      // { getForm }
+      const [registerTable] = useTable({
+        title: '场景列表',
+        api: ListApi,
+        columns: columns,
+        useSearchForm: false,
+        formConfig: searchForm,
+        showTableSetting: true,
+        tableSetting: { fullScreen: true },
+        showIndexColumn: false,
+        rowKey: 'id',
+      });
+
+      // pagination.value = { pageSize: 20 };
+      return {
+        registerTable,
+        createMessage,
+        t,
+        uploadApi: uploadApi as any,
+      };
+    },
+  });
+</script>