|
@@ -3,7 +3,7 @@
|
|
|
<t-tabs v-model="data.tab">
|
|
|
<t-tab-panel :value="1" :label="$t('画布')">
|
|
|
<t-space direction="vertical" size="small" class="panel">
|
|
|
- <div class="form-item">
|
|
|
+ <div v-if="isBigScreen" class="form-item">
|
|
|
<label>{{$t('文件名')}}</label>
|
|
|
<t-input class="w-full" :value="meta2dData.name" @change="changeName($event, 'name')" :placeholder="$t('文件名')"></t-input>
|
|
|
</div>
|
|
@@ -222,6 +222,7 @@ import GlobalStates from './GlobalStates.vue';
|
|
|
import { getToken } from '@le5le/auth-token';
|
|
|
import D2M from 'dxf';
|
|
|
import { getImgUrl } from '@/services/utils';
|
|
|
+import { useModuleType } from '@/services/module-type';
|
|
|
const { getEnterprise } = useEnterprise();
|
|
|
const { meta2dData, setMeta2dData } = useMeta2dData();
|
|
|
const { extendData, setExtendData } = useExtendData();
|
|
@@ -236,6 +237,7 @@ const updataData = { directory: '/大屏/图片/默认' };
|
|
|
// const { assets } = useAssets();
|
|
|
|
|
|
const { user } = useUser();
|
|
|
+const { isBigScreen } = useModuleType();
|
|
|
|
|
|
const isShow = globalThis.globalStates;
|
|
|
|