|
@@ -74,6 +74,7 @@
|
|
|
<el-button size="small" type="text" v-if="row.url" @click="imgurlfun(row)">信息码
|
|
|
</el-button>
|
|
|
<el-button
|
|
|
+ :disabled="option.disabled"
|
|
|
size="small"
|
|
|
type="text"
|
|
|
@click="annexOpen(row, index)"
|
|
@@ -535,13 +536,8 @@ export default {
|
|
|
},
|
|
|
//打开附件
|
|
|
annexOpen(row, index) {
|
|
|
-
|
|
|
- console.log(row)
|
|
|
- console.log(index)
|
|
|
-
|
|
|
this.dataId = index
|
|
|
-
|
|
|
- this.orderList = row.filesList;
|
|
|
+ this.orderList = row.filesList?row.filesList:[];
|
|
|
this.enclosure = true
|
|
|
},
|
|
|
//保存
|