123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 |
- <template>
- <div class="app-container">
- <div v-if="isShow">
- <!-- 筛选条件 -->
- <div>
- <el-form ref="searchForm" :model="searchForm" label-width="70px" size="small" label-position="left">
- <el-row :gutter="20">
- <el-col :xs="24" :sm="12" :lg="6">
- <el-form-item label="名称" prop="name">
- <el-input v-model="searchForm.name" placeholder="请输入名称"></el-input>
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="12" :lg="18" class="tr">
- <el-form-item label="">
- <el-button size="small" @click="clearFn">清空</el-button>
- <el-button size="small" type="primary" @click="searchFn">搜索</el-button>
- </el-form-item>
- </el-col>
- </el-row>
- </el-form>
- </div>
- <!-- 表格 -->
- <div class="mymain-container">
- <div class="table">
- <el-table v-loading="listLoading" :data="dataList" element-loading-text="Loading" border fit highlight-current-row stripe>
- <el-table-column align="center" label="编码" prop="number" min-width="60" label-class-name="bianma" class-name="fontstyle"></el-table-column>
- <el-table-column align="center" label="使用组织" prop="useOrgName" min-width="160"></el-table-column>
- <el-table-column align="center" label="名称" prop="name" min-width="200"></el-table-column>
- <el-table-column align="center" label="简称" prop="shortName" min-width="160"></el-table-column>
- <el-table-column align="center" label="供应商分组" prop="groupName" min-width="160"></el-table-column>
- <el-table-column align="center" label="操作" prop="caozuo" min-width="160" show-overflow-tooltip fixed="right">
- <template slot-scope="scope">
- <el-button type="text" class="textColor" @click="editFn(scope.row.id)">详情</el-button>
- </template>
- </el-table-column>
- </el-table>
- </div>
- <div class="fr">
- <el-pagination @size-change="handleSizeChange" @current-change="handleCurrentChange" :current-page="currentPage" :page-sizes="[10, 20, 30, 50]" :page-size="10" layout="total, sizes, prev, pager, next, jumper" :total="listTotal">
- </el-pagination>
- </div>
- </div>
- </div>
- <SupplierListDetail :infoList="infoList" v-else />
- </div>
- </template>
- <script>
- import { getList, getInfoApi } from "@/api/basic_data/supplier";
- import SupplierListDetail from "./components/supplier_list-detail.vue";
- export default {
- data() {
- return {
- currentPage: 1, // 当前页码
- pageSize: 10, // 每页数量
- listTotal: 0, // 列表总数
- listLoading: false, // 加载
- screenForm: {}, // 筛选表单数据
- dataList: [], // 表格数据
- isShow: true,
- searchForm: {
- // 筛选表单数据
- name: "",
- },
- dataList: [],
- infoList: {},
- };
- },
- components: {
- SupplierListDetail,
- },
- async created() {
- await this.getList({ pageSize: 10, pageNum: 1 });
- },
- methods: {
- async getList(data) {
- const res = await getList(data);
- console.log(res);
- this.dataList = res.data.records;
- this.listTotal = res.data.total;
- },
- //搜索功能
- async searchFn() {
- console.log(this.searchForm);
- await this.getList({ ...this.searchForm, pageNum: 1, pageSize: 10 });
- },
- //重置
- clearFn() {
- console.log(this.$refs.searchForm);
- this.$refs.searchForm.resetFields();
- },
- // 更改每页数量
- handleSizeChange(val) {
- this.pageSize = val;
- this.currentPage = 1;
- this.getList({ pageNum: 1, pageSize: this.pageSize });
- },
- // 更改当前页
- handleCurrentChange(val) {
- this.currentPage = val;
- this.getList({ pageNum: val, pageSize: 10 });
- },
- async editFn(id) {
- this.isShow = false;
- const res = await getInfoApi({ id });
- this.infoList = res.data;
- },
- async getList(data) {
- let res = await getList(data);
- console.log(res);
- this.dataList = res.data.records;
- this.listTotal = res.data.total;
- },
- // 更改每页数量
- handleSizeChange(val) {
- this.pageSize = val;
- this.currentPage = 1;
- this.getList({ pageNum: 1, pageSize: this.pageSize });
- },
- // 更改当前页
- handleCurrentChange(val) {
- this.currentPage = val;
- this.getList({ pageNum: val, pageSize: 10 });
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- .base {
- padding: 20px;
- }
- .fr {
- margin-top: 20px;
- }
- </style>
|