1
wwl
2025-01-03 416b4ef820586a62b136d77fa0ccc185f173b5b9
src/views/system/comp/index.vue
@@ -6,7 +6,8 @@
          @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 type="primary" icon="el-icon-search" size="mini" @click="handleQuery"
          style="margin: 0 15px">搜索</el-button>
        <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
      </el-form-item>
    </el-form>
@@ -47,7 +48,7 @@
        <template slot-scope="scope">
          <dict-tag :options="dict.type.dict_comp_type" :value="scope.row.typeOfEnterprise"/>
        </template>
      </el-table-column> -->
</el-table-column> -->
      <el-table-column label="行政区划" align="center" prop="areaName" :show-overflow-tooltip="true" />
      <el-table-column label="通讯地址" align="center" prop="mailingAddress" :show-overflow-tooltip="true" />
      <el-table-column label="邮箱" align="center" prop="email" :show-overflow-tooltip="true" />
@@ -83,7 +84,7 @@
      <el-table-column label="修改人" align="center" prop="updateBy" :show-overflow-tooltip="true" width="100px" />
      <el-table-column label="修改时间" align="center" prop="updateTime" width="100px" :show-overflow-tooltip="true">
        <template slot-scope="scope">
          <span>{{ parseTime(scope.row.updateTime, '{y}-{m}-{d}') }}</span>
          <span>{{ parseTime(scope.row.updateTime, "{y}-{m}-{d}") }}</span>
        </template>
      </el-table-column>
      <el-table-column label="排序" align="center" prop="orderNum" :show-overflow-tooltip="true" width="55px" />
@@ -109,16 +110,16 @@
    <div class="pag">
      <div class="pag1">
        <pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNum" :limit.sync="queryParams.pageSize"
          @pagination="getList" />
        <pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNum"
          :limit.sync="queryParams.pageSize" @pagination="getList" />
      </div>
    </div>
    <div>
      <el-dialog :title="title" :visible.sync="opens" width="1350px" append-to-body>
      <el-dialog :title="title" :visible.sync="opens" width="1350px" append-to-body :close-on-click-modal="false">
        <el-row :gutter="20">
          <el-col :span="7" :xs="24">
            <div style="padding: 0 20px;">
            <div style="padding: 0 20px">
              <el-form ref="form" :model="form" :rules="rules" label-width="80px" :inline="true">
                <el-form-item label="部门名称" prop="dwDeptName">
                  <el-input v-model="form.dwDeptName" placeholder="请输入部门名称" />
@@ -138,38 +139,42 @@
                </el-col>
              </el-row>
              <el-table ref="tb" v-loading="loading" :data="deptList" @selection-change="handleSelection" border
                style="width: 320px;" height="350">
                style="width: 320px" height="350">
                <el-table-column type="selection" width="40px" align="center" />
                <el-table-column label="部门名称" align="center" prop="dwDeptName" />
              </el-table>
            </div>
          </el-col>
          <el-col :span="17" :xs="24">
            <el-form ref="form" :model="forms" :rules="rules" label-width="78px" :inline="true">
              <el-form-item label="分组名称" prop="groupingName">
                <el-input v-model="forms.groupingName" placeholder="请输入分组名称" style="width:130px"
                <el-input v-model="forms.groupingName" placeholder="请输入分组名称" style="width: 130px"
                  @focus="changegroupingName" />
              </el-form-item>
              <el-form-item label="性别" prop="sex">
                <el-select v-model="forms.sex" placeholder="请选择性别" style="width: 120px" clearable>
                <el-select v-model="forms.sex" placeholder="请选择性别" style="width: 120px" clearable
                  :disabled="isSexDisabled">
                  <el-option v-for="dict in dict.type.sys_user_sex" :key="dict.value" :label="dict.label"
                    :value="dict.value" />
                </el-select>
              </el-form-item>
              <el-form-item label="套餐名称" prop="pacName">
                <el-input v-model="forms.pacName" placeholder="请输入套餐名称" @focus="changeName" style="width:130px" />
              </el-form-item>
              <!-- <el-form-item label="套餐名称" prop="pacName">
                <el-input
                  v-model="forms.pacName"
                  placeholder="请输入套餐名称"
                  @focus="changeName"
                  style="width: 130px"
                />
              </el-form-item> -->
              <el-form-item label="原价" prop="price">
                <el-input v-model="forms.price" placeholder="请输入原价" style="width:130px" />
                <el-input v-model="forms.price" placeholder="请输入原价" style="width: 130px" />
              </el-form-item>
              <el-form-item label="折扣" prop="limits">
                <el-input v-model="forms.limits" placeholder="请输入折扣" style="width:130px" :disabled="isfalse"
                  @change="numberChange" />
              </el-form-item>
              <!-- <el-form-item label="折扣" prop="limits">
                <el-input v-model="forms.limits" placeholder="请输入折扣" style="width: 130px" @change="numberChange" />
              </el-form-item> -->
              <el-form-item label="应收" prop="ysPrice">
                <el-input v-model="forms.ysPrice" placeholder="请输入应收" style="width:120px" disabled />
              <el-form-item label="优惠价" prop="ysPrice">
                <el-input v-model="forms.ysPrice" placeholder="请输入应收" style="width: 120px" />
              </el-form-item>
              <el-form-item label="结算方式" prop="payType">
                <el-select v-model="forms.payType" placeholder="请选择结算方式" style="width: 130px" clearable>
@@ -179,25 +184,31 @@
              </el-form-item>
              <el-form-item label="年龄段">
                <el-col :span="7">
                  <el-input v-model="forms.ltAge" style="width: 53px;" />
                  <el-input v-model="forms.ltAge" style="width: 53px" />
                </el-col>
                <el-col class="line" :span="1">-</el-col>
                <el-col :span="9">
                  <el-input v-model="forms.gtAge" style="width: 54px;" />
                  <el-input v-model="forms.gtAge" style="width: 54px" />
                </el-col>
              </el-form-item>
            </el-form>
            <el-row :gutter="10" class="mb8">
              <el-col :span="1.5">
                <el-button type="primary" icon="el-icon-plus" size="mini" @click="handleGroup"
                  v-hasPermi="['system:comp:add']">保存</el-button>
                <el-button type="primary" icon="el-icon-plus" size="mini" @click="handleGroup">保存</el-button>
              </el-col>
              <el-col :span="1.5">
                <el-button type="primary" icon="el-icon-edit" size="mini" :disabled="singlegg" @click="GroupUpdate"
                  v-hasPermi="['system:comp:edit']">重置</el-button>
                <el-button type="primary" icon="el-icon-edit" size="mini" :disabled="singlegg" @click="deleteGroup"
                  v-hasPermi="['system:comp:edit']">删除</el-button>
                <el-button type="primary" icon="el-icon-edit" size="mini" @click="xiangmuWh">项目维护</el-button>
              </el-col>
              <el-col :span="1.5">
                <el-button type="primary" icon="el-icon-edit" size="mini" :disabled="singlegg"
                  @click="GroupUpdate">重置</el-button>
                <el-button type="primary" icon="el-icon-edit" size="mini" :disabled="singlegg"
                  @click="deleteGroup">删除</el-button>
              </el-col>
            </el-row>
            <el-table border ref="tbs" v-loading="loading" :data="groupingList" @selection-change="handleChange"
