Browse Source

Merge branch 'dev-web-optimize' of http://git.info666.com/infrared_remote/admin_web into dev-web-optimize

wangzihao 1 year ago
parent
commit
e8c105f1e2

+ 10 - 1
ruoyi-ui/src/baseComponents/index.js

@@ -1,3 +1,11 @@
+/*
+ * @Author: 傅豪杰 18516149270@163.com
+ * @Date: 2023-07-24 13:57:02
+ * @LastEditors: 傅豪杰 18516149270@163.com
+ * @LastEditTime: 2023-07-24 15:32:50
+ * @FilePath: /infrared_remote/admin_web/ruoyi-ui/src/baseComponents/index.js
+ * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
+ */
 import Vue from 'vue'
 
 Vue.component('f-btn', () => import( /* webpackChunkName: "baseComponents/f-btn" */ './f-btn/index.vue'));
@@ -15,4 +23,5 @@ Vue.component('f-radio', () => import( /* webpackChunkName: "baseComponents/f-ra
 Vue.component('f-select', () => import( /* webpackChunkName: "baseComponents/f-select" */ './f-select/index.vue'));
 Vue.component('f-table', () => import( /* webpackChunkName: "baseComponents/f-table" */ './f-table/index.vue'));
 Vue.component('f-tabs', () => import( /* webpackChunkName: "baseComponents/f-tabs" */ './f-tabs/index.vue'));
-Vue.component('f-tooltip', () => import( /* webpackChunkName: "baseComponents/f-tooltip" */ './f-tooltip/index.vue'));
+Vue.component('f-tooltip', () => import( /* webpackChunkName: "baseComponents/f-tooltip" */ './f-tooltip/index.vue'));
+Vue.component('f-color', () => import( /* webpackChunkName: "baseComponents/f-color" */ './f-color/index.vue'));

+ 20 - 2
ruoyi-ui/src/mock/cpnsList.js

