|
|
@ -80,26 +80,31 @@ |
|
|
|
<span>{{ scope.row.vinNo }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="合格证状态" align="center"> |
|
|
|
<el-table-column label="合格证状态" align="center" width="110"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span>{{ scope.row.certificateStateValue }}</span> |
|
|
|
<span class="bluezi" @click="handleLook(scope.row.certificatePhoto)">{{ scope.row.certificateStateValue }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="开票类型" align="center"> |
|
|
|
<el-table-column label="开票类型" align="center" width="150"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span>{{ scope.row.billTypeValue }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="开票名称" align="center"> |
|
|
|
<el-table-column label="开票名称" align="center" width="160"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span>{{ scope.row.openTickName }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="开票信息" align="center"> |
|
|
|
<el-table-column label="开票信息" align="center" min-width="200"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span>{{ scope.row.openTickRemarks }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="开票金额" align="center" width="120"> |
|
|
|
<template> |
|
|
|
<span>{{ formobj.oneBillMoney }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
</el-table> |
|
|
|
<el-row> |
|
|
|
<el-col :span="12"> |
|
|
@ -133,11 +138,26 @@ |
|
|
|
<span>{{ scope.row.vinNo }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="开票金额" align="center"> |
|
|
|
<el-table-column label="开票名称" align="center" width="160"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span>{{ scope.row.openTickName }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="开票信息" align="center"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span>{{ scope.row.openTickRemarks }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="开票金额" align="center" width="120"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span>{{ scope.row.oneBillMoney }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="合格证" align="center" width="100"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span class="bluezi" @click="handleLook(scope.row.hgzImageUrl)">查看</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
</el-table> |
|
|
|
<div class="title"><span class="icon">*</span>证件(营业执照或身份证)</div> |
|
|
|
<el-row> |
|
|
@ -167,6 +187,11 @@ |
|
|
|
</el-row> |
|
|
|
</el-form> |
|
|
|
</div> |
|
|
|
|
|
|
|
<el-dialog :visible.sync="dialogVisible" :append-to-body="true"> |
|
|
|
<el-image style="width: 178px;height: 178px;padding-left: 5px" v-for="(item,index) in srcList" :key="index" :src="item" :preview-src-list="srcList"></el-image> |
|
|
|
</el-dialog> |
|
|
|
|
|
|
|
<!-- 选择待办人 的弹出框--> |
|
|
|
<el-dialog title="填写审批意见" :visible.sync="nodeDialogVisible" width="80%"> |
|
|
|
<el-form class="formadd" > |
|
|
@ -211,6 +236,8 @@ export default { |
|
|
|
billingKey: 1, |
|
|
|
index: 0, |
|
|
|
accept: '.jpg,.jpeg,.png,.JPG,.JPEG', |
|
|
|
dialogVisible: false, |
|
|
|
srcList: [], |
|
|
|
image_list1: [], |
|
|
|
image_list2: [], |
|
|
|
image_list3: [], |
|
|
@ -363,6 +390,11 @@ export default { |
|
|
|
} |
|
|
|
}) |
|
|
|
}, |
|
|
|
handleLook(row) { |
|
|
|
this.srcList = [] |
|
|
|
this.dialogVisible = true |
|
|
|
this.srcList = row |
|
|
|
}, |
|
|
|
getUrl() { |
|
|
|
if (this.image_list1.length > 0) { |
|
|
|
const aa = [] |
|
|
|