@@ -227,13 +238,13 @@
    <!-- 套餐 -->
    <div>
      <el-dialog :title="title" :visible.sync="openss" width="1400px" append-to-body>
      <el-dialog :title="title" :visible.sync="openss" width="1400px" append-to-body :close-on-click-modal="false">
        <el-row :gutter="24">
          <el-col :span="8" :xs="24">
            <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" label-width="68px">
              <el-form-item label="套餐名称" prop="pacName">
                <el-input ref="inputName" v-model="queryParams.pacName" placeholder="请输入套餐名称" clearable
                  @keyup.enter.native="handleSearch" style="width: 140px;" />
                  @keyup.enter.native="handleSearch" style="width: 140px" />
              </el-form-item>
              <el-form-item>
                <el-button type="primary" icon="el-icon-search" size="mini" @click="handleSearch">搜索</el-button>
@@ -246,30 +257,42 @@
              <el-table-column label="序号" align="center" prop="newID" width="50px" />
              <el-table-column label="套餐名称/价格/元" align="center" prop="pacName">
                <template slot-scope="scope">
                  {{ scope.row.pacName + '/' + scope.row.price }}
                  {{ scope.row.pacName + "/" + scope.row.price }}
                </template>
              </el-table-column>
            </el-table>
          </el-col>
          <el-col :span="6" :xs="24">
            <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" label-width="46px"
              style="height: 35px;">
              style="height: 35px">
              <el-form-item label="合计" prop="price">
                <el-input ref="inputName" v-model="queryParams.price" placeholder="合计" clearable style="width: 140px;" />
                <el-input ref="inputName" v-model="queryParams.price" placeholder="合计" clearable style="width: 140px" />
              </el-form-item>
              <el-form-item>
                <el-button icon="el-icon-refresh" size="mini" @click="resetQuerys">重置</el-button>
              </el-form-item>
            </el-form>
            <div style="color: red;font-size: 8px;">注释:鼠标左键双击选中行可删除</div>
            <el-table border v-loading="loading" :data="OnenewpacName" :row-class-name="tableRowClassName"
              @row-dblclick="dbclick" height="478">
            <!-- <div style="color: red; font-size: 8px">
              注释:鼠标左键双击选中行可删除
            </div> -->
            <!--       @row-dblclick="dbclick" -->
            <el-table border v-loading="loading" :data="OnenewpacName" :row-class-name="tableRowClassName" height="478">
              <el-table-column label="项目名称/价格/元" align="center" prop="proName">
                <template slot-scope="scope">
                  {{ scope.row.proName + '/' + scope.row.proPrice }}
                  {{ scope.row.proName + "/" + scope.row.proPrice }}
                </template>
              </el-table-column>
              <el-table-column label="操作" align="center" width="68">
                <template slot-scope="scope">
                  <el-button size="mini" type="text" icon="el-icon-delete"
                    @click="handledbelete(scope.row)">删除</el-button>
                </template>
              </el-table-column>
            </el-table>
          </el-col>
          <el-col :span="2" :xs="24">
            <div style="margin: 240% 6%;">
            <div style="margin: 240% 16%">
              <el-button type="primary" size="medium " icon="el-icon-back" @click="resetright">确 认</el-button>
            </div>
          </el-col>
@@ -278,13 +301,14 @@
              label-width="68px">
              <el-form-item label="项目名称" prop="proName">
                <el-input ref="inputName" v-model="queryParams.proName" placeholder="请输入项目名称" clearable
                  @keyup.enter.native="handleSearchFor" style="width: 140px;" />
                  @keyup.enter.native="handleSearchFor" style="width: 140px" />
              </el-form-item>
              <el-form-item>
                <el-button type="primary" icon="el-icon-search" size="mini" @click="handleSearchFor">搜索</el-button>
              </el-form-item>
            </el-form>
            <el-table border v-loading="loading" :data="Treedata" @selection-change="handleChangesingle" height="478">
            <el-table border v-loading="loading" ref="tre" :data="Treedata" @selection-change="handleChangesingle"
              height="478">
              <el-table-column type="selection" width="40px" align="center" />
              <el-table-column label="项目名称" align="center" prop="proName" />
              <el-table-column label="项目价格/元" align="center" prop="proPrice" />
