Skip to content

Commit

Permalink
Merge pull request #463 from WeBankBlockchain/lab-dev
Browse files Browse the repository at this point in the history
fix bfs & check auth enable
  • Loading branch information
youwenbusi authored Sep 2, 2022
2 parents a3579c5 + fac13af commit f27f48a
Show file tree
Hide file tree
Showing 17 changed files with 866 additions and 833 deletions.
2 changes: 1 addition & 1 deletion dist/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
height: 100%;
margin: 0px;
padding: 0px;
}</style></head><body><body><div id=app></div><script type=text/javascript src=./static/js/0.b9b352e101525984ee20.js></script><script type=text/javascript src=./static/js/3.206d4ed4c8f013e58b4a.js></script><script type=text/javascript src=./static/js/runtime.2f47c3e6323f1337ac25.js></script><script type=text/javascript src=./static/js/5.8e893a6a4f846c44f925.js></script></body><script src=./static/js/web3.min.js type=text/javascript></script><script>if (self == top) {
}</style></head><body><body><div id=app></div><script type=text/javascript src=./static/js/0.71ca86169c7270a1ef16.js></script><script type=text/javascript src=./static/js/3.4533f757440952c1b7b7.js></script><script type=text/javascript src=./static/js/runtime.b8a68c6207f07aa2ebb7.js></script><script type=text/javascript src=./static/js/5.8e893a6a4f846c44f925.js></script></body><script src=./static/js/web3.min.js type=text/javascript></script><script>if (self == top) {
var antiClickjack = document.getElementById("antiClickjack");
antiClickjack.parentNode.removeChild(antiClickjack);
} else {
Expand Down

Large diffs are not rendered by default.

Binary file added dist/static/js/0.71ca86169c7270a1ef16.js.gz
Binary file not shown.
Binary file removed dist/static/js/0.b9b352e101525984ee20.js.gz
Binary file not shown.
Binary file removed dist/static/js/1.6ce09c912b8dd53c56f1.js.gz
Binary file not shown.

Large diffs are not rendered by default.

Binary file added dist/static/js/1.6d14811d314a180929cc.js.gz
Binary file not shown.

Large diffs are not rendered by default.

Binary file not shown.

Large diffs are not rendered by default.

Binary file not shown.

Large diffs are not rendered by default.

Binary file not shown.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions src/views/bfs/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ export default {
if (res.data.code === 0) {
this.bfsData = [];
res.data.data.forEach((item) => {
this.bfsData.push({ name: item.name, type: item.type });
this.bfsData.push({ name: item.fileName, type: item.fileType });
});
this.$message({
Expand Down Expand Up @@ -406,7 +406,7 @@ export default {
if (res.data.code === 0) {
this.bfsData = [];
res.data.data.forEach((item) => {
this.bfsData.push({ name: item.name, type: item.type });
this.bfsData.push({ name: item.fileName, type: item.fileType });
});
this.bfsForm.pwdRoute = this.handleValue;
Expand Down Expand Up @@ -442,7 +442,7 @@ export default {
if (res.data.code === 0) {
this.bfsData = [];
res.data.data.forEach((item) => {
this.bfsData.push({ name: item.name, type: item.type });
this.bfsData.push({ name: item.fileName, type: item.fileType });
});
} else {
this.$message({
Expand Down
Loading

0 comments on commit f27f48a

Please sign in to comment.