|
@@ -0,0 +1,101 @@
|
|
|
+<route lang="json">
|
|
|
+{ "style": { "navigationBarTitleText": "编辑", "navigationBarBackgroundColor": "#fff" } }
|
|
|
+</route>
|
|
|
+<script setup lang="ts">
|
|
|
+import BottomAppBar from '@/components/bottom-app-bar.vue'
|
|
|
+import Card from '@/components/card.vue'
|
|
|
+import SectionHeading from '@/components/section-heading.vue'
|
|
|
+
|
|
|
+const action = ref(`${import.meta.env.VITE_SERVER_BASEURL}/app-api/infra/file/upload`)
|
|
|
+
|
|
|
+const tab = ref()
|
|
|
+const tabs = ref([{ label: '商品优惠券' }, { label: '销售积分券' }])
|
|
|
+const data = ref([{}])
|
|
|
+const handleChange = () => {}
|
|
|
+</script>
|
|
|
+<template>
|
|
|
+ <div class="flex-grow flex flex-col gap-6 px-3.5 py-6">
|
|
|
+ <Card>
|
|
|
+ <div>
|
|
|
+ <SectionHeading title="主页封面图"></SectionHeading>
|
|
|
+ <div
|
|
|
+ class="mt-4.5 mb-2.5 text-black/40 text-xs font-normal font-['PingFang SC'] leading-snug"
|
|
|
+ >
|
|
|
+ 用于主页形象封面图,请上传体现个人艺术设计风格的图片,建议竖图尺寸750x1920,也可上传自己的视频介绍
|
|
|
+ </div>
|
|
|
+ <wd-upload
|
|
|
+ :file-list="[]"
|
|
|
+ image-mode="aspectFill"
|
|
|
+ :action="action"
|
|
|
+ @change="handleChange"
|
|
|
+ ></wd-upload>
|
|
|
+ </div>
|
|
|
+ </Card>
|
|
|
+ <Card>
|
|
|
+ <div>
|
|
|
+ <SectionHeading title="分享封面图"></SectionHeading>
|
|
|
+ <div
|
|
|
+ class="mt-4.5 mb-2.5 text-black/40 text-xs font-normal font-['PingFang SC'] leading-snug"
|
|
|
+ >
|
|
|
+ 用于分享到微信好友的卡片封面图,尺寸1920x1080;
|
|
|
+ </div>
|
|
|
+ <wd-upload
|
|
|
+ :file-list="[]"
|
|
|
+ image-mode="aspectFill"
|
|
|
+ :action="action"
|
|
|
+ @change="handleChange"
|
|
|
+ ></wd-upload>
|
|
|
+ </div>
|
|
|
+ </Card>
|
|
|
+ <SectionHeading title="个人信息"></SectionHeading>
|
|
|
+ <Card>
|
|
|
+ <div>
|
|
|
+ <SectionHeading title="设计理念" subtitle="请输入设计理念"></SectionHeading>
|
|
|
+ <div
|
|
|
+ class="mt-4.5 mx--3.5 text-black/40 text-xs font-normal font-['PingFang SC'] leading-snug"
|
|
|
+ >
|
|
|
+ <wd-textarea
|
|
|
+ placeholder="例:设计没有风格,设计是对生活的一种诠释,不是所谓的造型与装饰!"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ <div class="text-end text-black/40 text-xs font-normal font-['PingFang SC'] leading-snug">
|
|
|
+ 0/100
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </Card>
|
|
|
+ <Card>
|
|
|
+ <div>
|
|
|
+ <SectionHeading title="个人信息" subtitle="请输入关于自己身份体现"></SectionHeading>
|
|
|
+ <div
|
|
|
+ class="mt-4.5 mx--3.5 text-black/40 text-xs font-normal font-['PingFang SC'] leading-snug"
|
|
|
+ >
|
|
|
+ <wd-textarea
|
|
|
+ placeholder="例:中国室内装饰协会会员、 xxx 空间设计事务所创始人、筑巢奖金奖设计师等等"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ <div class="text-end text-black/40 text-xs font-normal font-['PingFang SC'] leading-snug">
|
|
|
+ 0/100
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </Card>
|
|
|
+ <Card>
|
|
|
+ <div>
|
|
|
+ <SectionHeading title="设计费"></SectionHeading>
|
|
|
+ </div>
|
|
|
+ </Card>
|
|
|
+ <Card>
|
|
|
+ <div>
|
|
|
+ <SectionHeading title="服务客户数"></SectionHeading>
|
|
|
+ </div>
|
|
|
+ </Card>
|
|
|
+ <Card>
|
|
|
+ <div>
|
|
|
+ <SectionHeading title="从业年限"></SectionHeading>
|
|
|
+ </div>
|
|
|
+ </Card>
|
|
|
+ <!-- <BottomAppBar>
|
|
|
+
|
|
|
+ </BottomAppBar> -->
|
|
|
+ <div class=""><wd-button block :round="false">保存</wd-button></div>
|
|
|
+ </div>
|
|
|
+</template>
|