|
|
@@ -26,9 +26,22 @@
|
|
26
|
26
|
<uni-forms-item label="申请人案件证据资料上传:" name="headImage" label-width="120px">
|
|
27
|
27
|
<uni-file-picker ref="files" file-mediatype="all" return-type='object' v-model="fileList" :auto-upload="false" @select="select" :limit='1' />
|
|
28
|
28
|
</uni-forms-item>
|
|
|
29
|
+ <uni-forms-item label="证据:" label-width="120px" v-if="ids">
|
|
|
30
|
+ <view class="" v-for="item in formData.caseAttachList">
|
|
|
31
|
+ <uni-link v-if="item.annexType==2" :href="item.annexPath" color="#007BFF"
|
|
|
32
|
+ :text="item.annexName"></uni-link>
|
|
|
33
|
+ </view>
|
|
|
34
|
+ </uni-forms-item>
|
|
|
35
|
+ <uni-forms-item label="调解申请书:" label-width="120px" v-if="ids">
|
|
|
36
|
+ <view class="" v-for="item in formData.caseAttachList">
|
|
|
37
|
+ <uni-link v-if="item.annexType==3" :href="item.annexPath" color="#007BFF"
|
|
|
38
|
+ :text="item.annexName"></uni-link>
|
|
|
39
|
+ </view>
|
|
|
40
|
+ </uni-forms-item>
|
|
29
|
41
|
<uni-section title="双方信息" type="line" padding></uni-section>
|
|
30
|
42
|
<uni-forms-item label="选择机构或自然人" label-width="120px" name="objectiJuris">
|
|
31
|
43
|
<uni-data-checkbox class='checkbox'
|
|
|
44
|
+ :disabled="ids?true:false"
|
|
32
|
45
|
:localdata="objectiJurisArr"
|
|
33
|
46
|
v-model="formData.affiliate.organizeFlag"
|
|
34
|
47
|
@change='clearValidate'></uni-data-checkbox>
|
|
|
@@ -144,6 +157,7 @@
|
|
144
|
157
|
export default {
|
|
145
|
158
|
data() {
|
|
146
|
159
|
return {
|
|
|
160
|
+ baseUrl : config.baseUrlTJ,
|
|
147
|
161
|
formData:{
|
|
148
|
162
|
affiliate:{
|
|
149
|
163
|
organizeFlag: 0,
|
|
|
@@ -300,6 +314,7 @@
|
|
300
|
314
|
caseApplicationSelectById(data).then(res=>{
|
|
301
|
315
|
res.data.affiliate.respondentSex = Number(res.data.affiliate.respondentSex)
|
|
302
|
316
|
this.formData = res.data
|
|
|
317
|
+ console.log( this.formData)
|
|
303
|
318
|
})
|
|
304
|
319
|
},
|
|
305
|
320
|
// 被申请人获取性别出生年月
|