@@ -298,16 +322,171 @@
      </el-dialog>
    </div>
    <div>
      <el-dialog :title="title" :visible.sync="openOne" width="1400px" append-to-body :close-on-click-modal="false">
        <el-row :gutter="24" v-if="!isTableVisible">
          <el-col :span="11" :xs="24">
            <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" label-width="46px"
              style="height: 35px">
              <el-form-item label="原价">
                <el-input ref="inputName" v-model="queryParams.price" placeholder="合计" clearable style="width: 140px" />
              </el-form-item>
              <el-form-item label="优惠">
                <el-input-number ref="inputNumber" style="width: 150px" v-model="youhui" :precision="2"
                  :step="0.1" :max="10" :min="1"></el-input-number>
              </el-form-item>
              <el-form-item label="现价">
                <el-input ref="inputName" v-model="queryParams.xianprice" placeholder="合计" clearable
                  style="width: 140px" />
              </el-form-item>
              <el-form-item>
                <el-button icon="el-icon-refresh" size="mini" @click="resetQuerys">重置</el-button>
              </el-form-item>
            </el-form>
            <el-table border v-loading="loading" :data="OnenewpacName" :row-class-name="tableRowClassName" height="478">
              <el-table-column label="项目名称/价格/元" align="center" prop="proName">
                <template slot-scope="scope">
                  {{ scope.row.proName + "/" + scope.row.proPrice }}
                </template>
              </el-table-column>
              <el-table-column label="原价" align="center" prop="proPrice"></el-table-column>
              <el-table-column label="折扣">
                <template slot-scope="scope">
                  <!-- 只输入纯数字折扣 -->
                  <el-input v-model.number="scope.row.limits" @input="validateDiscount(scope.row)" placeholder="输入折扣"
                    size="small" type="number" min="0" step="1" max="10">
                  </el-input>
                </template>
              </el-table-column>
              <el-table-column label="现价" align="center" prop="ysPrice"></el-table-column>
              <el-table-column label="操作" align="center" width="68">
                <template slot-scope="scope">
                  <el-button size="mini" type="text" icon="el-icon-delete"
                    @click="handledbelete(scope.row)">删除</el-button>
                </template>
              </el-table-column>
            </el-table>
          </el-col>
          <el-col :span="2" :xs="24">
            <div style="margin: 240% 16%">
              <el-button type="primary" size="medium " icon="el-icon-back"
                style="writing-mode: vertical-rl; text-align: center;letter-spacing: 10px;"
                @click="resetright">确认</el-button>
            </div>
          </el-col>
          <el-col :span="11" :xs="24">
            <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch"
              label-width="68px">
              <el-form-item label="项目名称" prop="proName">
                <el-input ref="inputName" v-model="queryParams.proName" placeholder="请输入项目名称" clearable
                  @keyup.enter.native="handleSearchFor" style="width: 140px" />
              </el-form-item>
              <el-form-item>
                <el-button type="primary" icon="el-icon-search" size="mini" @click="handleSearchFor">搜索</el-button>
              </el-form-item>
            </el-form>
            <el-table border v-loading="loading" ref="tre" :data="Treedata" @selection-change="handleChangesingle"
              height="478" style="width: 70%">
              <el-table-column type="selection" width="40px" align="center" />
              <el-table-column label="项目名称" align="center" prop="proName" />
              <el-table-column label="项目价格/元" align="center" prop="proPrice" />
            </el-table>
          </el-col>
        </el-row>
        <!-- -=----------------------------------------------------- -->
        <el-row :gutter="24" v-else>
          <el-col :span="8" :xs="24">
            <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" label-width="68px">
              <el-form-item label="套餐名称" prop="pacName">
                <el-input ref="inputName" v-model="queryParams.pacName" placeholder="请输入套餐名称" clearable
                  @keyup.enter.native="handleSearch" style="width: 140px" />
              </el-form-item>
              <el-form-item>
                <el-button type="primary" icon="el-icon-search" size="mini" @click="handleSearch">搜索</el-button>
                <!-- <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button> -->
              </el-form-item>
            </el-form>
            <el-table ref="tbone" border v-loading="loading" :data="newpacName" @selection-change="handleChangeOne"
              height="478">
              <el-table-column type="selection" width="40px" align="center" />
              <el-table-column label="序号" align="center" prop="newID" width="50px" />
              <el-table-column label="套餐名称/价格/元" align="center" prop="pacName">
                <template slot-scope="scope">
                  {{ scope.row.pacName + "/" + scope.row.price }}
                </template>
              </el-table-column>
            </el-table>
          </el-col>
          <el-col :span="6" :xs="24">
            <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" label-width="46px"
              style="height: 35px">
              <el-form-item label="合计" prop="price">
                <el-input ref="inputName" v-model="queryParams.price" placeholder="合计" clearable style="width: 140px" />
              </el-form-item>
              <el-form-item>
                <el-button icon="el-icon-refresh" size="mini" @click="resetQuerys">重置</el-button>
              </el-form-item>
            </el-form>
            <el-table border v-loading="loading" :data="OnenewpacName" :row-class-name="tableRowClassName" height="478">
              <el-table-column label="项目名称/价格/元" align="center" prop="proName">
                <template slot-scope="scope">
                  {{ scope.row.proName + "/" + scope.row.proPrice }}
                </template>
              </el-table-column>
              <el-table-column label="原价" align="center" prop="proPrice"></el-table-column>
              <el-table-column label="操作" align="center" width="68">
                <template slot-scope="scope">
                  <el-button size="mini" type="text" icon="el-icon-delete"
                    @click="handledbelete(scope.row)">删除</el-button>
                </template>
              </el-table-column>
            </el-table>
          </el-col>
          <el-col :span="2" :xs="24">
            <div style="margin: 240% 16%">
              <el-button type="primary" size="medium " icon="el-icon-back"
                style="writing-mode: vertical-rl; text-align: center;letter-spacing: 10px;"
                @click="resetright">确认</el-button>
            </div>
          </el-col>
          <el-col :span="8" :xs="24">
            <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch"
              label-width="68px">
              <el-form-item label="项目名称" prop="proName">
                <el-input ref="inputName" v-model="queryParams.proName" placeholder="请输入项目名称" clearable
                  @keyup.enter.native="handleSearchFor" style="width: 140px" />
              </el-form-item>
              <el-form-item>
                <el-button type="primary" icon="el-icon-search" size="mini" @click="handleSearchFor">搜索</el-button>
              </el-form-item>
            </el-form>
            <el-table border v-loading="loading" ref="tre" :data="Treedata" @selection-change="handleChangesingle"
              height="478" style="width: 70%">
              <el-table-column type="selection" width="40px" align="center" />
              <el-table-column label="项目名称" align="center" prop="proName" width="130" />
              <el-table-column label="项目价格/元" align="center" prop="proPrice" width="100" />
            </el-table>
          </el-col>
        </el-row>
        <div slot="footer" class="dialog-footer1">
          <el-button type="primary" @click="submitrighr">确认并保存</el-button>
          <el-button @click="cancell">取 消</el-button>
        </div>
      </el-dialog>
    </div>
    <!-- 添加或修改体检单位信息维护对话框 -->
    <div class="dia">
      <el-dialog :title="title" :visible.sync="open" width="1340px" append-to-body>
        <el-form ref="form" :model="form" :rules="rules" label-width="106px" :inline="true">
          <el-form-item label="单位名称" prop="cnName">
            <el-input v-model="form.cnName" placeholder="请输入中文名称" style="width: 520px;" />
            <el-input v-model="form.cnName" placeholder="请输入中文名称" style="width: 520px" />
          </el-form-item>
          <el-form-item label="统一信用代码" prop="taxNumber">
            <el-input v-model="form.taxNumber" placeholder="请输入统一信用代码" style="width: 520px;" />
            <el-input v-model="form.taxNumber" placeholder="请输入统一信用代码" style="width: 520px" />
          </el-form-item>
          <el-form-item label="法人代表" prop="legalPerson">
            <el-input v-model="form.legalPerson" placeholder="请输入法人" />
