Browse Source

线路、计划基础代码

459242451@qq.com 3 years ago
parent
commit
fcd5203a22

+ 44 - 0
src/api/qdtl/line.js

@@ -0,0 +1,44 @@
+import request from '@/utils/request'
+
+// 查询巡检线路管理列表
+export function listLine(query) {
+  return request({
+    url: '/qdtl/line/list',
+    method: 'get',
+    params: query
+  })
+}
+
+// 查询巡检线路管理详细
+export function getLine(id) {
+  return request({
+    url: '/qdtl/line/' + id,
+    method: 'get'
+  })
+}
+
+// 新增巡检线路管理
+export function addLine(data) {
+  return request({
+    url: '/qdtl/line',
+    method: 'post',
+    data: data
+  })
+}
+
+// 修改巡检线路管理
+export function updateLine(data) {
+  return request({
+    url: '/qdtl/line',
+    method: 'put',
+    data: data
+  })
+}
+
+// 删除巡检线路管理
+export function delLine(id) {
+  return request({
+    url: '/qdtl/line/' + id,
+    method: 'delete'
+  })
+}

+ 44 - 0
src/api/qdtl/lineLocation.js

@@ -0,0 +1,44 @@
+import request from '@/utils/request'
+
+// 查询巡检线路点位列表
+export function listLocation(query) {
+  return request({
+    url: '/qdtl/lineLocation/list',
+    method: 'get',
+    params: query
+  })
+}
+
+// 查询巡检线路点位详细
+export function getLocation(id) {
+  return request({
+    url: '/qdtl/lineLocation/' + id,
+    method: 'get'
+  })
+}
+
+// 新增巡检线路点位
+export function addLocation(data) {
+  return request({
+    url: '/qdtl/lineLocation',
+    method: 'post',
+    data: data
+  })
+}
+
+// 修改巡检线路点位
+export function updateLocation(data) {
+  return request({
+    url: '/qdtl/lineLocation',
+    method: 'put',
+    data: data
+  })
+}
+
+// 删除巡检线路点位
+export function delLocation(id) {
+  return request({
+    url: '/qdtl/lineLocation/' + id,
+    method: 'delete'
+  })
+}

+ 44 - 0
src/api/qdtl/plan.js

@@ -0,0 +1,44 @@
+import request from '@/utils/request'
+
+// 查询巡检计划管理列表
+export function listPlan(query) {
+  return request({
+    url: '/qdtl/plan/list',
+    method: 'get',
+    params: query
+  })
+}
+
+// 查询巡检计划管理详细
+export function getPlan(id) {
+  return request({
+    url: '/qdtl/plan/' + id,
+    method: 'get'
+  })
+}
+
+// 新增巡检计划管理
+export function addPlan(data) {
+  return request({
+    url: '/qdtl/plan',
+    method: 'post',
+    data: data
+  })
+}
+
+// 修改巡检计划管理
+export function updatePlan(data) {
+  return request({
+    url: '/qdtl/plan',
+    method: 'put',
+    data: data
+  })
+}
+
+// 删除巡检计划管理
+export function delPlan(id) {
+  return request({
+    url: '/qdtl/plan/' + id,
+    method: 'delete'
+  })
+}

+ 44 - 0
src/api/qdtl/planUser.js

@@ -0,0 +1,44 @@
+import request from '@/utils/request'
+
+// 查询巡检计划人员关系列表
+export function listUser(query) {
+  return request({
+    url: '/qdtl/planUser/list',
+    method: 'get',
+    params: query
+  })
+}
+
+// 查询巡检计划人员关系详细
+export function getUser(id) {
+  return request({
+    url: '/qdtl/planUser/' + id,
+    method: 'get'
+  })
+}
+
+// 新增巡检计划人员关系
+export function addUser(data) {
+  return request({
+    url: '/qdtl/planUser',
+    method: 'post',
+    data: data
+  })
+}
+
+// 修改巡检计划人员关系
+export function updateUser(data) {
+  return request({
+    url: '/qdtl/planUser',
+    method: 'put',
+    data: data
+  })
+}
+
+// 删除巡检计划人员关系
+export function delUser(id) {
+  return request({
+    url: '/qdtl/planUser/' + id,
+    method: 'delete'
+  })
+}

+ 333 - 0
src/views/qdtl/line/index.vue

