From facb80c84fb77e0003213572cfa1851017286584 Mon Sep 17 00:00:00 2001
From: su1124 <1583764726@qq.com>
Date: 星期五, 08 三月 2024 14:43:23 +0800
Subject: [PATCH] su

---
 src/views/team/teams/index.vue | 1484 +++++++++++++++++++++++++++++++++--------------------------
 1 files changed, 827 insertions(+), 657 deletions(-)

diff --git a/src/views/team/teams/index.vue b/src/views/team/teams/index.vue
index e8b90c4..57b85f1 100644
--- a/src/views/team/teams/index.vue
+++ b/src/views/team/teams/index.vue
@@ -1,719 +1,889 @@
 <template>
-    <div class="app-container">
-        <el-row :gutter="10" class="mb8">
-            <el-col :span="1.5">
-                <el-form :model="objs" :rules="rules" ref="form" size="small" :inline="true" label-width="80px">
-                    <el-form-item label="鍗曚綅鍚嶇О" prop="firmId">
-                        <el-select :remote-method="getRemoteData" v-model="objs.firmId" remote filterable
-                            style="width: 200px" placeholder="璇烽�夋嫨鍗曚綅鍚嶇О" clearable @change="idFn">
-                            <el-option v-for="dict in CompanyList" :key="dict.cnName" :label="dict.cnName"
-                                :value="dict.drugManufacturerId" />
-                        </el-select>
-                    </el-form-item>
-                    <el-form-item label="閮ㄩ棬" prop="dwDeptId">
-                        <el-select v-model="objs.dwDeptId" placeholder="璇烽�夋嫨閮ㄩ棬" style="width: 200px" clearable
-                            @change="idBm">
-                            <el-option v-for="dict in deptList" :key="dict.id" :label="dict.dwDeptName" :value="dict.id" />
-                        </el-select>
-                    </el-form-item>
-                    <el-form-item label="鍒嗙粍" prop="groupId">
-                        <el-select v-model="objs.groupId" placeholder="璇烽�夋嫨缁撶畻鏂瑰紡" style="width: 200px" clearable>
-                            <el-option v-for="dict in groupingList" :key="dict.id" :label="dict.groupingName"
-                                :value="dict.id" />
-                        </el-select>
-                    </el-form-item>
-                    <el-form-item label="鐧昏鏃堕棿" prop="createTimeList">
-                        <el-date-picker v-model="createTimeList" type="datetimerange" align="right"
-                            :picker-options="pickerOptions" style="width: 260px" start-placeholder="寮�濮嬫棩鏈�"
-                            end-placeholder="缁撴潫鏃ユ湡" format="yyyy-MM-dd" value-format="yyyy-MM-dd"
-                            @change="dateChangebirthday1">
-                        </el-date-picker>
-                    </el-form-item>
-                </el-form>
+  <div class="app-container">
+    <el-row :gutter="10" class="mb8">
+      <el-col :span="1.5">
+        <el-form
+          :model="objs"
+          :rules="rules"
+          ref="form"
+          size="small"
+          :inline="true"
+          label-width="80px"
+        >
+          <el-form-item label="鍗曚綅鍚嶇О" prop="firmId">
+            <el-select
+              :remote-method="getRemoteData"
+              v-model="objs.firmId"
+              remote
+              filterable
+              style="width: 200px"
+              placeholder="璇烽�夋嫨鍗曚綅鍚嶇О"
+              clearable
+              @change="idFn"
+            >
+              <el-option
+                v-for="dict in CompanyList"
+                :key="dict.cnName"
+                :label="dict.cnName"
+                :value="dict.drugManufacturerId"
+              />
+            </el-select>
+          </el-form-item>
+          <el-form-item label="閮ㄩ棬" prop="dwDeptId">
+            <el-select
+              v-model="objs.dwDeptId"
+              placeholder="璇烽�夋嫨閮ㄩ棬"
+              style="width: 200px"
+              clearable
+              @change="idBm"
+            >
+              <el-option
+                v-for="dict in deptList"
+                :key="dict.id"
+                :label="dict.dwDeptName"
+                :value="dict.id"
+              />
+            </el-select>
+          </el-form-item>
+          <el-form-item label="鍒嗙粍" prop="groupId">
+            <el-select
+              v-model="objs.groupId"
+              placeholder="璇烽�夋嫨缁撶畻鏂瑰紡"
+              style="width: 200px"
+              clearable
+            >
+              <el-option
+                v-for="dict in groupingList"
+                :key="dict.id"
+                :label="dict.groupingName"
+                :value="dict.id"
+              />
+            </el-select>
+          </el-form-item>
+          <el-form-item label="鐧昏鏃堕棿" prop="createTimeList">
+            <el-date-picker
+              v-model="createTimeList"
+              type="datetimerange"
+              align="right"
+              :picker-options="pickerOptions"
+              start-placeholder="寮�濮嬫棩鏈�"
+              end-placeholder="缁撴潫鏃ユ湡"
+              :default-time="['00:00:00', '23:59:00']"
+              format="yyyy-MM-dd HH:mm"
+              value-format="yyyy-MM-dd HH:mm"
+              @change="dateChangebirthday1"
+            >
+            </el-date-picker>
+          </el-form-item>
+        </el-form>
+      </el-col>
+      <el-col :span="1.5">
+        <el-button
+          type="primary"
+          size="mini"
+          @click="handlequery"
+          v-hasPermi="['system:user:import']"
+          >鏌ヨ</el-button
+        >
+      </el-col>
+    </el-row>
 
-            </el-col>
-            <el-col :span="1.5">
-                <el-button type="primary" size="mini" @click="handlequery"
-                    v-hasPermi="['system:user:import']">鏌ヨ</el-button>
-            </el-col>
-
-        </el-row>
-
-        <div style="margin: 5px 20px;width: 94%">
-            <el-row :gutter="10" class="mb8">
-                <!-- <el-col :span="1.5">
+    <div style="margin: 5px 20px; width: 94%">
+      <el-row :gutter="10" class="mb8">
+        <!-- <el-col :span="1.5">
                     <el-button type="primary" size="mini" :disabled="single" @click="handleTeamfees">淇濆瓨鍥㈤槦鏀惰垂鏄庣粏</el-button>
                 </el-col> -->
