Ver Fonte

小调PDA版本管理字段间距

user_zyx há 1 ano atrás
pai
commit
ba1425657a

BIN
ZRAdmin-vue-main/dist.zip


+ 8 - 8
ZRAdmin-vue-main/src/views/Business/PdaPackage/index.vue

@@ -43,12 +43,12 @@
           新版发布
         </el-button>
       </el-col>
-      <el-col :span="1.5">
+      <!-- <el-col :span="1.5">
         <el-button type="success" :disabled="single" v-hasPermi="['business:pdaautoupdate:edit']" plain icon="edit"
           @click="handleUpdate">
           {{ $t('btn.edit') }}
         </el-button>
-      </el-col>
+      </el-col> -->
       <el-col :span="1.5">
         <el-button type="danger" :disabled="multiple" v-hasPermi="['business:pdaautoupdate:delete']" plain icon="delete"
           @click="handleDelete">
@@ -65,20 +65,20 @@
       <el-table-column type="index" label="序号" width="50" align="center" />
       <el-table-column prop="id" label="id" align="center" v-if="columns.showColumn('id')" />
       <el-table-column prop="packageName" label="安装包名称" align="center" :show-overflow-tooltip="true"
-        v-if="columns.showColumn('packageName')" />
-      <el-table-column prop="versionNo" label="版本号" align="center" v-if="columns.showColumn('versionNo')" />
+        v-if="columns.showColumn('packageName')" width="240" />
+      <el-table-column prop="versionNo" label="版本号" align="center" v-if="columns.showColumn('versionNo')" width="120" />
       <el-table-column prop="versionName" label="版本名称" align="center" :show-overflow-tooltip="true"
-        v-if="columns.showColumn('versionName')" />
+        v-if="columns.showColumn('versionName')" width="120" />
       <el-table-column prop="publishTime" label="发布时间" align="center" :show-overflow-tooltip="true"
-        v-if="columns.showColumn('publishTime')" />
+        v-if="columns.showColumn('publishTime')" width="160" />
       <el-table-column prop="updateDetails" label="更新内容" align="center" :show-overflow-tooltip="true"
         v-if="columns.showColumn('updateDetails')" />
       <el-table-column prop="remark" label="备注" align="center" :show-overflow-tooltip="true"
         v-if="columns.showColumn('remark')" />
       <el-table-column label="操作" align="center" width="100">
         <template #default="scope">
-          <el-button v-hasPermi="['business:pdaautoupdate:edit']" type="success" icon="edit" title="编辑" plain
-            @click="handleUpdate(scope.row)"></el-button>
+          <!-- <el-button v-hasPermi="['business:pdaautoupdate:edit']" type="success" icon="edit" title="编辑" plain
+            @click="handleUpdate(scope.row)"></el-button> -->
           <el-button v-hasPermi="['business:pdaautoupdate:delete']" type="danger" icon="delete" title="删除" plain
             @click="handleDelete(scope.row)"></el-button>
         </template>