pyt
2025-03-24 91e6fe4c4c16ac268a6b73df67fd98d0fd0e71c7
feat
3个文件已修改
13 ■■■■ 已修改文件
src/views/payment-details/detail.vue 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/payment-details/index.vue 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/storing-data/index.vue 8 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/payment-details/detail.vue
@@ -175,6 +175,7 @@
      //     id: row.id
      //   }
      // });
      this.$router.push('/placement/batch/applayPersonDetail?id=' + row.placementBatchId + '&type=detail' + '&houseId=' + row.id)
    },
  },
}
src/views/payment-details/index.vue
@@ -48,7 +48,7 @@
        <!-- 操作工具栏 -->
        <el-row class="toolbar">
            <el-col :span="24">
                <el-button type="primary" icon="el-icon-download" @click="handleExport">导出为Excel</el-button>
                <el-button v-hasPermi="['payment-details:export']" type="primary" icon="el-icon-download" @click="handleExport">导出为Excel</el-button>
            </el-col>
        </el-row>
@@ -73,7 +73,7 @@
            <!-- 操作列 -->
            <el-table-column label="操作" fixed="right" width="80" align="center">
                <template slot-scope="scope">
                    <el-button type="text" size="small" @click="handleReview(scope.row)">详情</el-button>
                    <el-button v-hasPermi="['payment-details:detail']" type="text" size="small" @click="handleReview(scope.row)">详情</el-button>
                </template>
            </el-table-column>
        </el-table>
src/views/storing-data/index.vue
@@ -20,7 +20,7 @@
    <!-- 操作按钮区域 -->
    <div class="action-buttons">
      <el-button type="primary" @click="handleAdd">新增资料</el-button>
      <el-button v-hasPermi="['storing-data:add']" type="primary" @click="handleAdd">新增资料</el-button>
    </div>
    <!-- 表格区域 -->
@@ -39,9 +39,9 @@
      <el-table-column label="操作" width="180" align="center" fixed="right">
        <template slot-scope="scope">
          <template>
            <el-button size="mini" type="text" @click="handleView(scope.row, 'detail')">详情</el-button>
            <el-button size="mini" type="text" @click="handleView(scope.row, 'edit')">编辑</el-button>
            <el-button size="mini" type="text" @click="handleDelete(scope.row)">删除</el-button>
            <el-button v-hasPermi="['storing-data:detail']" size="mini" type="text" @click="handleView(scope.row, 'detail')">详情</el-button>
            <el-button v-hasPermi="['storing-data:edit']" size="mini" type="text" @click="handleView(scope.row, 'edit')">编辑</el-button>
            <el-button v-hasPermi="['storing-data:delete']" size="mini" type="text" @click="handleDelete(scope.row)">删除</el-button>
          </template>
        </template>
      </el-table-column>