|
@@ -1,12 +1,6 @@
|
|
|
<template>
|
|
<template>
|
|
|
<CommonTopBanner title="发贴图">
|
|
<CommonTopBanner title="发贴图">
|
|
|
<FlexCol position="relative" padding="space.lg" align="center">
|
|
<FlexCol position="relative" padding="space.lg" align="center">
|
|
|
- <FlexCol position="absolute" :right="0" :top="0">
|
|
|
|
|
- <PrimaryButton
|
|
|
|
|
- text="发布"
|
|
|
|
|
- @click="publish"
|
|
|
|
|
- />
|
|
|
|
|
- </FlexCol>
|
|
|
|
|
<ProvideVar
|
|
<ProvideVar
|
|
|
:vars="{
|
|
:vars="{
|
|
|
FieldBackgroundColor: 'transparent',
|
|
FieldBackgroundColor: 'transparent',
|
|
@@ -35,9 +29,12 @@
|
|
|
v-model="content"
|
|
v-model="content"
|
|
|
type="text"
|
|
type="text"
|
|
|
multiline
|
|
multiline
|
|
|
- placeholder="输入内容(可选)"
|
|
|
|
|
|
|
+ placeholder="说点什么吧..."
|
|
|
:maxLength="1000"
|
|
:maxLength="1000"
|
|
|
- rows="10"
|
|
|
|
|
|
|
+ rows="20"
|
|
|
|
|
+ :inputStyle="{
|
|
|
|
|
+ height: '700rpx',
|
|
|
|
|
+ }"
|
|
|
showWordLimit
|
|
showWordLimit
|
|
|
/>
|
|
/>
|
|
|
<FlexRow justify="flex-end" align="center">
|
|
<FlexRow justify="flex-end" align="center">
|
|
@@ -49,6 +46,14 @@
|
|
|
/>
|
|
/>
|
|
|
</FlexRow>
|
|
</FlexRow>
|
|
|
</BackgroundBox>
|
|
</BackgroundBox>
|
|
|
|
|
+ <Height :height="50" />
|
|
|
|
|
+ <FlexRow center>
|
|
|
|
|
+ <PrimaryButton
|
|
|
|
|
+ text="发布"
|
|
|
|
|
+ width="500rpx"
|
|
|
|
|
+ @click="publish"
|
|
|
|
|
+ />
|
|
|
|
|
+ </FlexRow>
|
|
|
</ProvideVar>
|
|
</ProvideVar>
|
|
|
<Popup
|
|
<Popup
|
|
|
v-model:show="showAgentPopup"
|
|
v-model:show="showAgentPopup"
|
|
@@ -89,6 +94,7 @@ import CommonTopBanner from '@/common/components/CommonTopBanner.vue';
|
|
|
import PrimaryButton from '@/common/components/PrimaryButton.vue';
|
|
import PrimaryButton from '@/common/components/PrimaryButton.vue';
|
|
|
import Tbutton from './components/tbutton.vue';
|
|
import Tbutton from './components/tbutton.vue';
|
|
|
import type { UploaderAction, UploaderItem } from '@/components/form/Uploader';
|
|
import type { UploaderAction, UploaderItem } from '@/components/form/Uploader';
|
|
|
|
|
+import Height from '@/components/layout/space/Height.vue';
|
|
|
|
|
|
|
|
const { querys } = useLoadQuerys({
|
|
const { querys } = useLoadQuerys({
|
|
|
tag: '',
|
|
tag: '',
|