Parcourir la source

材质 规格

JX.Li il y a 1 an
Parent
commit
96dd0ec649

+ 44 - 0
src/api/zdsz/enginMaterialQuality.js

@@ -0,0 +1,44 @@
+import request from '@/utils/request'
+
+// 查询工程材质列表
+export function listEnginMaterialQuality(query) {
+  return request({
+    url: '/zdsz/enginMaterialQuality/list',
+    method: 'get',
+    params: query
+  })
+}
+
+// 查询工程材质详细
+export function getEnginMaterialQuality(id) {
+  return request({
+    url: '/zdsz/enginMaterialQuality/' + id,
+    method: 'get'
+  })
+}
+
+// 新增工程材质
+export function addEnginMaterialQuality(data) {
+  return request({
+    url: '/zdsz/enginMaterialQuality',
+    method: 'post',
+    data: data
+  })
+}
+
+// 修改工程材质
+export function updateEnginMaterialQuality(data) {
+  return request({
+    url: '/zdsz/enginMaterialQuality',
+    method: 'put',
+    data: data
+  })
+}
+
+// 删除工程材质
+export function delEnginMaterialQuality(id) {
+  return request({
+    url: '/zdsz/enginMaterialQuality/' + id,
+    method: 'delete'
+  })
+}

+ 44 - 0
src/api/zdsz/enginSpecifications.js

@@ -0,0 +1,44 @@
+import request from '@/utils/request'
+
+// 查询工程材质规格列表
+export function listEnginSpecifications(query) {
+  return request({
+    url: '/zdsz/enginSpecifications/list',
+    method: 'get',
+    params: query
+  })
+}
+
+// 查询工程材质规格详细
+export function getEnginSpecifications(id) {
+  return request({
+    url: '/zdsz/enginSpecifications/' + id,
+    method: 'get'
+  })
+}
+
+// 新增工程材质规格
+export function addEnginSpecifications(data) {
+  return request({
+    url: '/zdsz/enginSpecifications',
+    method: 'post',
+    data: data
+  })
+}
+
+// 修改工程材质规格
+export function updateEnginSpecifications(data) {
+  return request({
+    url: '/zdsz/enginSpecifications',
+    method: 'put',
+    data: data
+  })
+}
+
+// 删除工程材质规格
+export function delEnginSpecifications(id) {
+  return request({
+    url: '/zdsz/enginSpecifications/' + id,
+    method: 'delete'
+  })
+}

+ 44 - 0
src/api/zdsz/engineeringMaterialsResets.js

@@ -0,0 +1,44 @@
+import request from '@/utils/request'
+
+// 查询工程用料预设列表
+export function listEngineeringMaterialsResets(query) {
+  return request({
+    url: '/zdsz/engineeringMaterialsResets/list',
+    method: 'get',
+    params: query
+  })
+}
+
+// 查询工程用料预设详细
+export function getEngineeringMaterialsResets(id) {
+  return request({
+    url: '/zdsz/engineeringMaterialsResets/' + id,
+    method: 'get'
+  })
+}
+
+// 新增工程用料预设
+export function addEngineeringMaterialsResets(data) {
+  return request({
+    url: '/zdsz/engineeringMaterialsResets',
+    method: 'post',
+    data: data
+  })
+}
+
+// 修改工程用料预设
+export function updateEngineeringMaterialsResets(data) {
+  return request({
+    url: '/zdsz/engineeringMaterialsResets',
+    method: 'put',
+    data: data
+  })
+}
+
+// 删除工程用料预设
+export function delEngineeringMaterialsResets(id) {
+  return request({
+    url: '/zdsz/engineeringMaterialsResets/' + id,
+    method: 'delete'
+  })
+}

+ 322 - 0
src/views/zdsz/enginMaterialQuality/index.vue

