lilei пре 1 година
родитељ
комит
cd8662c94b

+ 1 - 1
public/version.json

@@ -1,5 +1,5 @@
 {
   "message": "发现有新版本发布,确定更新系统?",
   "vendorJsVersion": "",
-  "version": 1720423024712
+  "version": 1720430714344
 }

+ 3 - 3
src/views/numsGoodsShelves/shelfProductTempl/list.vue

@@ -50,7 +50,7 @@
         <template slot="action" slot-scope="text, record">
           <div>
             <a-button
-              id="shelfPlList-edit"
+              :id="'shelfPlList-edit-'+record.id"
               size="small"
               v-if="record.sysFlag==0"
               type="link"
@@ -58,13 +58,13 @@
               @click="addTemp(record)">更改名称</a-button>
             <a-button
               v-if="orgData.length<20"
-              id="shelfPlList-copy"
+              :id="'shelfPlList-copy-'+record.id"
               size="small"
               type="link"
               class="button-primary"
               @click="handleCopy(record)">复制</a-button>
             <a-button
-              id="shelfPlList-del"
+              :id="'shelfPlList-del-'+record.id"
               size="small"
               v-if="record.sysFlag==0"
               type="link"

+ 2 - 2
src/views/numsGoodsShelves/shelfProductTempl/set.vue

@@ -65,14 +65,14 @@
               type="link"
               class="button-primary"
               @click="editHW(record)"
-              id="shelfPlSet-detail-edit"
+              :id="'shelfPlSet-detail-edit-'+record.id"
             >编辑</a-button>
             <a-button
               size="small"
               type="link"
               class="button-error"
               @click="handleDel(record)"
-              id="shelfPlSet-detail-del"
+              :id="'shelfPlSet-detail-del-'+record.id"
             >删除</a-button>
           </template>
         </s-table>