指挥中心(模型配置):金林湾bim 项目配置

This commit is contained in:
骆乐 2022-08-12 18:07:14 +08:00
parent 7125893c57
commit e97e9eb4cf
4 changed files with 76 additions and 65 deletions

BIN
dist.zip

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 81 KiB

View File

@ -129,62 +129,62 @@ export default {
pageNo: 1,
pageSize: 20,
tableData: [],
options:[{
label: "防疫人员通知",
value: "17"
},{
label: "访客通知",
value: "18"
}],
// options:[{
// label: "",
// value: "8"
// },{
// label: "",
// value: "1"
// },{
// label: "",
// value: "2"
// },{
// label: "",
// value: "3"
// value: "17"
// },{
// label: "访",
// value: "16"
// },{
// label: "",
// value: "4"
// },{
// label: "",
// value: "5"
// },{
// label: "",
// value: "6"
// },{
// label: "",
// value: "7"
// },{
// label: "",
// value: "9"
// },{
// label: "",
// value: "10"
// },{
// label: "",
// value: "11"
// },{
// label: "",
// value: "12"
// },{
// label: "",
// value: "13"
// },{
// label: "",
// value: "14"
// },{
// label: "",
// value: "15"
// value: "18"
// }],
options:[{
label: "高空火警",
value: "8"
},{
label: "考勤提醒",
value: "1"
},{
label: "防疫人员通知",
value: "2"
},{
label: "防疫车辆通知",
value: "3"
},{
label: "访客通知",
value: "16"
},{
label: "混凝土监测",
value: "4"
},{
label: "卸料平台",
value: "5"
},{
label: "配电箱",
value: "6"
},{
label: "扬尘",
value: "7"
},{
label: "标养室",
value: "9"
},{
label: "安全检查",
value: "10"
},{
label: "质量检查",
value: "11"
},{
label: "塔吊",
value: "12"
},{
label: "升降机",
value: "13"
},{
label: "电表",
value: "14"
},{
label: "水表",
value: "15"
}],
};
},
created() {

View File

@ -18,18 +18,13 @@
class="flex content_data"
v-for="(item,index) in buildList"
:key="index"
:class="{'active':activeBuildIndex==index }"
:class=" {'active': activeBuildIndex==index }"
@click="changeBuildFn(item,index)"
>
<div>{{item.bimName}}</div>
<div class="flex2">
<!-- <img
@click.stop="editBuildFn(item)"
src="@/assets/images/icon-edit.png"
style="margin-right:16px"
class="icon"
/>-->
<el-tooltip
<!-- 房子注释掉 -->
<!-- <el-tooltip
class="item"
effect="dark"
:content="$t('message.BIMmanage.setMainModel')"
@ -50,7 +45,7 @@
v-else
>
<i class="el-icon-s-home primaryText icon" style="margin-right:16px"></i>
</el-tooltip>
</el-tooltip>-->
<img @click.stop="deleteFn(item)" src="@/assets/images/icon-delete.png" class="icon" />
</div>
@ -172,7 +167,7 @@
:modal-append-to-body="false"
:title="$t('message.BIMmanage.confingServerData')"
:visible.sync="configDialog"
width="667px"
width="700px"
:close-on-click-modal="configForm.id?true:false"
:show-close="configForm.id?true:false"
>
@ -195,15 +190,20 @@
v-model="configForm.clientId"
:placeholder="$t('message.personnelPosition.please_enter')"
></el-input>
<!-- <span>使用说明</span> -->
<el-button type="text" @click="getIntro" size="medium">{{'获取公钥'}}</el-button>
</el-form-item>
<el-form-item :label="'AppSecrt(私钥):'" prop="clientSecret">
<el-input
width="200"
type="password"
:show-password="true"
v-model="configForm.clientSecret"
:placeholder="$t('message.personnelPosition.please_enter')"
></el-input>
<el-button type="text" @click="getIntro" size="medium">{{'获取私钥'}}</el-button>
</el-form-item>
<div class="dialog-footer">
<el-button type="primary" @click="registerCount" size="medium">{{'注册帐号'}}</el-button>
<el-button
type="primary"
icon="el-icon-circle-close"
@ -220,6 +220,10 @@
</el-form>
</div>
</el-dialog>
<el-dialog title="使用说明" :visible.sync="dialogTableVisible">
<img style="width: 100%; height: 100%" src="@/assets/images/projectImg/jlwModel.png" />
</el-dialog>
</div>
</template>
<script>
@ -238,6 +242,7 @@ export default {
components: { overview },
data() {
return {
dialogTableVisible: false,
buildList: [],
addBuildDialog: false,
isAdd: true,
@ -445,9 +450,15 @@ export default {
}
});
},
//
cancelConfigData(){
this.configDialog = false;
getIntro() {
this.dialogTableVisible = true;
this.url = "@/assets/images/projectImg/jlwModel.png.png";
},
registerCount() {
window.open("https://www-test.bimface.com/user-console/login");
},
cancelConfigData() {
this.configDialog = false;
}
}
};