|
|
|
@ -65,7 +65,7 @@ |
|
|
|
<span>(点击以下表格开始提报任务)</span> |
|
|
|
</div> |
|
|
|
<div class="flex-wrap flex"> |
|
|
|
<div class="item flex flex-y flex-center-deputy" @click="handleClickShowView(formData.subWorkBookId)" |
|
|
|
<div class="item flex flex-y flex-center-deputy" @click="handleClickShowView(formData.subWorkBookId,formData.taskStateName)" |
|
|
|
:key="index"> |
|
|
|
<img :src="require(`@/assets/images/index/Excel.png`)" alt=""> |
|
|
|
<div class="agencyName">{{formData.taskTitle}}</div> |
|
|
|
@ -90,7 +90,7 @@ |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div v-if="showView"> |
|
|
|
<excel-view @close="close" :workbookId="workbookId" :pageType="'filling'" :sheetTotal="true" :infoObj="infoObj"></excel-view> |
|
|
|
<excel-view @close="close" :workbookId="workbookId" :taskStateName="taskStateName" :pageType="'filling'" :sheetTotal="true" :infoObj="infoObj"></excel-view> |
|
|
|
</div> |
|
|
|
<el-dialog title="转派其他接收人" :visible.sync="showPersonel" width="50%" :close-on-click-modal="false"> |
|
|
|
<acceptingPersonel :showType="showType" :taskId="formData.id" |
|
|
|
@ -107,6 +107,7 @@ import acceptingPersonel from "./acceptingPersonel.vue"; |
|
|
|
export default { |
|
|
|
data() { |
|
|
|
return { |
|
|
|
taskStateName:"", |
|
|
|
workbookId:"", |
|
|
|
showView:false, |
|
|
|
showType:"", |
|
|
|
@ -161,10 +162,12 @@ export default { |
|
|
|
handelClickBack() { |
|
|
|
this.$emit('handleShowPage') |
|
|
|
}, |
|
|
|
handleClickShowView(val){ |
|
|
|
handleClickShowView(val,valname){ |
|
|
|
console.log(val,valname); |
|
|
|
this.$store.state.sidebarFold = true; |
|
|
|
this.showView = true; |
|
|
|
this.workbookId = val |
|
|
|
this.taskStateName=valname |
|
|
|
}, |
|
|
|
}, |
|
|
|
components: {acceptingPersonel,excelView}, |
|
|
|
|