10.10综合交易所原始源码-管理后台
1
admin
2026-01-06 089bf5d2378b3c4a61d795b2a92bede2c193b771
src/views/modules/prod/prodComm.vue
New file
@@ -0,0 +1,137 @@
<template>
  <div class="mod-prod-prodComm">
    <avue-crud
      ref="crud"
      :page.sync="page"
      :data="dataList"
      :table-loading="dataListLoading"
      :option="tableOption"
      @search-change="searchChange"
      @on-load="getDataList"
      @refresh-change="refreshChange"
      @row-del="rowDel"
    >
      <template slot-scope="scope" slot="nickName">
        {{ scope.row.user.nickName }}
      </template>
      <template slot-scope="scope" slot="menu">
        <el-button
          type="primary"
          size="small"
          icon="el-icon-edit"
          @click="addOrUpdateHandle(scope.row.prodCommId, true)"
          >编辑</el-button
        >
        <el-button
          type="success"
          size="small"
          icon="el-icon-view"
          @click="addOrUpdateHandle(scope.row.prodCommId, false)"
          >查看</el-button
        >
      </template>
    </avue-crud>
    <add-or-update
      v-if="addOrUpdateVisible"
      ref="addOrUpdate"
      @refreshDataList="refreshChange"
    ></add-or-update>
  </div>
</template>
<script>
import { tableOption } from "@/crud/prod/prodComm";
import AddOrUpdate from "./prodComm-add-or-update";
export default {
  data() {
    return {
      dataList: [],
      page: {
        total: 0, // 总页数
        currentPage: 1, // 当前页数
        pageSize: 20, // 每页显示多少条
      },
      dataListLoading: false,
      tableOption: tableOption,
      permission: {
        delBtn: this.isAuth("prod:prodComm:delete"),
      },
      addOrUpdateVisible: false,
    };
  },
  components: {
    AddOrUpdate,
  },
  created() {},
  mounted() {},
  methods: {
    getDataList(page, params, done) {
      this.dataListLoading = true;
      this.$http({
        url: this.$http.adornUrl("/prod/prodComm/page"),
        method: "get",
        params: this.$http.adornParams(
          Object.assign(
            {
              current: page == null ? this.page.currentPage : page.currentPage,
              size: page == null ? this.page.pageSize : page.pageSize,
            },
            params
          )
        ),
      }).then(({ data }) => {
        this.dataList = data.records;
        this.page.total = data.total;
        this.dataListLoading = false;
        if (done) {
          done();
        }
      });
    },
    // 新增 / 修改
    addOrUpdateHandle(id, isEdit) {
      this.addOrUpdateVisible = true;
      this.$nextTick(() => {
        this.$refs.addOrUpdate.init(id, isEdit);
      });
    },
    rowDel: function (row, index) {
      this.$confirm("确定进行删除操作?", "提示", {
        confirmButtonText: "确定",
        cancelButtonText: "取消",
        type: "warning",
      })
        .then(() => {
          this.$http({
            url: this.$http.adornUrl("/prod/prodComm/" + row.prodCommId),
            method: "delete",
            data: this.$http.adornData({}),
          }).then(({ data }) => {
            this.$message({
              message: "操作成功",
              type: "success",
              duration: 1500,
              onClose: () => {
                this.getDataList();
              },
            });
          });
        })
        .catch(() => {});
    },
    /**
     * 刷新回调
     */
    refreshChange() {
      this.getDataList(this.page);
    },
    searchChange(params, done) {
      this.getDataList(this.page, params, done);
    },
  },
};
</script>
<style lang="scss" scoped></style>