-                <el-col :span="1.5">
-                    <el-button type="primary" size="mini" @click="handleAll">鏌ョ湅璇︾粏淇℃伅</el-button>
-                </el-col>
-                <el-col :span="1.5">
-                    <el-button type="primary" size="mini" @click="handleothen"
-                        v-hasPermi="['system:user:import']">瀵煎嚭鍥㈤槦淇℃伅</el-button>
-                </el-col>
-            </el-row>
-            <div style="display: flex;" v-if="userList.length != 0">
-                <div>浜烘暟鍚堣锛歿{ Listdata.all }}</div>
-                <div style="margin: 0 20px;">妫�涓細{{ Listdata.jianzhong }}</div>
-                <div style="margin: 0 15px;">鏈锛歿{ Listdata.weijian }}</div>
-                <div>宸插畬鎴愶細{{ Listdata.yijian }}</div>
-            </div>
-            <el-table v-loading="loading" ref="tree" :data="userList" border @selection-change="handleSelectionChange">
-                <el-table-column label="鐘舵��" align="center" prop="tjStatus" width="75">
-                    <template slot-scope="scope">
-                        <dict-tag :options="dict.type.tj_status" :value="scope.row.tjStatus" />
-                    </template>
-                </el-table-column>
-                <el-table-column label="浣撴鍙�" align="center" prop="tjNumber" width="165" />
-                <el-table-column label="濮撳悕" align="center" prop="name" width="75" />
-                <el-table-column label="鎬у埆" align="center" prop="sex" width="75">
-                    <template slot-scope="scope">
-                        <dict-tag :options="dict.type.sys_user_sex" :value="scope.row.sex" />
-                    </template>
-                </el-table-column>
-                <el-table-column label="骞撮緞" align="center" prop="age" width="120" />
-                <el-table-column label="鑱旂郴鐢佃瘽" align="center" prop="phoe" width="120" />
-                <el-table-column label="韬唤璇佸彿" align="center" prop="idCard" width="200" />
-                <el-table-column label="鍗曚綅鍚嶇О" align="center" prop="company" width="200" />
-                <el-table-column label="閮ㄩ棬" align="center" prop="department" />
-                <el-table-column label="鍒嗙粍" align="center" prop="groupingName" />
-                <el-table-column label="鍒涘缓鏃堕棿" align="center" prop="updateTime" width="165" />
-                <el-table-column label="棰勭害鏃堕棿" align="center" prop="reservationTime" />
-            </el-table>
-        </div>
+        <el-col :span="1.5">
+          <el-button type="primary" size="mini" @click="handleAll"
+            >鏌ョ湅璇︾粏淇℃伅</el-button
+          >
+        </el-col>
+        <el-col :span="1.5">
+          <el-button
+            type="primary"
+            size="mini"
+            @click="handleothen"
+            v-hasPermi="['system:user:import']"
+            >瀵煎嚭鍥㈤槦淇℃伅</el-button
+          >
+        </el-col>
+      </el-row>
+      <div style="display: flex" v-if="userList.length != 0">
+        <div>浜烘暟鍚堣锛歿{ Listdata.all }}</div>
+        <div style="margin: 0 20px">妫�涓細{{ Listdata.jianzhong }}</div>
+        <div style="margin: 0 15px">鏈锛歿{ Listdata.weijian }}</div>
+        <div>宸插畬鎴愶細{{ Listdata.yijian }}</div>
+      </div>
+      <el-table
+        v-loading="loading"
+        ref="tree"
+        :data="userList"
+        border
+        @selection-change="handleSelectionChange"
+      >
+        <el-table-column label="鐘舵��" align="center" prop="tjStatus" width="75">
+          <template slot-scope="scope">
+            <dict-tag
+              :options="dict.type.tj_status"
+              :value="scope.row.tjStatus"
+            />
+          </template>
+        </el-table-column>
+        <el-table-column
+          label="浣撴鍙�"
+          align="center"
+          prop="tjNumber"
+          width="165"
+        />
+        <el-table-column label="濮撳悕" align="center" prop="name" width="75" />
+        <el-table-column label="鎬у埆" align="center" prop="sex" width="75">
+          <template slot-scope="scope">
+            <dict-tag
+              :options="dict.type.sys_user_sex"
+              :value="scope.row.sex"
+            />
+          </template>
+        </el-table-column>
+        <el-table-column label="骞撮緞" align="center" prop="age" width="120" />
+        <el-table-column
+          label="鑱旂郴鐢佃瘽"
+          align="center"
+          prop="phoe"
+          width="120"
+        />
+        <el-table-column
+          label="韬唤璇佸彿"
+          align="center"
+          prop="idCard"
+          width="200"
+        />
+        <el-table-column
+          label="鍗曚綅鍚嶇О"
+          align="center"
+          prop="company"
+          width="200"
+        />
+        <el-table-column label="閮ㄩ棬" align="center" prop="department" />
+        <el-table-column label="鍒嗙粍" align="center" prop="groupingName" />
+        <el-table-column
+          label="鍒涘缓鏃堕棿"
+          align="center"
+          prop="updateTime"
+          width="165"
+        />
+        <el-table-column
+          label="棰勭害鏃堕棿"
+          align="center"
+          prop="reservationTime"
+        />
+      </el-table>
+    </div>
 
+    <!-- 鏌ョ湅璇︾粏淇℃伅瀵硅瘽妗� -->
+    <div class="dia">
+      <el-dialog
+        :title="title"
+        :visible.sync="open"
+        width="1300px"
+        append-to-body
+      >
+        <el-row :gutter="10" class="mb8">
+          <el-col :span="1.5">
+            <el-input
+              v-model="bingZhong"
+              placeholder="璇疯緭鍏ョ梾绉嶅悕绉�"
+              clearable
+              @keyup.enter.native="handleQuery1"
+              style="width: 160px"
+            />
+          </el-col>
 
-        <!-- 鏌ョ湅璇︾粏淇℃伅瀵硅瘽妗� -->
-        <div class="dia">
-            <el-dialog :title="title" :visible.sync="open" width="1300px" append-to-body>
-                <el-row :gutter="10" class="mb8">
-                    <el-col :span="1.5">
-                        <el-input v-model="bingZhong" placeholder="璇疯緭鍏ョ梾绉嶅悕绉�" clearable @keyup.enter.native="handleQuery1"
-                            style="width: 160px;" />
-                    </el-col>
-
-                    <!-- <el-col :span="1.5">
+          <!-- <el-col :span="1.5">
                         <el-button type="primary" size="mini" :disabled="single" @click="handlecan"
                             style="margin-top: 5px;">鏌ョ湅</el-button>
                     </el-col> -->
