diff --git a/src/scripts/ConstDic.js b/src/scripts/ConstDic.js
index 97f1b6c72..8fd40f917 100644
--- a/src/scripts/ConstDic.js
+++ b/src/scripts/ConstDic.js
@@ -117,7 +117,9 @@ export const DeviceMenu = {
RunPlan: '104',
JointRoom: '105',
SetDriver: '106',
- Script: '107'
+ Script: '107',
+ IscsSystem: '108',
+ IscsInterface: '109'
};
/**
diff --git a/src/utils/baseUrl.js b/src/utils/baseUrl.js
index 55d352581..778caeb7b 100644
--- a/src/utils/baseUrl.js
+++ b/src/utils/baseUrl.js
@@ -2,10 +2,10 @@ export function getBaseUrl() {
let BASE_API;
if (process.env.NODE_ENV === 'development') {
// BASE_API = 'https://joylink.club/jlcloud';
- // BASE_API = 'https://test.joylink.club/jlcloud';
+ BASE_API = 'https://test.joylink.club/jlcloud';
// BASE_API = 'http://192.168.3.5:9000'; // 袁琪
// BASE_API = 'http://192.168.3.6:9000'; // 旭强
- BASE_API = 'http://192.168.3.41:9000'; // 张赛
+ // BASE_API = 'http://192.168.3.41:9000'; // 张赛
// BASE_API = 'http://192.168.3.82:9000'; // 杜康
// BASE_API = 'http://b29z135112.zicp.vip';
// BASE_API = 'http://2925963m2a.zicp.vip'; // 杜康
diff --git a/src/views/ibp/ibpDraw/index.vue b/src/views/ibp/ibpDraw/index.vue
index 9806dfab1..f567c60a6 100644
--- a/src/views/ibp/ibpDraw/index.vue
+++ b/src/views/ibp/ibpDraw/index.vue
@@ -40,11 +40,11 @@ export default {
},
watch: {
'$store.state.app.windowSizeCount': function() {
- this.$store.dispatch('config/resize', { width: this.$store.state.app.width - 521 - this.widthLeft, height: this.$store.state.app.height - 60 });
+ this.$store.dispatch('config/resize', { width: this.$store.state.app.width - this.widthLeft, height: this.$store.state.app.height - 60 });
}
},
created() {
- this.$store.dispatch('config/resize', { width: this.$store.state.app.width - 521 - this.widthLeft, height: this.$store.state.app.height - 60 });
+ this.$store.dispatch('config/resize', { width: this.$store.state.app.width - this.widthLeft, height: this.$store.state.app.height - 60 });
},
mounted() {
this.$refs.ibpPlate.show();
diff --git a/src/views/iscs/iscsDesign/contextMenu.vue b/src/views/iscs/iscsDesign/contextMenu.vue
new file mode 100644
index 000000000..7e6f38114
--- /dev/null
+++ b/src/views/iscs/iscsDesign/contextMenu.vue
@@ -0,0 +1,88 @@
+
+