released 1.0.3

pull/34/head
ruibaby 2019-07-09 21:23:06 +08:00
parent 26af12cb82
commit 1f48b8f9d4
2 changed files with 8 additions and 8 deletions

View File

@ -202,24 +202,24 @@
</a-form-item> </a-form-item>
<!-- 日志图片上传 --> <!-- 日志图片上传 -->
<a-form-item v-show="showMoreOptions"> <!-- <a-form-item v-show="showMoreOptions">
<UploadPhoto <UploadPhoto
@success="handlerPhotoUploadSuccess" @success="handlerPhotoUploadSuccess"
:photoList="photoList" :photoList="photoList"
></UploadPhoto> ></UploadPhoto>
</a-form-item> </a-form-item> -->
<a-form-item> <a-form-item>
<a-button <a-button
type="primary" type="primary"
@click="handleCreateJournalClick" @click="handleCreateJournalClick"
>保存</a-button> >保存</a-button>
<a <!-- <a
href="javascript:;" href="javascript:;"
class="more-options-btn" class="more-options-btn"
type="default" type="default"
@click="handleUploadPhotoWallClick" @click="handleUploadPhotoWallClick"
>更多选项<a-icon type="down" /></a> >更多选项<a-icon type="down" /></a> -->
</a-form-item> </a-form-item>
</a-form> </a-form>
</a-card> </a-card>

View File

@ -41,7 +41,7 @@
> >
<a-list-item slot="renderItem" slot-scope="item, index" :key="index"> <a-list-item slot="renderItem" slot-scope="item, index" :key="index">
<!-- 日志图片集合 --> <!-- 日志图片集合 -->
<a-card <!-- <a-card
hoverable hoverable
v-for="(photo, photoIndex) in item.photos" v-for="(photo, photoIndex) in item.photos"
:key="photoIndex" :key="photoIndex"
@ -49,7 +49,7 @@
@click="handlerPhotoPreview(photo)" @click="handlerPhotoPreview(photo)"
> >
<img alt="example" :src="photo.thumbnail" slot="cover"> <img alt="example" :src="photo.thumbnail" slot="cover">
</a-card> </a-card> -->
<a-modal :visible="previewVisible" :footer="null" @cancel="handleCancelPreview"> <a-modal :visible="previewVisible" :footer="null" @cancel="handleCancelPreview">
<img <img
@ -126,7 +126,7 @@
<a-form-item> <a-form-item>
<a-input type="textarea" :autosize="{ minRows: 8 }" v-model="journal.content"/> <a-input type="textarea" :autosize="{ minRows: 8 }" v-model="journal.content"/>
</a-form-item> </a-form-item>
<a-form-item v-show="showMoreOptions"> <!-- <a-form-item v-show="showMoreOptions">
<UploadPhoto <UploadPhoto
@success="handlerPhotoUploadSuccess" @success="handlerPhotoUploadSuccess"
:photoList="photoList" :photoList="photoList"
@ -143,7 +143,7 @@
更多选项 更多选项
<a-icon type="down"/> <a-icon type="down"/>
</a> </a>
</a-form-item> </a-form-item> -->
</a-form> </a-form>
</a-modal> </a-modal>