|
@@ -98,7 +98,7 @@
|
|
|
</view>
|
|
|
|
|
|
<view class="publish-btn" v-if="recorderStatus==='stop'">
|
|
|
- <text @click="showTime=true">定时发布</text>
|
|
|
+ <text @click="showTimeAttention=true">定时发布</text>
|
|
|
<text @click="handlePublish">立即发布</text>
|
|
|
</view>
|
|
|
|
|
@@ -145,7 +145,7 @@
|
|
|
/>
|
|
|
</van-popup>
|
|
|
|
|
|
- <!-- <van-dialog id="van-dialog" /> -->
|
|
|
+ <van-dialog id="van-dialog" />
|
|
|
<!-- 发布弹窗 -->
|
|
|
<van-dialog
|
|
|
use-slot
|
|
@@ -161,6 +161,20 @@
|
|
|
<van-icon name="cross" size="20" style="position: absolute;right:10px;top:10px" color="#6666" @click="showPublish=false"/>
|
|
|
</view>
|
|
|
</van-dialog>
|
|
|
+
|
|
|
+ <!-- 定时发布提示弹窗 -->
|
|
|
+ <van-dialog
|
|
|
+ use-slot
|
|
|
+ :show="showTimeAttention"
|
|
|
+ confirm-button-text="知道了"
|
|
|
+ confirm-button-color="#E3B377"
|
|
|
+ @confirm="showTimeAttention=true"
|
|
|
+ >
|
|
|
+ <view style="padding:40px 20px 20px;text-align:center;position: relative;">
|
|
|
+ 设置定时发布后,会在设定的时间发布语音播报并推送模板消息
|
|
|
+ <van-icon name="cross" size="20" style="position: absolute;right:10px;top:10px" color="#666" @click="showTimeAttention=false"/>
|
|
|
+ </view>
|
|
|
+ </van-dialog>
|
|
|
</view>
|
|
|
</template>
|
|
|
|
|
@@ -226,6 +240,7 @@ export default {
|
|
|
|
|
|
imgList:[],
|
|
|
showTime:false,
|
|
|
+ showTimeAttention:false,
|
|
|
selectTime:new Date().getTime(),
|
|
|
minDate:new Date().getTime()+60000,
|
|
|
}
|