@@ -0,0 +1,322 @@
+<template>
+  <div class="app-container">
+    <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
+      <el-form-item label="所属工程" prop="engin_type">
+        <el-select v-model="queryParams.enginType" placeholder="请选择所属工程">
+          <el-option
+            v-for="dict in dict.type.engin_type"
+            :key="dict.value"
+            :label="dict.label"
+            :value="dict.value"
+          ></el-option>
+        </el-select>
+      </el-form-item>
+      <el-form-item label="材质名称" prop="name">
+        <el-input
+          v-model="queryParams.name"
+          placeholder="请输入材质名称"
+          clearable
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+      <el-form-item>
+        <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
+        <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
+      </el-form-item>
+    </el-form>
+
+    <el-row :gutter="10" class="mb8">
+      <el-col :span="1.5">
+        <el-button
+          type="primary"
+          plain
+          icon="el-icon-plus"
+          size="mini"
+          @click="handleAdd"
+          v-hasPermi="['zdsz:enginMaterialQuality:add']"
+        >新增
+        </el-button>
+      </el-col>
+      <el-col :span="1.5">
+        <el-button
+          type="success"
+          plain
+          icon="el-icon-edit"
+          size="mini"
+          :disabled="single"
+          @click="handleUpdate"
+          v-hasPermi="['zdsz:enginMaterialQuality:edit']"
+        >修改
+        </el-button>
+      </el-col>
+      <el-col :span="1.5">
+        <el-button
+          type="danger"
+          plain
+          icon="el-icon-delete"
+          size="mini"
+          :disabled="multiple"
+          @click="handleDelete"
+          v-hasPermi="['zdsz:enginMaterialQuality:remove']"
+        >删除
+        </el-button>
+      </el-col>
+      <el-col :span="1.5">
+        <el-button
+          type="warning"
+          plain
+          icon="el-icon-download"
+          size="mini"
+          @click="handleExport"
+          v-hasPermi="['zdsz:enginMaterialQuality:export']"
+        >导出
+        </el-button>
+      </el-col>
+      <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
+    </el-row>
+
+    <el-table v-loading="loading" :data="enginMaterialQualityList" @selection-change="handleSelectionChange">
+      <el-table-column type="selection" width="55" align="center"/>
+      <el-table-column label="id" align="center" prop="id" v-if="true"/>
+      <el-table-column label="工程类型" align="center" prop="enginType">
+        <template slot-scope="scope">
+          <dict-tag v-for="item in scope.row.enginType.split(',')" :options="dict.type.engin_type" :value="item"/>
+        </template>
+      </el-table-column>
+      <el-table-column label="材质名称" align="center" prop="name"/>
+      <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
+        <template slot-scope="scope">
+          <el-button
+            size="mini"
+            type="text"
+            icon="el-icon-edit"
+            @click="handleUpdate(scope.row)"
+            v-hasPermi="['zdsz:enginMaterialQuality:edit']"
+          >修改
+          </el-button>
+          <el-button
+            size="mini"
+            type="text"
+            icon="el-icon-delete"
+            @click="handleDelete(scope.row)"
+            v-hasPermi="['zdsz:enginMaterialQuality:remove']"
+          >删除
+          </el-button>
+        </template>
+      </el-table-column>
+    </el-table>
+
+    <pagination
+      v-show="total>0"
+      :total="total"
+      :page.sync="queryParams.pageNum"
+      :limit.sync="queryParams.pageSize"
+      @pagination="getList"
+    />
+
+    <!-- 添加或修改工程材质对话框 -->
+    <el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
+      <el-form ref="form" :model="form" :rules="rules" label-width="80px">
+        <el-form-item label="所属工程" prop="enginType">
+          <el-select v-model="form.enginType" placeholder="请选择所属工程" filterable clearable multiple
+                     style="width: 100%">
+            <el-option
+              v-for="dict in dict.type.engin_type"
+              :key="dict.value"
+              :label="dict.label"
+              :value="dict.value"
+            ></el-option>
+          </el-select>
+        </el-form-item>
+        <el-form-item label="材质名称" prop="name">
+          <el-input v-model="form.name" placeholder="请输入材质名称"/>
+        </el-form-item>
+      </el-form>
+      <div slot="footer" class="dialog-footer">
+        <el-button :loading="buttonLoading" type="primary" @click="submitForm">确 定</el-button>
+        <el-button @click="cancel">取 消</el-button>
+      </div>
+    </el-dialog>
+  </div>
+</template>
+
+<script>
+import {
+  listEnginMaterialQuality,
+  getEnginMaterialQuality,
+  delEnginMaterialQuality,
+  addEnginMaterialQuality,
+  updateEnginMaterialQuality
+} from "@/api/zdsz/enginMaterialQuality";
+
+export default {
+  name: "EnginMaterialQuality",
+  dicts: ['engin_type'],
+  data() {
+    return {
+      // 按钮loading
+      buttonLoading: false,
+      // 遮罩层
+      loading: true,
+      // 选中数组
+      ids: [],
+      // 非单个禁用
+      single: true,
+      // 非多个禁用
+      multiple: true,
+      // 显示搜索条件
+      showSearch: true,
+      // 总条数
+      total: 0,
+      // 工程材质表格数据
+      enginMaterialQualityList: [],
+      // 弹出层标题
+      title: "",
+      // 是否显示弹出层
+      open: false,
+      // 查询参数
+      queryParams: {
+        pageNum: 1,
+        pageSize: 10,
+        enginType: undefined,
+        name: undefined,
+      },
+      // 表单参数
+      form: {},
+      // 表单校验
+      rules: {
+        id: [
+          {required: true, message: "不能为空", trigger: "blur"}
+        ],
+        enginType: [
+          {required: true, message: "工程类型不能为空", trigger: "change"}
+        ],
+        name: [
+          {required: true, message: "材质名称不能为空", trigger: "blur"}
+        ],
+      }
+    };
+  },
+  created() {
+    this.getList();
+  },
+  methods: {
+    /** 查询工程材质列表 */
+    getList() {
+      this.loading = true;
+      listEnginMaterialQuality(this.queryParams).then(response => {
+        this.enginMaterialQualityList = response.rows;
+        this.total = response.total;
+        this.loading = false;
+      });
+    },
+    // 取消按钮
+    cancel() {
+      this.open = false;
+      this.reset();
+    },
+    // 表单重置
+    reset() {
+      this.form = {
+        id: undefined,
+        enginType: undefined,
+        name: undefined,
+        delFlag: undefined,
+        createBy: undefined,
+        createTime: undefined,
+        updateBy: undefined,
+        updateTime: undefined
+      };
+      this.resetForm("form");
+    },
+    /** 搜索按钮操作 */
+    handleQuery() {
+      this.queryParams.pageNum = 1;
+      this.getList();
+    },
+    /** 重置按钮操作 */
+    resetQuery() {
+      this.resetForm("queryForm");
+      this.handleQuery();
+    },
+    // 多选框选中数据
+    handleSelectionChange(selection) {
+      this.ids = selection.map(item => item.id)
+      this.single = selection.length !== 1
+      this.multiple = !selection.length
+    },
+    /** 新增按钮操作 */
+    handleAdd() {
+      this.reset();
+      this.open = true;
+      this.title = "添加工程材质";
+    },
+    /** 修改按钮操作 */
+    handleUpdate(row) {
+      this.loading = true;
+      this.reset();
+      const id = row.id || this.ids
+      getEnginMaterialQuality(id).then(response => {
+        this.loading = false;
+        this.form = response.data;
+        this.form.enginType = this.form.enginType.split(",")
+        this.open = true;
+        this.title = "修改工程材质";
+      });
+    },
+    /** 提交按钮 */
+    submitForm() {
+      this.$refs["form"].validate(valid => {
+        if (valid) {
+          this.buttonLoading = true;
+          let eng = this.form.enginType
+          if (this.form.id != null) {
+            this.form.enginType = this.form.enginType.join()
+            updateEnginMaterialQuality(this.form).then(response => {
+              this.$modal.msgSuccess("修改成功");
+              this.open = false;
+              this.getList();
+            }).finally(() => {
+              this.buttonLoading = false;
+            }).catch(e => {
+              this.form.enginType = eng
+            });
+          } else {
+            this.form.enginType = this.form.enginType.join()
+            addEnginMaterialQuality(this.form).then(response => {
+              this.$modal.msgSuccess("新增成功");
+              this.open = false;
+              this.getList();
+            }).finally(() => {
+              this.buttonLoading = false;
+            }).catch(e => {
+              this.form.enginType = eng
+            });
+          }
+        }
+      });
+    },
+    /** 删除按钮操作 */
+    handleDelete(row) {
+      const ids = row.id || this.ids;
+      this.$modal.confirm('是否确认删除工程材质编号为"' + ids + '"的数据项?').then(() => {
+        this.loading = true;
+        return delEnginMaterialQuality(ids);
+      }).then(() => {
+        this.loading = false;
+        this.getList();
+        this.$modal.msgSuccess("删除成功");
+      }).catch(() => {
+      }).finally(() => {
+        this.loading = false;
+      });
+    },
+    /** 导出按钮操作 */
+    handleExport() {
+      this.download('zdsz/enginMaterialQuality/export', {
+        ...this.queryParams
+      }, `enginMaterialQuality_${new Date().getTime()}.xlsx`)
+    }
+  }
+};
+</script>

