Commit 78fb044f authored by lvtz's avatar lvtz

Merge branch 'wxl-multiple-student' of…

Merge branch 'wxl-multiple-student' of git.server:wangxuelai/wechatapp.shangjiadao.com into students_lvtz
parents c4c96edf e4fa8918
...@@ -15,7 +15,7 @@ export default { ...@@ -15,7 +15,7 @@ export default {
duration: 300, duration: 300,
size: 524288000 // 视频大小5分钟500MB size: 524288000 // 视频大小5分钟500MB
}, },
pcWebAddress: 'https://biz.qingxiao.online', pcWebAddress: 'https://biz.qingxiao.online',
register: { register: {
industry: [ industry: [
'教育培训', '教育培训',
......
...@@ -445,6 +445,7 @@ Page({ ...@@ -445,6 +445,7 @@ Page({
}).then((res) => { }).then((res) => {
let data = JSON.parse(res.data); let data = JSON.parse(res.data);
if (data.status == 'ok') { if (data.status == 'ok') {
console.log(filename, 'filenamefilename');
imageBox[this.data.currentIndex].status = 'fullfilled'; imageBox[this.data.currentIndex].status = 'fullfilled';
imageBox[this.data.currentIndex].src = filename; imageBox[this.data.currentIndex].src = filename;
let currentIndex = this.data.currentIndex + 1; let currentIndex = this.data.currentIndex + 1;
......
...@@ -53,7 +53,8 @@ function needLogin() { ...@@ -53,7 +53,8 @@ function needLogin() {
function getRandomFilename(filename) { function getRandomFilename(filename) {
const file = filename.match(/^(.*)(\.[A-z]+)$/); const file = filename.match(/^(.*)(\.[A-z]+)$/);
return file === null ? md5(String(Date.now() + Math.random()) + filename) : (md5(String(Date.now() + Math.random()) + file[1]) + file[2]); // chooseimage处理图片返回.unknown
return file === null ? md5(String(Date.now() + Math.random()) + filename) : (md5(String(Date.now() + Math.random()) + file[1]) + (file[2] == '.unknown' ? '.jpg' : file[2]));
} }
function imagify(src, params) { function imagify(src, params) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment