|
@@ -28,13 +28,13 @@
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="line">
|
|
|
- <view class="lineLeft">手机号</view>
|
|
|
+ <view class="lineLeft"><span class="stars">*</span>手机号</view>
|
|
|
<view class="lineRight">
|
|
|
<input type="text" v-model="mobilePhone" class="lineInput" placeholder="请填写手机号"/>
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="line">
|
|
|
- <view class="lineLeft">车牌号</view>
|
|
|
+ <view class="lineLeft"><span class="stars">*</span>车牌号</view>
|
|
|
<view class="lineRight">
|
|
|
<input type="text" v-model="plateNumber" class="lineInput" placeholder="请填写车牌号"/>
|
|
|
</view>
|
|
@@ -55,7 +55,7 @@
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="line">
|
|
|
- <view class="lineLeft">上传图片</view>
|
|
|
+ <view class="lineLeft"><span class="stars">*</span>上传图片</view>
|
|
|
<view class="lineImgBOx">
|
|
|
<view class="lineimghz" v-for="(item,index) in imgListArr">
|
|
|
<img src="../../static/img/del.png" alt="" class="lineimgdel" @click="delimg(index)" >
|
|
@@ -96,13 +96,14 @@
|
|
|
shopName:'fzh123',
|
|
|
sourceUserID:'00958045-3341-4AF7-9460-801F5B52E3E2',
|
|
|
sourceName:'姜国远',
|
|
|
+ uid:'',
|
|
|
}
|
|
|
},
|
|
|
onLoad(opt) {
|
|
|
- this.shopID=opt.shopID;
|
|
|
- this.shopName=opt.shopName;
|
|
|
- this.sourceUserID=opt.sourceUserID;
|
|
|
- this.sourceName=opt.sourceName;
|
|
|
+ // this.shopID=opt.shopID;
|
|
|
+ // this.shopName=opt.shopName;
|
|
|
+ this.uid=opt.uid;
|
|
|
+ //this.sourceName=opt.sourceName;
|
|
|
this.iStatusBarHeight = uni.getSystemInfoSync().statusBarHeight;
|
|
|
},
|
|
|
created() {
|
|
@@ -159,10 +160,10 @@
|
|
|
mobilePhone:this.mobilePhone,
|
|
|
plateNumber:this.plateNumber,
|
|
|
carmodelType:this.carmodelType,
|
|
|
- shopID:this.shopID,
|
|
|
- shopName:this.shopName,
|
|
|
- sourceUserID:this.sourceUserID,
|
|
|
- sourceName:this.sourceName,
|
|
|
+ //shopID:this.shopID,
|
|
|
+ //shopName:this.shopName,
|
|
|
+ sourceUserID:this.uid,
|
|
|
+ //sourceName:this.sourceName,
|
|
|
imgs:this.imgListArr.join(','),
|
|
|
}, 'POST').then(res => {
|
|
|
uni.hideLoading();
|
|
@@ -569,4 +570,7 @@
|
|
|
height: 40rpx;
|
|
|
padding-top: 16rpx;
|
|
|
}
|
|
|
+ .stars{
|
|
|
+ color: #FF2400;
|
|
|
+ }
|
|
|
</style>
|