123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221 |
- <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="keyword">
- <el-input
- v-model="searchForm.keyword"
- 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="160"
- label-class-name="bianma"
- class-name="fontstyle"
- ></el-table-column>
- <el-table-column
- align="center"
- label="客户名称"
- prop="name"
- min-width="160"
- show-overflow-tooltip
- ></el-table-column>
- <el-table-column
- align="center"
- label="简称"
- prop="shortName"
- min-width="160"
- show-overflow-tooltip
- ></el-table-column>
- <el-table-column
- prop="forbidStatus"
- align="center"
- label="禁用状态"
- min-width="160"
- show-overflow-tooltip
- >
- <template slot-scope="scope">
- <el-tag type="success" v-if="scope.row.forbidStatus === 'A'"
- >正常</el-tag
- >
- <el-tag type="danger" v-else-if="scope.row.flag === 'B'"
- >禁用</el-tag
- >
- </template>
- </el-table-column>
- <el-table-column
- align="center"
- label="使用组织"
- prop="useOrgName"
- min-width="160"
- show-overflow-tooltip
- ></el-table-column>
- <el-table-column
- align="center"
- label="更新人"
- prop="updateBy"
- min-width="160"
- show-overflow-tooltip
- ></el-table-column>
- <el-table-column
- align="center"
- label="更新时间"
- prop="updateTime"
- min-width="160"
- show-overflow-tooltip
- ></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>
- <DealerListDetail :infoList="inforList" v-else />
- </div>
- </template>
- <script>
- import { getDealerList, getDealerInfo } from "@/api/basic_data/dealer";
- import DealerListDetail from "./components/dealer_list-detail.vue";
- export default {
- data() {
- return {
- isShow: true,
- dataList: [], // 列表数据
- listLoading: false, // 列表加载loading
- screenForm: {},
- currentPage: 1, // 当前页码
- pageSize: 10, // 每页数量
- listTotal: 0, // 列表总数
- searchForm: {
- keyword: "",
- },
- inforList: {},
- };
- },
- components: {
- DealerListDetail,
- },
- async created() {
- await this.getList({ pageNum: 1, pageSize: 10 });
- },
- computed: {},
- methods: {
- // 提交筛选表单
- submitScreenForm() {
- this.currentPage = 1;
- this.getList({ pageNum: 1, pageSize: 10 });
- },
- // 重置筛选表单
- resetScreenForm() {
- this.$refs.screenForm.resetFields();
- this.currentPage = 1;
- this.getList({ pageNum: 1, pageSize: 10 });
- },
- // 更改每页数量
- 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 searchFn() {
- console.log(this.searchForm);
- await this.getList({ ...this.searchForm, pageNum: 1, pageSize: 10 });
- },
- //重置
- clearFn() {
- console.log(this.$refs.searchForm);
- this.$refs.searchForm.resetFields();
- },
- //获取列表数据
- async getList(data) {
- const res = await getDealerList(data);
- console.log(res);
- this.dataList = res.data.records;
- this.listTotal = res.data.total;
- },
- async editFn(id) {
- this.isShow = false;
- const res = await getDealerInfo({ id });
- this.inforList = res.data;
- },
- },
- };
- </script>
- <style lang="scss" scoped></style>
|