|
|
@@ -223,6 +223,7 @@ export default {
|
|
|
// defaultCameraMode: 'normal', //表示进入拍照界面的默认模式,目前有normal与batch两种选择,normal表示普通单拍模式,batch表示连拍模式,不传该参数则为normal模式。从3.0.26版本开始支持front和batch_front两种值,其中front表示默认为前置摄像头单拍模式,batch_front表示默认为前置摄像头连拍模式。(注:用户进入拍照界面仍然可自由切换两种模式)
|
|
|
isSaveToAlbum: 0, //整型值,0表示拍照时不保存到系统相册,1表示自动保存,默认值是1
|
|
|
success: function (res) {
|
|
|
+ that.toastLoading(0, '上传中...', true);
|
|
|
let localIds = res.localIds;
|
|
|
that.localIdsArr = [];
|
|
|
// that.$emit('newimgarr', {
|
|
|
@@ -245,7 +246,7 @@ export default {
|
|
|
var localId = localIds.pop();
|
|
|
wx.uploadImage({
|
|
|
localId: localId,
|
|
|
- isShowProgressTips: 1, // 默认为1,显示进度提示
|
|
|
+ isShowProgressTips: 0, // 默认为1,显示进度提示
|
|
|
success: (res) => {
|
|
|
this.localIdsArr.push(res.serverId);
|
|
|
this.syncUpload(localIds);
|