@@ -1,16 +1,34 @@
+/*
+ * @Author: 傅豪杰 18516149270@163.com
+ * @Date: 2023-07-24 14:48:20
+ * @LastEditors: 傅豪杰 18516149270@163.com
+ * @LastEditTime: 2023-07-24 16:24:02
+ * @FilePath: /infrared_remote/admin_web/ruoyi-ui/src/mock/cpnsList.js
+ * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
+ */
 // 组件相关配置文件
 export const cpnsList = [
   {
     classType: 'icon-m-anniu',
     type: 'button',
     text: '按钮',
-    dom: '<div style="width: 100%; height: 100%; background: pink;">按钮</div>'
+    border: '1px',
+    borderColor: '#fff',
+    borderRadius: '8px',
+    fontSize: '14px',
+    background: '#000',
+    color: '#fff'
   },
   {
     classType: 'icon-wenben',
     type: 'text',
     text: '文字',
-    dom: '<div style="width: 100%; height: 100%; background: #000;">文本</div>'
+    border: '0',
+    borderColor: 'none',
+    borderRadius: '0',
+    fontSize: '14px',
+    background: 'none',
+    color: '#000'
   },
   {
     classType: 'icon-tupian',

+ 150 - 73
ruoyi-ui/src/views/template/addTemplate/blocks/detailDialog.vue

@@ -29,33 +29,6 @@
               <p>{{ item.text }}</p>
             </div>
           </div>
-          <!-- <grid-layout 
-            :layout.sync="cpnArray" 
-            :col-num="6" 
-            :row-height="30" 
-            :min-rows="1" 
-            :is-draggable="false" 
-            :is-resizable="false"
-            :is-mirrored="false" 
-            :vertical-compact="true" 
-            :margin="[10, 10]" 
-            :use-css-transforms="true"
-            class="box-btns-items"
-          >
-            <grid-item 
-              v-for="(item, index) in cpnArray" 
-              :x="item.x" 
-              :y="item.y" 
-              :w="item.w" 
-              :h="item.h" 
-              :i="item.i"
-              :key="index"
-              class="box-btns-item"
-              @click.native="addBtn(item)"
-            >
-              {{ item.text }}
-            </grid-item>
-          </grid-layout> -->
         </div>
         <div class="box-canvs">
           <div class="box-canvs-main">
@@ -73,40 +46,59 @@
             >
               <grid-item 
                 v-for="(item, index) in pageArray" 
-                :x="item.x" 
-                :y="item.y" 
-                :w="item.w" 
-                :h="item.h" 
+                :x="Number(item.x)"
+                :y="Number(item.y)"
+                :w="Number(item.w)"
+                :h="Number(item.h)" 
                 :i="item.i"
                 :key="index"
-                @dblclick.native="showSeting(item, index)"
+                @dblclick.native="showSeting(index)"
               >
-                <span class="box-canvs-main-span">
-                  <div style="width: 100%; height: 100%;" v-html="item.dom"></div> 
-                  <i @click.stop="removeBtn(index)" class="el-icon-close"></i></span>
+                <div class="box-canvs-main-span">
+                  <div 
+                    style="width: 100%; height: 100%;display: flex;align-items: center;justify-content: center;"
+                    :style="{
+                      borderColor:item.borderColor,
+                      borderWidth:item.border,
+                      borderStyle:'solid',
+                      borderRadius:item.borderRadius,
+                      fontSize:item.fontSize,
+                      background:item.background,
+                      color:item.color
+                    }"
+                  >
+                    {{item.text}}
+                  </div> 
+                  <i @click.stop="removeBtn(index)" class="el-icon-close"></i>
+                </div>
               </grid-item>
             </grid-layout>
           </div> 
         </div>
         <div class="box-set">
-          <el-tabs type="card" v-model="activeName">
+          <el-tabs v-if="isShowSeting" type="card" v-model="activeName">
             <el-tab-pane label="按钮基础配置" name="first">
               <f-form
                 ref="btnForm"
-                :form="btnData"
+                :key="btnFromKey"
+                :form="pageArray[currentCpn]"
                 :config="btnDataConfig"
                 :rules="btnRules"
                 label-position="left"
                 :column="1"
-                :key="btnFromKey"
               />
             </el-tab-pane>
             <el-tab-pane label="按钮样式配置" name="second">
-           按钮样式配置
+              <f-form
+                ref="btnClassForm"
+                :key="btnFromKey"
+                :form="pageArray[currentCpn]"
+                :config="btnClassConfig"
+                label-position="left"
+                :column="1"
+              />
             </el-tab-pane>
           </el-tabs>
-          <div><button @click="changeCpns">确定</button><button @click="btnFromShow = false">取消</button></div>
-
         </div>
       </div>
     </template>
@@ -142,6 +134,7 @@ export default {
       default: () => []
     }
   },
+
   data() {
     return {
       // tab
@@ -175,9 +168,101 @@ export default {
         overCode:[{required: true, message: '请输入结束码'}],
       },
       btnFromKey: 0,
-      currentCpn: 0
+      currentCpn: '', //已选择的组件下标
+      isShowSeting:false,
     };
   },
