|
@@ -19,6 +19,10 @@
|
|
|
<p @click="model1 = 3" :style="model1==3?'color:blue;':'color:black;'" class="headdtwo">流向</p>
|
|
|
<hr :style="model1==3?'border:0.5px solid blue;':'display:none;'" align="center">
|
|
|
</div>
|
|
|
+ <div :style="model1==4?'background-color:#fff;color:blue;':''" class="headdoneheadd">
|
|
|
+ <p @click="model1 = 4" :style="model1==4?'color:blue;':'color:black;'" class="headdtwo">附件</p>
|
|
|
+ <hr :style="model1==4?'border:0.5px solid blue;':'display:none;'" align="center">
|
|
|
+ </div>
|
|
|
<Button :style="modal3?'margin:0px 0px 10px 0px;height:40px;':'display:none;'" @click="openQainShou" type="primary" long>签收</Button>
|
|
|
<ButtonGroup :style="modal3?'display:none;':'width:100%;margin:0px 0px 10px 0px;'">
|
|
|
<Button @click="openReturn" :style="modal7?'width:50%;height:40px;':'display:none;'" type="primary">
|
|
@@ -75,6 +79,18 @@
|
|
|
</TimelineItem>
|
|
|
</Timeline>
|
|
|
</div>
|
|
|
+ <!--附件 -->
|
|
|
+ <div :style="model1==4?'':'display:none;'">
|
|
|
+ <Timeline style="margin:0px 0px 0px 34px;">
|
|
|
+ <TimelineItem color="green" v-for="i in files" :key="i.id">
|
|
|
+ <Icon type="md-document" slot="dot"></Icon>
|
|
|
+ <Card style="width:95%;" shadow>
|
|
|
+ <span style="font-weight:bold;font-size:16px;width:50%;color:black;">{{i.filename}}</span>
|
|
|
+
|
|
|
+ </Card>
|
|
|
+ </TimelineItem>
|
|
|
+ </Timeline>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
@@ -90,9 +106,10 @@ export default {
|
|
|
model1:1,
|
|
|
user:JSON.parse(sessionStorage.getItem('usercode')),
|
|
|
code:JSON.parse(sessionStorage.getItem('actCode')),
|
|
|
- userid:JSON.parse(sessionStorage.getItem('userId')),
|
|
|
+ userid:JSON.parse(sessionStorage.getItem('userid')),
|
|
|
detauils:[],
|
|
|
directions:[],
|
|
|
+ files:[],
|
|
|
pSrc:'',
|
|
|
opinionText:'',
|
|
|
pdfs:'',
|
|
@@ -107,15 +124,25 @@ export default {
|
|
|
this.$router.push('daiban');
|
|
|
return;
|
|
|
}
|
|
|
- if(this.userid==null){
|
|
|
- let uservm = {
|
|
|
- actUserName:this.user,
|
|
|
- }
|
|
|
- this.$store.dispatch('GetUserVM',uservm).then(r4=>{
|
|
|
- this.userid = r4.userID;})
|
|
|
+
|
|
|
+
|
|
|
+ this.$store.dispatch('GetWorkFlowFile',this.code).then(rfile=>{
|
|
|
+ let count0 =1;
|
|
|
+ for (let i of rfile){
|
|
|
+ let a = {
|
|
|
+ id:count0,
|
|
|
+ filename:i.filename,
|
|
|
+
|
|
|
+ filecontenttype:i.filecontenttype,
|
|
|
+
|
|
|
+ }
|
|
|
+ count0 ++;
|
|
|
+ this.files.push(a);
|
|
|
+ }
|
|
|
+
|
|
|
+ })
|
|
|
|
|
|
|
|
|
- }
|
|
|
let FWQ ={
|
|
|
taskActorName:'第三方注册系统编码',
|
|
|
actUserName:'调取地产云地址',
|
|
@@ -238,7 +265,7 @@ export default {
|
|
|
padding:13px 0px 0px 10px;height:45px;font-size:13px;
|
|
|
}
|
|
|
.headdoneheadd{
|
|
|
- width:33%;display: inline-block;text-align:center;height:40px;
|
|
|
+ width:25%;display: inline-block;text-align:center;height:40px;
|
|
|
}
|
|
|
.headdtwo:hover{
|
|
|
cursor: pointer;
|