-                    <el-col :span="1.5">
-                        <el-button type="primary" size="mini" @click="handlesetup" v-hasPermi="['system:user:import']"
-                            style="margin-top: 5px;">鏌ョ湅缁熻鍥�</el-button>
-                    </el-col>
-                    <!-- <el-col :span="1.5">
+          <el-col :span="1.5">
+            <el-button
+              type="primary"
+              size="mini"
+              @click="handlesetup"
+              v-hasPermi="['system:user:import']"
+              style="margin-top: 5px"
+              >鏌ョ湅缁熻鍥�</el-button
+            >
+          </el-col>
+          <!-- <el-col :span="1.5">
                         <el-button type="primary" size="mini" @click="handlechart" v-hasPermi="['system:user:import']"
                             style="margin-top: 5px;">鏌ョ湅缁熻鍥�</el-button>
                     </el-col> -->
+        </el-row>
+        <el-row :gutter="20">
+          <!--閮ㄩ棬鏁版嵁-->
+          <el-col :span="7" :xs="24">
+            <el-table
+              v-loading="loading"
+              ref="treeTable"
+              :data="ListdataAll"
+              height="500"
+              border
+              @selection-change="handleChange"
+            >
+              <el-table-column type="selection" width="45"> </el-table-column>
+              <el-table-column
+                label="鐥呯"
+                align="center"
+                prop="rules.bingzhong"
+              />
 
-                </el-row>
-                <el-row :gutter="20">
-                    <!--閮ㄩ棬鏁版嵁-->
-                    <el-col :span="7" :xs="24">
-                        <el-table v-loading="loading" ref="treeTable" :data="ListdataAll" height="500" border
-                            @selection-change="handleChange">
-                            <el-table-column type="selection" width="45">
-                            </el-table-column>
-                            <el-table-column label="鐥呯" align="center" prop="rules.bingzhong" />
+              <el-table-column
+                label="鏁伴噺"
+                align="center"
+                prop="num"
+                width="75"
+              />
+            </el-table>
+          </el-col>
 
-                            <el-table-column label="鏁伴噺" align="center" prop="num" width="75" />
-                        </el-table>
-                    </el-col>
-
-                    <!--鐢ㄦ埛鏁版嵁-->
-                    <el-col :span="16" :xs="24">
-                        <el-table v-loading="loading" ref="tree" :data="orderList" border height="500">
-                            <el-table-column label="鐥呯" align="center" prop="bingzhong" width="100" />
-                            <el-table-column label="浣撴鍙�" align="center" prop="tjNumber" />
-                            <el-table-column label="濮撳悕" align="center" prop="cusName" width="60" />
-                            <el-table-column label="鎬у埆" align="center" prop="cusSex" width="55">
-                                <template slot-scope="scope">
-                                    <dict-tag :options="dict.type.sys_user_sex" :value="scope.row.cusSex" />
-                                </template>
-                            </el-table-column>
-                            <el-table-column label="骞撮緞" align="center" prop="cusAge" width="55" />
-                            <el-table-column label="鍗曚綅鍚嶇О" align="center" prop="dwName" width="150" />
-                            <el-table-column label="閮ㄩ棬" align="center" prop="dwDeptName" />
-                            <el-table-column label="鍒嗙粍" align="center" prop="groupName" width="78" />
-                        </el-table>
-                    </el-col>
-                </el-row>
-            </el-dialog>
-        </div>
-
-        <!-- 鏌ョ湅缁熻鍥� -->
-        <div class="dia">
-            <el-dialog :title="title2" :visible.sync="open2" width="1300px" append-to-body>
-                <div style=" height:620px;margin-top: 10px;">
-                    <div id="main" style="width:95%;height:400px"> </div>
-                </div>
-            </el-dialog>
-        </div>
-
-        <!-- 璁剧疆瀵硅瘽妗� -->
-        <div class="dia">
-            <el-dialog :title="title1" :visible.sync="open1" width="960px" append-to-body>
-                <div style="text-align: center;">
-                    <el-transfer style="text-align: left; display: inline-block;" v-model="value" filterable
-                        :render-content="renderFunc" :titles="['鏄剧ず鐥呯', '闅愯棌鐥呯']" :button-texts="['鏄剧ず', '闅愯棌']"
-                        @change="handleChange1" :data="datalist">
-                    </el-transfer>
-                </div>
-                <div slot="footer" class="dialog-footer2">
-                    <el-button type="primary" @click="submitFormS">鐢熸垚缁熻鍥�</el-button>
-                </div>
-            </el-dialog>
-        </div>
-
+          <!--鐢ㄦ埛鏁版嵁-->
+          <el-col :span="16" :xs="24">
+            <el-table
+              v-loading="loading"
+              ref="tree"
+              :data="orderList"
+              border
+              height="500"
+            >
+              <el-table-column
+                label="鐥呯"
+                align="center"
+                prop="bingzhong"
+                width="100"
+              />
+              <el-table-column label="浣撴鍙�" align="center" prop="tjNumber" />
+              <el-table-column
+                label="濮撳悕"
+                align="center"
+                prop="cusName"
+                width="60"
+              />
+              <el-table-column
+                label="鎬у埆"
+                align="center"
+                prop="cusSex"
+                width="55"
+              >
+                <template slot-scope="scope">
+                  <dict-tag
+                    :options="dict.type.sys_user_sex"
+                    :value="scope.row.cusSex"
+                  />
+                </template>
+              </el-table-column>
+              <el-table-column
+                label="骞撮緞"
+                align="center"
+                prop="cusAge"
+                width="55"
+              />
+              <el-table-column
+                label="鍗曚綅鍚嶇О"
+                align="center"
+                prop="dwName"
+                width="150"
+              />
+              <el-table-column label="閮ㄩ棬" align="center" prop="dwDeptName" />
+              <el-table-column
+                label="鍒嗙粍"
+                align="center"
+                prop="groupName"
+                width="78"
+              />
+            </el-table>
+          </el-col>
+        </el-row>
+      </el-dialog>
     </div>
