index.vue 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270
  1. <route lang="json">
  2. {
  3. "style": {
  4. "navigationBarTitleText": "个人动态",
  5. "navigationBarBackgroundColor": "#fff"
  6. }
  7. }
  8. </route>
  9. <script setup lang="ts">
  10. import SectionHeading from '@/components/section-heading.vue'
  11. import { createCircle, getByDictType } from '../../../core/libs/requests'
  12. import { useUserStore } from '../../../store'
  13. import { storeToRefs } from 'pinia'
  14. import { useToast } from 'wot-design-uni'
  15. import { CircleType, DictType } from '../../../core/libs/models'
  16. import DataForm from '@/components/data-form.vue'
  17. import { zipToObject } from 'radash'
  18. import { useRouter } from '../../../core/utils/router'
  19. import BottomAppBar from '@/components/bottom-app-bar.vue'
  20. import dragImg from '@/components/drag-img/drag-img.vue'
  21. import { requestToast, toast } from '../../../core/utils/common'
  22. import { messages } from '../../../core/libs/messages'
  23. import { DataFormSchema } from '../../../components/data-form'
  24. import { ComponentExposed } from 'vue-component-type-helpers'
  25. import { AnalysisEventType, useAnalysis } from '@/composables/analysis'
  26. import { resolve } from 'dns'
  27. const { report } = useAnalysis(false)
  28. const router = useRouter()
  29. const userStore = useUserStore()
  30. const { userInfo } = storeToRefs(userStore)
  31. const { error } = useToast()
  32. const circleType = ref<CircleType>()
  33. const content = ref('')
  34. const fileList = ref([])
  35. const action = ref(`${import.meta.env.VITE_SERVER_BASEURL}/app-api/infra/file/upload`)
  36. const dataFormRef = ref<ComponentExposed<typeof DataForm>>()
  37. const schema = ref<DataFormSchema>({
  38. caseName: {
  39. label: '案例名称:',
  40. type: 'TextField',
  41. required: true,
  42. labelWidth: 80,
  43. props: { placeholder: '填写案例位置/名称' },
  44. },
  45. spaceType: {
  46. label: '空间类别:',
  47. type: 'Select',
  48. required: true,
  49. labelWidth: 80,
  50. props: {
  51. placeholder: '选择',
  52. columns: [],
  53. },
  54. },
  55. designStyle: {
  56. label: '设计风格:',
  57. type: 'Select',
  58. required: true,
  59. labelWidth: 80,
  60. props: { columns: [], placeholder: '选择' },
  61. },
  62. // spaceAddr: { label: '空间位置', type: 'TextField' },
  63. spaceExtent: {
  64. label: '空间面积:',
  65. type: 'TextField',
  66. required: true,
  67. labelWidth: 80,
  68. props: { placeholder: '填写面积' },
  69. },
  70. circleDesc: {
  71. label: '案例描述:',
  72. type: 'Textarea',
  73. required: true,
  74. labelWidth: 80,
  75. props: { placeholder: '请简单描述您的案例和设计理念', maxlength: 500 },
  76. },
  77. // customerDemand: { label: '客户需求', type: 'TextField' },
  78. })
  79. const rules = {
  80. caseName: [{ required: true, message: '请填写案例名称' }],
  81. spaceType: [{ required: true, message: '请选择空间类别' }],
  82. designStyle: [{ required: true, message: '请选择设计风格' }],
  83. spaceExtent: [{ required: true, message: '请填写空间面积' }],
  84. circleDesc: [{ required: true, message: '请填写案例描述' }],
  85. }
  86. const formData = ref({})
  87. const formInited = ref(false)
  88. const tagName = ref('')
  89. const tagIds = ref([])
  90. const imgList = ref([])
  91. const publishing = ref(false)
  92. const handleChange = ({ fileList: files }) => {
  93. fileList.value = files
  94. console.log(fileList.value)
  95. }
  96. const uploadImg = async (img) =>{
  97. return new Promise((resolve)=>{
  98. uni.uploadFile({
  99. url:action.value,
  100. filePath: img,
  101. name:img,
  102. success: (res) => {
  103. console.log(res)
  104. resolve(res)
  105. }
  106. })
  107. })
  108. }
  109. const handleSubmit = async () => {
  110. if (circleType.value === CircleType.case) {
  111. const { valid, errors } = await dataFormRef.value.validate()
  112. console.log(valid, errors)
  113. if (!valid) {
  114. return false
  115. }
  116. }
  117. // if (!imgList.value.length) {
  118. // toast(messages.moment.imageNotExist)
  119. // return false
  120. // }
  121. // console.log(imgList.value)
  122. // let imgUrl = [];
  123. // for(let i in imgList.value){
  124. // let res = await uploadImg(imgList.value[i])
  125. // console.log(res)
  126. // imgUrl.push()
  127. // }
  128. // console.log(imgUrl)
  129. // return false
  130. if (!fileList.value.length) {
  131. toast(messages.moment.imageNotExist)
  132. return false
  133. }
  134. publishing.value = true
  135. const { code, msg, duration } = await requestToast(
  136. () =>
  137. createCircle({
  138. stylistId: userInfo.value.userId,
  139. stylistName: userInfo.value.nickname,
  140. bannerUrls: fileList.value.map(({ response }) => JSON.parse(response).data),
  141. tagName: tagName.value,
  142. headUrl: userInfo.value.avatar,
  143. circleDesc: content.value,
  144. circleType: circleType.value,
  145. tagIds: tagIds.value,
  146. ...formData.value,
  147. }),
  148. { success: true, successTitle: '发布成功' },
  149. )
  150. if (code === 0) {
  151. setTimeout(() => {
  152. publishing.value = false
  153. router.back()
  154. }, duration)
  155. await report(AnalysisEventType.PublishCircle)
  156. // publishing.value = false
  157. // router.back()
  158. }
  159. }
  160. const updateTagName = (options: { tagNames: string[]; tagIds: string[] }) => {
  161. if (options.tagNames.length === 0) {
  162. tagName.value = ''
  163. return
  164. }
  165. tagName.value = options.tagNames.join(',')
  166. tagIds.value = options.tagIds
  167. }
  168. onMounted(() => {
  169. uni.$on('updateTagName', updateTagName)
  170. })
  171. onUnmounted(() => {
  172. uni.$off('updateTagName', updateTagName)
  173. })
  174. onLoad(async (query: { circleType: '1' | '2' }) => {
  175. circleType.value = query.circleType as CircleType
  176. await uni.setNavigationBarTitle({ title: { '1': '个人动态', '2': '设计案例' }[circleType.value] })
  177. const optionsSchema = {
  178. designStyle: getByDictType(DictType.memberDesignStyle).then(({ data }) => data),
  179. spaceType: getByDictType(DictType.circleSpaceType).then(({ data }) => data),
  180. }
  181. const res = zipToObject(
  182. Object.keys(optionsSchema),
  183. await Promise.all(Object.values(optionsSchema)),
  184. )
  185. schema.value.designStyle.props.columns = res.designStyle
  186. schema.value.spaceType.props.columns = res.spaceType
  187. formInited.value = true
  188. })
  189. </script>
  190. <template>
  191. <div class="flex-grow bg-white p-3.5 flex flex-col">
  192. <template v-if="circleType === CircleType.case && formInited">
  193. <DataForm
  194. ref="dataFormRef"
  195. v-model="formData"
  196. :schema="schema"
  197. :rules="rules"
  198. direction="horizontal"
  199. ></DataForm>
  200. </template>
  201. <template v-if="circleType === CircleType.moment">
  202. <wd-textarea v-model="content" placeholder="分享你此刻的想法" />
  203. </template>
  204. <!-- <div class="flex items-center">
  205. <img
  206. class="w-[100px] h-[100px] rounded-lg overflow-hidden"
  207. src="https://via.placeholder.com/100x100"
  208. />
  209. <div class="w-[100px] h-[100px] bg-[#f3f3f3] justify-center items-center inline-flex">
  210. <div class="w-7 h-7 relative flex-col justify-start items-start flex"></div>
  211. </div>
  212. </div> -->
  213. <div v-if="circleType === '2'" class="flex items-center">
  214. <span class="text-[#ef4343] text-base font-normal font-['PingFang_SC'] leading-normal">
  215. *
  216. </span>
  217. <SectionHeading
  218. title="案例图片:"
  219. subtitle="首图建议尺寸1125x1104,最多可上传30张"
  220. size="base"
  221. custom-class="my-5"
  222. ></SectionHeading>
  223. </div>
  224. <!-- <dragImg v-model="imgList" :number="String(circleType) === '2' ? 30 : 9"></dragImg> -->
  225. <wd-upload
  226. :file-list="fileList"
  227. image-mode="aspectFill"
  228. accept="media"
  229. :action="action"
  230. :multiple="true"
  231. :limit="String(circleType) === '2' ? 30 : 9"
  232. @change="handleChange"
  233. ></wd-upload>
  234. <SectionHeading
  235. title="标签"
  236. custom-class="my-6"
  237. :path="`/pages-sub/publish/tags/index?tagName=${tagName}`"
  238. size="base"
  239. >
  240. <template #start>
  241. <div class="flex gap-2.5">
  242. <template v-if="tagName !== ''">
  243. <template v-for="it of tagName.split(',')" :key="it">
  244. <div
  245. class="h-6 px-2 py-0.5 bg-[#f3f3f3] rounded-[3px] justify-center items-center gap-2 inline-flex"
  246. >
  247. <div
  248. class="text-center text-black/90 text-xs font-normal font-['PingFang_SC'] leading-tight"
  249. >
  250. #{{ it }}
  251. </div>
  252. </div>
  253. </template>
  254. </template>
  255. </div>
  256. </template>
  257. </SectionHeading>
  258. <div class="flex-1"></div>
  259. <BottomAppBar fixed safe-area-inset-bottom placeholder>
  260. <div class="w-full">
  261. <wd-button type="primary" :round="false" block :loading="publishing" @click="handleSubmit">
  262. 发布
  263. </wd-button>
  264. </div>
  265. </BottomAppBar>
  266. </div>
  267. </template>