You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
736 B
44 lines
736 B
11 months ago
|
import { ref } from 'vue';
|
||
|
|
||
|
export const mockData = ref([
|
||
|
{
|
||
|
id: 3,
|
||
|
zuzhi: '22',
|
||
|
jituanname: 'axb',
|
||
|
zuzhiname: '张三',
|
||
|
status: '男',
|
||
|
area: '123456789',
|
||
|
address: '1234567889',
|
||
|
person: '1',
|
||
|
phone: '1',
|
||
|
},
|
||
|
]);
|
||
|
|
||
|
export const mockData2 = ref([
|
||
|
{
|
||
|
information: '铁路局1/产品部1/产品总监1',
|
||
|
},
|
||
|
]);
|
||
|
|
||
|
export const treeData = ref([
|
||
|
{
|
||
|
title: '铁路总局',
|
||
|
key: '0-0',
|
||
|
children: [
|
||
|
{ title: '济阳站', key: '0-0-0' },
|
||
|
{ title: '临沂站', key: '0-0-1' },
|
||
|
],
|
||
|
},
|
||
|
]);
|
||
|
|
||
|
export const treeData2 = [
|
||
|
{
|
||
|
title: '全部',
|
||
|
key: '0-0',
|
||
|
children: [
|
||
|
{ title: '产品部', key: '0-0-0' },
|
||
|
{ title: '运维部', key: '0-0-1' },
|
||
|
],
|
||
|
},
|
||
|
];
|