Browse Source

硬件管理页面创建

wangyani 1 year ago
parent
commit
1213a1f122

+ 501 - 0
src/views/mes/hw/information/index.vue

@@ -0,0 +1,501 @@
+<template>
+  <div class="app-container">
+    <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="100px">
+      <el-form-item label="维修单编号" prop="repairCode">
+        <el-input
+          v-model="queryParams.repairCode"
+          placeholder="请输入维修单编号"
+          clearable
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+      <el-form-item label="维修单名称" prop="repairName">
+        <el-input
+          v-model="queryParams.repairName"
+          placeholder="请输入维修单名称"
+          clearable
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+     
+      <el-form-item label="设备编码" prop="machineryCode">
+        <el-input
+          v-model="queryParams.machineryCode"
+          placeholder="请输入设备编码"
+          clearable
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+      <el-form-item label="设备名称" prop="machineryName">
+        <el-input
+          v-model="queryParams.machineryName"
+          placeholder="请输入设备名称"
+          clearable
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+      <el-form-item label="维修结果" prop="repairResult">
+        <el-select v-model="queryParams.repairResult" placeholder="请选择维修结果" clearable>
+          <el-option
+            v-for="dict in dict.type.mes_repair_result"
+            :key="dict.value"
+            :label="dict.label"
+            :value="dict.value"
+          />
+        </el-select>
+      </el-form-item>
+      <el-form-item label="单据状态" prop="status">
+        <el-select v-model="queryParams.status" placeholder="请选择单据状态" clearable>
+          <el-option
+            v-for="dict in dict.type.mes_order_status"
+            :key="dict.value"
+            :label="dict.label"
+            :value="dict.value"
+          />
+        </el-select>
+      </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="['mes:dv:repair: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="['mes:dv:repair: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="['mes:dv:repair:remove']"
+        >删除</el-button>
+      </el-col>
+      <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
+    </el-row>
+
+    <el-table v-loading="loading" :data="repairList" @selection-change="handleSelectionChange">
+      <el-table-column type="selection" width="55" align="center" />
+      <el-table-column label="维修单编号" width="120px" align="center" prop="repairCode" />
+      <el-table-column label="维修单名称" width="150px" align="center" prop="repairName" :show-overflow-tooltip="true"/>
+      <el-table-column label="设备编码" align="center" prop="machineryCode" />
+      <el-table-column label="设备名称" align="center" prop="machineryName" />
+      <el-table-column label="报修日期" align="center" prop="requireDate" width="120">
+        <template slot-scope="scope">
+          <span>{{ parseTime(scope.row.requireDate, '{y}-{m}-{d}') }}</span>
+        </template>
+      </el-table-column>
+      <el-table-column label="维修完成日期" align="center" prop="finishDate" width="120">
+        <template slot-scope="scope">
+          <span>{{ parseTime(scope.row.finishDate, '{y}-{m}-{d}') }}</span>
+        </template>
+      </el-table-column>
+      <el-table-column label="验收日期" align="center" prop="confirmDate" width="120">
+        <template slot-scope="scope">
+          <span>{{ parseTime(scope.row.confirmDate, '{y}-{m}-{d}') }}</span>
+        </template>
+      </el-table-column>
+      <el-table-column label="维修结果" align="center" prop="repairResult">
+        <template slot-scope="scope">
+          <dict-tag :options="dict.type.mes_repair_result" :value="scope.row.repairResult"/>
+        </template>
+      </el-table-column>
+      <el-table-column label="维修人员" align="center" prop="acceptedBy" />
+      <el-table-column label="验收人员" align="center" prop="confirmBy" />
+      <el-table-column label="单据状态" align="center" prop="status">
+        <template slot-scope="scope">
+          <dict-tag :options="dict.type.mes_order_status" :value="scope.row.status"/>
+        </template>
+      </el-table-column>
+      <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="['mes:dv:repair:edit']"
+          >修改</el-button>
+          <el-button
+            size="mini"
+            type="text"
+            icon="el-icon-delete"
+            @click="handleDelete(scope.row)"
+            v-hasPermi="['mes:dv:repair: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="960px" append-to-body>
+      <el-form ref="form" :model="form" :rules="rules" label-width="120px">
+        <el-row>
+          <el-col :span="8">
+            <el-form-item label="维修单编号" prop="repairCode">
+              <el-input v-model="form.repairCode" placeholder="请输入维修单编号" />
+            </el-form-item>
+          </el-col>
+           <el-col :span="4">
+            <el-form-item  label-width="80">
+              <el-switch v-model="autoGenFlag"
+                  active-color="#13ce66"
+                  active-text="自动生成"
+                  @change="handleAutoGenChange(autoGenFlag)" v-if="optType != 'view'">               
+              </el-switch>
+            </el-form-item>
+          </el-col>
+          <el-col :span="12">
+            <el-form-item label="维修单名称" prop="repairName">
+              <el-input v-model="form.repairName" placeholder="请输入维修单名称" />
+            </el-form-item>
+          </el-col>          
+        </el-row>
+        <el-row>
+          <el-col :span="8">
+            <el-form-item label="设备编号" prop="machineryCode">
+              <el-input v-model="form.machineryCode" placeholder="请选择设备" disabled >
+                <el-button style="border-color: #46a6ff; background-color: #46a6ff;color: white;" slot="append" @click="handleMachineryAdd" icon="el-icon-search"></el-button>
+              </el-input>
+            </el-form-item>
+            <MachinerySelectSingle ref="machinerySelect" @onSelected="onMachineryAdd"></MachinerySelectSingle>
+          </el-col>
+          <el-col :span="8">
+            <el-form-item label="设备名称" prop="machineryName">
+              <el-input v-model="form.machineryName" placeholder="请选择设备" disabled />
+            </el-form-item>
+          </el-col>
+          <el-col :span="8">
+            <el-form-item label="品牌" prop="machineryBrand">
+              <el-input v-model="form.machineryBrand" placeholder="请选择设备" disabled/>
+            </el-form-item>
+          </el-col>
+        </el-row>
+        <el-row>
+          <el-col :span="8">
+            <el-form-item label="报修日期" prop="requireDate">
+              <el-date-picker clearable
+                v-model="form.requireDate"
+                style="width: 187px"
+                type="date"                
+                value-format="yyyy-MM-dd"
+                placeholder="请选择报修日期">
+              </el-date-picker>
+            </el-form-item>
+          </el-col>
+          <el-col :span="8">
+            <el-form-item label="维修完成日期" v-if="form.status =='APPROVING' || form.status=='FINISHED' || form.status=='CONFIRMED' " prop="finishDate">
+              <el-date-picker clearable
+                v-model="form.finishDate"
+                style="width: 187px"
+                type="date"
+                value-format="yyyy-MM-dd"
+                placeholder="请选择维修完成日期">
+              </el-date-picker>
+            </el-form-item>
+          </el-col>
+          <el-col :span="8">
+            <el-form-item label="验收日期" v-if="form.status=='FINISHED' || form.status=='CONFIRMED' " prop="confirmDate">
+              <el-date-picker clearable
+                v-model="form.confirmDate"
+                style="width: 187px"
+                type="date"
+                value-format="yyyy-MM-dd"
+                placeholder="请选择验收日期">
+              </el-date-picker>
+            </el-form-item>
+          </el-col>
+        </el-row>
+        <el-row>
+          <el-col :span="8">
+            <el-form-item label="维修结果" v-if="form.status =='APPROVING' || form.status=='FINISHED' || form.status=='CONFIRMED' ">
+              <el-radio-group v-model="form.repairResult">
+                <el-radio
+                  v-for="dict in dict.type.mes_repair_result"
+                  :key="dict.value"
+                  :label="dict.value"
+                >{{dict.label}}</el-radio>
+              </el-radio-group>
+            </el-form-item>
+          </el-col>
+          <el-col :span="8">
+            <el-form-item label="维修人员" prop="acceptedName" v-if="form.status =='APPROVING' || form.status=='FINISHED' || form.status=='CONFIRMED' ">
+              <el-input v-model="form.acceptedName" readonly="readonly"/>
+            </el-form-item>
+          </el-col>
+          <el-col :span="8">
+            <el-form-item label="验收人员" prop="confirmName" v-if="form.status=='FINISHED' || form.status=='CONFIRMED' ">
+              <el-input v-model="form.confirmName" readonly="readonly"/>
+            </el-form-item>
+          </el-col>
+        </el-row>
+        <el-row>
+          <el-col :span="24">
+            <el-form-item label="备注" prop="remark">
+              <el-input v-model="form.remark" type="textarea" placeholder="请输入内容" />
+            </el-form-item>
+          </el-col>          
+        </el-row>
+      </el-form>
+      <el-divider v-if="form.repairId !=null" content-position="center">维修内容</el-divider>
+      <el-card shadow="always" v-if="form.repairId !=null" class="box-card">
+        <Repairline ref="line" :repairId="form.repairId" :optType="optType"></Repairline>    
+      </el-card>
+
+      <div slot="footer" class="dialog-footer">
+        <el-button type="primary" v-if="form.status =='PREPARE' && optType !='view'" @click="submitForm">提 交</el-button>
+        <el-button type="primary" v-if="form.status == 'APPROVING' && optType !='view'" @click="finish">完成维修</el-button> 
+        <el-button type="success" v-if="form.status == 'FINISHED' && optType !='view'" @click="confirm">验收通过</el-button>
+        <el-button type="danger" v-if="form.status == 'FINISHED' && optType !='view'" @click="unconfirm">不通过</el-button>
+        <el-button @click="cancel">取 消</el-button>
+      </div>
+    </el-dialog>
+  </div>
+</template>
+
+<script>
+import { listRepair, getRepair, delRepair, addRepair, updateRepair } from "@/api/mes/dv/repair";
+import MachinerySelectSingle from "@/components/machinerySelect/single.vue";
+import Repairline from './line.vue'
+import {genCode} from "@/api/system/autocode/rule"
+export default {
+  name: "Repair",
+  dicts: ['mes_repair_result', 'mes_order_status'],
+  components: {Repairline,MachinerySelectSingle},
+  data() {
+    return {
+      autoGenFlag:false,
+      optType: undefined,
+      // 遮罩层
+      loading: true,
+      // 选中数组
+      ids: [],
+      // 非单个禁用
+      single: true,
+      // 非多个禁用
+      multiple: true,
+      // 显示搜索条件
+      showSearch: true,
+      // 总条数
+      total: 0,
+      // 设备维修单表格数据
+      repairList: [],
+      // 弹出层标题
+      title: "",
+      // 是否显示弹出层
+      open: false,
+      // 查询参数
+      queryParams: {
+        pageNum: 1,
+        pageSize: 10,
+        repairCode: null,
+        repairName: null,
+        machineryId: null,
+        machineryCode: null,
+        machineryName: null,
+        machineryBrand: null,
+        machinerySpec: null,
+        machineryTypeId: null,
+        requireDate: null,
+        finishDate: null,
+        confirmDate: null,
+        repairResult: null,
+        acceptedBy: null,
+        confirmBy: null,
+        status: null,
+      },
+      // 表单参数
+      form: {},
+      // 表单校验
+      rules: {
+        repairCode: [
+          { required: true, message: "维修单编号不能为空", trigger: "blur" }
+        ],
+        machineryId: [
+          { required: true, message: "设备ID不能为空", trigger: "blur" }
+        ],
+        machineryCode: [
+          { required: true, message: "设备编码不能为空", trigger: "blur" }
+        ],
+        machineryName: [
+          { required: true, message: "设备名称不能为空", trigger: "blur" }
+        ],
+        requireDate: [
+          { required: true, message: "请选择报修日期", trigger: "blur" }
+        ],
+      }
+    };
+  },
+  created() {
+    this.getList();
+  },
+  methods: {
+    /** 查询设备维修单列表 */
+    getList() {
+      this.loading = true;
+      listRepair(this.queryParams).then(response => {
+        this.repairList = response.rows;
+        this.total = response.total;
+        this.loading = false;
+      });
+    },
+    // 取消按钮
+    cancel() {
+      this.open = false;
+      this.reset();
+    },
+    // 表单重置
+    reset() {
+      this.form = {
+        repairId: null,
+        repairCode: null,
+        repairName: null,
+        machineryId: null,
+        machineryCode: null,
+        machineryName: null,
+        machineryBrand: null,
+        machinerySpec: null,
+        machineryTypeId: null,
+        requireDate: null,
+        finishDate: null,
+        confirmDate: null,
+        repairResult: "",
+        acceptedBy: null,
+        confirmBy: null,
+        status: 'PREPARE',
+        remark: null,
+        attr1: null,
+        attr2: null,
+        attr3: null,
+        attr4: null,
+        createBy: null,
+        createTime: null,
+        updateBy: null,
+        updateTime: null
+      };
+      this.autoGenFlag= false;
+      this.resetForm("form");
+    },
+    /** 搜索按钮操作 */
+    handleQuery() {
+      this.queryParams.pageNum = 1;
+      this.getList();
+    },
+    /** 重置按钮操作 */
+    resetQuery() {
+      this.resetForm("queryForm");
+      this.handleQuery();
+    },
+    // 多选框选中数据
+    handleSelectionChange(selection) {
+      this.ids = selection.map(item => item.repairId)
+      this.single = selection.length!==1
+      this.multiple = !selection.length
+    },
+    /** 新增按钮操作 */
+    handleAdd() {
+      this.reset();
+      this.open = true;
+      this.title = "添加设备维修单";
+    },
+    /** 修改按钮操作 */
+    handleUpdate(row) {
+      this.reset();
+      const repairId = row.repairId || this.ids
+      getRepair(repairId).then(response => {
+        this.form = response.data;
+        this.open = true;
+        this.title = "修改设备维修单";
+      });
+    },
+    /** 提交按钮 */
+    submitForm() {
+      this.$refs["form"].validate(valid => {
+        if (valid) {
+          if (this.form.repairId != null) {
+            updateRepair(this.form).then(response => {
+              this.$modal.msgSuccess("修改成功");
+              this.open = false;
+              this.getList();
+            });
+          } else {
+            addRepair(this.form).then(response => {
+              this.$modal.msgSuccess("新增成功");
+              this.open = false;
+              this.getList();
+            });
+          }
+        }
+      });
+    },
+    /** 删除按钮操作 */
+    handleDelete(row) {
+      const repairIds = row.repairId || this.ids;
+      this.$modal.confirm('是否确认删除设备维修单编号为"' + repairIds + '"的数据项?').then(function() {
+        return delRepair(repairIds);
+      }).then(() => {
+        this.getList();
+        this.$modal.msgSuccess("删除成功");
+      }).catch(() => {});
+    },
+    /** 导出按钮操作 */
+    handleExport() {
+      this.download('dv/repair/export', {
+        ...this.queryParams
+      }, `repair_${new Date().getTime()}.xlsx`)
+    },
+    //设备资源选择弹出
+    handleMachineryAdd(){
+      this.$refs.machinerySelect.showFlag = true;
+    },
+    //设备资源选择回调
+    onMachineryAdd(row){
+      this.form.machineryId = row.machineryId;
+      this.form.machineryTypeId = row.machineryTypeId;
+      this.form.machineryCode = row.machineryCode;
+      this.form.machineryName = row.machineryName;
+      this.form.machineryBrand = row.machineryBrand;
+    },
+        //自动生成编码
+    handleAutoGenChange(autoGenFlag){      
+      if(autoGenFlag){
+        genCode('REPAIR_CODE').then(response =>{
+          this.form.repairCode = response;
+        });
+      }else{
+        this.form.repairCode = null;
+      }
+    }
+  }
+};
+</script>

+ 261 - 0
src/views/mes/hw/information/line.vue

@@ -0,0 +1,261 @@
+<template>
+  <div class="app-container">
+    
+    <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="['mes:dv:repair:add']"
+        >新增</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="['mes:dv:repair:remove']"
+        >删除</el-button>
+      </el-col>
+      <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
+    </el-row>
+
+    <el-table v-loading="loading" :data="repairlineList" @selection-change="handleSelectionChange">
+      <el-table-column type="selection" width="55" align="center" />
+      <el-table-column label="项目名称" align="center" prop="subjectName" />
+      <el-table-column label="故障描述" align="center" prop="malfunction" >
+        <template slot-scope="scope">
+          <el-input type="textarea">{{scope.row.malfunction}}</el-input>
+        </template>
+      </el-table-column>
+      <el-table-column label="故障描述资源" align="center" prop="malfunctionUrl" >
+        
+      </el-table-column>
+      <el-table-column label="维修情况" align="center" prop="repairDes" />
+      <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="['mes:dv:repair:edit']"
+          >修改</el-button>
+          <el-button
+            size="mini"
+            type="text"
+            icon="el-icon-delete"
+            @click="handleDelete(scope.row)"
+            v-hasPermi="['mes:dv:repair: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="960px" append-to-body>
+      <el-form ref="form" :model="form" :rules="rules" label-width="100px">       
+        <el-form-item label="项目名称" prop="subjectName">
+          <el-input v-model="form.subjectName" placeholder="请输入项目名称" />
+        </el-form-item>        
+        <el-form-item label="故障描述" prop="malfunction">
+          <el-input v-model="form.malfunction" type="textarea" placeholder="请输入内容" />
+        </el-form-item>
+        <el-form-item label="故障描述资源" prop="malfunctionUrl">
+          <el-input type="textarea" v-model="form.malfunctionUrl" placeholder="请输入故障描述资源" />
+        </el-form-item>
+        <el-form-item label="维修情况" prop="repairDes">
+          <el-input  v-model="form.repairDes" type="textarea" placeholder="请输入内容" />
+        </el-form-item>
+      </el-form>
+      <div slot="footer" class="dialog-footer">
+        <el-button type="primary" @click="submitForm">确 定</el-button>
+        <el-button @click="cancel">取 消</el-button>
+      </div>
+    </el-dialog>
+  </div>
+</template>
+
+<script>
+import { listRepairline, getRepairline, delRepairline, addRepairline, updateRepairline } from "@/api/mes/dv/repairline";
+
+export default {
+  name: "Repairline",
+  props: {
+    repairId: null,
+    optType: undefined
+  },
+  data() {
+    return {
+      // 遮罩层
+      loading: true,
+      // 选中数组
+      ids: [],
+      // 非单个禁用
+      single: true,
+      // 非多个禁用
+      multiple: true,
+      // 显示搜索条件
+      showSearch: true,
+      // 总条数
+      total: 0,
+      // 设备维修单行表格数据
+      repairlineList: [],
+      // 弹出层标题
+      title: "",
+      // 是否显示弹出层
+      open: false,
+      // 查询参数
+      queryParams: {
+        pageNum: 1,
+        pageSize: 10,
+        repairId: this.repairId,
+        subjectId: null,
+        subjectCode: null,
+        subjectName: null,
+        subjectType: null,
+        subjectContent: null,
+        subjectStandard: null,
+        malfunction: null,
+        malfunctionUrl: null,
+        repairDes: null,
+      },
+      // 表单参数
+      form: {},
+      // 表单校验
+      rules: {
+        malfunction: [
+          { required: true, message: "故障描述不能为空", trigger: "blur" }
+        ],
+      }
+    };
+  },
+  created() {
+    this.getList();
+  },
+  methods: {
+    /** 查询设备维修单行列表 */
+    getList() {
+      this.loading = true;
+      listRepairline(this.queryParams).then(response => {
+        this.repairlineList = response.rows;
+        this.total = response.total;
+        this.loading = false;
+      });
+    },
+    // 取消按钮
+    cancel() {
+      this.open = false;
+      this.reset();
+    },
+    // 表单重置
+    reset() {
+      this.form = {
+        lineId: null,
+        repairId: this.repairId,
+        subjectId: null,
+        subjectCode: null,
+        subjectName: null,
+        subjectType: null,
+        subjectContent: null,
+        subjectStandard: null,
+        malfunction: null,
+        malfunctionUrl: null,
+        repairDes: null,
+        remark: null,
+        attr1: null,
+        attr2: null,
+        attr3: null,
+        attr4: null,
+        createBy: null,
+        createTime: null,
+        updateBy: null,
+        updateTime: null
+      };
+      this.resetForm("form");
+    },
+    /** 搜索按钮操作 */
+    handleQuery() {
+      this.queryParams.pageNum = 1;
+      this.getList();
+    },
+    /** 重置按钮操作 */
+    resetQuery() {
+      this.resetForm("queryForm");
+      this.handleQuery();
+    },
+    // 多选框选中数据
+    handleSelectionChange(selection) {
+      this.ids = selection.map(item => item.lineId)
+      this.single = selection.length!==1
+      this.multiple = !selection.length
+    },
+    /** 新增按钮操作 */
+    handleAdd() {
+      this.reset();
+      this.open = true;
+      this.title = "添加设备维修单行";
+    },
+    /** 修改按钮操作 */
+    handleUpdate(row) {
+      this.reset();
+      const lineId = row.lineId || this.ids
+      getRepairline(lineId).then(response => {
+        this.form = response.data;
+        this.open = true;
+        this.title = "修改设备维修单行";
+      });
+    },
+    /** 提交按钮 */
+    submitForm() {
+      this.$refs["form"].validate(valid => {
+        if (valid) {
+          if (this.form.lineId != null) {
+            updateRepairline(this.form).then(response => {
+              this.$modal.msgSuccess("修改成功");
+              this.open = false;
+              this.getList();
+            });
+          } else {
+            addRepairline(this.form).then(response => {
+              this.$modal.msgSuccess("新增成功");
+              this.open = false;
+              this.getList();
+            });
+          }
+        }
+      });
+    },
+    /** 删除按钮操作 */
+    handleDelete(row) {
+      const lineIds = row.lineId || this.ids;
+      this.$modal.confirm('是否确认删除设备维修单行编号为"' + lineIds + '"的数据项?').then(function() {
+        return delRepairline(lineIds);
+      }).then(() => {
+        this.getList();
+        this.$modal.msgSuccess("删除成功");
+      }).catch(() => {});
+    },
+    /** 导出按钮操作 */
+    handleExport() {
+      this.download('dv/repairline/export', {
+        ...this.queryParams
+      }, `repairline_${new Date().getTime()}.xlsx`)
+    }
+  }
+};
+</script>

+ 601 - 0
src/views/mes/hw/type/index.vue

@@ -0,0 +1,601 @@
+<template>
+  <div class="app-container">
+    <el-form
+      :model="queryParams"
+      ref="queryForm"
+      size="small"
+      :inline="true"
+      v-show="showSearch"
+      label-width="100px"
+    >
+      <el-form-item label="硬件编号" prop="repairCode">
+        <el-input
+          v-model="queryParams.repairCode"
+          placeholder="请输入硬件编号"
+          clearable
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+      <el-form-item label="类型名称" prop="repairName">
+        <el-input
+          v-model="queryParams.repairName"
+          placeholder="请输入类型名称"
+          clearable
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+
+      <el-form-item label="状态" prop="status">
+        <el-select
+          v-model="queryParams.status"
+          placeholder="请选择状态"
+          clearable
+        >
+          <el-option
+            v-for="dict in dict.type.mes_order_status"
+            :key="dict.value"
+            :label="dict.label"
+            :value="dict.value"
+          />
+        </el-select>
+      </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="['mes:hw:type:add']"
+          >新增</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="['mes:hw:type:remove']"
+          >批量删除</el-button
+        >
+      </el-col>
+      <right-toolbar
+        :showSearch.sync="showSearch"
+        @queryTable="getList"
+      ></right-toolbar>
+    </el-row>
+
+    <el-table
+      v-loading="loading"
+      :data="repairList"
+      @selection-change="handleSelectionChange"
+    >
+      <el-table-column type="selection" width="55" align="center" />
+      <el-table-column
+        label="硬件编号"
+        width="120px"
+        align="center"
+        prop="repairCode"
+      />
+      <el-table-column
+        label="类型名称"
+        width="150px"
+        align="center"
+        prop="repairName"
+        :show-overflow-tooltip="true"
+      />
+      <el-table-column label="状态" align="center" prop="status">
+        <template slot-scope="scope">
+          <dict-tag
+            :options="dict.type.mes_order_status"
+            :value="scope.row.status"
+          />
+        </template>
+      </el-table-column>
+      <el-table-column label="硬件层级" align="center" prop="machineryName" />
+      <el-table-column label="备注" align="center" prop="machineryName" />
+      <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="['mes:hw:type:edit']"
+            >修改</el-button
+          >
+          <el-button
+            size="mini"
+            type="text"
+            icon="el-icon-delete"
+            @click="handleDelete(scope.row)"
+            v-hasPermi="['mes:hw:type: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 :visible.sync="open" width="360px" append-to-body>
+      <div slot="title" class="dialog-title">
+        <i></i>
+        <span class="title">{{ title }}</span>
+      </div>
+      <el-form ref="form" :model="form" :rules="rules" label-width="120px">
+        <el-form-item label="类型编号" prop="repairCode">
+          <el-input v-model="form.repairCode" placeholder="请输入类型编号" />
+        </el-form-item>
+        <el-form-item label="类型名称" prop="repairName">
+          <el-input v-model="form.repairName" placeholder="请输入类型名称" />
+        </el-form-item>
+        <el-row>
+          <el-col :span="8">
+            <el-form-item label="设备编号" prop="machineryCode">
+              <el-input
+                v-model="form.machineryCode"
+                placeholder="请选择设备"
+                disabled
+              >
+                <el-button
+                  style="
+                    border-color: #46a6ff;
+                    background-color: #46a6ff;
+                    color: white;
+                  "
+                  slot="append"
+                  @click="handleMachineryAdd"
+                  icon="el-icon-search"
+                ></el-button>
+              </el-input>
+            </el-form-item>
+            <MachinerySelectSingle
+              ref="machinerySelect"
+              @onSelected="onMachineryAdd"
+            ></MachinerySelectSingle>
+          </el-col>
+          <el-col :span="8">
+            <el-form-item label="设备名称" prop="machineryName">
+              <el-input
+                v-model="form.machineryName"
+                placeholder="请选择设备"
+                disabled
+              />
+            </el-form-item>
+          </el-col>
+          <el-col :span="8">
+            <el-form-item label="品牌" prop="machineryBrand">
+              <el-input
+                v-model="form.machineryBrand"
+                placeholder="请选择设备"
+                disabled
+              />
+            </el-form-item>
+          </el-col>
+        </el-row>
+        <el-row>
+          <el-col :span="8">
+            <el-form-item label="报修日期" prop="requireDate">
+              <el-date-picker
+                clearable
+                v-model="form.requireDate"
+                style="width: 187px"
+                type="date"
+                value-format="yyyy-MM-dd"
+                placeholder="请选择报修日期"
+              >
+              </el-date-picker>
+            </el-form-item>
+          </el-col>
+          <el-col :span="8">
+            <el-form-item
+              label="维修完成日期"
+              v-if="
+                form.status == 'APPROVING' ||
+                form.status == 'FINISHED' ||
+                form.status == 'CONFIRMED'
+              "
+              prop="finishDate"
+            >
+              <el-date-picker
+                clearable
+                v-model="form.finishDate"
+                style="width: 187px"
+                type="date"
+                value-format="yyyy-MM-dd"
+                placeholder="请选择维修完成日期"
+              >
+              </el-date-picker>
+            </el-form-item>
+          </el-col>
+          <el-col :span="8">
+            <el-form-item
+              label="验收日期"
+              v-if="form.status == 'FINISHED' || form.status == 'CONFIRMED'"
+              prop="confirmDate"
+            >
+              <el-date-picker
+                clearable
+                v-model="form.confirmDate"
+                style="width: 187px"
+                type="date"
+                value-format="yyyy-MM-dd"
+                placeholder="请选择验收日期"
+              >
+              </el-date-picker>
+            </el-form-item>
+          </el-col>
+        </el-row>
+        <el-row>
+          <el-col :span="8">
+            <el-form-item
+              label="维修结果"
+              v-if="
+                form.status == 'APPROVING' ||
+                form.status == 'FINISHED' ||
+                form.status == 'CONFIRMED'
+              "
+            >
+              <el-radio-group v-model="form.repairResult">
+                <el-radio
+                  v-for="dict in dict.type.mes_repair_result"
+                  :key="dict.value"
+                  :label="dict.value"
+                  >{{ dict.label }}</el-radio
+                >
+              </el-radio-group>
+            </el-form-item>
+          </el-col>
+          <el-col :span="8">
+            <el-form-item
+              label="维修人员"
+              prop="acceptedName"
+              v-if="
+                form.status == 'APPROVING' ||
+                form.status == 'FINISHED' ||
+                form.status == 'CONFIRMED'
+              "
+            >
+              <el-input v-model="form.acceptedName" readonly="readonly" />
+            </el-form-item>
+          </el-col>
+          <el-col :span="8">
+            <el-form-item
+              label="验收人员"
+              prop="confirmName"
+              v-if="form.status == 'FINISHED' || form.status == 'CONFIRMED'"
+            >
+              <el-input v-model="form.confirmName" readonly="readonly" />
+            </el-form-item>
+          </el-col>
+        </el-row>
+        <el-row>
+          <el-col :span="24">
+            <el-form-item label="备注" prop="remark">
+              <el-input
+                v-model="form.remark"
+                type="textarea"
+                placeholder="请输入内容"
+              />
+            </el-form-item>
+          </el-col>
+        </el-row>
+      </el-form>
+      <el-divider v-if="form.repairId != null" content-position="center"
+        >维修内容</el-divider
+      >
+      <el-card shadow="always" v-if="form.repairId != null" class="box-card">
+        <Repairline
+          ref="line"
+          :repairId="form.repairId"
+          :optType="optType"
+        ></Repairline>
+      </el-card>
+
+      <div slot="footer" class="dialog-footer">
+        <el-button
+          type="primary"
+          v-if="form.status == 'PREPARE' && optType != 'view'"
+          @click="submitForm"
+          >提 交</el-button
+        >
+        <el-button
+          type="primary"
+          v-if="form.status == 'APPROVING' && optType != 'view'"
+          @click="finish"
+          >完成维修</el-button
+        >
+        <el-button
+          type="success"
+          v-if="form.status == 'FINISHED' && optType != 'view'"
+          @click="confirm"
+          >验收通过</el-button
+        >
+        <el-button
+          type="danger"
+          v-if="form.status == 'FINISHED' && optType != 'view'"
+          @click="unconfirm"
+          >不通过</el-button
+        >
+        <el-button @click="cancel">取 消</el-button>
+      </div>
+    </el-dialog>
+  </div>
+</template>
+
+<script>
+import {
+  listRepair,
+  getRepair,
+  delRepair,
+  addRepair,
+  updateRepair,
+} from "@/api/mes/dv/repair";
+import MachinerySelectSingle from "@/components/machinerySelect/single.vue";
+import Repairline from "./line.vue";
+import { genCode } from "@/api/system/autocode/rule";
+export default {
+  name: "Repair",
+  dicts: ["mes_repair_result", "mes_order_status"],
+  components: { Repairline, MachinerySelectSingle },
+  data() {
+    return {
+      autoGenFlag: false,
+      optType: undefined,
+      // 遮罩层
+      loading: true,
+      // 选中数组
+      ids: [],
+      // 非单个禁用
+      single: true,
+      // 非多个禁用
+      multiple: true,
+      // 显示搜索条件
+      showSearch: true,
+      // 总条数
+      total: 0,
+      // 设备维修单表格数据
+      repairList: [],
+      // 弹出层标题
+      title: "",
+      // 是否显示弹出层
+      open: false,
+      // 查询参数
+      queryParams: {
+        pageNum: 1,
+        pageSize: 10,
+        repairCode: null,
+        repairName: null,
+        machineryId: null,
+        machineryCode: null,
+        machineryName: null,
+        machineryBrand: null,
+        machinerySpec: null,
+        machineryTypeId: null,
+        requireDate: null,
+        finishDate: null,
+        confirmDate: null,
+        repairResult: null,
+        acceptedBy: null,
+        confirmBy: null,
+        status: null,
+      },
+      // 表单参数
+      form: {},
+      // 表单校验
+      rules: {
+        repairCode: [
+          { required: true, message: "维修单编号不能为空", trigger: "blur" },
+        ],
+        machineryId: [
+          { required: true, message: "设备ID不能为空", trigger: "blur" },
+        ],
+        machineryCode: [
+          { required: true, message: "设备编码不能为空", trigger: "blur" },
+        ],
+        machineryName: [
+          { required: true, message: "设备名称不能为空", trigger: "blur" },
+        ],
+        requireDate: [
+          { required: true, message: "请选择报修日期", trigger: "blur" },
+        ],
+      },
+    };
+  },
+  created() {
+    this.getList();
+  },
+  methods: {
+    /** 查询设备维修单列表 */
+    getList() {
+      this.loading = true;
+      listRepair(this.queryParams).then((response) => {
+        this.repairList = response.rows;
+        this.total = response.total;
+        this.loading = false;
+      });
+    },
+    // 取消按钮
+    cancel() {
+      this.open = false;
+      this.reset();
+    },
+    // 表单重置
+    reset() {
+      this.form = {
+        repairId: null,
+        repairCode: null,
+        repairName: null,
+        machineryId: null,
+        machineryCode: null,
+        machineryName: null,
+        machineryBrand: null,
+        machinerySpec: null,
+        machineryTypeId: null,
+        requireDate: null,
+        finishDate: null,
+        confirmDate: null,
+        repairResult: "",
+        acceptedBy: null,
+        confirmBy: null,
+        status: "PREPARE",
+        remark: null,
+        attr1: null,
+        attr2: null,
+        attr3: null,
+        attr4: null,
+        createBy: null,
+        createTime: null,
+        updateBy: null,
+        updateTime: null,
+      };
+      this.autoGenFlag = false;
+      this.resetForm("form");
+    },
+    /** 搜索按钮操作 */
+    handleQuery() {
+      this.queryParams.pageNum = 1;
+      this.getList();
+    },
+    /** 重置按钮操作 */
+    resetQuery() {
+      this.resetForm("queryForm");
+      this.handleQuery();
+    },
+    // 多选框选中数据
+    handleSelectionChange(selection) {
+      this.ids = selection.map((item) => item.repairId);
+      this.single = selection.length !== 1;
+      this.multiple = !selection.length;
+    },
+    /** 新增按钮操作 */
+    handleAdd() {
+      this.reset();
+      this.open = true;
+      this.title = "新增硬件类型";
+    },
+    /** 修改按钮操作 */
+    handleUpdate(row) {
+      this.reset();
+      const repairId = row.repairId || this.ids;
+      getRepair(repairId).then((response) => {
+        this.form = response.data;
+        this.open = true;
+        this.title = "修改硬件类型";
+      });
+    },
+    /** 提交按钮 */
+    submitForm() {
+      this.$refs["form"].validate((valid) => {
+        if (valid) {
+          if (this.form.repairId != null) {
+            updateRepair(this.form).then((response) => {
+              this.$modal.msgSuccess("修改成功");
+              this.open = false;
+              this.getList();
+            });
+          } else {
+            addRepair(this.form).then((response) => {
+              this.$modal.msgSuccess("新增成功");
+              this.open = false;
+              this.getList();
+            });
+          }
+        }
+      });
+    },
+    /** 删除按钮操作 */
+    handleDelete(row) {
+      const repairIds = row.repairId || this.ids;
+      this.$modal
+        .confirm('是否确认删除设备维修单编号为"' + repairIds + '"的数据项?')
+        .then(function () {
+          return delRepair(repairIds);
+        })
+        .then(() => {
+          this.getList();
+          this.$modal.msgSuccess("删除成功");
+        })
+        .catch(() => {});
+    },
+    /** 导出按钮操作 */
+    handleExport() {
+      this.download(
+        "dv/repair/export",
+        {
+          ...this.queryParams,
+        },
+        `repair_${new Date().getTime()}.xlsx`
+      );
+    },
+    //设备资源选择弹出
+    handleMachineryAdd() {
+      this.$refs.machinerySelect.showFlag = true;
+    },
+    //设备资源选择回调
+    onMachineryAdd(row) {
+      this.form.machineryId = row.machineryId;
+      this.form.machineryTypeId = row.machineryTypeId;
+      this.form.machineryCode = row.machineryCode;
+      this.form.machineryName = row.machineryName;
+      this.form.machineryBrand = row.machineryBrand;
+    },
+    //自动生成编码
+    handleAutoGenChange(autoGenFlag) {
+      if (autoGenFlag) {
+        genCode("REPAIR_CODE").then((response) => {
+          this.form.repairCode = response;
+        });
+      } else {
+        this.form.repairCode = null;
+      }
+    },
+  },
+};
+</script>
+<style scoped lang="scss">
+.dialog-title {
+  width: 100%;
+  display: flex;
+  i {
+    display: block;
+    width: 5px;
+    height: 20px;
+    background: #4095e5;
+  }
+  .title {
+    margin-left: 10px;
+    font-size: 16px;
+  }
+}
+</style>

+ 261 - 0
src/views/mes/hw/type/line.vue

@@ -0,0 +1,261 @@
+<template>
+  <div class="app-container">
+    
+    <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="['mes:dv:repair:add']"
+        >新增</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="['mes:dv:repair:remove']"
+        >删除</el-button>
+      </el-col>
+      <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
+    </el-row>
+
+    <el-table v-loading="loading" :data="repairlineList" @selection-change="handleSelectionChange">
+      <el-table-column type="selection" width="55" align="center" />
+      <el-table-column label="项目名称" align="center" prop="subjectName" />
+      <el-table-column label="故障描述" align="center" prop="malfunction" >
+        <template slot-scope="scope">
+          <el-input type="textarea">{{scope.row.malfunction}}</el-input>
+        </template>
+      </el-table-column>
+      <el-table-column label="故障描述资源" align="center" prop="malfunctionUrl" >
+        
+      </el-table-column>
+      <el-table-column label="维修情况" align="center" prop="repairDes" />
+      <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="['mes:dv:repair:edit']"
+          >修改</el-button>
+          <el-button
+            size="mini"
+            type="text"
+            icon="el-icon-delete"
+            @click="handleDelete(scope.row)"
+            v-hasPermi="['mes:dv:repair: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="960px" append-to-body>
+      <el-form ref="form" :model="form" :rules="rules" label-width="100px">       
+        <el-form-item label="项目名称" prop="subjectName">
+          <el-input v-model="form.subjectName" placeholder="请输入项目名称" />
+        </el-form-item>        
+        <el-form-item label="故障描述" prop="malfunction">
+          <el-input v-model="form.malfunction" type="textarea" placeholder="请输入内容" />
+        </el-form-item>
+        <el-form-item label="故障描述资源" prop="malfunctionUrl">
+          <el-input type="textarea" v-model="form.malfunctionUrl" placeholder="请输入故障描述资源" />
+        </el-form-item>
+        <el-form-item label="维修情况" prop="repairDes">
+          <el-input  v-model="form.repairDes" type="textarea" placeholder="请输入内容" />
+        </el-form-item>
+      </el-form>
+      <div slot="footer" class="dialog-footer">
+        <el-button type="primary" @click="submitForm">确 定</el-button>
+        <el-button @click="cancel">取 消</el-button>
+      </div>
+    </el-dialog>
+  </div>
+</template>
+
+<script>
+import { listRepairline, getRepairline, delRepairline, addRepairline, updateRepairline } from "@/api/mes/dv/repairline";
+
+export default {
+  name: "Repairline",
+  props: {
+    repairId: null,
+    optType: undefined
+  },
+  data() {
+    return {
+      // 遮罩层
+      loading: true,
+      // 选中数组
+      ids: [],
+      // 非单个禁用
+      single: true,
+      // 非多个禁用
+      multiple: true,
+      // 显示搜索条件
+      showSearch: true,
+      // 总条数
+      total: 0,
+      // 设备维修单行表格数据
+      repairlineList: [],
+      // 弹出层标题
+      title: "",
+      // 是否显示弹出层
+      open: false,
+      // 查询参数
+      queryParams: {
+        pageNum: 1,
+        pageSize: 10,
+        repairId: this.repairId,
+        subjectId: null,
+        subjectCode: null,
+        subjectName: null,
+        subjectType: null,
+        subjectContent: null,
+        subjectStandard: null,
+        malfunction: null,
+        malfunctionUrl: null,
+        repairDes: null,
+      },
+      // 表单参数
+      form: {},
+      // 表单校验
+      rules: {
+        malfunction: [
+          { required: true, message: "故障描述不能为空", trigger: "blur" }
+        ],
+      }
+    };
+  },
+  created() {
+    this.getList();
+  },
+  methods: {
+    /** 查询设备维修单行列表 */
+    getList() {
+      this.loading = true;
+      listRepairline(this.queryParams).then(response => {
+        this.repairlineList = response.rows;
+        this.total = response.total;
+        this.loading = false;
+      });
+    },
+    // 取消按钮
+    cancel() {
+      this.open = false;
+      this.reset();
+    },
+    // 表单重置
+    reset() {
+      this.form = {
+        lineId: null,
+        repairId: this.repairId,
+        subjectId: null,
+        subjectCode: null,
+        subjectName: null,
+        subjectType: null,
+        subjectContent: null,
+        subjectStandard: null,
+        malfunction: null,
+        malfunctionUrl: null,
+        repairDes: null,
+        remark: null,
+        attr1: null,
+        attr2: null,
+        attr3: null,
+        attr4: null,
+        createBy: null,
+        createTime: null,
+        updateBy: null,
+        updateTime: null
+      };
+      this.resetForm("form");
+    },
+    /** 搜索按钮操作 */
+    handleQuery() {
+      this.queryParams.pageNum = 1;
+      this.getList();
+    },
+    /** 重置按钮操作 */
+    resetQuery() {
+      this.resetForm("queryForm");
+      this.handleQuery();
+    },
+    // 多选框选中数据
+    handleSelectionChange(selection) {
+      this.ids = selection.map(item => item.lineId)
+      this.single = selection.length!==1
+      this.multiple = !selection.length
+    },
+    /** 新增按钮操作 */
+    handleAdd() {
+      this.reset();
+      this.open = true;
+      this.title = "添加设备维修单行";
+    },
+    /** 修改按钮操作 */
+    handleUpdate(row) {
+      this.reset();
+      const lineId = row.lineId || this.ids
+      getRepairline(lineId).then(response => {
+        this.form = response.data;
+        this.open = true;
+        this.title = "修改设备维修单行";
+      });
+    },
+    /** 提交按钮 */
+    submitForm() {
+      this.$refs["form"].validate(valid => {
+        if (valid) {
+          if (this.form.lineId != null) {
+            updateRepairline(this.form).then(response => {
+              this.$modal.msgSuccess("修改成功");
+              this.open = false;
+              this.getList();
+            });
+          } else {
+            addRepairline(this.form).then(response => {
+              this.$modal.msgSuccess("新增成功");
+              this.open = false;
+              this.getList();
+            });
+          }
+        }
+      });
+    },
+    /** 删除按钮操作 */
+    handleDelete(row) {
+      const lineIds = row.lineId || this.ids;
+      this.$modal.confirm('是否确认删除设备维修单行编号为"' + lineIds + '"的数据项?').then(function() {
+        return delRepairline(lineIds);
+      }).then(() => {
+        this.getList();
+        this.$modal.msgSuccess("删除成功");
+      }).catch(() => {});
+    },
+    /** 导出按钮操作 */
+    handleExport() {
+      this.download('dv/repairline/export', {
+        ...this.queryParams
+      }, `repairline_${new Date().getTime()}.xlsx`)
+    }
+  }
+};
+</script>