|
@@ -30,13 +30,13 @@
|
|
|
<view class="line">
|
|
|
<view class="lineLeft">手机号</view>
|
|
|
<view class="lineRight">
|
|
|
- <input type="text" v-model="mobilePhone" class="lineInput" placeholder="请填写车牌号"/>
|
|
|
+ <input type="text" v-model="mobilePhone" class="lineInput" placeholder="请填写手机号"/>
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="line">
|
|
|
<view class="lineLeft">车牌号</view>
|
|
|
<view class="lineRight">
|
|
|
- <input type="text" v-model="plateNumber" class="lineInput" placeholder="请填写手机号"/>
|
|
|
+ <input type="text" v-model="plateNumber" class="lineInput" placeholder="请填写车牌号"/>
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="line">
|
|
@@ -165,24 +165,29 @@
|
|
|
sizeType:['compressed'],
|
|
|
success: (chooseImageRes) => {
|
|
|
const tempFilePaths = chooseImageRes.tempFilePaths;
|
|
|
- that.file=tempFilePaths[0]
|
|
|
+ //console.log(tempFilePaths)
|
|
|
+ that.file=tempFilePaths
|
|
|
that.$refs.wCompress.start(that.file, {
|
|
|
pixels: 600000, // 最大分辨率,默认二百万
|
|
|
quality: 0.9, // 压缩质量,默认0.8
|
|
|
type: 'png', // 图片类型,默认jpg
|
|
|
base64: true, // 是否返回base64,默认false,非H5有效
|
|
|
}).then(resxx => {
|
|
|
- uni.uploadFile({
|
|
|
- url: that.$request.baseUrl+'api/online-apply/uploadFile', //仅为示例,非真实的接口地址
|
|
|
- filePath: resxx,
|
|
|
- name: 'file',
|
|
|
- formData: {
|
|
|
- 'user': 'test'
|
|
|
- },
|
|
|
- success: (uploadFileRes) => {
|
|
|
- that.imgListArr=that.imgListArr.concat(JSON.parse(uploadFileRes.data).data)
|
|
|
- }
|
|
|
- });
|
|
|
+ // console.log(resxx)
|
|
|
+ resxx.forEach(item=>{
|
|
|
+ uni.uploadFile({
|
|
|
+ url: that.$request.baseUrl+'api/online-apply/uploadFile', //仅为示例,非真实的接口地址
|
|
|
+ filePath: item,
|
|
|
+ name: 'file',
|
|
|
+ formData: {
|
|
|
+ 'user': 'test'
|
|
|
+ },
|
|
|
+ success: (uploadFileRes) => {
|
|
|
+ that.imgListArr=that.imgListArr.concat(JSON.parse(uploadFileRes.data).data)
|
|
|
+ }
|
|
|
+ });
|
|
|
+ })
|
|
|
+
|
|
|
|
|
|
}).catch(e => {
|
|
|
|