@@ -327,16 +506,16 @@
        </el-form-item> -->
          <el-form-item label="注册地址" prop="registerAddress">
            <el-input v-model="form.registerAddress" placeholder="请输入注册地址" style="width: 1157px;" />
            <el-input v-model="form.registerAddress" placeholder="请输入注册地址" style="width: 1157px" />
          </el-form-item>
          <el-form-item label="通讯地址" prop="mailingAddress">
            <el-input v-model="form.mailingAddress" placeholder="请输入通讯地址" style="width: 1157px;" />
            <el-input v-model="form.mailingAddress" placeholder="请输入通讯地址" style="width: 1157px" />
          </el-form-item>
          <el-form-item label="开户银行" prop="bankAccount">
            <el-input v-model="form.bankAccount" placeholder="请输入开户银行" style="width: 520px;" />
            <el-input v-model="form.bankAccount" placeholder="请输入开户银行" style="width: 520px" />
          </el-form-item>
          <el-form-item label="银行账户" prop="countNum">
            <el-input v-model="form.countNum" placeholder="请输入银行账户" style="width: 520px;" />
            <el-input v-model="form.countNum" placeholder="请输入银行账户" style="width: 520px" />
          </el-form-item>
          <el-form-item label="联系邮箱" prop="email">
            <el-input v-model="form.email" placeholder="请输入邮箱" />
@@ -438,27 +617,46 @@
        </div>
      </el-dialog>
    </div>
  </div>