+
+    <!-- 鏌ョ湅缁熻鍥� -->
+    <div class="dia">
+      <el-dialog
+        :title="title2"
+        :visible.sync="open2"
+        width="1300px"
+        append-to-body
+      >
+        <div style="height: 620px; margin-top: 10px">
+          <div id="main" style="width: 95%; height: 400px"></div>
+        </div>
+      </el-dialog>
+    </div>
+
+    <!-- 璁剧疆瀵硅瘽妗� -->
+    <div class="dia">
+      <el-dialog
+        :title="title1"
+        :visible.sync="open1"
+        width="960px"
+        append-to-body
+      >
+        <div style="text-align: center">
+          <el-transfer
+            style="text-align: left; display: inline-block"
+            v-model="value"
+            filterable
+            :render-content="renderFunc"
+            :titles="['鏄剧ず鐥呯', '闅愯棌鐥呯']"
+            :button-texts="['鏄剧ず', '闅愯棌']"
+            @change="handleChange1"
+            :data="datalist"
+          >
+          </el-transfer>
+        </div>
+        <div slot="footer" class="dialog-footer2">
+          <el-button type="primary" @click="submitFormS">鐢熸垚缁熻鍥�</el-button>
+        </div>
+      </el-dialog>
+    </div>
+  </div>
 </template>
   
 <script>
 import { Deptlist, getDwAndDwDept } from "@/api/system/comp";
 import { getCompany, queryCompany } from "@/api/team/tuanti";
