|
@@ -268,7 +268,7 @@
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column prop="agent" label="经办人">
|
|
<el-table-column prop="agent" label="经办人">
|
|
</el-table-column>
|
|
</el-table-column>
|
|
- <el-table-column prop="backOffice" label="内勤"> </el-table-column>
|
|
|
|
|
|
+ <el-table-column prop="backOffice" label="操作人"> </el-table-column>
|
|
<el-table-column prop="addressUrl" label="附件">
|
|
<el-table-column prop="addressUrl" label="附件">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
<img width="18" height="20" style="vertical-align: text-top; position: relative; top: -1px"
|
|
<img width="18" height="20" style="vertical-align: text-top; position: relative; top: -1px"
|
|
@@ -298,9 +298,11 @@
|
|
<WinseaContentModal v-model="accessoryTFs" :title="$t('system.noticeCircular.information')"
|
|
<WinseaContentModal v-model="accessoryTFs" :title="$t('system.noticeCircular.information')"
|
|
@on-cancel="handleClose">
|
|
@on-cancel="handleClose">
|
|
<p>查看附件</p>
|
|
<p>查看附件</p>
|
|
- <ws-upload ref="upload" table-name="maintain_work_order" oss-key="mainPlan" :comp-id="compId"
|
|
|
|
- :appendix-ids="appendixIdsAdd" :vesselId="deptBudgetList.addressUrl" :size-limit="size"
|
|
|
|
- @uploadSuccess="uploadSuccess" accept=".jpg, .jpeg, .png, .pdf, .doc, .zip, .rar" />
|
|
|
|
|
|
+ <el-image
|
|
|
|
+ style="width: 100px; height: 100px"
|
|
|
|
+ :src="appendixIdss"
|
|
|
|
+ :preview-src-list="srcList">
|
|
|
|
+ </el-image>
|
|
</WinseaContentModal>
|
|
</WinseaContentModal>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
@@ -342,21 +344,17 @@
|
|
return {
|
|
return {
|
|
//弹出框
|
|
//弹出框
|
|
dialogViewSpareMoney: false,
|
|
dialogViewSpareMoney: false,
|
|
- dialogApproveFormVisible: false,
|
|
|
|
binnumberList:[],
|
|
binnumberList:[],
|
|
// 船舶类型
|
|
// 船舶类型
|
|
monetaryKey: null,
|
|
monetaryKey: null,
|
|
- // 表格显示数据
|
|
|
|
- tableDate: [],
|
|
|
|
- appendixIdsAdd: '',
|
|
|
|
// 是否显示
|
|
// 是否显示
|
|
showType: true,
|
|
showType: true,
|
|
// 年
|
|
// 年
|
|
year: '',
|
|
year: '',
|
|
|
|
+ srcList:[],
|
|
deptBudgetTotal: 0,
|
|
deptBudgetTotal: 0,
|
|
currentPage: 1,
|
|
currentPage: 1,
|
|
pageSize: 10,
|
|
pageSize: 10,
|
|
- radiostatus: 1,
|
|
|
|
capacity: '',
|
|
capacity: '',
|
|
searchKeyWord: '',
|
|
searchKeyWord: '',
|
|
contractType: 2,
|
|
contractType: 2,
|
|
@@ -366,15 +364,14 @@
|
|
binNumber: '',
|
|
binNumber: '',
|
|
status: 1,
|
|
status: 1,
|
|
value2:[],
|
|
value2:[],
|
|
|
|
+ appendixIdss:'',
|
|
// 提交类型
|
|
// 提交类型
|
|
submitType: true,
|
|
submitType: true,
|
|
selectpackingMethod: {},
|
|
selectpackingMethod: {},
|
|
size: 10,
|
|
size: 10,
|
|
warehouseType: '1',
|
|
warehouseType: '1',
|
|
- deptBudgetList1: {},
|
|
|
|
compId: localStorage.getItem('ws-pf_compId'),
|
|
compId: localStorage.getItem('ws-pf_compId'),
|
|
deptCircularPage: {},
|
|
deptCircularPage: {},
|
|
- packtypeList: {},
|
|
|
|
pcFlag: 1,
|
|
pcFlag: 1,
|
|
date: {
|
|
date: {
|
|
year: dayjs().format('YYYY'),
|
|
year: dayjs().format('YYYY'),
|
|
@@ -693,8 +690,8 @@
|
|
},
|
|
},
|
|
fujian(row) {
|
|
fujian(row) {
|
|
if (
|
|
if (
|
|
- row.receiveAttachmentPath === null ||
|
|
|
|
- row.receiveAttachmentPath === ''
|
|
|
|
|
|
+ row.addressUrl === null ||
|
|
|
|
+ row.addressUrl === ''
|
|
) {
|
|
) {
|
|
EventBus.$emit(
|
|
EventBus.$emit(
|
|
'warning',
|
|
'warning',
|
|
@@ -703,7 +700,8 @@
|
|
} else {
|
|
} else {
|
|
this.accessoryTFs = true
|
|
this.accessoryTFs = true
|
|
}
|
|
}
|
|
- this.appendixIdss = row.receiveAttachmentPath
|
|
|
|
|
|
+ this.appendixIdss = row.addressUrl
|
|
|
|
+ this.srcList=[row.addressUrl]
|
|
},
|
|
},
|
|
// 关闭 dialog时 处理文件url 初始化upload组件
|
|
// 关闭 dialog时 处理文件url 初始化upload组件
|
|
handleCloe() {
|
|
handleCloe() {
|