+  computed: {
+    pageArrayCount() {
+      return this.pageArray.length;
+    },
+    cpnArray() {
+      return this.allButton.map((item, index) => ({ x: 0, y: index*2, w: 2, h: 2, i: index, text: item.name, ...item }))
+    },
+    btnClassConfig() {
+      let config = [
+        {
+          itemType: 'input',
+          prop: 'w',
+          label: '宽度',
+          attrs: {
+            placeholder: '请输入宽度',
+          }
+        },
+        {
+          itemType: 'input',
+          prop: 'h',
+          label: '高度',
+          attrs: {
+            placeholder: '请输入高度',
+          }
+        }
+      ]
+      const { currentCpn, pageArray } = this
+      const { type } = pageArray[currentCpn]
+      if (type === 'button') {
+        config = [
+          ...config,
+          {
+            itemType: 'input',
+            prop: 'text',
+            label: '按钮文字'
+          },
+          {
+            itemType: 'input',
+            prop: 'border',
+            label: '边框粗细'
+          },
+          {
+            itemType: 'color',
+            prop: 'borderColor',
+            label: '边框颜色'
+          },
+          {
+            itemType: 'input',
+            prop: 'borderRadius',
+            label: '圆角尺寸'
+          },
+          {
+            itemType: 'input',
+            prop: 'fontSize',
+            label: '字体大小'
+          },
+          {
+            itemType: 'color',
+            prop: 'background',
+            label: '背景颜色'
+          },
+          {
+            itemType: 'color',
+            prop: 'color',
+            label: '字体颜色'
+          }
+        ]
+      }
+      if (type === 'text') {
+        config = [
+          ...config,
+          {
+            itemType: 'input',
+            prop: 'text',
+            label: '文字'
+          },
+          {
+            itemType: 'input',
+            prop: 'fontSize',
+            label: '字体大小'
+          },
+          {
+            itemType: 'color',
+            prop: 'color',
+            label: '字体颜色'
+          }
+        ]
+      }
+      return config
+    }
+  },
   methods: {
     // 显示弹窗
     show() {
@@ -193,16 +278,16 @@ export default {
       this.fromKey++;
     },
     // 初始化按钮表单数据
-    initBtnFormData(fromData) {
-      this.btnData = {
-        content: '',
-        ...fromData
+    initBtnFormData(index) {
+      this.isShowSeting=false;
+      this.pageArray[index].form = {
+        ...this.pageArray[index]
       }
-      if (Object.keys(this.btnData).length === 0) {
-        this.btnFromKey = 0
-        return
-      } 
-      this.btnFromKey++
+      this.currentCpn = index
+      this.$nextTick(() => {
+        this.isShowSeting = true
+        this.btnFromKey++
+      });
     },
     // 详情
     async handleInitData() {
@@ -230,7 +315,6 @@ export default {
     // 关闭之前回调.
     async handleBeforeClose(type) {
       if (type !='ok') {
-        this.btnFromShow = false
         return true
       };
       const validate = await this.$refs.ruleForm.validate();
@@ -250,37 +334,22 @@ export default {
 
       this.$emit('updateList')
       this.initFormData({})
-      this.btnFromShow = false
       return true
     },
+    // 添加
     addCpns(item) {
-      console.log(item)
       this.pageArray.push({ w: 2, h: 2, x: 1, y: this.pageArray.map(item => item?.y).sort()[-1] || 1, i: this.pageArrayCount, ...item })
+      this.initBtnFormData(this.pageArray.length-1);
     },
     removeBtn(index) {
       this.pageArray.splice(index, 1)
     },
-    showSeting(item, index) {
-      if (Object.keys(item).length == 0) return 
-      this.currentCpn = index
-      const from = { ...item }
-      this.initBtnFormData(from)
-      this.btnFromShow = true
-    },
-    changeCpns() {
-      this.pageArray.splice(this.currentCpn, 1, { ...this.btnData })
-      this.btnFromShow = false
-    }
-  },
-  computed: {
-    pageArrayCount() {
-      return this.pageArray.length;
+    showSeting(index) {
+      this.initBtnFormData(index)
     },
-    cpnArray() {
-      return this.allButton.map((item, index) => ({ x: 0, y: index*2, w: 2, h: 2, i: index, text: item.name, ...item }))
-    }
   },
 
+
 }
 </script>
 <style scoped lang="scss">
@@ -380,7 +449,15 @@ export default {
       }
       .box-canvs-main-span {
         position: relative;
-        
+        background: #ffc0cb29;
+        border: 1px dashed #00000033;
+        height: 100%;
+        width: 100%;
+        i{
+          position: absolute;
+          right: 0px;
+          top: 0px;
+        }
       }
     }
   }