|
@@ -1,7 +1,7 @@
|
|
|
<template>
|
|
<template>
|
|
|
<view>
|
|
<view>
|
|
|
<view class="con">
|
|
<view class="con">
|
|
|
- <editor id="editor" @input="descInput" class="ql-container" :placeholder="placeholderText"></editor>
|
|
|
|
|
|
|
+ <textarea id="editor" @input="descInput" class="ql-container" :placeholder="placeholderText"></textarea>
|
|
|
<!-- <view class="upload ddflex" @tap="uploadVodChangeHandle"><image src="../static/images/upload.png"></image>上传视频</view> -->
|
|
<!-- <view class="upload ddflex" @tap="uploadVodChangeHandle"><image src="../static/images/upload.png"></image>上传视频</view> -->
|
|
|
<view class="imgbox ddflex">
|
|
<view class="imgbox ddflex">
|
|
|
<view class="imgs" v-for="(item, index) in zhiPicUrls" :key="index">
|
|
<view class="imgs" v-for="(item, index) in zhiPicUrls" :key="index">
|
|
@@ -58,7 +58,7 @@
|
|
|
</view>
|
|
</view>
|
|
|
<view class="loca" v-if="showArea">
|
|
<view class="loca" v-if="showArea">
|
|
|
<scroll-view scroll-x="true" class="locas">
|
|
<scroll-view scroll-x="true" class="locas">
|
|
|
- <view class="lis" @click="closeArea()" >不开启定位</view>
|
|
|
|
|
|
|
+ <!-- <view class="lis" @click="closeArea()" >不开启定位</view> -->
|
|
|
<view :class="'lis'+(poiIndex == index ? ' active':'')" @click="checkLocation(item,index)" v-for="(item,index) in poiList" :key="index">{{item.title}}</view>
|
|
<view :class="'lis'+(poiIndex == index ? ' active':'')" @click="checkLocation(item,index)" v-for="(item,index) in poiList" :key="index">{{item.title}}</view>
|
|
|
</scroll-view>
|
|
</scroll-view>
|
|
|
</view>
|
|
</view>
|
|
@@ -148,10 +148,10 @@ export default {
|
|
|
},
|
|
},
|
|
|
methods: {
|
|
methods: {
|
|
|
descInput(event) {
|
|
descInput(event) {
|
|
|
- this.desc = event.detail.html;
|
|
|
|
|
|
|
+ this.desc = event.detail.value;
|
|
|
console.log('desc数据>>>>>>', this.desc);
|
|
console.log('desc数据>>>>>>', this.desc);
|
|
|
if (this.desc) {
|
|
if (this.desc) {
|
|
|
- this.descLength = event.detail.text.length - 1;
|
|
|
|
|
|
|
+ this.descLength = event.detail.value.length - 1;
|
|
|
} else {
|
|
} else {
|
|
|
this.descLength = 0;
|
|
this.descLength = 0;
|
|
|
}
|
|
}
|