|
@@ -45,7 +45,7 @@
|
|
|
<textarea maxlength="500" v-model="content" placeholder="请描述您的需求..." placeholder-style="color:#AAAAAA"></textarea>
|
|
|
</view>
|
|
|
|
|
|
- <view class="tn-flex tn-flex-row-between tn-flex-col-center tn-margin">
|
|
|
+ <view class="tn-flex tn-flex-row-between tn-flex-col-center tn-margin" style="margin-top:40px;margin-bottom: 0;">
|
|
|
<view class="tn-flex justify-content-item">
|
|
|
<view class=" tn-text-center"
|
|
|
style="border-radius: 100rpx;margin-right: 8rpx;width: 45rpx;height: 45rpx;line-height: 45rpx;">
|
|
@@ -67,8 +67,6 @@
|
|
|
<view class="tn-margin-left tn-padding-top-xs">
|
|
|
<uni-file-picker
|
|
|
v-model="imgList" :limit="6" @delete="deleteFile" :auto-upload="false" @select="select" @success="success">
|
|
|
-
|
|
|
-
|
|
|
</uni-file-picker>
|
|
|
<view style="margin-top: 8px;">
|
|
|
<text style="color: #999;font-size: 12px;">一次只能上传六张图片</text>
|
|
@@ -236,7 +234,7 @@
|
|
|
formInfo:{
|
|
|
jobTitle:'',
|
|
|
// contactPerson:JSON.parse(uni.getStorageSync('userInfo')).contactNickName?JSON.parse(uni.getStorageSync('userInfo')).contactNickName:'用户'+JSON.parse(uni.getStorageInfoSync('userInfo')).userName.splice(-4),
|
|
|
- agree:['是'],
|
|
|
+ agree:[],
|
|
|
contactPerson:JSON.parse(uni.getStorageSync('userInfo')).contactNickName,
|
|
|
contactMethod:JSON.parse(uni.getStorageSync('userInfo')).contactMethod||JSON.parse(uni.getStorageSync('userInfo')).userName
|
|
|
},
|
|
@@ -373,9 +371,9 @@
|
|
|
this.stepIndex = 2;
|
|
|
},
|
|
|
|
|
|
- changeSelect(e) {
|
|
|
+ changeSelect(e) {
|
|
|
this.selectValue = e;
|
|
|
- },
|
|
|
+ },
|
|
|
saveForm(status){
|
|
|
if(!this.canSave){
|
|
|
return false;
|
|
@@ -447,6 +445,7 @@
|
|
|
validDate:this.selectValue,
|
|
|
status: status==1?status:undefined,
|
|
|
id: that.isEdit?that.editItem.id:undefined,
|
|
|
+ bisNo: that.isEdit?that.editItem.bisNo:undefined,
|
|
|
version: that.isEdit?that.editItem.version:undefined
|
|
|
};
|
|
|
|
|
@@ -485,7 +484,7 @@
|
|
|
success:()=>{
|
|
|
setTimeout(()=>{
|
|
|
uni.redirectTo({
|
|
|
- url: "/pages/mine/need?tab="+(1)
|
|
|
+ url: "/pages/mine/need?tab="+(status==1?2:1)
|
|
|
});
|
|
|
},1500)
|
|
|
|