123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402 |
- <template>
- <div class="app-container">
- <!-- 筛选条件 -->
- <div>
- <el-form
- ref="searchForm"
- :model="searchForm"
- label-width="100px"
- size="small"
- label-position="left"
- >
- <el-row :gutter="20">
- <el-col :xs="24" :sm="12" :lg="6">
- <el-form-item label="经销商名称" prop="customerName">
- <el-input
- v-model="searchForm.customerName"
- placeholder="请输入经销商名称"
- ></el-input>
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="12" :lg="6">
- <el-form-item label="存货分类编码" prop="bianMa">
- <el-input
- v-model="searchForm.mainId"
- placeholder="请输入"
- ></el-input>
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="12" :lg="6">
- <el-form-item label="存货分类" prop="mainName">
- <el-input
- v-model="searchForm.mainName"
- placeholder="请输入"
- ></el-input>
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="12" :lg="6">
- <el-form-item label="" class="fr">
- <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="btn-group clearfix">
- <div class="fl">
- <el-button type="primary" size="small" @click="addFn">新增</el-button>
- <el-popconfirm @onConfirm="deleFn" title="这是一段内容确定删除吗?">
- <el-button
- type="primary"
- size="small"
- class="textColor"
- slot="reference"
- >删除</el-button
- >
- </el-popconfirm>
- </div>
- <div class="fr">
- <el-button type="primary" size="small">打印</el-button>
- </div>
- </div>
- <div class="mymain-container">
- <!-- 列表 -->
- <div class="table">
- <el-table
- v-loading="listLoading"
- :data="dataList"
- @select="hanleSelect"
- @select-all="hanleSelect"
- element-loading-text="Loading"
- border
- fit
- highlight-current-row
- stripe
- >
- <el-table-column
- type="selection"
- align="center"
- min-width="100"
- ></el-table-column>
- <el-table-column
- align="center"
- label="经销商名称"
- prop="customerName"
- min-width="160"
- show-overflow-tooltip
- ></el-table-column>
- <el-table-column
- align="center"
- label="存货分类编码"
- prop="mainId"
- min-width="160"
- show-overflow-tooltip
- ></el-table-column>
- <el-table-column
- align="center"
- label="存货分类名称"
- prop="mainName"
- min-width="160"
- show-overflow-tooltip
- ></el-table-column>
- <el-table-column
- align="center"
- label="创建人"
- prop="createBy"
- min-width="160"
- show-overflow-tooltip
- ></el-table-column>
- <el-table-column
- align="center"
- label="创建时间"
- prop="createTime"
- 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
- >
- <template slot-scope="scope">
- <el-popconfirm
- @onConfirm="deleFn(scope.row.id)"
- title="这是一段内容确定删除吗?"
- >
- <el-button type="text" class="textColor" slot="reference"
- >删除</el-button
- ></el-popconfirm
- >
- </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>
- <!-- 弹窗 -->
- <el-dialog
- title="编辑"
- :visible.sync="dialogForm"
- width="30%"
- :show-close="false"
- :close-on-click-modal="false"
- >
- <el-form
- ref="addForm"
- :rules="rules"
- :model="addForm"
- label-width="100px"
- label-position="right"
- >
- <el-form-item label="经销商名称" prop="customerId">
- <el-select
- class="selectStyle"
- v-model="addForm.customerId"
- placeholder="名称"
- >
- <el-option
- v-for="item in dealerList"
- :key="item.id"
- :label="item.name"
- :value="item.id"
- >
- </el-option>
- </el-select>
- </el-form-item>
- <el-form-item label="存货分类" prop="mainId">
- <el-select
- class="selectStyle"
- v-model="addForm.mainId"
- placeholder="请选择"
- >
- <el-option
- v-for="item in selectList"
- :key="item.value"
- :label="item.dictValue"
- :value="item.sysDictId"
- >
- </el-option>
- </el-select>
- </el-form-item>
- </el-form>
- <div slot="footer" class="dialog-footer">
- <el-button @click="cancelFn">取 消</el-button>
- <el-button type="primary" @click="addDataListFn">确 定</el-button>
- </div>
- </el-dialog>
- </div>
- </template>
- <script>
- import {
- getDealerStockList,
- getDealerStockAdd,
- deleDealerStockList,
- getDictionaries,
- } from "@/api/basic_data/dealer";
- import { getDealerList } from "@/api/basic_data/dealer";
- export default {
- data() {
- return {
- dialogForm: false,
- addForm: {
- customerName: "",
- customerId: "",
- customerNumber: "",
- mainId: "",
- mainName: "",
- },
- rules: {
- mainId: [
- { required: true, message: "请选择存货分类", trigger: "change" },
- ],
- customerId: [
- { required: true, message: "请选择经销商", trigger: "change" },
- ],
- },
- currentPage: 1, // 当前页码
- pageSize: 10, // 每页数量
- listTotal: 0, // 列表总数
- searchForm: {
- customerName: "",
- mainId: "",
- mainName: "",
- },
- dataList: [], // 列表数据
- listLoading: false, // 列表加载loading
- dealerList: [],
- selectList: [],
- ids: [],
- };
- },
- async created() {
- this.getList({ pageNum: 1, pageSize: 10 });
- this.getDealerDataList({ pageNum: 1, pageSize: 10 });
- this.getSelectList({ sysDictEnum: "PRODUCT_TYPE" });
- },
- computed: {},
- methods: {
- // 筛选部分数据或者单个
- hanleSelect(selection) {
- // this.ids = selection.map((k) => {
- // return k.id;
- // });
- console.log(selection);
- this.ids = selection.map((v) => v.id);
- },
- //存货分类
- async getSelectList(data) {
- const res = await getDictionaries(data);
- console.log(res);
- this.selectList = res.data;
- },
- //删除
- async deleFn(id) {
- this.ids.push(id);
- let res = this.ids.toString();
- await deleDealerStockList({ ids: res });
- this.getList({ pageNum: 1, pageSize: 10 });
- this.$message.success("删除成功");
- },
- addFn() {
- this.dialogForm = true;
- },
- async addDataListFn() {
- await this.$refs.addForm.validate();
- // let id = this.dealerList.filter((i) => {
- // return i.id === this.addForm.customerId;
- // })[0];
- // console.log(id, "id");
- // let res = findElem(this.dealerList, "id", this.addForm.customerId);
- // console.log(11111, res);
- let res = this.dealerList.filter(
- (v) => v.id === this.addForm.customerId
- )[0];
- console.log(res);
- this.addForm.customerName = res.name;
- this.addForm.customerNumber = res.number;
- let res2 = this.selectList.filter(
- (v) => v.sysDictId === this.addForm.mainId
- )[0];
- console.log(res2);
- this.addForm.mainName = res2.dictValue;
- console.log(this.addForm);
- await getDealerStockAdd({ ...this.addForm });
- this.$message.success("添加成功");
- await this.$refs.addForm.resetFields();
- await this.getList({ pageNum: 1, pageSize: 10 });
- this.dialogForm = false;
- },
- //取消
- async cancelFn() {
- await this.$refs.addForm.resetFields();
- this.dialogForm = false;
- },
- //获取经销商数据
- async getDealerDataList(data) {
- const res = await getDealerList(data);
- this.dealerList = res.data.records;
- },
- // 更改每页数量
- 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({
- cusotmerName: this.searchForm.customerName,
- pageNum: 1,
- pageSize: 10,
- });
- },
- //重置
- clearFn() {
- console.log(this.$refs.searchForm);
- this.$refs.searchForm.resetFields();
- },
- //获取列表数据
- async getList(data) {
- const res = await getDealerStockList(data);
- console.log(res);
- this.dataList = res.data.records;
- this.listTotal = res.data.total;
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- ::v-deep .el-popover__reference {
- margin-left: 10px;
- }
- ::v-deep .selectStyle .el-input--suffix {
- width: 200%;
- }
- ::v-deep .el-input--suffix {
- width: 300px;
- }
- ::v-deep .el-dialog__header {
- background-color: #dddddd;
- }
- ::v-deep .dialog-footer {
- display: flex;
- justify-content: center;
- }
- .formWidth {
- width: 70%;
- margin-right: 20px;
- }
- </style>
|