-import { tuanTiListById, tuanTiBingById, tuanTiBingChart } from "@/api/team/teams";
-const echarts = require('echarts/lib/echarts');
-require('echarts/lib/component/title');
-require('echarts/lib/component/tooltip');
-require('echarts/lib/component/legend');
-require('echarts/lib/chart/pie');
+import {
+  tuanTiListById,
+  tuanTiBingById,
+  tuanTiBingChart,
+} from "@/api/team/teams";
+import { getNewDateList } from "@/api/hosp/order";
+import moment from "moment";
+const echarts = require("echarts/lib/echarts");
+require("echarts/lib/component/title");
+require("echarts/lib/component/tooltip");
+require("echarts/lib/component/legend");
+require("echarts/lib/chart/pie");
 
 export default {
-    name: "Tijian",
-    dicts: [
-        "dict_user_national",
-        "dict_user_marry",
-        "sys_yes_no",
-        "sys_user_sex",
-        "reservation_pay_type",
-        "sys_normal_disable",
-        "tj_status"
-    ],
-    data() {
-        let checkPhoneNum = (rule, value, callback) => {
-         console.log( value)
+  name: "Tijian",
+  dicts: [
+    "dict_user_national",
+    "dict_user_marry",
+    "sys_yes_no",
+    "sys_user_sex",
+    "reservation_pay_type",
+    "sys_normal_disable",
+    "tj_status",
+  ],
+  data() {
+    let checkPhoneNum = (rule, value, callback) => {
+      console.log(value);
       let patter = new RegExp(/^1\s*[3456789]\s*(\d\s*){9}$/);
       if (value == "" && value == undefined && !value) {
-        return callback('');
-      }  else if(value != undefined && value != ""){
+        return callback("");
+      } else if (value != undefined && value != "") {
         return callback();
-      }else if (!patter.test(value)) {
-        return callback('');
+      } else if (!patter.test(value)) {
+        return callback("");
       }
     };
-        return {
-            datalist: [],
-            value: [],
-            renderFunc(h, option) {
-                return <span>{option.label}</span>;
+    return {
+      datalist: [],
+      value: [],
+      renderFunc(h, option) {
+        return <span>{option.label}</span>;
+      },
+      objs: {
+        firmId: "",
+        dwDeptId: "",
+        groupId: "",
+        beginTime: "",
+        endTime: "",
+        pageNum: 1,
+        pageSize: 10,
+      },
+      data: {
+        dwId: "",
+        deptId: "",
+      },
+      // 寮瑰嚭灞傛爣棰�
+      title: "",
+      bingZhong: "",
+      Listdata: {},
+      ListdataAll: [],
+      aidList: [],
+      // 寮瑰嚭灞傛爣棰�
+      title1: "",
+      title2: "",
+      deptList: [],
+      CompanyList: [],
+      groupingList: [],
+      orderList: [],
+      userList: [],
+      menuIds: [],
+      proIds: [],
+      valueList: [],
+      // 鏄惁鏄剧ず寮瑰嚭灞�
+      open: false,
+      open1: false,
+      open2: false,
+      // 闈炲崟涓鐢�
+      single: false,
+      cnName: "",
+      // 琛ㄥ崟鍙傛暟
+      form: {},
+      pickerOptions: {
+        shortcuts: [
+          {
+            text: "鏈�杩戜竴鍛�",
+            onClick(picker) {
+              const end = new Date();
+              const start = new Date(new Date().setHours(0, 0, 0, 0));
+              start.setTime(start.getTime() - 3600 * 1000 * 24 * 7);
+              picker.$emit("pick", [start, end]);
             },
-            objs: {
-                firmId: "",
-                dwDeptId: "",
-                groupId: "",
-                beginTime: "",
-                endTime: "",
-                pageNum: 1,
-                pageSize: 10,
+          },
+          {
+            text: "鏈�杩戜竴涓湀",
+            onClick(picker) {
+              const end = new Date();
+              const start = new Date(new Date().setHours(0, 0, 0, 0));
+              start.setTime(start.getTime() - 3600 * 1000 * 24 * 30);
+              picker.$emit("pick", [start, end]);
+            },
+          },
+          {
+            text: "鏈�杩戜笁涓湀",
+            onClick(picker) {
+              const end = new Date();
+              const start = new Date(new Date().setHours(0, 0, 0, 0));
+              start.setTime(start.getTime() - 3600 * 1000 * 24 * 90);
+              picker.$emit("pick", [start, end]);
+            },
+          },
+        ],
+      },
+      // 琛ㄥ崟鏍¢獙
+      rules: {
+        firmId: [
+          { required: true, validator: checkPhoneNum, trigger: "change" },
+        ],
+        beginTime: [
+          { required: true, validator: checkPhoneNum, trigger: "blur" },
+        ],
+        dwDeptId: [
+          { required: true, validator: checkPhoneNum, trigger: "change" },
+        ],
+        groupId: [
+          { required: true, validator: checkPhoneNum, trigger: "change" },
+        ],
+      },
+    };
+  },
+  created() {
+    // this.getNowTime();
+    this.getList();
+    this.getdate();
+  },
 
-            },
-            data: {
-                dwId: "",
-                deptId: "",
-            },
-            // 寮瑰嚭灞傛爣棰�
-            title: "",
-            bingZhong: "",
-            Listdata: {},
-            ListdataAll: [],
-            aidList: [],
-            // 寮瑰嚭灞傛爣棰�
-            title1: "",
-            title2: "",
-            deptList: [],
-            CompanyList: [],
-            groupingList: [],
-            orderList: [],
-            userList: [],
-            menuIds: [],
-            proIds: [],
-            valueList: [],
-            // 鏄惁鏄剧ず寮瑰嚭灞�
-            open: false,
-            open1: false,
-            open2: false,
-            // 闈炲崟涓鐢�
-            single: false,
-            cnName: "",
-            // 琛ㄥ崟鍙傛暟
-            form: {},
-            pickerOptions: {
-                shortcuts: [
-                    {
-                        text: "鏈�杩戜竴鍛�",
-                        onClick(picker) {
-                            const end = new Date();
-                            const start = new Date(new Date().setHours(0, 0, 0, 0));
-                            start.setTime(start.getTime() - 3600 * 1000 * 24 * 7);
-                            picker.$emit("pick", [start, end]);
-                        },
-                    },
-                    {
-                        text: "鏈�杩戜竴涓湀",
-                        onClick(picker) {
-                            const end = new Date();
-                            const start = new Date(new Date().setHours(0, 0, 0, 0));
-                            start.setTime(start.getTime() - 3600 * 1000 * 24 * 30);
-                            picker.$emit("pick", [start, end]);
-                        },
-                    },
-                    {
-                        text: "鏈�杩戜笁涓湀",
-                        onClick(picker) {
-                            const end = new Date();
-                            const start = new Date(new Date().setHours(0, 0, 0, 0));
-                            start.setTime(start.getTime() - 3600 * 1000 * 24 * 90);
-                            picker.$emit("pick", [start, end]);
-                        },
-                    },
-                ],
-            },
-            // 琛ㄥ崟鏍¢獙
-            rules: {
-                firmId: [
-                    { required: true, validator: checkPhoneNum,  trigger: "change" },
-                ],
-                beginTime: [
-                    { required: true, validator: checkPhoneNum,  trigger: "blur" },
-                ],
-                dwDeptId: [
-                    { required: true, validator: checkPhoneNum,  trigger: "change" },
-                ],
-                groupId: [
-                    { required: true, validator: checkPhoneNum,  trigger: "change" },
-                ],
-            },
+  methods: {
+    getdate() {
+      getNewDateList().then((res) => {
+        this.createTimeList = [
+          moment(res.data).format("YYYY-MM-DD 00:00:00"),
+          moment(res.data).format("YYYY-MM-DD 23:59:00"),
+        ];
+        console.log(this.createTimeList, 111);
+      });
+    },
+    getList() {
+      this.loading = true;
+      getCompany(this.queryParam).then((response) => {
+        this.CompanyList = response.data;
+        this.total = response.total;
+        this.loading = false;
+      });
+    },
+    handlequery() {
+      if (this.objs.firmId && this.objs.dwDeptId) {
+        this.objs.beginTime = this.createTimeList[0];
+        this.objs.endTime = this.createTimeList[1];
+        tuanTiListById(this.objs).then((response) => {
+          this.Listdata = response.data;
+          this.userList = response.data.list;
+        });
+      } else {
+        this.$message.warning("甯︽槦鍙蜂负蹇呭~椤�");
+      }
+    },
+    handleQuery1() {
+      let data = {
+        firmId: this.data.dwId,
+        firmDeptId: this.data.deptId,
+        bingZhong: this.bingZhong,
+      };
+      tuanTiBingById(data).then((response) => {
+        this.ListdataAll = response.data;
+      });
+    },
+    // 澶氶�夋閫変腑鏁版嵁
+    handleSelectionChange(selection) {
+      // this.ids = selection.map((item) => item.id);
+      this.single = selection.length !== 1;
+    },
+    // 琛ㄥ崟閲嶇疆
+    reset() {
+      this.form = {
+        company: null,
+        payType: null,
+        name: null,
+        phoe: null,
+        signingPic: null,
+        pacStatus: "鍚敤",
+      };
+      this.resetForm("form");
+    },
+    idFn(value) {
+      if (value) {
+        this.data.dwId = value;
+        Deptlist(value).then((response) => {
+          this.deptList = response.data;
+        });
+      }
+    },
+    idBm(value) {
+      if (value) {
+        this.data.deptId = value;
+        getDwAndDwDept(this.data).then((response) => {
+          this.groupingList = response.data;
+        });
+      }
+    },
+
+    // 鎼滅储
+    getRemoteData(query) {
+      if (query) {
+        let compName = query;
+        queryCompany(compName).then((response) => {
+          this.CompanyList = response.data;
+          this.CompanyList.forEach((item) => {
+            this.objs = item;
+          });
+        });
+      }
+    },
+    // / 澶勭悊榛樿閫変腑褰撳墠鏃ユ湡
+    getNowTime() {
+      var curDate = new Date().getTime();
+      var dayNum = 7 * 24 * 3600 * 1000;
+      var threeDays = curDate - dayNum;
+      var sDay = this.getLocalTime(threeDays);
+      var end = this.getLocalTime(curDate);
+      this.createTimeList = [sDay, end];
+    },
+    add0(m) {
+      return m < 10 ? "0" + m : m;
+    },
+    getLocalTime(nS) {
+      var time = new Date(nS);
+      var y = time.getFullYear();
+      var m = time.getMonth() + 1;
+      var d = time.getDate();
+      // var h = time.getHours();
+      // var mm = time.getMinutes();
+      return y + "-" + this.add0(m) + "-" + this.add0(d);
+    },
+    //鑾峰彇鏃堕棿
+    dateChangebirthday1(val) {
+      if (val == null) {
+        this.createTimeList = [];
+      } else {
+        this.createTimeList = val;
+      }
+    },
+    // 鍙栨秷鎸夐挳
+    cancel() {
+      this.open = false;
+      this.reset();
+    },
+    /** 鏌ョ湅璇︾粏淇℃伅鎸夐挳鎿嶄綔 */
+    handleAll() {
+      if (this.data.dwId && this.data.deptId) {
+        this.open = true;
+        this.title = "鍥㈡妫�鍑虹巼";
+        let data = {
+          firmId: this.data.dwId,
+          firmDeptId: this.data.deptId,
         };
+        tuanTiBingById(data).then((response) => {
+          this.ListdataAll = response.data;
+        });
+      } else {
+        this.$message.warning("璇烽�夋嫨鍗曚綅鎴栭儴闂�");
+      }
     },
-    created() {
-        this.getNowTime()
-        this.getList();
+    handleothen() {},
+    handleChange(selection) {
+      if (selection.length > 1) {
+        const newRows = selection.filter((it, index) => {
+          if (index == selection.length - 1) {
+            this.$refs.treeTable.toggleRowSelection(it, true);
+            return true;
+          } else {
+            this.$refs.treeTable.toggleRowSelection(it, false);
+            return false;
+          }
+        });
+
+        newRows.forEach((item) => {
+          this.orderList = item.orderList;
+        });
+      } else {
+        selection.forEach((item) => {
+          this.orderList = item.orderList;
+        });
+      }
     },
+    handleTeamfees() {},
+    handlecan() {},
 
-    methods: {
-        getList() {
-            this.loading = true;
-            getCompany(this.queryParam).then((response) => {
-                this.CompanyList = response.data;
-                this.total = response.total;
-                this.loading = false;
-            });
-        },
-        handlequery() {
-            if (this.objs.firmId && this.objs.dwDeptId) {
-                this.objs.beginTime = this.createTimeList[0]
-                this.objs.endTime = this.createTimeList[1]
-                tuanTiListById(this.objs).then((response) => {
-                    this.Listdata = response.data
-                    this.userList = response.data.list;
-                });
-            } else {
-                this.$message.warning("甯︽槦鍙蜂负蹇呭~椤�")
-            }
+    handlechart() {
+      this.open2 = true;
+      this.title2 = "缁熻鍥捐〃";
+      let data = {
+        firmId: this.data.dwId,
+        firmDeptId: this.data.deptId,
+        aidList: this.aidList,
+      };
+      console.log(data);
+      tuanTiBingChart(data).then((res) => {
+        console.log(res);
+        this.$nextTick(() => {
+          var chartDom = document.getElementById("main");
+          var myChart = echarts.init(chartDom);
+          var option;
 
-        },
-        handleQuery1() {
-            let data = {
-                firmId: this.data.dwId,
-                firmDeptId: this.data.deptId,
-                bingZhong: this.bingZhong
-            }
-            tuanTiBingById(data).then((response) => {
-                this.ListdataAll = response.data
-            });
-        },
-        // 澶氶�夋閫変腑鏁版嵁
-        handleSelectionChange(selection) {
+          const data = genData(50);
+          option = {
+            title: {
+              text: "鍥㈤槦浣撴鎯呭喌",
+              // subtext: '绾睘铏氭瀯',
+              left: "center",
+            },
+            tooltip: {
+              trigger: "item",
+              formatter: "{a} <br/>{b} : {c} ({d}%)",
+            },
+            legend: {
+              // type: 'scroll',
+              orient: "vertical",
+              right: 10,
+              top: 80,
+              bottom: 20,
+              data: data.legendData,
+            },
+            series: [
+              {
+                name: "濮撳悕",
+                type: "pie",
+                radius: "55%",
+                center: ["25%", "60%"],
+                // labelLine: {
+                //     normal: {
+                //         length: 40,
+                //         length2: 30,
+                //         lineStyle: {
+                //             width: 1
+                //         }
+                //     }
+                // },
 
-            // this.ids = selection.map((item) => item.id);
-            this.single = selection.length !== 1;
-        },
-        // 琛ㄥ崟閲嶇疆
-        reset() {
-            this.form = {
-                company: null,
-                payType: null,
-                name: null,
-                phoe: null,
-                signingPic: null,
-                pacStatus: "鍚敤"
-            };
-            this.resetForm("form");
-        },
-        idFn(value) {
-            if (value) {
-                this.data.dwId = value
-                Deptlist(value).then((response) => {
-                    this.deptList = response.data;
-                });
-            }
-
-        },
-        idBm(value) {
-            if (value) {
-                this.data.deptId = value
-                getDwAndDwDept(this.data).then((response) => {
-                    this.groupingList = response.data;
-                });
-            }
-        },
-
-        // 鎼滅储
-        getRemoteData(query) {
-            if (query) {
-                let compName = query;
-                queryCompany(compName).then((response) => {
-                    this.CompanyList = response.data;
-                    this.CompanyList.forEach((item) => {
-                        this.objs = item;
-                    });
-                });
-            }
-        },
-        // / 澶勭悊榛樿閫変腑褰撳墠鏃ユ湡
-        getNowTime() {
-            var curDate = new Date().getTime();
-            var dayNum = 7 * 24 * 3600 * 1000;
-            var threeDays = curDate - dayNum;
-            var sDay = this.getLocalTime(threeDays);
-            var end = this.getLocalTime(curDate);
-            this.createTimeList = [sDay, end];
-        },
-        add0(m) {
-            return m < 10 ? "0" + m : m;
-        },
-        getLocalTime(nS) {
-            var time = new Date(nS);
-            var y = time.getFullYear();
-            var m = time.getMonth() + 1;
-            var d = time.getDate();
-            // var h = time.getHours();
-            // var mm = time.getMinutes();
-            return (
-                y +
-                "-" +
-                this.add0(m) +
-                "-" +
-                this.add0(d)
-            );
-        },
-        //鑾峰彇鏃堕棿
-        dateChangebirthday1(val) {
-            if (val == null) {
-                this.createTimeList = []
-            } else {
-                this.createTimeList = val;
-            }
-        },
-        // 鍙栨秷鎸夐挳
-        cancel() {
-            this.open = false;
-            this.reset();
-        },
-        /** 鏌ョ湅璇︾粏淇℃伅鎸夐挳鎿嶄綔 */
-        handleAll() {
-            if (this.data.dwId && this.data.deptId) {
-                this.open = true;
-                this.title = "鍥㈡妫�鍑虹巼";
-                let data = {
-                    firmId: this.data.dwId,
-                    firmDeptId: this.data.deptId,
-                }
-                tuanTiBingById(data).then((response) => {
-                    this.ListdataAll = response.data
-                });
-            } else {
-                this.$message.warning("璇烽�夋嫨鍗曚綅鎴栭儴闂�")
-            }
-
-        },
-        handleothen() {
-
-        },
-        handleChange(selection) {
-
-            if (selection.length > 1) {
-                const newRows = selection.filter((it, index) => {
-                    if (index == selection.length - 1) {
-                        this.$refs.treeTable.toggleRowSelection(it, true);
-                        return true;
-                    } else {
-                        this.$refs.treeTable.toggleRowSelection(it, false);
-                        return false;
-                    }
-                });
-
-                newRows.forEach(item => {
-                    this.orderList = item.orderList
-                })
-            } else {
-                selection.forEach(item => {
-                    this.orderList = item.orderList
-                })
-            }
-        },
-        handleTeamfees() {
-
-        },
-        handlecan() {
-
-        },
-
-        handlechart() {
-            this.open2 = true;
-            this.title2 = "缁熻鍥捐〃";
-            let data = {
-                firmId: this.data.dwId,
-                firmDeptId: this.data.deptId,
-                aidList: this.aidList
-            }
-            console.log(data)
-            tuanTiBingChart(data).then(res => {
-                console.log(res)
-                this.$nextTick(() => {
-
-                    var chartDom = document.getElementById('main');
-                    var myChart = echarts.init(chartDom);
-                    var option;
-
-                    const data = genData(50);
-                    option = {
-                        title: {
-                            text: '鍥㈤槦浣撴鎯呭喌',
-                            // subtext: '绾睘铏氭瀯',
-                            left: 'center',
-                        },
-                        tooltip: {
-                            trigger: 'item',
-                            formatter: '{a} <br/>{b} : {c} ({d}%)'
-                        },
-                        legend: {
-                            // type: 'scroll',
-                            orient: 'vertical',
-                            right: 10,
-                            top: 80,
-                            bottom: 20,
-                            data: data.legendData
-                        },
-                        series: [
-                            {
-                                name: '濮撳悕',
-                                type: 'pie',
-                                radius: '55%',
-                                center: ['25%', '60%'],
-                                // labelLine: {
-                                //     normal: {
-                                //         length: 40,
-                                //         length2: 30,
-                                //         lineStyle: {
-                                //             width: 1
-                                //         }
-                                //     }
-                                // },
-
-                                data: data.seriesData,
-                                emphasis: {
-                                    itemStyle: {
-                                        shadowBlur: 10,
-                                        shadowOffsetX: 0,
-                                        shadowColor: 'rgba(0, 0, 0, 0.5)'
-                                    }
-                                }
-                            }
-                        ]
-                    };
-                    function genData(count) {
-                        // prettier-ignore
-                        const nameList = [
+                data: data.seriesData,
+                emphasis: {
+                  itemStyle: {
+                    shadowBlur: 10,
+                    shadowOffsetX: 0,
+                    shadowColor: "rgba(0, 0, 0, 0.5)",
+                  },
+                },
+              },
+            ],
+          };
+          function genData(count) {
+            // prettier-ignore
+            const nameList = [
                             '璧�', '閽�', '瀛�', '鏉�', '鍛�', '鍚�', '閮�', '鐜�', '鍐�', '闄�', '瑜�', '鍗�', '钂�', '娌�', '闊�', '鏉�', '鏈�', '绉�', '灏�', '璁�', '浣�', '鍚�', '鏂�', '寮�', '瀛�', '鏇�', '涓�', '鍗�', '閲�', '榄�', '闄�', '濮�', '鎴�', '璋�', '閭�', '鍠�', '鏌�', '姘�', '绐�', '绔�', '浜�', '鑻�', '娼�', '钁�', '濂�', '鑼�', '褰�', '閮�', '椴�', '闊�', '鏄�', '椹�', '鑻�', '鍑�', '鑺�', '鏂�', '淇�', '浠�', '琚�', '鏌�', '閰�', '椴�', '鍙�', '鍞�', '璐�', '寤�', '宀�', '钖�', '闆�', '璐�', '鍊�', '姹�', '婊�', '娈�', '缃�', '姣�', '閮�', '閭�', '瀹�', '甯�', '涔�', '浜�', '鏃�', '鍌�', '鐨�', '鍗�', '榻�', '搴�', '浼�', '浣�', '鍏�', '鍗�', '椤�', '瀛�', '骞�', '榛�', '鍜�', '绌�', '钀�', '灏�', '濮�', '閭�', '婀�', '姹�', '绁�', '姣�', '绂�', '鐙�', '绫�', '璐�', '鏄�', '鑷�', '璁�', '浼�', '鎴�', '鎴�', '璋�', '瀹�', '鑼�', '搴�', '鐔�', '绾�', '鑸�', '灞�', '椤�', '绁�', '钁�', '姊�', '鏉�', '闃�', '钃�', '闂�', '甯�', '瀛�', '楹�', '寮�', '璐�', '璺�', '濞�', '鍗�'
                         ];
-                        const legendData = [];
-                        const seriesData = [];
-                        for (var i = 0; i < count; i++) {
-                            var name =
-                                Math.random() > 0.65
-                                    ? makeWord(4, 1) + '路' + makeWord(3, 0)
-                                    : makeWord(2, 1);
-                            legendData.push(name);
-                            seriesData.push({
-                                name: name,
-                                value: Math.round(Math.random() * 100000)
-                            });
-                        }
-                        return {
-                            legendData: legendData,
-                            seriesData: seriesData
-                        };
-                        function makeWord(max, min) {
-                            const nameLen = Math.ceil(Math.random() * max + min);
-                            const name = [];
-                            for (var i = 0; i < nameLen; i++) {
-                                name.push(nameList[Math.round(Math.random() * nameList.length - 1)]);
-                            }
-                            return name.join('');
-                        }
-                    }
-
-                    option && myChart.setOption(option);
-                    let sizeFun = function () {
-                        myChart.resize()
-                    }
-                    window.addEventListener("resize", sizeFun)
-
-                });
-            })
-
-
-        },
-        handlesetup() {
-            this.open1 = true;
-            this.title1 = "缁熻鍥捐缃�";
-            this.datalist = []
-            if (this.data.dwId && this.data.deptId) {
-                let data = {
-                    firmId: this.data.dwId,
-                    firmDeptId: this.data.deptId,
-                }
-                tuanTiBingById(data).then((response) => {
-                    response.data.forEach((item, index) => {
-                        this.datalist.push(
-                            {
-                                key: item.rules.aid,
-                                label: item.rules.bingzhong,
-                            }
-                        )
-                    })
-                });
-            } else {
-                this.$message.warning("璇烽�夋嫨鍗曚綅鎴栭儴闂�")
+            const legendData = [];
+            const seriesData = [];
+            for (var i = 0; i < count; i++) {
+              var name =
+                Math.random() > 0.65
+                  ? makeWord(4, 1) + "路" + makeWord(3, 0)
+                  : makeWord(2, 1);
+              legendData.push(name);
+              seriesData.push({
+                name: name,
+                value: Math.round(Math.random() * 100000),
+              });
             }
-
-        },
-        handleChange1(value, direction, movedKeys) {
-            this.valueList = value
-        },
-        submitFormS() {
-            if (this.valueList.length >= 1) {
-                this.aidList = []
-                this.datalist.forEach((item, index) => {
-                    this.aidList.push(item.key)
-                })
-                let num = this.valueList.length
-                this.aidList.forEach((item, index) => {
-                    this.valueList.forEach((item1, index1) => {
-                        if (item == item1) {
-                            this.aidList.splice(index, num)
-                        }
-                    })
-                })
-            }else if(this.valueList.length == 0){
-                this.aidList = []
-                this.datalist.forEach((item, index) => {
-                    this.aidList.push(item.key)
-                })
+            return {
+              legendData: legendData,
+              seriesData: seriesData,
+            };
+            function makeWord(max, min) {
+              const nameLen = Math.ceil(Math.random() * max + min);
+              const name = [];
+              for (var i = 0; i < nameLen; i++) {
+                name.push(
+                  nameList[Math.round(Math.random() * nameList.length - 1)]
+                );
+              }
+              return name.join("");
             }
-            this.open2 = true;
-            this.title2 = "缁熻鍥捐〃";
-            let bingZhongVO = {
-                firmId: this.data.dwId,
-                firmDeptId: this.data.deptId,
-                aidList: this.aidList
-            }
-            tuanTiBingChart(bingZhongVO).then(res => {
-                this.echartsList = res.data
-                this.$nextTick(() => {
-                    var chartDom = document.getElementById('main');
-                    var myChart = echarts.init(chartDom);
-                    var option;
+          }
 
-                    option = {
-                        title: {
-                            text: '鍥㈤槦浣撴鎯呭喌',
-                            // subtext: '绾睘铏氭瀯',
-                            left: 'center',
-                        },
-                        tooltip: {
-                            trigger: 'item',
-                            formatter: '{a} <br/>{b} : {c} ({d}%)'
-                        },
-                        legend: {
-                            // type: 'scroll',
-                            orient: 'vertical',
-                            right: 10,
-                            top: 80,
-                            bottom: 20,
-                            data:this.echartsList 
-                        },
-                        series: [
-                            {
-                                name: '鐥呯鍚嶇О',
-                                type: 'pie',
-                                radius: '55%',
-                                center: ['25%', '60%'],
-
-                                data: this.echartsList ,
-                                emphasis: {
-                                    itemStyle: {
-                                        shadowBlur: 10,
-                                        shadowOffsetX: 0,
-                                        shadowColor: 'rgba(0, 0, 0, 0.5)'
-                                    }
-                                }
-                            }
-                        ]
-                    };
-
-
-                    option && myChart.setOption(option);
-                    let sizeFun = function () {
-                        myChart.resize()
-                    }
-                    window.addEventListener("resize", sizeFun)
-
-                });
-            })
-        }
+          option && myChart.setOption(option);
+          let sizeFun = function () {
+            myChart.resize();
+          };
+          window.addEventListener("resize", sizeFun);
+        });
+      });
     },
+    handlesetup() {
+      this.open1 = true;
+      this.title1 = "缁熻鍥捐缃�";
+      this.datalist = [];
+      if (this.data.dwId && this.data.deptId) {
+        let data = {
+          firmId: this.data.dwId,
+          firmDeptId: this.data.deptId,
+        };
+        tuanTiBingById(data).then((response) => {
+          response.data.forEach((item, index) => {
+            this.datalist.push({
+              key: item.rules.aid,
+              label: item.rules.bingzhong,
+            });
+          });
+        });
+      } else {
+        this.$message.warning("璇烽�夋嫨鍗曚綅鎴栭儴闂�");
+      }
+    },
+    handleChange1(value, direction, movedKeys) {
+      this.valueList = value;
+    },
+    submitFormS() {
+      if (this.valueList.length >= 1) {
+        this.aidList = [];
+        this.datalist.forEach((item, index) => {
+          this.aidList.push(item.key);
+        });
+        let num = this.valueList.length;
+        this.aidList.forEach((item, index) => {
+          this.valueList.forEach((item1, index1) => {
+            if (item == item1) {
+              this.aidList.splice(index, num);
+            }
+          });
+        });
+      } else if (this.valueList.length == 0) {
+        this.aidList = [];
+        this.datalist.forEach((item, index) => {
+          this.aidList.push(item.key);
+        });
+      }
+      this.open2 = true;
+      this.title2 = "缁熻鍥捐〃";
+      let bingZhongVO = {
+        firmId: this.data.dwId,
+        firmDeptId: this.data.deptId,
+        aidList: this.aidList,
+      };
+      tuanTiBingChart(bingZhongVO).then((res) => {
+        this.echartsList = res.data;
+        this.$nextTick(() => {
+          var chartDom = document.getElementById("main");
+          var myChart = echarts.init(chartDom);
+          var option;
+
+          option = {
+            title: {
+              text: "鍥㈤槦浣撴鎯呭喌",
+              // subtext: '绾睘铏氭瀯',
+              left: "center",
+            },
+            tooltip: {
+              trigger: "item",
+              formatter: "{a} <br/>{b} : {c} ({d}%)",
+            },
+            legend: {
+              // type: 'scroll',
+              orient: "vertical",
+              right: 10,
+              top: 80,
+              bottom: 20,
+              data: this.echartsList,
+            },
+            series: [
+              {
+                name: "鐥呯鍚嶇О",
+                type: "pie",
+                radius: "55%",
+                center: ["25%", "60%"],
+
+                data: this.echartsList,
+                emphasis: {
+                  itemStyle: {
+                    shadowBlur: 10,
+                    shadowOffsetX: 0,
+                    shadowColor: "rgba(0, 0, 0, 0.5)",
+                  },
+                },
+              },
+            ],
+          };
+
+          option && myChart.setOption(option);
+          let sizeFun = function () {
+            myChart.resize();
+          };
+          window.addEventListener("resize", sizeFun);
+        });
+      });
+    },
+  },
 };
 </script>
   
 <style>
 .el-transfer-panel {
-    width: 360px;
-    height: 480px;
+  width: 360px;
+  height: 480px;
 }
 
 .el-transfer-panel__body {
-    /* border: 1px solid red; */
-    height: 480px;
+  /* border: 1px solid red; */
+  height: 480px;
 }
 
 .el-transfer-panel__list.is-filterable {
-    height: 352px;
+  height: 352px;
 }
 
 .el-button--primary.el-transfer__button {
-    display: flex;
-    justify-content: center;
-    align-items: center;
-
+  display: flex;
+  justify-content: center;
+  align-items: center;
 }
 
 .el-transfer__button:first-child {
-    width: 82px;
-    margin-bottom: 10px;
+  width: 82px;
+  margin-bottom: 10px;
 }
 
-.el-button+.el-button {
-    margin-left: 0px;
+.el-button + .el-button {
+  margin-left: 0px;
 }
 </style>
\ No newline at end of file

--
Gitblit v1.8.0