Commit 3ef59f66 by 潘建波

【new】增加存储配置导出功能

1 parent 343145f3
No preview for this file type
{"commit":"c06b62d1ed010a40df2e0aa8ef5895ab14020d03","commitDate":"2021-8-10 15:20","buildDate":"2021-9-6 13:47","version":"2.1.0","info":"【NEW】添加nvs3000拉取功能"}
\ No newline at end of file
{"commit":"343145f35878188a308c8d0af5a85a7ca617ef08","commitDate":"2021-9-6 14:21","buildDate":"2021-9-13 16:1","version":"2.1.0","info":"【BUG】参数多次保存出现值为空的情况"}
\ No newline at end of file
......@@ -79,6 +79,18 @@
@click="delFun(scope.$index, scope.row)"
></span>
</el-tooltip>
<span class="tableSpanBorder"></span>
<el-tooltip
content="导出"
placement="bottom"
effect="light"
:visible-arrow="false"
>
<span
class="el-icon-upload editIcon"
@click="exportFun(scope.$index, scope.row)"
></span>
</el-tooltip>
</template>
</el-table-column>
</el-table>
......@@ -310,6 +322,10 @@ export default {
message: "已取消删除"
});
});
},
exportFun(index, row){
let url = location.origin;
console.log(`${url}/api/v1/devconf_fx/store_confs/export/${row.unid}`)
}
}
};
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!