|
|
@@ -442,6 +442,13 @@
|
|
|
<div slot="footer" class="dialog-footer">
|
|
|
<el-button type="primary" @click="submitForm">确 定</el-button>
|
|
|
<el-button @click="cancel">取 消</el-button>
|
|
|
+ <el-button
|
|
|
+ icon="el-icon-document-copy"
|
|
|
+ type="text"
|
|
|
+ v-if="r.row.pdfUrl"
|
|
|
+ @click="onDown(r.row.pdfUrl)"
|
|
|
+ >登记簿
|
|
|
+ </el-button>
|
|
|
</div>
|
|
|
</DialogCom>
|
|
|
<DialogThreeState ref="DialogThreeState"> </DialogThreeState>
|
|
|
@@ -578,6 +585,9 @@ export default {
|
|
|
if (value <= this.initNum) this.form.planFrequency = this.initNum;
|
|
|
//value = parseInt(value);
|
|
|
},
|
|
|
+ async onDown(pdfUrl) {
|
|
|
+ window.open(pdfUrl);
|
|
|
+ },
|
|
|
getPageIndex($index) {
|
|
|
//表格序号
|
|
|
return (
|