From 86a216010c436ea1f8ff9cd2789c3555f51d1b3f Mon Sep 17 00:00:00 2001
From: ludc
Date: 星期一, 31 七月 2023 16:20:45 +0800
Subject: [PATCH] Merge branch 'master' of http://dev.vci-tech.com:1065/r/ubcs

---
 Source/UBCS-WEB/src/components/Theme/ThemeAttrCrud.vue |   45 ++++++++++++++++++++++++---------------------
 1 files changed, 24 insertions(+), 21 deletions(-)

diff --git a/Source/UBCS-WEB/src/components/Theme/ThemeAttrCrud.vue b/Source/UBCS-WEB/src/components/Theme/ThemeAttrCrud.vue
index 5fdbfbf..0e22d34 100644
--- a/Source/UBCS-WEB/src/components/Theme/ThemeAttrCrud.vue
+++ b/Source/UBCS-WEB/src/components/Theme/ThemeAttrCrud.vue
@@ -1,6 +1,7 @@
 <template>
   <div>
     <div style="display: flex;flex-wrap: wrap;" v-if="this.crudArrayFlag" class="app">
+
       <el-button-group>
       <!--鏂板-->
       <el-button v-if="attrEditVisible == false && attrFlagChiledren==false && editOpenFlag &&  (!checkStatus || crudLCStatus=='Editing' )" size="small" type="primary" icon="el-icon-plus" plain @click="busineHandle">娣诲姞 {{ msg }}</el-button>
@@ -10,6 +11,16 @@
       <el-button v-if="(!checkStatus || crudLCStatus=='Editing' )&& editOpenFlag" icon="el-icon-info" size="small" @click="ruleAddHandler">楠岃瘉瑙勫垯</el-button>
       <!--        灞炴�у垎缁�-->
       <el-button v-if="(!checkStatus || crudLCStatus=='Editing') && editOpenFlag" icon="el-icon-menu" size="small" @click="attrVisibleHandle">灞炴�у垎缁�</el-button>
+      </el-button-group>
+      <el-button-group>
+        <!--    淇濆瓨-->
+        <el-button v-if="(!checkStatus|| crudLCStatus=='Editing') && editOpenFlag" size="small" type="success" plain @click="addsHandler" icon="el-icon-check">淇濆瓨</el-button>
+        <!--    棰勮鎺掑簭-->
+        <el-button size="small" @click="orderHandle" icon="el-icon-arrow-down">棰勮鎺掑簭</el-button>
+        <!--    鍒犻櫎-->
+        <el-button v-if="(!checkStatus || crudLCStatus=='Editing') && editOpenFlag" size="small" @click="CrudRemove" icon="el-icon-delete">鍒犻櫎</el-button>
+        <!--    閲嶇疆-->
+        <el-button size="small" @click="reset" icon="el-icon-refresh-right">閲嶇疆</el-button>
       </el-button-group>
       <el-button-group>
         <!--鏂板-->
@@ -22,17 +33,7 @@
       <!--    绾ц仈灞炴��-->
       <el-button v-if="(!checkStatus|| crudLCStatus=='Editing') && editOpenFlag" icon="el-icon-coin" size="small" @click="CascadeHandle">绾ц仈灞炴��</el-button>
       </el-button-group>
-      <el-button-group>
-      <!--    棰勮鎺掑簭-->
-        <el-button size="small" @click="orderHandle" icon="el-icon-arrow-down">棰勮鎺掑簭</el-button>
-        <!--鏂板-->
-      <!--    淇濆瓨-->
-      <el-button v-if="(!checkStatus|| crudLCStatus=='Editing') && editOpenFlag" size="small" @click="addsHandler" icon="el-icon-check">淇濆瓨</el-button>
-      <!--    鍒犻櫎-->
-      <el-button v-if="(!checkStatus || crudLCStatus=='Editing') && editOpenFlag" size="small" @click="CrudRemove" icon="el-icon-delete">鍒犻櫎</el-button>
-      <!--    閲嶇疆-->
-      <el-button size="small" @click="reset" icon="el-icon-refresh-right">閲嶇疆</el-button>
-      </el-button-group>
+
       <el-button-group>
       <!--    鍚屾鍒板叾浠栨ā鏉�-->
       <el-button size="small"@click="syncHandle" icon="el-icon-share">鍚屾鍒板叾浠栨ā鏉�</el-button>
