Browse Source

添加图库图片宽高,添加type字段

shaun-sheep 4 năm trước cách đây
mục cha
commit
ea015491fb
2 tập tin đã thay đổi với 110 bổ sung17 xóa
  1. 104 17
      src/views/legendLibrary/addForm.vue
  2. 6 0
      src/views/legendLibrary/addLegend.vue

+ 104 - 17
src/views/legendLibrary/addForm.vue

@@ -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;
         }

+ 6 - 0
src/views/legendLibrary/addLegend.vue

@@ -82,6 +82,7 @@ export default {
                 Url: '',
                 LineWidth: '',
                 LineDash: '',
+                Size: { Height: '32', Width: '32' },
                 InfoTypeId: [], //铺位可视化typeid
                 InfoLocal: [], //工程信息化位置与设备分类
                 InfoSystem: [] //工程信息化专业/系统
@@ -122,6 +123,8 @@ export default {
                     FillColor: '#ffffff',
                     Color: '#ffffff',
                     Url: '',
+                    Size: { Height: '32', Width: '32' },
+
                     InfoTypeId: [], //铺位可视化typeid
                     InfoLocal: [], //工程信息化位置与设备分类
                     InfoSystem: [] //工程信息化专业/系统
@@ -137,6 +140,8 @@ export default {
                     FillColor: '#ffffff',
                     Color: '#ffffff',
                     Url: '',
+                    Size: { Height: '32', Width: '32' },
+
                     InfoTypeId: [], //铺位可视化typeid
                     InfoLocal: [], //工程信息化位置与设备分类
                     InfoSystem: [] //工程信息化专业/系统
@@ -170,6 +175,7 @@ export default {
                 FillColor: '#ffffff',
                 Color: '#ffffff',
                 Url: '',
+                Size: { Height: '32', Width: '32' },
                 InfoTypeId: [], //铺位可视化typeid
                 InfoLocal: [], //工程信息化位置与设备分类
                 InfoSystem: [] //工程信息化专业/系统