+ 321 - 0
src/views/zdsz/enginSpecifications/index.vue

@@ -0,0 +1,321 @@
+<template>
+  <div class="app-container">
+    <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
+      <el-form-item label="材质" prop="materId">
+        <el-select v-model="queryParams.materId" placeholder="请选择所属工程">
+          <el-option
+            v-for="dict in enginMaterialQualityList"
+            :key="dict.id"
+            :label="dict.name"
+            :value="dict.id"
+          ></el-option>
+        </el-select>
+      </el-form-item>
+      <el-form-item label="材质名称" prop="name">
+        <el-input
+          v-model="queryParams.name"
+          placeholder="请输入材质名称"
+          clearable
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+      <el-form-item>
+        <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
+        <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
+      </el-form-item>
+    </el-form>
+
+    <el-row :gutter="10" class="mb8">
+      <el-col :span="1.5">
+        <el-button
+          type="primary"
+          plain
+          icon="el-icon-plus"
+          size="mini"
+          @click="handleAdd"
+          v-hasPermi="['zdsz:enginSpecifications:add']"
+        >新增
+        </el-button>
+      </el-col>
+      <el-col :span="1.5">
+        <el-button
+          type="success"
+          plain
+          icon="el-icon-edit"
+          size="mini"
+          :disabled="single"
+          @click="handleUpdate"
+          v-hasPermi="['zdsz:enginSpecifications:edit']"
+        >修改
+        </el-button>
+      </el-col>
+      <el-col :span="1.5">
+        <el-button
+          type="danger"
+          plain
+          icon="el-icon-delete"
+          size="mini"
+          :disabled="multiple"
+          @click="handleDelete"
+          v-hasPermi="['zdsz:enginSpecifications:remove']"
+        >删除
+        </el-button>
+      </el-col>
+      <el-col :span="1.5">
+        <el-button
+          type="warning"
+          plain
+          icon="el-icon-download"
+          size="mini"
+          @click="handleExport"
+          v-hasPermi="['zdsz:enginSpecifications:export']"
+        >导出
+        </el-button>
+      </el-col>
+      <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
+    </el-row>
+
+    <el-table v-loading="loading" :data="enginSpecificationsList" @selection-change="handleSelectionChange">
+      <el-table-column type="selection" width="55" align="center"/>
+      <el-table-column label="id" align="center" prop="id" v-if="true"/>
+      <el-table-column label="材质名称" align="center" prop="materName"/>
+      <el-table-column label="材质名称" align="center" prop="name"/>
+      <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
+        <template slot-scope="scope">
+          <el-button
+            size="mini"
+            type="text"
+            icon="el-icon-edit"
+            @click="handleUpdate(scope.row)"
+            v-hasPermi="['zdsz:enginSpecifications:edit']"
+          >修改
+          </el-button>
+          <el-button
+            size="mini"
+            type="text"
+            icon="el-icon-delete"
+            @click="handleDelete(scope.row)"
+            v-hasPermi="['zdsz:enginSpecifications:remove']"
+          >删除
+          </el-button>
+        </template>
+      </el-table-column>
+    </el-table>
+
+    <pagination
+      v-show="total>0"
+      :total="total"
+      :page.sync="queryParams.pageNum"
+      :limit.sync="queryParams.pageSize"
+      @pagination="getList"
+    />
+
+    <!-- 添加或修改工程材质规格对话框 -->
+    <el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
+      <el-form ref="form" :model="form" :rules="rules" label-width="80px">
+        <el-form-item label="材质" prop="materId">
+          <el-select v-model="form.materId" placeholder="请选择所属工程" style="width: 100%">
+            <el-option
+              v-for="dict in enginMaterialQualityList"
+              :key="dict.id"
+              :label="dict.name"
+              :value="dict.id"
+            ></el-option>
+          </el-select>
+        </el-form-item>
+        <el-form-item label="材质名称" prop="name">
+          <el-input v-model="form.name" placeholder="请输入材质名称"/>
+        </el-form-item>
+      </el-form>
+      <div slot="footer" class="dialog-footer">
+        <el-button :loading="buttonLoading" type="primary" @click="submitForm">确 定</el-button>
+        <el-button @click="cancel">取 消</el-button>
+      </div>
+    </el-dialog>
+  </div>
+</template>
+
+<script>
+import {
+  listEnginSpecifications,
+  getEnginSpecifications,
+  delEnginSpecifications,
+  addEnginSpecifications,
+  updateEnginSpecifications
+} from "@/api/zdsz/enginSpecifications";
+import {listEnginMaterialQuality} from "@/api/zdsz/enginMaterialQuality";
+
+export default {
+  name: "EnginSpecifications",
+  dicts: ['engin_type'],
+  data() {
+    return {
+      // 按钮loading
+      buttonLoading: false,
+      // 遮罩层
+      loading: true,
+      // 选中数组
+      ids: [],
+      // 非单个禁用
+      single: true,
+      // 非多个禁用
+      multiple: true,
+      // 显示搜索条件
+      showSearch: true,
+      // 总条数
+      total: 0,
+      // 工程材质规格表格数据
+      enginSpecificationsList: [],
+      // 弹出层标题
+      title: "",
+      // 是否显示弹出层
+      open: false,
+      // 查询参数
+      queryParams: {
+        pageNum: 1,
+        pageSize: 10,
+        materId: undefined,
+        name: undefined,
+      },
+      // 表单参数
+      form: {},
+      // 表单校验
+      rules: {
+        id: [
+          {required: true, message: "不能为空", trigger: "blur"}
+        ],
+        materId: [
+          {required: true, message: "材质id不能为空", trigger: "blur"}
+        ],
+        name: [
+          {required: true, message: "材质名称不能为空", trigger: "blur"}
+        ],
+      },
+      enginMaterialQualityList: []
+    };
+  },
+  created() {
+    this.getList();
+  },
+  mounted() {
+    this.getMaterList()
+  },
+  methods: {
+    getMaterList() {
+      listEnginMaterialQuality().then(response => {
+        this.enginMaterialQualityList = response.rows;
+      });
+    },
+    /** 查询工程材质规格列表 */
+    getList() {
+      this.loading = true;
+      listEnginSpecifications(this.queryParams).then(response => {
+        this.enginSpecificationsList = response.rows;
+        this.total = response.total;
+        this.loading = false;
+      });
+    },
+    // 取消按钮
+    cancel() {
+      this.open = false;
+      this.reset();
+    },
+    // 表单重置
+    reset() {
+      this.form = {
+        id: undefined,
+        materId: undefined,
+        name: undefined,
+        delFlag: undefined,
+        createBy: undefined,
+        createTime: undefined,
+        updateBy: undefined,
+        updateTime: undefined
+      };
+      this.resetForm("form");
+    },
+    /** 搜索按钮操作 */
+    handleQuery() {
+      this.queryParams.pageNum = 1;
+      this.getList();
+    },
+    /** 重置按钮操作 */
+    resetQuery() {
+      this.resetForm("queryForm");
+      this.handleQuery();
+    },
+    // 多选框选中数据
+    handleSelectionChange(selection) {
+      this.ids = selection.map(item => item.id)
+      this.single = selection.length !== 1
+      this.multiple = !selection.length
+    },
+    /** 新增按钮操作 */
+    handleAdd() {
+      this.reset();
+      this.open = true;
+      this.title = "添加工程材质规格";
+    },
+    /** 修改按钮操作 */
+    handleUpdate(row) {
+      this.loading = true;
+      this.reset();
+      const id = row.id || this.ids
+      getEnginSpecifications(id).then(response => {
+        this.loading = false;
+        this.form = response.data;
+        this.form.enginType = (this.form.enginType.split(",")).map(Number);
+        console.log(this.form.enginType)
+        this.open = true;
+        this.title = "修改工程材质规格";
+      });
+    },
+    /** 提交按钮 */
+    submitForm() {
+      this.$refs["form"].validate(valid => {
+        if (valid) {
+          this.buttonLoading = true;
+          if (this.form.id != null) {
+            updateEnginSpecifications(this.form).then(response => {
+              this.$modal.msgSuccess("修改成功");
+              this.open = false;
+              this.getList();
+            }).finally(() => {
+              this.buttonLoading = false;
+            });
+          } else {
+            addEnginSpecifications(this.form).then(response => {
+              this.$modal.msgSuccess("新增成功");
+              this.open = false;
+              this.getList();
+            }).finally(() => {
+              this.buttonLoading = false;
+            });
+          }
+        }
+      });
+    },
+    /** 删除按钮操作 */
+    handleDelete(row) {
+      const ids = row.id || this.ids;
+      this.$modal.confirm('是否确认删除工程材质规格编号为"' + ids + '"的数据项?').then(() => {
+        this.loading = true;
+        return delEnginSpecifications(ids);
+      }).then(() => {
+        this.loading = false;
+        this.getList();
+        this.$modal.msgSuccess("删除成功");
+      }).catch(() => {
+      }).finally(() => {
+        this.loading = false;
+      });
+    },
+    /** 导出按钮操作 */
+    handleExport() {
+      this.download('zdsz/enginSpecifications/export', {
+        ...this.queryParams
+      }, `enginSpecifications_${new Date().getTime()}.xlsx`)
+    }
+  }
+};
+</script>

