发布v1.1版本

This commit is contained in:
kerwincui
2022-03-16 14:10:16 +08:00
parent 808b7a20bf
commit 8b9b34ce41
835 changed files with 99635 additions and 0 deletions

View File

@@ -0,0 +1,121 @@
<template>
<div style="padding-left:20px;">
<el-row :gutter="10">
<el-col :span="14">
<el-link type="danger" style="padding-top:5px" :underline="false">该功能未完成</el-link>
<el-table v-loading="loading" :data="modelList" border style="margin-bottom:60px;margin-top:20px;">
<el-table-column label="名称" align="center" prop="modelName" />
<el-table-column label="标识符" align="center" prop="identifier" />
<el-table-column label="物模型类别" align="center" prop="type">
<template slot-scope="scope">
<dict-tag :options="dict.type.iot_things_type" :value="scope.row.type" />
</template>
</el-table-column>
<el-table-column label="数据类型" align="center" prop="datatype">
<template slot-scope="scope">
<dict-tag :options="dict.type.iot_data_type" :value="scope.row.datatype" />
</template>
</el-table-column>
<el-table-column label="部件" align="center" prop="part">
<template slot-scope="scope">
{{scope.row.part}} 系统定义的部件
</template>
</el-table-column>
</el-table>
<el-divider>高级功能</el-divider>
<el-form ref="form" :model="form" label-width="100px">
<el-form-item label="自定义页面" prop="page">
<el-input v-model="form.page" placeholder="请输入自定义页面" />
</el-form-item>
</el-form>
</el-col>
<el-col :span="8" :offset="2">
<div class="phone">
<div class="phone-container"></div>
</div>
<div style="text-align:center;margin-top:15px;width:370px;">界面展示</div>
</el-col>
</el-row>
</div>
</template>
<script>
import {
listModel,
} from "@/api/iot/model";
export default {
name: "device-log",
dicts: ["iot_things_type", "iot_data_type", "iot_yes_no"],
props: {
product: {
type: Object,
default: null
}
},
data() {
return {
// 遮罩层
loading: false,
// 产品物模型表格数据
modelList: [],
// 弹出层标题
title: "",
// 查询参数
queryParams: {
productId: 0,
// 1-属性2-功能3-事件4-属性和功能
type: 4,
},
form: {},
};
},
watch: {
// 获取到父组件传递的productId后刷新列表
product: function (newVal, oldVal) {
this.productInfo = newVal;
if (this.productInfo && this.productInfo.productId != 0) {
this.queryParams.productId = this.productInfo.productId;
this.getList();
}
}
},
created() {
},
methods: {
/** 查询产品物模型列表 */
getList() {
this.loading = true;
listModel(this.queryParams).then((response) => {
this.modelList = response.rows;
this.total = response.total;
this.loading = false;
});
},
}
};
</script>
<style scoped>
.phone {
height: 700px;
width: 370px;
background-image: url("../../../assets/images/phone.jpg");
background-size: cover;
top: 0px;
}
.phone-container {
height: 620px;
width: 345px;
border-radius: 20px;
position: relative;
top: 45px;
left: 12px;
border: 1px solid #888;
background: linear-gradient(23deg, #AFF7FF 0%, #ffc3a0 100%);
}
</style>