@@ -0,0 +1,333 @@
+<template>
+  <div class="app-container">
+    <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="68px">
+      <el-form-item label="编号" prop="lineCode">
+        <el-input
+          v-model="queryParams.lineCode"
+          placeholder="请输入编号"
+          clearable
+          size="small"
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+      <el-form-item label="名称" prop="lineName">
+        <el-input
+          v-model="queryParams.lineName"
+          placeholder="请输入名称"
+          clearable
+          size="small"
+          @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="['qdtl:line: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="['qdtl:line: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="['qdtl:line:remove']"
+        >删除</el-button>
+      </el-col>
+      <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
+    </el-row>
+
+    <el-table v-loading="loading" :data="lineList" @selection-change="handleSelectionChange">
+      <el-table-column type="selection" width="55" align="center" />
+      <el-table-column label="线路编号" align="center" prop="lineCode" />
+      <el-table-column label="线路名称" align="center" prop="lineName" />
+      <el-table-column label="线路巡检点数" align="center" prop="lineLocationNum" />
+      <el-table-column label="线路描述" align="center" prop="detail" />
+      <el-table-column label="备注信息" align="center" prop="remark" />
+<!--      <el-table-column label="拍照" align="center" prop="photo">
+        <template slot-scope="scope">
+          <dict-tag :options="dict.type.sys_yes_no" :value="scope.row.photo"/>
+        </template>
+      </el-table-column>
+      <el-table-column label="录音" align="center" prop="voice">
+        <template slot-scope="scope">
+          <dict-tag :options="dict.type.sys_yes_no" :value="scope.row.voice"/>
+        </template>
+      </el-table-column>
+      <el-table-column label="视频" align="center" prop="video">
+        <template slot-scope="scope">
+          <dict-tag :options="dict.type.sys_yes_no" :value="scope.row.video"/>
+        </template>
+      </el-table-column>
+      <el-table-column label="附件文本" align="center" prop="annex">
+        <template slot-scope="scope">
+          <dict-tag :options="dict.type.sys_yes_no" :value="scope.row.annex"/>
+        </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="['qdtl:line:edit']"
+          >修改</el-button>
+          <el-button
+            size="mini"
+            type="text"
+            icon="el-icon-delete"
+            @click="handleDelete(scope.row)"
+            v-hasPermi="['qdtl:line: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="lineCode">
+          <el-input v-model="form.lineCode" placeholder="请输入编号" />
+        </el-form-item>
+        <el-form-item label="名称" prop="lineName">
+          <el-input v-model="form.lineName" placeholder="请输入名称" />
+        </el-form-item>
+        <el-form-item label="描述" prop="detail">
+          <el-input v-model="form.detail" placeholder="请输入描述" />
+        </el-form-item>
+        <el-form-item label="备注" prop="remark">
+          <el-input v-model="form.remark" placeholder="请输入备注" />
+        </el-form-item>
+        <el-form-item label="是否需要拍照">
+          <el-radio-group v-model="form.photo">
+            <el-radio
+              v-for="dict in dict.type.sys_yes_no"
+              :key="dict.value"
+:label="dict.value"
+            >{{dict.label}}</el-radio>
+          </el-radio-group>
+        </el-form-item>
+        <el-form-item label="是否需要录音">
+          <el-radio-group v-model="form.voice">
+            <el-radio
+              v-for="dict in dict.type.sys_yes_no"
+              :key="dict.value"
+:label="dict.value"
+            >{{dict.label}}</el-radio>
+          </el-radio-group>
+        </el-form-item>
+        <el-form-item label="是否需要视频">
+          <el-radio-group v-model="form.video">
+            <el-radio
+              v-for="dict in dict.type.sys_yes_no"
+              :key="dict.value"
+:label="dict.value"
+            >{{dict.label}}</el-radio>
+          </el-radio-group>
+        </el-form-item>
+        <el-form-item label="是否需要附件文本">
+          <el-radio-group v-model="form.annex">
+            <el-radio
+              v-for="dict in dict.type.sys_yes_no"
+              :key="dict.value"
+:label="dict.value"
+            >{{dict.label}}</el-radio>
+          </el-radio-group>
+        </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 { listLine, getLine, delLine, addLine, updateLine } from "@/api/qdtl/line";
+
+export default {
+  name: "Line",
+  dicts: ['sys_yes_no'],
+  data() {
+    return {
+      // 遮罩层
+      loading: true,
+      // 选中数组
+      ids: [],
+      // 非单个禁用
+      single: true,
+      // 非多个禁用
+      multiple: true,
+      // 显示搜索条件
+      showSearch: true,
+      // 总条数
+      total: 0,
+      // 巡检线路管理表格数据
+      lineList: [],
+      // 弹出层标题
+      title: "",
+      // 是否显示弹出层
+      open: false,
+      // 查询参数
+      queryParams: {
+        pageNum: 1,
+        pageSize: 10,
+        lineCode: null,
+        lineName: null,
+      },
+      // 表单参数
+      form: {},
+      // 表单校验
+      rules: {
+        lineCode: [
+          { required: true, message: "编号不能为空", trigger: "blur" }
+        ],
+        lineName: [
+          { required: true, message: "名称不能为空", trigger: "blur" }
+        ],
+      }
+    };
+  },
+  created() {
+    this.getList();
+  },
+  methods: {
+    /** 查询巡检线路管理列表 */
+    getList() {
+      this.loading = true;
+      listLine(this.queryParams).then(response => {
+        this.lineList = response.rows;
+        this.total = response.total;
+        this.loading = false;
+      });
+    },
+    // 取消按钮
+    cancel() {
+      this.open = false;
+      this.reset();
+    },
+    // 表单重置
+    reset() {
+      this.form = {
+        id: null,
+        lineCode: null,
+        lineName: null,
+        detail: null,
+        areaId: null,
+        remark: null,
+        photo: "0",
+        voice: "0",
+        video: "0",
+        annex: "0",
+        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.id)
+      this.single = selection.length!==1
+      this.multiple = !selection.length
+    },
+    /** 新增按钮操作 */
+    handleAdd() {
+      this.reset();
+      this.open = true;
+      this.title = "添加巡检线路管理";
+    },
+    /** 修改按钮操作 */
+    handleUpdate(row) {
+      this.reset();
+      const id = row.id || this.ids
+      getLine(id).then(response => {
+        this.form = response.data;
+        this.open = true;
+        this.title = "修改巡检线路管理";
+      });
+    },
+    /** 提交按钮 */
+    submitForm() {
+      this.$refs["form"].validate(valid => {
+        if (valid) {
+          if (this.form.id != null) {
+            updateLine(this.form).then(response => {
+              this.$modal.msgSuccess("修改成功");
+              this.open = false;
+              this.getList();
+            });
+          } else {
+            addLine(this.form).then(response => {
+              this.$modal.msgSuccess("新增成功");
+              this.open = false;
+              this.getList();
+            });
+          }
+        }
+      });
+    },
+    /** 删除按钮操作 */
+    handleDelete(row) {
+      const ids = row.id || this.ids;
+      this.$modal.confirm('是否确认删除巡检线路管理编号为"' + ids + '"的数据项?').then(function() {
+        return delLine(ids);
+      }).then(() => {
+        this.getList();
+        this.$modal.msgSuccess("删除成功");
+      }).catch(() => {});
+    },
+    /** 导出按钮操作 */
+    handleExport() {
+      this.download('qdtl/line/export', {
+        ...this.queryParams
+      }, `line_${new Date().getTime()}.xlsx`)
+    }
+  }
+};
+</script>

+ 332 - 0
src/views/qdtl/plan/index.vue

@@ -0,0 +1,332 @@
+<template>
+  <div class="app-container">
+    <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="68px">
+      <el-form-item label="编号" prop="planCode">
+        <el-input
+          v-model="queryParams.planCode"
+          placeholder="请输入编号"
+          clearable
+          size="small"
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+      <el-form-item label="名称" prop="planName">
+        <el-input
+          v-model="queryParams.planName"
+          placeholder="请输入名称"
+          clearable
+          size="small"
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+      <el-form-item label="类型" prop="planType">
+        <el-select v-model="queryParams.planType" placeholder="请选择类型" clearable size="small">
+          <el-option
+            v-for="dict in dict.type.tl_plan_type"
+            :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="['qdtl:plan: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="['qdtl:plan: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="['qdtl:plan: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="['qdtl:plan:export']"
+        >导出</el-button>
+      </el-col>
+      <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
+    </el-row>
+
+    <el-table v-loading="loading" :data="planList" @selection-change="handleSelectionChange">
+      <el-table-column type="selection" width="55" align="center" />
+      <el-table-column label="计划编号" align="center" prop="planCode" />
+      <el-table-column label="计划名称" align="center" prop="planName" />
+<!--      <el-table-column label="类型" align="center" prop="planType">
+        <template slot-scope="scope">
+          <dict-tag :options="dict.type.tl_plan_type" :value="scope.row.planType"/>
+        </template>
+      </el-table-column>-->
+      <el-table-column label="开始时间" align="center" prop="startDate" width="180">
+        <template slot-scope="scope">
+          <span>{{ parseTime(scope.row.startDate, '{y}-{m}-{d}') }}</span>
+        </template>
+      </el-table-column>
+      <el-table-column label="结束时间" align="center" prop="endDate" width="180">
+        <template slot-scope="scope">
+          <span>{{ parseTime(scope.row.endDate, '{y}-{m}-{d}') }}</span>
+        </template>
+      </el-table-column>
+      <el-table-column label="执行人" align="center" prop="planUser" />
+<!--      <el-table-column label="线路id" align="center" prop="lineId" />
+      <el-table-column label="计划分数" align="center" prop="score" />-->
+      <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="['qdtl:plan:edit']"
+          >修改</el-button>
+          <el-button
+            size="mini"
+            type="text"
+            icon="el-icon-delete"
+            @click="handleDelete(scope.row)"
+            v-hasPermi="['qdtl:plan: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="planCode">
+          <el-input v-model="form.planCode" placeholder="请输入编号" />
+        </el-form-item>
+        <el-form-item label="名称" prop="planName">
+          <el-input v-model="form.planName" placeholder="请输入名称" />
+        </el-form-item>
+        <el-form-item label="类型" prop="planType">
+          <el-select v-model="form.planType" placeholder="请选择类型">
+            <el-option
+              v-for="dict in dict.type.tl_plan_type"
+              :key="dict.value"
+              :label="dict.label"
+:value="dict.value"
+            ></el-option>
+          </el-select>
+        </el-form-item>
+        <el-form-item label="开始时间" prop="startDate">
+          <el-date-picker clearable size="small"
+            v-model="form.startDate"
+            type="date"
+            value-format="yyyy-MM-dd"
+            placeholder="选择开始时间">
+          </el-date-picker>
+        </el-form-item>
+        <el-form-item label="结束时间" prop="endDate">
+          <el-date-picker clearable size="small"
+            v-model="form.endDate"
+            type="date"
+            value-format="yyyy-MM-dd"
+            placeholder="选择结束时间">
+          </el-date-picker>
+        </el-form-item>
+        <el-form-item label="计划分数" prop="score">
+          <el-input v-model="form.score" placeholder="请输入计划分数" />
+        </el-form-item>
+        <el-form-item label="备注" prop="remark">
+          <el-input v-model="form.remark" 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 { listPlan, getPlan, delPlan, addPlan, updatePlan } from "@/api/qdtl/plan";
+
+export default {
+  name: "Plan",
+  dicts: ['tl_plan_type'],
+  data() {
+    return {
+      // 遮罩层
+      loading: true,
+      // 选中数组
+      ids: [],
+      // 非单个禁用
+      single: true,
+      // 非多个禁用
+      multiple: true,
+      // 显示搜索条件
+      showSearch: true,
+      // 总条数
+      total: 0,
+      // 巡检计划管理表格数据
+      planList: [],
+      // 弹出层标题
+      title: "",
+      // 是否显示弹出层
+      open: false,
+      // 查询参数
+      queryParams: {
+        pageNum: 1,
+        pageSize: 10,
+        planCode: null,
+        planName: null,
+        planType: null,
+      },
+      // 表单参数
+      form: {},
+      // 表单校验
+      rules: {
+      }
+    };
+  },
+  created() {
+    this.getList();
+  },
+  methods: {
+    /** 查询巡检计划管理列表 */
+    getList() {
+      this.loading = true;
+      listPlan(this.queryParams).then(response => {
+        this.planList = response.rows;
+        this.total = response.total;
+        this.loading = false;
+      });
+    },
+    // 取消按钮
+    cancel() {
+      this.open = false;
+      this.reset();
+    },
+    // 表单重置
+    reset() {
+      this.form = {
+        id: null,
+        planCode: null,
+        planName: null,
+        planType: null,
+        startDate: null,
+        endDate: null,
+        lineId: null,
+        score: 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.id)
+      this.single = selection.length!==1
+      this.multiple = !selection.length
+    },
+    /** 新增按钮操作 */
+    handleAdd() {
+      this.reset();
+      this.open = true;
+      this.title = "添加巡检计划管理";
+    },
+    /** 修改按钮操作 */
+    handleUpdate(row) {
+      this.reset();
+      const id = row.id || this.ids
+      getPlan(id).then(response => {
+        this.form = response.data;
+        this.open = true;
+        this.title = "修改巡检计划管理";
+      });
+    },
+    /** 提交按钮 */
+    submitForm() {
+      this.$refs["form"].validate(valid => {
+        if (valid) {
+          if (this.form.id != null) {
+            updatePlan(this.form).then(response => {
+              this.$modal.msgSuccess("修改成功");
+              this.open = false;
+              this.getList();
+            });
+          } else {
+            addPlan(this.form).then(response => {
+              this.$modal.msgSuccess("新增成功");
+              this.open = false;
+              this.getList();
+            });
+          }
+        }
+      });
+    },
+    /** 删除按钮操作 */
+    handleDelete(row) {
+      const ids = row.id || this.ids;
+      this.$modal.confirm('是否确认删除巡检计划管理编号为"' + ids + '"的数据项?').then(function() {
+        return delPlan(ids);
+      }).then(() => {
+        this.getList();
+        this.$modal.msgSuccess("删除成功");
+      }).catch(() => {});
+    },
+    /** 导出按钮操作 */
+    handleExport() {
+      this.download('qdtl/plan/export', {
+        ...this.queryParams
+      }, `plan_${new Date().getTime()}.xlsx`)
+    }
+  }
+};
+</script>