|
@@ -3,13 +3,47 @@
|
|
|
<el-row>
|
|
|
<el-col :span="24" class="main animate__animated animate__backInRight">
|
|
|
<component :is="web1"></component>
|
|
|
+ <!-- <el-col :span="24" class="one">
|
|
|
+ <cButton></cButton>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="24" class="one">
|
|
|
+ <cSearch></cSearch>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="24" class="one">
|
|
|
+ <cForm :fields="[]" :rules="{}" :form="{}" @save="toSave"></cForm>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="24" class="one">
|
|
|
+ <cTable></cTable>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="24" class="one">
|
|
|
+ <cUpload model="file" :limit="1" url="/files/studioadmin/other/upload" :list="[]"></cUpload>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="24" class="one">
|
|
|
+ <cEditor></cEditor>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="24" class="one">
|
|
|
+ <cFile :form="{ file: [] }"></cFile>
|
|
|
+ </el-col> -->
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
+ <!-- <cDialog :dialog="{ show: false, title: '弹框' }">
|
|
|
+ <template v-slot:info>弹框</template>
|
|
|
+ </cDialog> -->
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<script setup lang="ts">
|
|
|
import web1 from '@/components/common/web/index.vue';
|
|
|
+// 提交保存
|
|
|
+// const toSave = () => {
|
|
|
+// console.log('保存');
|
|
|
+// };
|
|
|
</script>
|
|
|
|
|
|
-<style scoped></style>
|
|
|
+<style scoped lang="scss">
|
|
|
+// .main {
|
|
|
+// .one {
|
|
|
+// margin: 0 0 10px 0;
|
|
|
+// }
|
|
|
+// }
|
|
|
+</style>
|