|
@@ -84,19 +84,76 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<div v-if='ruleForm.Type=="Image"' class='form5'>
|
|
|
- <div class='form5-top'>上传新图标</div>
|
|
|
- <div>
|
|
|
- <el-upload
|
|
|
- class='upload-demo'
|
|
|
- action='https://jsonplaceholder.typicode.com/posts/'
|
|
|
- :http-request='getFile'
|
|
|
- :file-list='fileList'
|
|
|
- :on-change='handleChange'
|
|
|
- :on-remove='handleRemove'
|
|
|
- >
|
|
|
- <el-button size='small' style='color:#1F2329;'>点击上传</el-button>
|
|
|
- </el-upload>
|
|
|
- </div>
|
|
|
+ <el-row :gutter='20'>
|
|
|
+ <el-col :span='16'>
|
|
|
+ <div class='form5-top start'>上传新图标</div>
|
|
|
+ <div>
|
|
|
+ <el-upload
|
|
|
+ class='upload-demo'
|
|
|
+ action='https://jsonplaceholder.typicode.com/posts/'
|
|
|
+ :http-request='getFile'
|
|
|
+ :file-list='fileList'
|
|
|
+ :on-change='handleChange'
|
|
|
+ :on-remove='handleRemove'
|
|
|
+ >
|
|
|
+ <el-button size='small' style='color:#1F2329;'>点击上传</el-button>
|
|
|
+ </el-upload>
|
|
|
+ </div>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span='8'>
|
|
|
+ <div class='form5-top'>默认图标显示尺寸</div>
|
|
|
+ <el-input-number
|
|
|
+ v-model='ruleForm.Size.Width'
|
|
|
+ @change='handleChangeWidth'
|
|
|
+ size='small'
|
|
|
+ :min='1'
|
|
|
+ :max='2000'
|
|
|
+ :controls='false'
|
|
|
+ style='width:72px'
|
|
|
+ ></el-input-number>
|
|
|
+ <i style='margin:0 10px'>x</i>
|
|
|
+ <el-input-number
|
|
|
+ v-model='ruleForm.Size.Height'
|
|
|
+ @change='handleChangeHeight'
|
|
|
+ size='small'
|
|
|
+ :min='1'
|
|
|
+ :max='2000'
|
|
|
+ :controls='false'
|
|
|
+ style='width:72px'
|
|
|
+ ></el-input-number>
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
+
|
|
|
+ <!-- <el-row :gutter='20'>
|
|
|
+ <el-col :span='8'>
|
|
|
+ <div>宽</div>
|
|
|
+ <Select
|
|
|
+ width='200'
|
|
|
+ height='40'
|
|
|
+ v-model='ruleForm.Size.Width'
|
|
|
+ :isReadOnly='true'
|
|
|
+ :hideClear='true'
|
|
|
+ :selectdata='kuan'
|
|
|
+ :placeholder='"请选择"'
|
|
|
+ style='margin-bottom:10px'
|
|
|
+ @change='handleKuan'
|
|
|
+ />
|
|
|
+ </el-col>
|
|
|
+ <el-col :span='12'>
|
|
|
+ <div>高</div>
|
|
|
+ <Select
|
|
|
+ width='200'
|
|
|
+ height='40'
|
|
|
+ v-model='ruleForm.Size.Height'
|
|
|
+ :isReadOnly='true'
|
|
|
+ :hideClear='true'
|
|
|
+ :selectdata='gao'
|
|
|
+ :placeholder='"请选择"'
|
|
|
+ style='margin-bottom:10px'
|
|
|
+ @change='handleGao'
|
|
|
+ />
|
|
|
+ </el-col>
|
|
|
+ </el-row>-->
|
|
|
</div>
|
|
|
<div v-if='ruleForm.Type!="None"' class='form4'>
|
|
|
<div class='form4-top'>
|
|
@@ -169,7 +226,16 @@ export default {
|
|
|
name: '线条'
|
|
|
}
|
|
|
],
|
|
|
-
|
|
|
+ kuan: [
|
|
|
+ { id: '16', name: '16' },
|
|
|
+ { id: '32', name: '32' },
|
|
|
+ { id: '64', name: '64' }
|
|
|
+ ],
|
|
|
+ gao: [
|
|
|
+ { id: '16', name: '16' },
|
|
|
+ { id: '32', name: '32' },
|
|
|
+ { id: '64', name: '64' }
|
|
|
+ ],
|
|
|
selectedIds: [],
|
|
|
borderLineOption: [
|
|
|
{
|
|
@@ -226,11 +292,24 @@ export default {
|
|
|
props: ['ruleForm', 'title', 'InfosList', 'InfoTypeIdList'],
|
|
|
|
|
|
methods: {
|
|
|
+ handleChangeWidth(val) {
|
|
|
+ this.$set(this.ruleForm.Size, 'Width', val)
|
|
|
+ },
|
|
|
+ handleChangeHeight(val) {
|
|
|
+ this.$set(this.ruleForm.Size, 'Height', val)
|
|
|
+ },
|
|
|
//业下设备分类和位置分类树形结构
|
|
|
initQueryDeviceAndPOsition() {
|
|
|
let postParams = {}
|
|
|
queryDeviceAndPOsition({ postParams }).then(res => {
|
|
|
- this.deviceList = res.data
|
|
|
+ this.deviceList = res.data.map(i => {
|
|
|
+ i.children &&
|
|
|
+ i.children.map(child => {
|
|
|
+ child.id = child.id + child.type
|
|
|
+ child.name = child.name
|
|
|
+ })
|
|
|
+ return i
|
|
|
+ })
|
|
|
})
|
|
|
},
|
|
|
handleRemove(file, fileList) {
|
|
@@ -465,7 +544,13 @@ export default {
|
|
|
}
|
|
|
return i
|
|
|
})
|
|
|
- InfoLocal = info
|
|
|
+ InfoLocal = info.map(i => {
|
|
|
+ return {
|
|
|
+ type: i.id.split('')[i.id.length - 1],
|
|
|
+ name: i.name,
|
|
|
+ id: i.id.substr(0, i.id.length - 1)
|
|
|
+ }
|
|
|
+ })
|
|
|
this.$set(this.ruleForm, 'InfoLocal', InfoLocal)
|
|
|
this.$set(this.ruleForm, 'InfoSystem', InfoSystem)
|
|
|
},
|
|
@@ -504,6 +589,7 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
mounted() {
|
|
|
+ console.log(this.ruleForm, 'form')
|
|
|
this.initQueryDeviceAndPOsition()
|
|
|
this.visualization()
|
|
|
if (this.title == '修改图例库') {
|
|
@@ -644,11 +730,12 @@ export default {
|
|
|
}
|
|
|
.form5 {
|
|
|
width: 720px;
|
|
|
- height: 86px;
|
|
|
+ // height: 86px;
|
|
|
background: rgba(245, 246, 247, 1);
|
|
|
border-radius: 4px;
|
|
|
margin-top: 20px;
|
|
|
padding-left: 12px;
|
|
|
+ padding-bottom: 20px;
|
|
|
.form5-top {
|
|
|
padding: 12px 0 8px 0;
|
|
|
}
|