</template>
<script>
import { listComp, getComp, delComp, addComp, getfzgrouping, updateComp, addDept, Deptlist, deldwdept, getDwAndDwDept, dwgrouping, getProjectList, getPackageList, delegrouping } from "@/api/system/comp";
import { deptTreeSelect, projectGetList } from "@/api/system/tijian";
import Big from 'big.js';
import {
  listComp,
  getComp,
  delComp,
  addComp,
  updateComp,
  addDept,
  Deptlist,
  deldwdept,
  getDwAndDwDept,
  dwgrouping,
  getProjectList,
  getPackageList,
  delegrouping,
  getDetails,
} from "@/api/system/comp";
import { deptTreeSelect, projectGetList, getconfigKey } from "@/api/system/tijian";
import { getInfo } from "@/api/login";
export default {
  name: "Comp",
  dicts: ['dict_comp_type', 'dict_data_status', "sys_user_sex", "reservation_pay_type",],
  dicts: [
    "dict_comp_type",
    "dict_data_status",
    "sys_user_sex",
    "reservation_pay_type",
  ],
  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 {
@@ -469,6 +667,8 @@
      id: "",
      // 选中数组
      ids: [],
      // 控制性别选择框是否禁用
      isSexDisabled: false,
      dwIds: [],
      groupIds: [],
      deptList: [],
@@ -476,8 +676,9 @@
      newpacName: [],
      OnenewpacName: [],
      pacList: [],
      data: [],
      dataList: [],
      groupList: [],
      dataLists: [],
      // 非单个禁用
      single: true,
      singleg: true,
@@ -498,6 +699,7 @@
      open: false,
      opens: false,
      openss: false,
      openOne: false,
      // 查询参数
      queryParams: {
        pageNum: 1,
@@ -506,6 +708,8 @@
        enName: null,
        code: null,
        price: null,
        xianprice: null,
        limits: null
      },
      id: "",
      // 表单参数
@@ -516,94 +720,106 @@
        gtAge: 100,
        groupingName: "",
        pacName: "",
        payType: "",
        sex: "",
        payType: "1",
        sex: "2",
      },
      sfzs: '',
      youhui: '',
      // 表单校验
      rules: {
        cnName: [
          { required: true, validator: checkPhoneNum,  trigger: "blur" }
        ],
        cnName: [{ required: true, validator: checkPhoneNum, trigger: "blur" }],
        dwDeptName: [
          { required: true, validator: checkPhoneNum,  trigger: "blur" }
          { required: true, validator: checkPhoneNum, trigger: "blur" },
        ],
        groupingName: [
          { required: true, validator: checkPhoneNum,  trigger: "blur" }
          { required: true, validator: checkPhoneNum, trigger: "blur" },
        ],
        gtAge: [
          { required: true, validator: checkPhoneNum,  trigger: "blur" }
        ],
        limits: [
          { required: true, validator: checkPhoneNum,  trigger: "blur" }
        ],
        ltAge: [
          { required: true, validator: checkPhoneNum,  trigger: "blur" }
        ],
        pacName: [
          { required: true, validator: checkPhoneNum,  trigger: "blur" }
        ],
        gtAge: [{ required: true, validator: checkPhoneNum, trigger: "blur" }],
        limits: [{ required: false, validator: checkPhoneNum, trigger: "blur" }],
        ltAge: [{ required: true, validator: checkPhoneNum, trigger: "blur" }],
        /*  pacName: [
          { required: true, validator: checkPhoneNum, trigger: "blur" },
        ], */
        payType: [
          { required: true, validator: checkPhoneNum,  trigger: "blur" }
          { required: true, validator: checkPhoneNum, trigger: "blur" },
        ],
        sex: [
          { required: true, validator: checkPhoneNum,  trigger: "blur" }
        ],
        sex: [{ required: true, validator: checkPhoneNum, trigger: "blur" }],
        deleted: [
          { required: true, validator: checkPhoneNum,  trigger: "blur" }
          { required: true, validator: checkPhoneNum, trigger: "blur" },
        ],
        contactPerson: [
          { required: true, validator: checkPhoneNum,  trigger: "blur" }
          { required: true, validator: checkPhoneNum, trigger: "blur" },
        ],
        contactPhone: [
          { required: true, validator: checkPhoneNum,  trigger: "blur" }
          { required: true, validator: checkPhoneNum, trigger: "blur" },
        ],
        taxNumber: [
          { required: true, validator: checkPhoneNum,  trigger: "blur" }
        ],
        legalPerson: [
          { required: true, validator: checkPhoneNum,  trigger: "blur" }
        ],
        registerAddress: [
          { required: true, validator: checkPhoneNum,  trigger: "blur" }
        ],
        bankAccount: [
          { required: true, validator: checkPhoneNum,  trigger: "blur" }
        ],
        countNum: [
          { required: true, validator: checkPhoneNum,  trigger: "blur" }
        ],
        principal: [
          { required: true, validator: checkPhoneNum,  trigger: "blur" }
        ],
        faxNumber: [
          { required: true, validator: checkPhoneNum,  trigger: "blur" }
        ],
        mailingAddress: [
          { required: true, validator: checkPhoneNum,  trigger: "blur" }
        ],
        email: [
          { required: true, validator: checkPhoneNum,  trigger: "blur" }
        ],
      }
        // taxNumber: [
        //   { required: true, validator: checkPhoneNum, trigger: "blur" },
        // ],
        // legalPerson: [
        //   { required: true, validator: checkPhoneNum, trigger: "blur" },
        // ],
        // registerAddress: [
        //   { required: true, validator: checkPhoneNum, trigger: "blur" },
        // ],
        // bankAccount: [
        //   { required: true, validator: checkPhoneNum, trigger: "blur" },
        // ],
        // countNum: [
        //   { required: true, validator: checkPhoneNum, trigger: "blur" },
        // ],
        // principal: [
        //   { required: true, validator: checkPhoneNum, trigger: "blur" },
        // ],
        // faxNumber: [
        //   { required: true, validator: checkPhoneNum, trigger: "blur" },
        // ],
        // mailingAddress: [
        //   { required: true, validator: checkPhoneNum, trigger: "blur" },
        // ],
        // email: [{ required: true, validator: checkPhoneNum, trigger: "blur" }],
      },
    };
  },
  computed: {
    // 根据 sfzs 字段的值来控制表格是否显示
    isTableVisible() {
      return this.sfzs === 'Y';
    }
  },
  created() {
    this.getList();
  },
  methods: {
    validateDiscount(row) {
      if (row.limits > 10) {
        row.limits = 10; // 强制将值设置为最大值
      } else if (row.limits < 0) {
        row.limits = 0; // 强制将值设置为最小值
      }
      this.updateProPrice(row); // 更新价格或其他逻辑
    },
    updateProPrice(row) {
      const proPrice = new Big(row.proPrice);
    /** 查询体检单位信息维护列表 */
      const limits = new Big(row.limits);
      const result = proPrice.times(limits.div(10));  // ordPrice * (discount / 10)
      row.ysPrice = result.toNumber();
      this.queryParams.xianprice = this.OnenewpacName.reduce((sum, item) => {
        return sum.plus(new Big(item.ysPrice || '0'));
      }, new Big(0)).toNumber();
      this.youhui = (Math.floor((this.queryParams.xianprice / this.queryParams.price)*100)/100)*10
    },
    getList() {
      this.$nextTick(() => {
        this.$refs.inputName.focus()
        this.$refs.inputName.focus();
      }),
        this.loading = true;
      listComp(this.queryParams).then(response => {
        (this.loading = true);
      listComp(this.queryParams).then((response) => {
        this.compList = response.rows;
        response.rows.forEach((item, index) => {
          item.newID =
            (this.queryParams.pageNum - 1) * this.queryParams.pageSize +
@@ -618,13 +834,14 @@
    cancel() {
      this.open = false;
      this.opens = false;
      this.$router.go(0)
      this.$router.go(0);
    },
    // 取消套餐
    cancell() {
      this.openss = false;
      this.reset();
      this.openOne = false;
      // this.reset();
    },
    // 表单重置
    reset() {
@@ -665,7 +882,7 @@
        spell: null,
        validTime: null,
        wbm: null,
        deleted: null
        deleted: null,
      };
      this.resetForm("form");
    },
@@ -679,29 +896,47 @@
      this.resetForm("queryForm");
      this.handleQuery();
    },
    resetQuerys() {
      (this.OnenewpacName = []),
        (this.queryParams.price = 0),
        this.$refs.tbone.toggleRowSelection(this.pacList[0], false);
    },
    // 多选框选中数据
    handleSelectionChange(selection) {
      selection.forEach(item => {
        this.form = item
      })
      this.ids = selection.map(item => item.drugManufacturerId)
      this.single = selection.length !== 1
      this.multiple = !selection.length
      selection.forEach((item) => {
        this.form = item;
      });
      this.ids = selection.map((item) => item.drugManufacturerId);
      this.single = selection.length !== 1;
      this.multiple = !selection.length;
    },
    // 部门表格单行获取
    handleSelection(selection) {
      this.selectionList = selection
      this.selectionList = selection;
      if (selection.length > 1) {
        let del_row = selection.shift();
        this.$refs.tb.toggleRowSelection(del_row, false); //设置这一行取消选中
      }
      this.dwIds = selection.map(item => item.id)
      this.singleg = !selection.length
      if (this.selectionList[0].id) {
        this.beCurrent()
      this.dwIds = selection.map((item) => item.id);
      this.singleg = !selection.length;
      if (this.selectionList.length && this.selectionList[0].id) {
        this.beCurrent();
      } else {
        this.GroupUpdate();
      }
      /* if (this.selectionList.length) {
        // 如果第一个表格有选中项,选中第二个表格对应的数据
        const selectedDeptId = this.selectionList[0].id; // 假设每个项有一个唯一的 id
        const correspondingGroups = this.groupingList.filter(
          (group) => group.deptId === selectedDeptId
        );
        this.groupList = correspondingGroups;
      } else {
        // 如果没有选中任何项,清空第二个表格的选中项
        this.groupList = [];
        this.$refs.tbs.clearSelection();
      } */
    },
    /** 新增按钮操作 */
    handleAdd() {
@@ -712,8 +947,8 @@
    /** 修改按钮操作 */
    handleUpdate(row) {
      this.reset();
      const drugManufacturerId = row.drugManufacturerId || this.ids
      getComp(drugManufacturerId).then(response => {
      const drugManufacturerId = row.drugManufacturerId || this.ids;
      getComp(drugManufacturerId).then((response) => {
        this.form = response.data;
        this.open = true;
        this.title = "修改体检单位信息维护";
@@ -722,10 +957,13 @@
    // 维护部门
    mainDepartment() {
      this.opens = true;
      this.groupingList = [];
      if (this.form.drugManufacturerId) {
        this.beCurrentDept()
        this.beCurrentDept();
      }
      this.title = "部门分组维护" + '( ' + this.form.cnName + ')';
      this.title = "部门分组维护" + "( " + this.form.cnName + ")";
      getInfo().then((response) => {
        this.getInfodis = response.user.discount;
        if (this.getInfodis == null || this.getInfodis == 10) {
@@ -734,12 +972,16 @@
      });
    },
    // 折扣
    numberChange(currentValue, oldValue) {
    numberChange(currentValue) {
      this.forms.limits = currentValue;
      if (this.forms.limits > this.getInfodis) {
      /* if (this.forms.limits > this.getInfodis) {
        this.forms.limits = this.getInfodis;
        this.forms.ysPrice = (this.forms.price * (this.forms.limits / 10)).toFixed(2);
      }
        this.forms.ysPrice = (
          this.forms.price *
          (this.forms.limits / 10)
        ).toFixed(2);
      } */
    },
    changegroupingName() {
@@ -751,80 +993,37 @@
    changeName() {
      this.openss = true;
      this.title = "分组项目维护";
      this.OnenewpacName = []
      this.queryParams.price = 0
      this.OnenewpacName = [];
      this.queryParams.price = 0;
      this.loading = true;
      if (this.forms.sex) {
        deptTreeSelect(this.forms.sex).then((response) => {
          this.newpacName = response.rows;
          this.loading = false;
          response.rows.forEach((item, index) => {
            item.newID =
              (this.queryParams.pageNum - 1) * this.queryParams.pageSize +
              index +
              1;
          });
          if (this.groupList[0].id) {
            getfzgrouping(this.groupList[0].id).then((response) => {
              this.OnenewpacName = response.data.groupingProList
              this.queryParams.price = 0
              this.OnenewpacName.forEach(item => {
                this.queryParams.price += item.proPrice
              })
            });
          }
          if (this.newpacName.length != 0) {
            this.$nextTick(() => {
              if (this.forms.pacName) {
                this.newpacName.forEach((item, index) => {
                  if (this.forms.pacName == item.pacName) {
                    this.$refs.tbone.toggleRowSelection(this.newpacName[index], true);
                  }
                })
              } else {
                this.$refs.tbone.toggleRowSelection(this.newpacName[0], true);
              }
            })
          } else {
            this.$refs.tbone.clearSelection();
          }
        });
      } else {
        deptTreeSelect().then((response) => {
          this.newpacName = response.rows;
          this.loading = false;
          response.rows.forEach((item, index) => {
            item.newID =
              (this.queryParams.pageNum - 1) * this.queryParams.pageSize +
              index +
              1;
          });
          if (this.groupList[0].id) {
            getfzgrouping(this.groupList[0].id).then((response) => {
              this.OnenewpacName = response.data.groupingProList
              this.queryParams.price = 0
              this.OnenewpacName.forEach(item => {
                this.queryParams.price += item.proPrice
              })
            });
          }
          if (this.newpacName.length != 0) {
            this.$nextTick(() => {
              if (this.forms.pacName) {
                this.newpacName.forEach((item, index) => {
                  if (this.forms.pacName == item.pacName) {
                    this.$refs.tbone.toggleRowSelection(this.newpacName[index], true);
                  }
                })
              } else {
                this.$refs.tbone.toggleRowSelection(this.newpacName[0], true);
              }
            })
          } else {
            this.$refs.tbone.clearSelection();
          }
        });
      }
      getProjectList().then((response) => {
        this.Treedata = response.data;
      });
    },
@@ -839,8 +1038,7 @@
              1;
          });
        });
      }
      else {
      } else {
        deptTreeSelect().then((response) => {
          this.newpacName = response.rows;
          response.rows.forEach((item, index) => {
@@ -852,13 +1050,12 @@
          if (this.newpacName.length != 0) {
            this.$nextTick(() => {
              this.$refs.tbone.toggleRowSelection(this.newpacName[0], true);
            })
            });
          } else {
            this.$refs.tbone.clearSelection();
          }
        });
      }
    },
    handleSearchFor() {
      getProjectList(this.queryParams.proName).then((response) => {
@@ -870,46 +1067,114 @@
            1;
        });
      });
    },
    // 单项数据获取
    handleChangesingle(selection) {
      if (selection) {
        this.data = selection
        this.dataList = selection;
      }
    },
    // 单项选定按钮
    resetright() {
      this.queryParams.price = 0
      this.data.forEach(item => {
        this.OnenewpacName.push(item)
      })
      this.OnenewpacName.forEach(item => {
        this.queryParams.price += item.proPrice
      })
      this.queryParams.price = 0;
      this.dataList.forEach((item) => {
        this.$refs.tre.toggleRowSelection(item, false);
        this.OnenewpacName.push(item);
      });
      for (var i = 0; i < this.OnenewpacName.length - 1; i++) {
        for (var j = i + 1; j < this.OnenewpacName.length; j++) {
          if (this.OnenewpacName[i].proId == this.OnenewpacName[j].proId) {
            this.OnenewpacName.splice(j, 1);
            j--;
          }
        }
      }
      return this.OnenewpacName.forEach((item) => {
        this.queryParams.price += item.proPrice;
      });
    },
    handledbelete(row) {
      this.queryParams.price = 0;
      this.OnenewpacName.forEach((item, index) => {
        if (item.proId == row.proId) {
          this.OnenewpacName.splice(index, 1);
        }
      });
      return this.OnenewpacName.forEach((item) => {
        this.queryParams.price += item.proPrice;
      });
    },
    submitrighr() {
      this.openss = false
      this.forms.pacName = this.pacList[0].pacName
      this.forms.price = this.queryParams.price
      this.forms.ysPrice = (this.forms.price * (this.forms.limits / 10)).toFixed(2);
      this.openOne = false;
      this.forms.price = this.queryParams.price;
      this.forms.ysPrice = this.queryParams.xianprice
      this.forms.limits = this.youhui
      let mapList = [];
      this.OnenewpacName.forEach((item) => {
        mapList.push({
          proName: item.proName,
          proId: item.proId,
          proPrice: item.proPrice,
          limits: item.limits,
          ysPrice: item.ysPrice
        });
      });
      // 如果 selectionList 为空,使用 mapList 继续保存
      if (this.OnenewpacName.length === 0) {
        this.$modal.msgError("请先选中项目");
        return; // 提示用户选中项目
      }
      let data = {
        groupingName: this.forms.groupingName,
        gtAge: this.forms.gtAge,
        limits: this.forms.limits,
        ltAge: this.forms.ltAge,
        pacName: this.forms.pacName,
        payType: this.forms.payType,
        sex: this.forms.sex,
        dwDeptId: this.selectionList.length > 0 ? this.selectionList[0].id : "", // 如果没有选中部门,设置为空
        dwId: this.selectionList.length > 0 ? this.selectionList[0].dwId : "",
        mapList: mapList,
        price: this.forms.price,
        ysPrice: this.forms.ysPrice,
        id: this.groupList[0] ? this.groupList[0].id : ''
      };
      // 发送请求保存数据
      dwgrouping(data).then((res) => {
        if (res.code == 200) {
          this.beCurrent();
          this.forms.groupingName = "";
          this.forms.sex = "2";
          this.forms.pacName = "";
          this.forms.price = "";
          this.forms.ysPrice = "";
          this.forms.payType = "1";
        }
      });
      // this.handleGroup();
    },
    // 套餐单项获取
    handleChangeOne(selection) {
      this.pacList = selection
      this.OnenewpacName = []
      this.queryParams.price = 0
      selection.forEach(item => {
        this.OnenewpacName = item.tjProjectList
        this.OnenewpacName.forEach(item => {
          this.queryParams.price += item.proPrice
        })
      })
      if (selection.length > 1) {
        let del_row = selection.shift();
        this.$refs.tbone.toggleRowSelection(del_row, false); //设置这一行取消选中
      }
      this.pacList = selection;
      this.dataLists = [];
      this.queryParams.price = 0;
      this.pacList.forEach((item) => {
        this.OnenewpacName = item.tjProjectList;
      });
      this.OnenewpacName.forEach((item) => {
        this.queryParams.price += item.proPrice;
      });
    },
    beCurrentDept() {
      Deptlist(this.form.drugManufacturerId).then((response) => {
@@ -917,14 +1182,12 @@
        if (this.deptList.length != 0) {
          this.$nextTick(() => {
            this.$refs.tb.toggleRowSelection(this.deptList[0], true);
          })
          });
        } else {
          this.$refs.tb.clearSelection();
        }
      });
    },
    // 保存部门
    handleAddDept() {
@@ -933,10 +1196,10 @@
        dwId: this.form.drugManufacturerId,
        dwDeptName: this.form.dwDeptName,
        signingPrice: this.form.signingPrice,
      }
      };
      addDept(data).then((response) => {
        if (response.code == 200) {
          this.beCurrentDept()
          this.beCurrentDept();
        }
      });
    },
@@ -944,127 +1207,187 @@
    handledeleDept() {
      deldwdept(this.dwIds).then((response) => {
        if (response.code == 200) {
          this.beCurrentDept()
          this.beCurrentDept();
        }
      });
    },
    handleChange(selection) {
      this.groupList = selection
      this.groupList.forEach(item => {
        this.forms.groupingName = item.groupingName
        this.forms.gtAge = item.gtAge
        this.forms.limits = item.limits
        this.forms.ltAge = item.ltAge
        this.forms.pacName = item.pacName
        this.forms.payType = item.payType
        this.forms.sex = item.sex
        this.forms.price = item.price
        this.forms.ysPrice = item.ysPrice
      })
      if (selection.length > 1) {
        let del_row = selection.shift();
        this.$refs.tbs.toggleRowSelection(del_row, false); //设置这一行取消选中
      }
      this.groupIds = selection.map(item => item.id)
      this.singlegg = !selection.length
    },
    //保存分组
    handleGroup() {
      if (this.selectionList.length <= 0) {
        this.$modal.msgError("请先选中部门或添加新的部门");
      this.groupList = selection;
      if (selection.length > 0) {
        this.groupList.forEach((item) => {
          this.forms.groupingName = item.groupingName;
          this.forms.gtAge = item.gtAge;
          this.forms.limits = item.limits;
          this.forms.ltAge = item.ltAge;
          this.forms.pacName = item.pacName;
          this.forms.payType = item.payType;
          this.forms.sex = item.sex;
          this.forms.price = item.price;
          this.forms.ysPrice = item.ysPrice;
        });
        this.isSexDisabled = true; // 禁用性别选择
      } else {
        this.groupList.forEach(item => {
          if (item.id) {
            this.id = item.id
          }
        })
        let mapList = []
        this.OnenewpacName.forEach(item => {
          mapList.push({
            proName: item.proName,
            proId: item.proId,
            proPrice: item.proPrice,
          })
        })
        if (this.id) {
          var data = {
            id: this.id,
            groupingName: this.forms.groupingName,
            gtAge: this.forms.gtAge,
            limits: this.forms.limits,
            ltAge: this.forms.ltAge,
            pacName: this.forms.pacName,
            payType: this.forms.payType,
            sex: this.forms.sex,
            dwDeptId: this.selectionList[0].id,
            dwId: this.selectionList[0].dwId,
            mapList: mapList,
            price: this.forms.price,
            ysPrice: this.forms.ysPrice,
          }
        } else {
          var data = {
            groupingName: this.forms.groupingName,
            gtAge: this.forms.gtAge,
            limits: this.forms.limits,
            ltAge: this.forms.ltAge,
            pacName: this.forms.pacName,
            payType: this.forms.payType,
            sex: this.forms.sex,
            dwDeptId: this.selectionList[0].id,
            dwId: this.selectionList[0].dwId,
            mapList: mapList,
            price: this.forms.price,
            ysPrice: this.forms.ysPrice,
          }
        }
        dwgrouping(data).then(res => {
          if (res.code == 200) {
            this.beCurrent()
            this.forms.groupingName = "";
            this.forms.sex = "";
            this.forms.pacName = "";
            this.forms.price = "";
            this.forms.ysPrice = "";
            this.forms.payType = "";
          }
        })
        // 如果没有选中行,清空表单并取消禁用
        this.GroupUpdate();
        this.isSexDisabled = false; // 恢复性别选择框为可用
      }
      this.groupIds = selection.map((item) => item.id);
      this.singlegg = !selection.length;
    },
    xiangmuWh() {
      if (!this.forms.groupingName ||
        !this.forms.sex ||
        !this.forms.payType) {
        this.$modal.msgError("请先填写所有必填项!");
        return; // Stop execution if any required field is empty
      }
      this.openOne = true;
      this.title = "分组项目维护";
      this.OnenewpacName = [];
      this.queryParams.price = 0;
      this.loading = true;
      if (this.groupList[0]) {
        let id = this.groupList[0].id || '';
        getDetails(id).then((res) => {
          this.OnenewpacName = res.data.groupingProList;
          this.queryParams.xianprice = this.OnenewpacName.reduce((sum, item) => {
            return sum.plus(new Big(item.ysPrice || '0'));
          }, new Big(0));
          this.OnenewpacName.forEach((item, index) => {
            this.queryParams.price += item.proPrice;
          });
          this.youhui = (Math.floor((this.queryParams.xianprice / this.queryParams.price)*100)/100)*10
        });
      }
      // console.log(this.groupList[0].id, 9966);
      getconfigKey("sfzstc").then((res) => {
        this.sfzs = res.msg;
      });
      if (this.forms.sex) {
        deptTreeSelect(this.forms.sex).then((response) => {
          // 套餐名称
          this.newpacName = response.rows;
          this.loading = false;
          response.rows.forEach((item, index) => {
            item.newID =
              (this.queryParams.pageNum - 1) * this.queryParams.pageSize +
              index +
              1;
          });
        });
      } else {
        deptTreeSelect().then((response) => {
          this.newpacName = response.rows;
          this.loading = false;
          response.rows.forEach((item, index) => {
            item.newID =
              (this.queryParams.pageNum - 1) * this.queryParams.pageSize +
              index +
              1;
          });
        });
      }
      getProjectList().then((response) => {
        this.Treedata = response.data;
        // console.log(this.Treedata,999888);
      });
    },
    handleGroup() {
      // 如果没有选中任何部门(即没有 selectionList),可以直接从 OnenewpacName 获取数据
      let mapList = [];
      this.OnenewpacName.forEach((item) => {
        mapList.push({
          proName: item.proName,
          proId: item.proId,
          proPrice: item.proPrice,
        });
      });
      let data = {
        groupingName: this.forms.groupingName,
        gtAge: this.forms.gtAge,
        limits: this.forms.limits,
        ltAge: this.forms.ltAge,
        pacName: this.forms.pacName,
        payType: this.forms.payType,
        sex: this.forms.sex,
        dwDeptId: this.selectionList.length > 0 ? this.selectionList[0].id : "", // 如果没有选中部门,设置为空
        dwId: this.selectionList.length > 0 ? this.selectionList[0].dwId : "",
        mapList: mapList,
        price: this.forms.price,
        ysPrice: this.forms.ysPrice,
        id: this.groupList[0].id,
      };
      // 发送请求保存数据
      dwgrouping(data).then((res) => {
        if (res.code == 200) {
          this.beCurrent();
          this.forms.groupingName = "";
          this.forms.sex = "2";
          this.forms.pacName = "";
          this.forms.price = "";
          this.forms.ysPrice = "";
          this.forms.payType = "1";
        }
      });
    },
    // 修改分组
    GroupUpdate() {
      this.forms = {}
      console.log(this.$refs.elTable)
      this.$refs.tbs.clearSelection();
      this.forms = {
        groupingName: "",
        gtAge: "",
        limits: "",
        ltAge: "",
        pacName: "",
        payType: "1",
        sex: "2",
        price: "",
        ysPrice: "",
      };
    },
    beCurrent() {
      let data = {
        deptId: this.selectionList[0].id,
        dwId: this.selectionList[0].dwId
      }
      getDwAndDwDept(data).then(response => {
        this.groupingList = response.data
        dwId: this.selectionList[0].dwId,
      };
      getDwAndDwDept(data).then((response) => {
        // 部门名称
        this.groupingList = response.data;
        response.data.forEach((item, index) => {
          item.newID =
            (this.queryParams.pageNum - 1) * this.queryParams.pageSize +
            index +
            1;
        });
      })
      });
    },
    // 删除分组
    deleteGroup() {
      delegrouping(this.groupIds).then(res => {
      delegrouping(this.groupIds).then((res) => {
        if (res.code == 200) {
          this.beCurrent()
          this.beCurrent();
        }
      })
      });
    },
    // 双击
    dbclick(row, column, event) {
      row.isOK = !row.isOK
      row.isOK = !row.isOK;
      this.OnenewpacName[row.index] = JSON.parse(JSON.stringify(row)) // 复制旧的数据,取消时用到
      this.OnenewpacName[row.index] = JSON.parse(JSON.stringify(row)); // 复制旧的数据,取消时用到
      // 判断是否为双击第二次修改,第二次双击则提交数据进行修改,或者可点击按钮取消
      if (row.isOK == true) {
        this.$confirm("是否需要删除" + row.proName, "提示", {
@@ -1074,15 +1397,14 @@
        })
          .then(() => {
            this.OnenewpacName.splice(row.index, 1); //删除对应的表头
            this.queryParams.price = 0
            this.queryParams.price = 0;
            if (this.OnenewpacName.length >= 1) {
              this.OnenewpacName.forEach(item => {
                this.queryParams.price += item.proPrice
              })
              this.OnenewpacName.forEach((item) => {
                this.queryParams.price += item.proPrice;
              });
            } else {
              this.queryParams.price = 0
              this.queryParams.price = 0;
            }
          })
          .catch(() => {
            this.$message({
@@ -1095,25 +1417,33 @@
    // 把每一行的索引放进row,方便双击修改无法获得索引则无法取消后数据进行还原
    tableRowClassName({ row, rowIndex }) {
      row.index = rowIndex
      row.index = rowIndex;
    },
    /** 提交按钮 */
    submitForm() {
      this.$refs["form"].validate(valid => {
      this.$refs["form"].validate((valid) => {
        if (valid) {
          if (this.form.drugManufacturerId != null) {
            updateComp(this.form).then(response => {
            updateComp(this.form).then((response) => {
              this.$modal.msgSuccess("修改成功");
              this.open = false;
              this.getList();
            });
          } else {
            addComp(this.form).then(response => {
              this.$modal.msgSuccess("新增成功");
              this.open = false;
              this.getList();
            });
            if (
              this.form.cnName &&
              this.form.contactPerson &&
              this.form.contactPhone
            ) {
              addComp(this.form).then((response) => {
                this.$modal.msgSuccess("新增成功");
                this.open = false;
                this.getList();
              });
            } else {
              this.$modal.msgError("请填写必传项");
            }
          }
        }
      });
@@ -1121,20 +1451,32 @@
    /** 删除按钮操作 */
    handleDelete(row) {
      const drugManufacturerIds = row.drugManufacturerId || this.ids;
      this.$modal.confirm('是否确认删除体检单位信息维护编号为"' + drugManufacturerIds + '"的数据项?').then(function () {
        return delComp(drugManufacturerIds);
      }).then(() => {
        this.getList();
        this.$modal.msgSuccess("删除成功");
      }).catch(() => { });
      this.$modal
        .confirm(
          '是否确认删除体检单位信息维护编号为"' +
          drugManufacturerIds +
          '"的数据项?'
        )
        .then(function () {
          return delComp(drugManufacturerIds);
        })
        .then(() => {
          this.getList();
          this.$modal.msgSuccess("删除成功");
        })
        .catch(() => { });
    },
    /** 导出按钮操作 */
    handleExport() {
      this.download('system/comp/export', {
        ...this.queryParams
      }, `comp_${new Date().getTime()}.xlsx`)
    }
  }
      this.download(
        "system/comp/export",
        {
          ...this.queryParams,
        },
        `comp_${new Date().getTime()}.xlsx`
      );
    },
  },
};
</script>
<style scoped>
@@ -1166,4 +1508,9 @@
  justify-content: center;
  margin: auto;
}
.btnback {
  width: 50px;
  height: 100px;
}
</style>