@@ -251,7 +252,7 @@
     </div>
     <el-table :data="ProData"
               style="width: 100%"
-              :height="this.editStyleFlag ? 450 : 900"
+              :height="!this.editStyleFlag ? 450 : 900"
               @cell-click="handleCellClicks"
               @select="selectHandle"
               @selection-change="selectionChange"
@@ -276,8 +277,8 @@
                        v-if="item.edit !='referName'"
       >
         <template slot-scope="{ row }">
-          <el-input v-if="editingRows === row && editShows== item.prop && item.prop != 'codeDateFormat' && (item.edit == 'text'  ||item.edit == 'refer' )" v-model="row[item.prop]"
-                    @blur="saveRows" ></el-input>
+          <el-input ref="inputRef" v-if="editingRows === row && editShows== item.prop && item.prop != 'codeDateFormat' && (item.edit == 'text'  ||item.edit == 'refer' )" v-model="row[item.prop]"
+                    @blur="saveRows" autofocus ></el-input>
           <el-input-number size="small" controls-position="right" v-if="editingRows === row && editShows== item.prop && item.edit == 'number'" v-model="row[item.prop]"
                            @blur="saveRows" :style="{width:(item.width-10)+'px'}"></el-input-number>
           <el-select v-model="row[item.prop]" filterable  allow-create  default-first-option slot="prepend" v-if="editingRows === row && editShows== item.prop && item.edit == 'select' " @blur="selectChangeHandler(item.editConfig,index)">
@@ -410,7 +411,7 @@
   data() {
     return {
       //鍏ㄥ睆缂栬緫楂樺害鐘舵��
-      edittStyleFlag:false,
+      editStyleFlag:false,
       loading:false,
       referConfigText:"",
       referConfigVisble:false,
@@ -508,7 +509,7 @@
           desc: "褰撳墠鐢ㄦ埛鐨勫鍚�"
         },
         {
-          formula: "#CURRENTUSER.SECRETGRADE#",
+          formula: "#CURRENTUSER.SECRETARIAT#",
           desc: "褰撳墠鐢ㄦ埛瀵嗙骇"
         },
         {
@@ -1486,7 +1487,7 @@
     //琛ㄦ牸鏁版嵁
     CrudRend() {
       if (this.crudOid != '') {
-        gridCodeClassifyTemplateAttr({'conditionMap[classifyTemplateOid]': this.crudOid}).then(res => {
+        gridCodeClassifyTemplateAttr({'conditionMap[classifyTemplateOid]': this.crudOid,limit:-1}).then(res => {
           this.loading=true
           setTimeout(() => {
             this.ProData = res.data.data;
@@ -1540,7 +1541,6 @@
         }
       })
       this.addVisible = false;
-
     },
     //涓氬姟绫诲瀷閫夋嫨
     businessSelect(selection, row) {
@@ -1629,9 +1629,10 @@
          this.rowOid = row.oid;
          this.CurrentCell=row;
          if(column.property == 'referConfig' ){
+           console.log( this.CurrentCell.referConfig)
            this.referConfigVisble= true;
            this.referConfigOption = {
-             referConfig: this.referConfigText || '',
+             referConfig: this.CurrentCell.referConfig || '',
            }
            if(this.CurrentCell.referConfig == ''){
              this.referConfigOption = {
@@ -1656,7 +1657,8 @@
          }else if(column.property == 'parentCode'){
            gridCodeClassifyTemplateAttr({
              'conditionMap[classifyTemplateOid]': this.Formlist[0].oid,
-             'conditionMap[oid_notequal]': this.CurrentCell.oid
+             'conditionMap[oid_notequal]': this.CurrentCell.oid,
+             limit:-1
            }).then(res => {
              console.log(res)
              this.CascadeData = res.data.data;
@@ -1901,7 +1903,7 @@
       if (this.crudArray.length < 1) {
         this.$message.warning('璇烽�夋嫨涓�涓ā鏉�')
       } else {
-        this.editStyleFlag=!this.editStyleFlag;
+        this.editStyleFlag=true;
         // this.editOpenFlag=true;
         this.attrEditVisible = true;
         this.attrFlag = true;
@@ -1912,6 +1914,7 @@
     escEdit() {
       this.attrFlagChiledren = false;
       this.attrEditVisible = false;
+      this.editStyleFlag=false;
     },
     //缁勫悎瑙勫垯纭畾
     updataFormlaContent(val) {

--
Gitblit v1.9.3