+ 330 - 0
src/views/zdsz/engineeringMaterialsResets/index.vue

@@ -0,0 +1,330 @@
+<template>
+  <div class="app-container">
+    <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
+      <el-form-item label="小区名称" prop="name">
+        <el-select v-model="queryParams.areaId" filterable clearable placeholder="请选择小区">
+          <el-option
+            v-for="item in areaList"
+            :key="item.id"
+            :label="item.name"
+            :value="item.id">
+          </el-option>
+        </el-select>
+      </el-form-item>
+      <el-form-item label="预估尺寸" prop="estimatedSize">
+        <el-input
+          v-model="queryParams.estimatedSize"
+          placeholder="请输入预估尺寸"
+          clearable
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+      <el-form-item>
+        <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
+        <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
+      </el-form-item>
+    </el-form>
+
+    <el-row :gutter="10" class="mb8">
+      <el-col :span="1.5">
+        <el-button
+          type="primary"
+          plain
+          icon="el-icon-plus"
+          size="mini"
+          @click="handleAdd"
+          v-hasPermi="['zdsz:engineeringMaterialsResets:add']"
+        >新增</el-button>
+      </el-col>
+      <el-col :span="1.5">
+        <el-button
+          type="success"
+          plain
+          icon="el-icon-edit"
+          size="mini"
+          :disabled="single"
+          @click="handleUpdate"
+          v-hasPermi="['zdsz:engineeringMaterialsResets:edit']"
+        >修改</el-button>
+      </el-col>
+      <el-col :span="1.5">
+        <el-button
+          type="danger"
+          plain
+          icon="el-icon-delete"
+          size="mini"
+          :disabled="multiple"
+          @click="handleDelete"
+          v-hasPermi="['zdsz:engineeringMaterialsResets:remove']"
+        >删除</el-button>
+      </el-col>
+      <el-col :span="1.5">
+        <el-button
+          type="warning"
+          plain
+          icon="el-icon-download"
+          size="mini"
+          @click="handleExport"
+          v-hasPermi="['zdsz:engineeringMaterialsResets:export']"
+        >导出</el-button>
+      </el-col>
+      <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
+    </el-row>
+
+    <el-table v-loading="loading" :data="engineeringMaterialsResetsList" @selection-change="handleSelectionChange">
+      <el-table-column type="selection" width="55" align="center" />
+      <el-table-column label="" align="center" prop="id" v-if="true"/>
+      <el-table-column label="" align="center" prop="areaId" />
+      <el-table-column label="材质" align="center" prop="materialQuality" />
+      <el-table-column label="规格" align="center" prop="estimatedSpecifications" />
+      <el-table-column label="预估尺寸" align="center" prop="estimatedSize" />
+      <el-table-column label="工程周期" align="center" prop="enginCycle" />
+      <el-table-column label="备注" align="center" prop="remark" />
+      <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
+        <template slot-scope="scope">
+          <el-button
+            size="mini"
+            type="text"
+            icon="el-icon-edit"
+            @click="handleUpdate(scope.row)"
+            v-hasPermi="['zdsz:engineeringMaterialsResets:edit']"
+          >修改</el-button>
+          <el-button
+            size="mini"
+            type="text"
+            icon="el-icon-delete"
+            @click="handleDelete(scope.row)"
+            v-hasPermi="['zdsz:engineeringMaterialsResets:remove']"
+          >删除</el-button>
+        </template>
+      </el-table-column>
+    </el-table>
+
+    <pagination
+      v-show="total>0"
+      :total="total"
+      :page.sync="queryParams.pageNum"
+      :limit.sync="queryParams.pageSize"
+      @pagination="getList"
+    />
+
+    <!-- 添加或修改工程用料预设对话框 -->
+    <el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
+      <el-form ref="form" :model="form" :rules="rules" label-width="80px">
+        <el-form-item label="小区名称" prop="areaId">
+          <el-select v-model="form.areaId" filterable clearable multiple placeholder="请选择小区"  style="width: 100%">
+            <el-option
+              v-for="item in areaList"
+              :key="item.id"
+              :label="item.name"
+              :value="item.id">
+            </el-option>
+          </el-select>
+        </el-form-item>
+        <el-form-item label="预估尺寸" prop="estimatedSize">
+          <el-input-number  v-model="form.estimatedSize" controls-position="right" placeholder="请输入预估尺寸" style="width: 100%" />
+        </el-form-item>
+        <el-form-item label="备注" prop="remark">
+          <el-input v-model="form.remark" type="textarea" placeholder="请输入内容" />
+        </el-form-item>
+      </el-form>
+      <div slot="footer" class="dialog-footer">
+        <el-button :loading="buttonLoading" type="primary" @click="submitForm">确 定</el-button>
+        <el-button @click="cancel">取 消</el-button>
+      </div>
+    </el-dialog>
+  </div>
+</template>
+
+<script>
+import { listEngineeringMaterialsResets, getEngineeringMaterialsResets, delEngineeringMaterialsResets, addEngineeringMaterialsResets, updateEngineeringMaterialsResets } from "@/api/zdsz/engineeringMaterialsResets";
+import {getAreaList} from "@/api/zdsz/area";
+
+export default {
+  name: "EngineeringMaterialsResets",
+  data() {
+    return {
+      // 按钮loading
+      buttonLoading: false,
+      // 遮罩层
+      loading: true,
+      // 选中数组
+      ids: [],
+      // 非单个禁用
+      single: true,
+      // 非多个禁用
+      multiple: true,
+      // 显示搜索条件
+      showSearch: true,
+      // 总条数
+      total: 0,
+      // 工程用料预设表格数据
+      engineeringMaterialsResetsList: [],
+      // 弹出层标题
+      title: "",
+      // 是否显示弹出层
+      open: false,
+      // 查询参数
+      queryParams: {
+        pageNum: 1,
+        pageSize: 10,
+        areaId: undefined,
+        materialQuality: undefined,
+        estimatedSpecifications: undefined,
+        estimatedSize: undefined,
+        enginCycle: undefined,
+      },
+      // 表单参数
+      form: {},
+      // 表单校验
+      rules: {
+        id: [
+          { required: true, message: "不能为空", trigger: "blur" }
+        ],
+        areaId: [
+          { required: true, message: "不能为空", trigger: "change" }
+        ],
+        materialQuality: [
+          { required: true, message: "材质不能为空", trigger: "change" }
+        ],
+        estimatedSpecifications: [
+          { required: true, message: "规格不能为空", trigger: "change" }
+        ],
+        estimatedSize: [
+          { required: true, message: "预估尺寸不能为空", trigger: "blur" }
+        ],
+        enginCycle: [
+          { required: true, message: "工程周期不能为空", trigger: "change" }
+        ],
+        remark: [
+          { required: true, message: "备注不能为空", trigger: "blur" }
+        ],
+      },
+      areaList: []
+    };
+  },
+  created() {
+    this.getList();
+  },
+  mounted() {
+    this.getAreaList();
+  },
+  methods: {
+    getAreaList() {
+      getAreaList().then(res => this.areaList = res.data)
+    },
+    /** 查询工程用料预设列表 */
+    getList() {
+      this.loading = true;
+      listEngineeringMaterialsResets(this.queryParams).then(response => {
+        this.engineeringMaterialsResetsList = response.rows;
+        this.total = response.total;
+        this.loading = false;
+      });
+    },
+    // 取消按钮
+    cancel() {
+      this.open = false;
+      this.reset();
+    },
+    // 表单重置
+    reset() {
+      this.form = {
+        id: undefined,
+        areaId: undefined,
+        materialQuality: undefined,
+        estimatedSpecifications: undefined,
+        estimatedSize: undefined,
+        enginCycle: undefined,
+        remark: undefined,
+        delFlag: undefined,
+        createBy: undefined,
+        createTime: undefined,
+        updateBy: undefined,
+        updateTime: undefined
+      };
+      this.resetForm("form");
+    },
+    /** 搜索按钮操作 */
+    handleQuery() {
+      this.queryParams.pageNum = 1;
+      this.getList();
+    },
+    /** 重置按钮操作 */
+    resetQuery() {
+      this.resetForm("queryForm");
+      this.handleQuery();
+    },
+    // 多选框选中数据
+    handleSelectionChange(selection) {
+      this.ids = selection.map(item => item.id)
+      this.single = selection.length!==1
+      this.multiple = !selection.length
+    },
+    /** 新增按钮操作 */
+    handleAdd() {
+      this.reset();
+      this.open = true;
+      this.title = "添加工程用料预设";
+    },
+    /** 修改按钮操作 */
+    handleUpdate(row) {
+      this.loading = true;
+      this.reset();
+      const id = row.id || this.ids
+      getEngineeringMaterialsResets(id).then(response => {
+        this.loading = false;
+        this.form = response.data;
+        this.open = true;
+        this.title = "修改工程用料预设";
+      });
+    },
+    /** 提交按钮 */
+    submitForm() {
+      this.$refs["form"].validate(valid => {
+        if (valid) {
+          this.buttonLoading = true;
+          if (this.form.id != null) {
+            updateEngineeringMaterialsResets(this.form).then(response => {
+              this.$modal.msgSuccess("修改成功");
+              this.open = false;
+              this.getList();
+            }).finally(() => {
+              this.buttonLoading = false;
+            });
+          } else {
+            addEngineeringMaterialsResets(this.form).then(response => {
+              this.$modal.msgSuccess("新增成功");
+              this.open = false;
+              this.getList();
+            }).finally(() => {
+              this.buttonLoading = false;
+            });
+          }
+        }
+      });
+    },
+    /** 删除按钮操作 */
+    handleDelete(row) {
+      const ids = row.id || this.ids;
+      this.$modal.confirm('是否确认删除工程用料预设编号为"' + ids + '"的数据项?').then(() => {
+        this.loading = true;
+        return delEngineeringMaterialsResets(ids);
+      }).then(() => {
+        this.loading = false;
+        this.getList();
+        this.$modal.msgSuccess("删除成功");
+      }).catch(() => {
+      }).finally(() => {
+        this.loading = false;
+      });
+    },
+    /** 导出按钮操作 */
+    handleExport() {
+      this.download('zdsz/engineeringMaterialsResets/export', {
+        ...this.queryParams
+      }, `engineeringMaterialsResets_${new Date().getTime()}.xlsx`)
+    }
+  }
+};
+</script>