qx
qx
2025-04-09 8315c3ff55eb53be82ac7ddbbc6cce5f447ffdfa
src/views/system/comp/index.vue
@@ -1,183 +1,60 @@
<template>
  <div class="app-container">
    <el-form
      :model="queryParams"
      ref="queryForm"
      size="small"
      :inline="true"
      v-show="showSearch"
      label-width="68px"
    >
    <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px"
      @submit.native.prevent>
      <el-form-item label="单位名称" prop="cnName">
        <el-input
          ref="inputName"
          v-model="queryParams.cnName"
          placeholder="请输入单位名称"
          clearable
          @keyup.enter.native="handleQuery"
        />
        <el-input ref="inputName" v-model="queryParams.cnName" placeholder="请输入单位名称" clearable
          @keyup.enter.native="handleQuery" />
      </el-form-item>
      <el-form-item>
        <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-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>
    <el-row :gutter="10" class="mb8">
      <el-col :span="1.5">
        <el-button
          type="primary"
          icon="el-icon-plus"
          size="mini"
          @click="handleAdd"
          v-hasPermi="['system:comp:add']"
          >新增</el-button
        >
        <el-button type="primary" icon="el-icon-plus" size="mini" @click="handleAdd"
          v-hasPermi="['system:comp:add']">新增</el-button>
      </el-col>
      <el-col :span="1.5">
        <el-button
          type="primary"
          icon="el-icon-edit"
          size="mini"
          :disabled="single"
          @click="handleUpdate"
          v-hasPermi="['system:comp:edit']"
          >修改</el-button
        >
        <el-button type="primary" icon="el-icon-edit" size="mini" :disabled="single" @click="handleUpdate"
          v-hasPermi="['system:comp:edit']">修改</el-button>
      </el-col>
      <el-col :span="1.5">
        <el-button
          type="primary"
          icon="el-icon-delete"
          size="mini"
          :disabled="multiple"
          @click="handleDelete"
          v-hasPermi="['system:comp:remove']"
          >删除</el-button
        >
        <el-button type="primary" icon="el-icon-delete" size="mini" :disabled="multiple" @click="handleDelete"
          v-hasPermi="['system:comp:remove']">删除</el-button>
      </el-col>
      <el-col :span="1.5">
        <el-button
          type="primary"
          icon="el-icon-download"
          size="mini"
          @click="handleExport"
          v-hasPermi="['system:comp:export']"
          >导出</el-button
        >
        <el-button type="primary" icon="el-icon-download" size="mini" @click="handleExport"
          v-hasPermi="['system:comp:export']">导出</el-button>
      </el-col>
      <el-col :span="1.5">
        <el-button
          type="primary"
          icon="el-icon-edit"
          size="mini"
          :disabled="single"
          @click="mainDepartment"
          v-hasPermi="['system:comp:edit']"
          >维护部门</el-button
        >
        <el-button type="primary" icon="el-icon-edit" size="mini" :disabled="single" @click="mainDepartment"
          v-hasPermi="['system:comp:edit']">维护套餐</el-button>
      </el-col>
      <right-toolbar
        :showSearch.sync="showSearch"
        @queryTable="getList"
      ></right-toolbar>
      <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
    </el-row>
    <el-table
      border
      v-loading="loading"
      :data="compList"
      @selection-change="handleSelectionChange"
    >
      <el-table-column
        fixed="left"
        type="selection"
        width="40px"
        align="center"
      />
      <el-table-column
        label="序号"
        align="center"
        prop="newID"
        :show-overflow-tooltip="true"
        width="50px"
        fixed="left"
      />
      <el-table-column
        label="单位名称"
        align="center"
        prop="cnName"
        width="240px"
      />
      <el-table-column
        label="统一信用代码"
        align="center"
        prop="taxNumber"
        width="180px"
      />
      <el-table-column
        label="联系人"
        align="center"
        prop="contactPerson"
        :show-overflow-tooltip="true"
        width="90px"
      />
      <el-table-column
        label="联系电话"
        align="center"
        prop="contactPhone"
        :show-overflow-tooltip="true"
      />
      <el-table-column
        label="注册地址"
        align="center"
        prop="registerAddress"
        :show-overflow-tooltip="true"
      />
    <el-table border v-loading="loading" :data="compList" @selection-change="handleSelectionChange">
      <el-table-column fixed="left" type="selection" width="40px" align="center" />
      <el-table-column label="序号" align="center" prop="newID" :show-overflow-tooltip="true" width="50px" fixed="left" />
      <el-table-column label="单位名称" align="center" prop="cnName" width="240px" />
      <el-table-column label="统一信用代码" align="center" prop="taxNumber" width="180px" />
      <el-table-column label="联系人" align="center" prop="contactPerson" :show-overflow-tooltip="true" width="90px" />
      <el-table-column label="联系电话" align="center" prop="contactPhone" :show-overflow-tooltip="true" />
      <el-table-column label="注册地址" align="center" prop="registerAddress" :show-overflow-tooltip="true" />
      <!-- <el-table-column label="企业类型" align="center" prop="typeOfEnterprise" :show-overflow-tooltip="true">
        <template slot-scope="scope">
          <dict-tag :options="dict.type.dict_comp_type" :value="scope.row.typeOfEnterprise"/>
        </template>
      </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"
      />
      <el-table-column
        label="开户银行"
        align="center"
        prop="bankAccount"
        :show-overflow-tooltip="true"
      />
      <el-table-column
        label="银行账号"
        align="center"
        prop="countNum"
        :show-overflow-tooltip="true"
      />
</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" />
      <el-table-column label="开户银行" align="center" prop="bankAccount" :show-overflow-tooltip="true" />
      <el-table-column label="银行账号" align="center" prop="countNum" :show-overflow-tooltip="true" />
      <!-- <el-table-column label="GMP发证日期" align="center" prop="gmpissueDate" width="180">
        <template slot-scope="scope">
          <span>{{ parseTime(scope.row.gmpissueDate, '{y}-{m}-{d}') }}</span>
@@ -199,42 +76,19 @@
          <image-preview :src="scope.row.gmpPhoto" :width="50" :height="50"/>
        </template>
      </el-table-column> -->
      <el-table-column
        label="备注"
        align="center"
        prop="remark"
        :show-overflow-tooltip="true"
      />
      <el-table-column label="备注" align="center" prop="remark" :show-overflow-tooltip="true" />
      <!-- <el-table-column label="创建时间" align="center" prop="createTime" width="180">
        <template slot-scope="scope">
          <span>{{ parseTime(scope.row.createTime, '{y}-{m}-{d}') }}</span>
        </template>
      </el-table-column> -->
      <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"
      >
      <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>
        </template>
      </el-table-column>
      <el-table-column
        label="排序"
        align="center"
        prop="orderNum"
        :show-overflow-tooltip="true"
        width="55px"
      />
      <el-table-column label="排序" align="center" prop="orderNum" :show-overflow-tooltip="true" width="55px" />
      <!-- <el-table-column label="数据状态(PT10.00.004)" align="center" prop="effective">
        <template slot-scope="scope">
          <dict-tag :options="dict.type.dict_data_status" :value="scope.row.effective"/>
@@ -245,194 +99,84 @@
          <span>{{ parseTime(scope.row.validTime, '{y}-{m}-{d}') }}</span>
        </template>
      </el-table-column> -->
      <el-table-column
        fixed="right"
        label="操作"
        align="center"
        class-name="small-padding fixed-width"
        width="70px"
      >
      <el-table-column fixed="right" label="操作" align="center" class-name="small-padding fixed-width" width="70px">
        <template slot-scope="scope">
          <el-button
            size="mini"
            type="text"
            icon="el-icon-edit"
            @click="handleUpdate(scope.row)"
            v-hasPermi="['system:comp:edit']"
            title="修改"
          ></el-button>
          <el-button
            size="mini"
            type="text"
            icon="el-icon-delete"
            @click="handleDelete(scope.row)"
            v-hasPermi="['system:comp:remove']"
            title="删除"
          ></el-button>
          <el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)"
            v-hasPermi="['system:comp:edit']" title="修改"></el-button>
          <el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)"
            v-hasPermi="['system:comp:remove']" title="删除"></el-button>
        </template>
      </el-table-column>
    </el-table>
    <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="true">
        <el-row :gutter="20">
          <el-col :span="7" :xs="24">
            <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="请输入部门名称"
                  />
              <el-form ref="form" :model="form" :rules="rules" label-width="80px" :inline="true" @submit.native.prevent>
                <el-form-item label="套餐名称" prop="dwDeptName">
                  <el-input v-model="form.dwDeptName" placeholder="请输入套餐名称" />
                </el-form-item>
                <el-form-item label="签约金额" prop="signingPrice">
                  <el-input
                    v-model="form.signingPrice"
                    placeholder="请输入签约金额"
                  />
                  <el-input v-model="form.signingPrice" placeholder="请输入签约金额" />
                </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="handleAddDept"
                    v-hasPermi="['system:comp:add']"
                    >保存部门</el-button
                  >
                  <el-button type="primary" icon="el-icon-plus" size="mini" @click="handleAddDept"
                    v-hasPermi="['system:comp:add']">保存套餐</el-button>
                </el-col>
                <el-col :span="1.5">
                  <el-button
                    type="primary"
                    icon="el-icon-edit"
                    size="mini"
                    :disabled="singleg"
                    @click="handledeleDept"
                    v-hasPermi="['system:comp:edit']"
                    >删除</el-button
                  >
                  <el-button type="primary" icon="el-icon-edit" size="mini" :disabled="singleg" @click="handledeleDept"
                    v-hasPermi="['system:comp:edit']">删除</el-button>
                </el-col>
              </el-row>
              <el-table
                ref="tb"
                v-loading="loading"
                :data="deptList"
                @selection-change="handleSelection"
                border
                style="width: 320px"
                height="350"
              >
              <el-table ref="tb" v-loading="loading" :data="deptList" @selection-change="handleSelection" border
                style="width: 320px" height="350">
                <el-table-column type="selection" width="40px" align="center" />
                <el-table-column
                  label="部门名称"
                  align="center"
                  prop="dwDeptName"
                />
                <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 ref="form" :model="forms" :rules="rules" label-width="78px" :inline="true" @submit.native.prevent>
              <el-form-item label="分组名称" prop="groupingName">
                <el-input
                  v-model="forms.groupingName"
                  placeholder="请输入分组名称"
                  style="width: 130px"
                  @focus="changegroupingName"
                />
                <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-option
                    v-for="dict in dict.type.sys_user_sex"
                    :key="dict.value"
                    :label="dict.label"
                    :value="dict.value"
                  />
                <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-form-item label="套餐名称" prop="pacName">
                <el-input
                  v-model="forms.pacName"
                  placeholder="请输入套餐名称"
                  @focus="changeName"
                  style="width: 130px"
                />
              </el-form-item>
              </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="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
                >
                  <el-option
                    v-for="dict in dict.type.reservation_pay_type"
                    :key="dict.value"
                    :label="dict.label"
                    :value="dict.value"
                  />
                <el-select v-model="forms.payType" placeholder="请选择结算方式" style="width: 130px" clearable>
                  <el-option v-for="dict in dict.type.reservation_pay_type" :key="dict.value" :label="dict.label"
                    :value="dict.value" />
                </el-select>
              </el-form-item>
              <el-form-item label="年龄段">
@@ -444,75 +188,40 @@
                  <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"
              height="350"
            >
            <el-table border ref="tbs" v-loading="loading" :data="groupingList" @selection-change="handleChange"
              height="350">
              <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="groupingName"
              />
              <el-table-column label="序号" align="center" prop="newID" width="50px" />
              <el-table-column label="分组名称" align="center" prop="groupingName" />
              <el-table-column label="性别" align="center" prop="sex">
                <template slot-scope="scope">
                  <dict-tag
                    :options="dict.type.sys_user_sex"
                    :value="scope.row.sex"
                  />
                  <dict-tag :options="dict.type.sys_user_sex" :value="scope.row.sex" />
                </template>
              </el-table-column>
              <el-table-column label="套餐名称" align="center" prop="pacName" />
              <el-table-column label="结算方式" align="center" prop="payType">
                <template slot-scope="scope">
                  <dict-tag
                    :options="dict.type.reservation_pay_type"
                    :value="scope.row.payType"
                  />
                  <dict-tag :options="dict.type.reservation_pay_type" :value="scope.row.payType" />
                </template>
              </el-table-column>
              <el-table-column label="折扣" align="center" prop="limits" />
@@ -526,62 +235,26 @@
    <!-- 套餐 -->
    <div>
      <el-dialog
        :title="title"
        :visible.sync="openss"
        width="1400px"
        append-to-body
      >
      <el-dialog :title="title" :visible.sync="openss" width="1400px" :style="{ height: 1400 + 'px' }" 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 :model="queryParams" ref="queryForm" size="small" :inline="true" label-width="68px"
              @submit.native.prevent>
              <el-form-item label="套餐名称" prop="pacName">
                <el-input
                  ref="inputName"
                  v-model="queryParams.pacName"
                  placeholder="请输入套餐名称"
                  clearable
                  @keyup.enter.native="handleSearch"
                  style="width: 140px"
                />
                <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-button type="primary" icon="el-icon-search" size="mini" @click="handleSearch">搜索</el-button>
              </el-form-item>
            </el-form>
            <el-table
              ref="tbone"
              border
              v-loading="loading"
              :data="newpacName"
              @selection-change="handleChangeOne"
              height="478"
            >
            <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"
              >
              <el-table-column label="序号" align="center" prop="pacId" width="50px" />
              <el-table-column label="套餐名称/价格/元" align="center" prop="pacName">
                <template slot-scope="scope">
                  {{ scope.row.pacName + "/" + scope.row.price }}
                </template>
@@ -589,101 +262,57 @@
            </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 :model="queryParams" ref="queryForm" size="small" :inline="true" label-width="46px"
              @submit.native.prevent>
              <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 style="color: red; font-size: 8px">
              注释:鼠标左键双击选中行可删除
            </div>
            <el-table
              border
              v-loading="loading"
              :data="OnenewpacName"
              :row-class-name="tableRowClassName"
              @row-dblclick="dbclick"
              height="478"
            >
              <el-table-column
                label="项目名称/价格/元"
                align="center"
                prop="proName"
              >
            </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 }}
                </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>
            <div style="font-size: 16px;margin-top: 10px;">当前项目条数:<span style="font-weight: 700;">{{ OnenewpacName.length }}</span>条</div>
          </el-col>
          <el-col :span="2" :xs="24">
            <div style="margin: 240% 6%">
              <el-button
                type="primary"
                size="medium "
                icon="el-icon-back"
                @click="resetright"
                >确 认</el-button
              >
            <div style="margin: 240% 16%">
              <el-button type="primary" size="medium " icon="el-icon-back" @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 :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch"
              label-width="68px" @submit.native.prevent>
              <el-form-item label="项目名称" prop="proName">
                <el-input
                  ref="inputName"
                  v-model="queryParams.proName"
                  placeholder="请输入项目名称"
                  clearable
                  @keyup.enter.native="handleSearchFor"
                  style="width: 140px"
                />
                <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-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"
            >
            <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"
              />
              <el-table-column label="项目价格/元" align="center" prop="proPrice" />
            </el-table>
          </el-col>
        </el-row>
@@ -694,34 +323,187 @@
      </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="15" :xs="24">
            <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" label-width="46px"
              style="height: 50px" @submit.native.prevent>
              <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="1" :step="0.1"
                  :min="0" :max="10" @change="debounceNumberChange" :debounce="3000"></el-input-number>
              </el-form-item>
              <el-form-item label="现价">
                <el-input ref="inputName" v-model="queryParams.xianprice" placeholder="合计" clearable
                  style="width: 140px" @input="changeXianjia" @blur="numberChangeXianPrice(youhui, youhui)" />
              </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" :cell-style="{ padding: '5px 0' }">
              <el-table-column label="项目名称" align="center" prop="proName" width="410">
                <template slot-scope="scope">
                  {{ scope.row.proName }}
                </template>
              </el-table-column>
              <el-table-column label="原价" align="center" prop="proPrice" width="85"></el-table-column>
              <el-table-column label="折扣" width="151">
                <template slot-scope="scope">
                  <!-- 只输入纯数字折扣  @input="validateDiscount(scope.row)"-->
                  <el-input-number v-model="scope.row.limits"
                    @change="handleManualChange(scope.row)" placeholder="输入折扣" size="mini" type="number" :min="0"
                    :step="0.1" :precision="1" :max="10">
                  </el-input-number>
                </template>
              </el-table-column>
              <el-table-column label="现价" align="center" prop="ysPrice" width="85"></el-table-column>
              <el-table-column label="操作" align="center" width="85">
                <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>
            <div style="font-size: 16px;margin-top: 10px;">当前项目条数:<span style="font-weight: 700;">{{ OnenewpacName.length }}</span>条</div>
          </el-col>
          <!-- <el-col :span="2" :xs="24">
            <div style="margin: 240% 16%" class="btntoleft">
              <el-button type="primary" size="medium"
                style="writing-mode: vertical-rl; text-align: center; letter-spacing: 5px;" @click="resetright">
                确
                认
                <i class="el-icon-back"></i>
              </el-button>
            </div>
          </el-col> -->
          <el-col :span="7" :xs="24">
            <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch"
              label-width="68px" @submit.native.prevent>
              <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: 100%">
              <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="6" :xs="24">
            <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" label-width="68px"
              @submit.native.prevent>
              <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-form-item>
            </el-form>
            <el-table ref="tbone" border v-loading="loading" :data="newpacName" @selection-change="handleChangeOne"
              height="483">
              <!-- <el-table-column type="selection" width="40px" align="center" /> -->
              <el-table-column label="序号" align="center" prop="newID" width="50px">
                <template slot-scope="scope">
                  {{ scope.row.newID }}
                </template>
              </el-table-column>
              <el-table-column label="套餐名称/价格/元" align="center" prop="pacName">
                <template slot-scope="scope">
                  {{ scope.row.pacName + "/" + scope.row.price }}
                </template>
              </el-table-column>
            </el-table>
            <div style="font-size: 16px;margin-top: 10px;">项目总条数:<span style="font-weight: 700;margin-right: 5px;">{{
              newpacName.length }}</span>条</div>
          </el-col>
          <el-col :span="8" :xs="24">
            <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" label-width="46px"
              style="height: 51px" @submit.native.prevent>
              <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" :cell-style="{ padding: '5px 0' }">
              <el-table-column label="项目名称" align="center" prop="proName" width="170">
                <template slot-scope="scope">
                  {{ scope.row.proName }}
                </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>
            <div style="font-size: 16px;margin-top: 10px;">当前项目条数:<span style="font-weight: 700;">{{ OnenewpacName.length }}</span>条</div>
          </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" @submit.native.prevent>
              <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">
              <el-table-column type="selection" width="40px" align="center" />
              <el-table-column label="项目名称" align="center" prop="proName" width="288" />
              <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-dialog :title="title" :visible.sync="open" width="1340px" append-to-body>
        <el-form ref="form" :model="form" :rules="rules" label-width="106px" :inline="true" @submit.native.prevent>
          <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="请输入法人" />
@@ -730,10 +512,7 @@
            <el-input v-model="form.contactPerson" placeholder="请输入联系人" />
          </el-form-item>
          <el-form-item label="联系电话" prop="contactPhone">
            <el-input
              v-model="form.contactPhone"
              placeholder="请输入联系电话"
            />
            <el-input v-model="form.contactPhone" placeholder="请输入联系电话" />
          </el-form-item>
          <el-form-item label="传真" prop="faxNumber">
            <el-input v-model="form.faxNumber" placeholder="请输入传真" />
@@ -744,32 +523,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="请输入邮箱" />
@@ -782,94 +545,12 @@
          </el-form-item>
          <el-form-item label="行政区划名称" prop="areaName">
            <el-input
              v-model="form.areaName"
              placeholder="请输入行政区划名称"
            />
            <el-input v-model="form.areaName" placeholder="请输入行政区划名称" />
          </el-form-item>
          <!-- <el-form-item label="企业类型" prop="typeOfEnterprise">
          <el-select v-model="form.typeOfEnterprise" placeholder="请选择企业类型">
            <el-option
              v-for="dict in dict.type.dict_comp_type"
              :key="dict.value"
              :label="dict.label"
:value="dict.value"
            ></el-option>
          </el-select>
        </el-form-item> -->
          <!-- <el-form-item label="行政区划id" prop="areaid">
          <el-input v-model="form.areaid" placeholder="请输入行政区划id" />
        </el-form-item> -->
          <!-- <el-form-item label="GMP证书编号" prop="gmpNo">
          <el-input v-model="form.gmpNo" placeholder="请输入GMP证书编号" />
        </el-form-item> -->
          <!-- <el-form-item label="GMP发证日期" prop="gmpissueDate">
          <el-date-picker clearable
            v-model="form.gmpissueDate"
            type="date"
            value-format="yyyy-MM-dd"
            placeholder="请选择GMP发证日期">
          </el-date-picker>
        </el-form-item> -->
          <!-- <el-form-item label="经营许可证号" prop="businessLicenseNumber">
          <el-input v-model="form.businessLicenseNumber" placeholder="请输入经营许可证号" />
        </el-form-item> -->
          <!-- <el-form-item label="GMP有效截止日期" prop="gmpDeadlineDate">
          <el-date-picker clearable
            v-model="form.gmpDeadlineDate"
            type="date"
            value-format="yyyy-MM-dd"
            placeholder="请选择GMP有效截止日期">
          </el-date-picker>
        </el-form-item> -->
          <!-- <el-form-item label="GMP认证范围" prop="gmpRange">
          <el-input v-model="form.gmpRange" placeholder="请输入GMP认证范围" />
        </el-form-item> -->
          <!-- <el-form-item label="GMP延续范围" prop="gmpDelayRange">
          <el-input v-model="form.gmpDelayRange" placeholder="请输入GMP延续范围" />
        </el-form-item> -->
          <!-- <el-form-item label="GMP延续日期" prop="gmpDelayDate">
          <el-date-picker clearable
            v-model="form.gmpDelayDate"
            type="date"
            value-format="yyyy-MM-dd"
            placeholder="请选择GMP延续日期">
          </el-date-picker>
        </el-form-item> -->
          <!-- <el-form-item label="GMP证书图片(base64编码)">
          <image-upload v-model="form.gmpPhoto"/>
        </el-form-item> -->
          <!-- <el-form-item label="排序" prop="orderNum">
            <el-input v-model="form.orderNum" placeholder="请输入排序" />
          </el-form-item> -->
          <!-- <el-form-item label="数据状态(PT10.00.004)" prop="effective">
          <el-select v-model="form.effective" placeholder="请选择数据状态(PT10.00.004)">
            <el-option
              v-for="dict in dict.type.dict_data_status"
              :key="dict.value"
              :label="dict.label"
:value="dict.value"
            ></el-option>
          </el-select>
        </el-form-item> -->
          <!-- <el-form-item label="拼音" prop="spell">
          <el-input v-model="form.spell" placeholder="请输入拼音" />
        </el-form-item> -->
          <!-- <el-form-item label="有效时间" prop="validTime">
            <el-date-picker clearable v-model="form.validTime" type="date" value-format="yyyy-MM-dd"
              placeholder="请选择有效时间">
            </el-date-picker>
          </el-form-item><br> -->
          <el-form-item label="备注" prop="remark">
            <el-input
              v-model="form.remark"
              type="textarea"
              placeholder="请输入内容"
              :rows="2"
              label-width="400px"
              style="width: 830px"
              resize="none"
            ></el-input>
            <el-input v-model="form.remark" type="textarea" placeholder="请输入内容" :rows="2" label-width="400px"
              style="width: 830px" resize="none"></el-input>
          </el-form-item>
          <!-- <el-form-item label="五笔简码" prop="wbm">
          <el-input v-model="form.wbm" placeholder="请输入五笔简码" />
@@ -885,12 +566,12 @@
</template>
<script>
import Big from 'big.js';
import {
  listComp,
  getComp,
  delComp,
  addComp,
  getfzgrouping,
  updateComp,
  addDept,
  Deptlist,
@@ -900,8 +581,9 @@
  getProjectList,
  getPackageList,
  delegrouping,
  getDetails,
} from "@/api/system/comp";
import { deptTreeSelect, projectGetList } from "@/api/system/tijian";
import { deptTreeSelect, projectGetList, getconfigKey } from "@/api/system/tijian";
import { getInfo } from "@/api/login";
export default {
  name: "Comp",
@@ -913,7 +595,6 @@
  ],
  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("");
@@ -927,10 +608,11 @@
      // 遮罩层
      loading: true,
      Treedata: [],
      getInfodis: 0,
      id: "",
      // 选中数组
      ids: [],
      // 控制性别选择框是否禁用
      isSexDisabled: false,
      dwIds: [],
      groupIds: [],
      deptList: [],
@@ -940,6 +622,7 @@
      pacList: [],
      dataList: [],
      groupList: [],
      dataLists: [],
      // 非单个禁用
      single: true,
      singleg: true,
@@ -960,6 +643,7 @@
      open: false,
      opens: false,
      openss: false,
      openOne: false,
      // 查询参数
      queryParams: {
        pageNum: 1,
@@ -968,20 +652,24 @@
        enName: null,
        code: null,
        price: null,
        xianprice: null,
        limits: null
      },
      id: "",
      // 表单参数
      form: {},
      lastXianPrice: 0,
      forms: {
        limits: 10,
        ltAge: 0,
        gtAge: 100,
        groupingName: "",
        pacName: "",
        payType: "",
        sex: "",
        payType: "1",
        sex: "2",
      },
      sfzs: '',
      youhui: '',
      // 表单校验
      rules: {
        cnName: [{ required: true, validator: checkPhoneNum, trigger: "blur" }],
@@ -992,11 +680,11 @@
          { required: true, validator: checkPhoneNum, trigger: "blur" },
        ],
        gtAge: [{ required: true, validator: checkPhoneNum, trigger: "blur" }],
        limits: [{ required: true, validator: checkPhoneNum, trigger: "blur" }],
        limits: [{ required: false, validator: checkPhoneNum, trigger: "blur" }],
        ltAge: [{ required: true, validator: checkPhoneNum, trigger: "blur" }],
        pacName: [
        /*  pacName: [
          { required: true, validator: checkPhoneNum, trigger: "blur" },
        ],
        ], */
        payType: [
          { required: true, validator: checkPhoneNum, trigger: "blur" },
        ],
@@ -1011,39 +699,107 @@
        contactPhone: [
          { 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: {
    /** 查询体检单位信息维护列表 */
    handleManualChange(row) {
      console.log("这是主动出发的");
      this.updateProPrice(row);
    },
    validateDiscount(row) {
      if (this.queryParams.xianprice !== undefined &&
        !isNaN(this.queryParams.xianprice) &&
        this.queryParams.xianprice !== this.lastXianPrice) {
        // 只有在现价实际由用户输入修改时才更新
        this.updateProPrice1(row);
        this.lastXianPrice = this.queryParams.xianprice;
      }
    },
    updateProPrice(row) {
      const proPrice = new Big(row.proPrice);
      const limits = new Big(row.limits);
      const result = proPrice.times(limits.div(10)).toNumber();  // ordPrice * (discount / 10)
      row.ysPrice = result.toFixed(2);
      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
    },
    updateProPrice1(row) {
      const proPrice = new Big(row.proPrice);
      const limits = new Big(row.limits);
       const result = proPrice.times(limits.div(10)).toNumber();  // ordPrice * (discount / 10)
      row.ysPrice = result.toFixed(2);
      const totalYsPrice = this.OnenewpacName.reduce((sum, item) => {
        return sum.plus(new Big(item.ysPrice || '0'));
      }, new Big(0));
      const totalYsPriceNum = totalYsPrice.toNumber();
      if (this.queryParams.xianprice !== undefined && !isNaN(this.queryParams.xianprice)) {
        const xianPrice = new Big(this.queryParams.xianprice);
        const diff = xianPrice.minus(totalYsPriceNum);
        if (!diff.eq(0) && this.OnenewpacName.length > 0) {
          const lastItem = this.OnenewpacName[this.OnenewpacName.length - 1];
          const newYsPrice = new Big(lastItem.ysPrice).plus(diff).toNumber();
          this.$set(this.OnenewpacName[this.OnenewpacName.length - 1], 'ysPrice', newYsPrice);
        }
      }
      // Update youhui calculation
      if (this.queryParams.price !== 0 && this.queryParams.xianprice !== 0) {
        this.youhui = (Math.floor((this.queryParams.xianprice / this.queryParams.price) * 100) / 100) * 10;
      } else {
        this.youhui = 10;
      }
    },
    debounceNumberChange(currentValue, oldValue) {
      clearTimeout(this.debounceTimer);
      this.debounceTimer = setTimeout(() => {
        this.numberChange(currentValue, oldValue);
      }, 300);
    },
    changeXianjia() {
      // 原始折扣率计算
      if (this.queryParams.price !== 0) {
        this.youhui = (Math.floor((this.queryParams.xianprice / this.queryParams.price) * 100) / 100) * 10;
      }
    },
    getList() {
      this.$nextTick(() => {
        this.$refs.inputName.focus();
@@ -1051,6 +807,7 @@
        (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 +
@@ -1061,17 +818,19 @@
        this.loading = false;
      });
    },
    // 取消按钮
    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.youhui = 10
      // this.reset();
    },
    // 表单重置
    reset() {
@@ -1126,6 +885,12 @@
      this.resetForm("queryForm");
      this.handleQuery();
    },
    resetQuerys() {
      this.OnenewpacName = [],
        this.queryParams.price = 0,
        this.queryParams.xianprice = 0,
        this.youhui = 0
    },
    // 多选框选中数据
    handleSelectionChange(selection) {
      selection.forEach((item) => {
@@ -1144,9 +909,24 @@
      }
      this.dwIds = selection.map((item) => item.id);
      this.singleg = !selection.length;
      if (this.selectionList[0].id) {
      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() {
@@ -1167,28 +947,87 @@
    // 维护部门
    mainDepartment() {
      this.opens = true;
      this.groupingList = [];
      if (this.form.drugManufacturerId) {
        this.beCurrentDept();
      }
      this.title = "部门分组维护" + "( " + this.form.cnName + ")";
      getInfo().then((response) => {
        this.getInfodis = response.user.discount;
        if (this.getInfodis == null || this.getInfodis == 10) {
          this.isfalse = true;
        }
      });
      this.title = "套餐分组维护" + "( " + this.form.cnName + ")";
    },
    // 折扣
    numberChange(currentValue, oldValue) {
      this.forms.limits = currentValue;
      if (this.forms.limits > this.getInfodis) {
        this.forms.limits = this.getInfodis;
        this.forms.ysPrice = (
          this.forms.price *
          (this.forms.limits / 10)
        ).toFixed(2);
      }
      this.$confirm("确定修改所有子项的折扣吗?", "提示", {
        confirmButtonText: "确定",
        cancelButtonText: "取消",
        type: "warning",
      })
        .then(() => {
          this.youhui = currentValue;
          this.OnenewpacName.forEach((item) => {
            item.limits = this.youhui
            const proPrice = new Big(item.proPrice);
            const limits = new Big(item.limits);
            const result = proPrice.times(limits.div(10));  // ordPrice * (discount / 10)
            item.ysPrice = result.toNumber();
            this.queryParams.xianprice = this.OnenewpacName.reduce((sum, item) => {
              return sum.plus(new Big(item.ysPrice || '0'));
            }, new Big(0)).toNumber();
          })
          // ----------------------------------------------------------
        })
        .catch(() => {
          this.youhui = oldValue;
        });
    },
    numberChangeXianPrice(currentValue, oldValue) {
  // 如果现价没有变化,直接返回
  if (this.queryParams.xianprice === this.lastXianPrice || !this.queryParams.xianprice) {
    return;
  }
  this.$confirm("确定修改所有子项的折扣吗?", "提示", {
    confirmButtonText: "确定",
    cancelButtonText: "取消",
    type: "warning",
  })
    .then(() => {
      // 确保修改折扣的值
      this.youhui = currentValue;
      let totalYsprice = new Big(0); // 初始化总 ysprice
      // 遍历每个项目,更新每个子项的价格
      this.OnenewpacName.forEach((item) => {
        item.limits = this.youhui;
        const proPrice = new Big(item.proPrice);
        const limits = new Big(item.limits);
        const result = proPrice.times(limits.div(10));  // ordPrice * (discount / 10)
        item.ysPrice = result.toNumber();
        totalYsprice = totalYsprice.plus(new Big(item.ysPrice));
      });
      // 如果总的 ysPrice 和查询参数中的 xianprice 不一致,进行调整
      if (!totalYsprice.eq(this.queryParams.xianprice)) {
        const diff = new Big(this.queryParams.xianprice).minus(totalYsprice);
        // 如果 OnenewpacName 数组不为空,调整最后一项的 ysPrice
        if (this.OnenewpacName.length > 0) {
          const lastItem = this.OnenewpacName[this.OnenewpacName.length - 1];
          const newYsPrice = new Big(lastItem.ysPrice).plus(diff).toNumber();
          // 使用 $set 确保响应性更新
          this.$set(this.OnenewpacName[this.OnenewpacName.length - 1], 'ysPrice', newYsPrice);
        }
      }
      // 更新 lastXianPrice 以便下次比较
      this.lastXianPrice = this.queryParams.xianprice;
    })
    .catch(() => {
      // 如果取消修改,恢复原有的优惠值
      this.youhui = oldValue;
    });
},
    changegroupingName() {
      if (this.selectionList.length <= 0) {
@@ -1212,36 +1051,7 @@
              index +
              1;
          });
          if (this.groupList.length >= 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) => {
@@ -1253,42 +1063,18 @@
              index +
              1;
          });
          if (this.groupList.length >= 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;
      });
    },
    getpro() {
      getProjectList().then((response) => {
        this.Treedata = response.data;
      });
    },
    handleSearch() {
      if (this.queryParams.pacName) {
        getPackageList(this.queryParams.pacName).then((response) => {
@@ -1321,78 +1107,165 @@
    },
    handleSearchFor() {
      getProjectList(this.queryParams.proName).then((response) => {
        this.Treedata = response.data;
        response.data.forEach((item, index) => {
          item.newID =
            (this.queryParams.pageNum - 1) * this.queryParams.pageSize +
            index +
            1;
        });
        this.Treedata = response.data;
      });
    },
    // 单项数据获取
    handleChangesingle(selection) {
      if (selection) {
        this.dataList = selection;
        this.resetright()
      }
    },
    // 单项选定按钮
    resetright() {
      this.queryParams.price = 0;
      this.dataList.forEach((item) => {
        this.$refs.tre.toggleRowSelection(item, false);
        this.OnenewpacName.push(item);
      });
      if (this.dataList.length == 0) {
        return; // 如果数据列表为空,直接返回
      } else {
        this.queryParams.price = 0; // 初始化总价
        this.queryParams.xianprice = 0; // 初始化现价
        this.youhui = 0; // 初始化优惠
      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--;
        const newItemsToAdd = []; // 用于存储新需要添加的项目
        this.dataList.forEach((item) => {
          this.$refs.tre.toggleRowSelection(item, false); // 取消选中状态
          // 使用 $set 确保响应性
          this.$set(item, 'limits', 10); // 设置限制数量
          this.$set(item, 'ysPrice', item.proPrice); // 设置现价为原价
          // 检查是否已经存在相同的项目
          const existingItem = this.OnenewpacName.find(existing => existing.proId === item.proId);
          if (!existingItem) {
            newItemsToAdd.push(item); // 如果不存在相同项目,则添加到新数组
            this.updateProPrice(item);
          }
        });
        // 添加新项目到 OnenewpacName
        this.OnenewpacName.push(...newItemsToAdd);
        // 删除重复项目,这里我们只需处理新添加的项目和原有项目之间的重复
        for (let i = this.OnenewpacName.length - newItemsToAdd.length; i < this.OnenewpacName.length - 1; i++) {
          for (let j = i + 1; j < this.OnenewpacName.length; j++) {
            if (this.OnenewpacName[i].proId === this.OnenewpacName[j].proId) {
              this.OnenewpacName.splice(j, 1); // 删除重复的项目
              j--; // 因为删除了一个元素,当前的j要减1
            }
          }
        }
        this.queryParams.price = 0
        this.queryParams.xianprice = 0
        // 重新计算总价和现价
        this.OnenewpacName.forEach((item) => {
          this.queryParams.price += item.proPrice; // 累加原价
          //this.queryParams.xianprice += item.ysPrice || 0;  累加现价,如果ysPrice为undefined则累加0
        });
        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
      }
      return this.OnenewpacName.forEach((item) => {
        this.queryParams.price += item.proPrice;
      });
    },
    submitrighr() {
      if (this.pacList.length >= 1) {
        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);
    handledbelete(row) {
      this.queryParams.price = 0;
      this.queryParams.xianprice = 0; // 初始化现价
      this.youhui = 0; // 初始化优惠
      // 先找到并删除项目
      this.OnenewpacName = this.OnenewpacName.filter(item => item.proId !== row.proId);
      // 然后更新总价和现价
      this.OnenewpacName.forEach((item) => {
        this.queryParams.price += item.proPrice;
        this.queryParams.xianprice =this.OnenewpacName.reduce((sum, item) => {
        return sum.plus(new Big(item.ysPrice || "0"));
      }, new Big(0)).toNumber();
      });
      // 计算优惠
      if (this.queryParams.price > 0) {
        this.youhui = (Math.floor((this.queryParams.xianprice / this.queryParams.price) * 100) / 100) * 10;
      } else {
        this.$modal.msgError("请选择套餐");
        this.youhui = 10;
      }
    },
    submitrighr() {
      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;
      this.pacList.forEach((item) => {
        item.tjProjectList.forEach(item2 => {
          this.OnenewpacName.push(item2)
        })
        this.OnenewpacName.forEach((item) => {
          this.queryParams.price += item.proPrice;
        });
      });
      if(this.dataList.length >= 1){
        console.log(11111)
          this.dataList.forEach(item1 => {
            this.OnenewpacName.push(item1)
          })
        }
      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) => {
@@ -1432,90 +1305,159 @@
    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); //设置这一行取消选中
      if (selection.length > 0) {
        this.groupList.forEach((item) => {
          this.forms.groupingName = item.groupingName;
          this.forms.gtAge = item.gtAge;
          this.forms.limits = item.limits;
          this.youhui =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.GroupUpdate();
        this.isSexDisabled = false; // 恢复性别选择框为可用
      }
      this.groupIds = selection.map((item) => item.id);
      this.singlegg = !selection.length;
    },
    //保存分组
    handleGroup() {
      if (this.selectionList.length <= 0) {
        this.$modal.msgError("请先选中部门或添加新的部门");
      } 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 = "";
          }
    handleBeforeClose(done) {
      this.$confirm('确认关闭?')
        .then(() => done())
        .catch(() => { /* 取消关闭 */ });
    },
    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)).toNumber();
          // this.OnenewpacName.forEach((item, index) => {
          //   this.queryParams.price += item.proPrice;
          // });
          //
          // this.youhui = (Math.floor((this.queryParams.xianprice / this.queryParams.price) * 100) / 100) * 10
          this.queryParams.xianprice = res.data.ysPrice
          this.queryParams.price= res.data.price
          this.youhui= res.data.limits
        });
      }
      // console.log(this.groupList[0].id, 9966);
      getconfigKey("sfzstc").then((res) => {
        this.sfzs = res.msg;
      });
      if (this.forms.sex) {
        console.log('进来了if');
        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 {
        console.log('进来了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;
      });
    },
    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 = {};
      this.$refs.tbs.clearSelection();
      this.forms = {
        groupingName: "",
        gtAge: "",
        limits: "",
        ltAge: "",
        pacName: "",
        payType: "1",
        sex: "2",
        price: "",
        ysPrice: "",
      };
    },
    beCurrent() {
      let data = {
@@ -1523,6 +1465,7 @@
        dwId: this.selectionList[0].dwId,
      };
      getDwAndDwDept(data).then((response) => {
        // 部门名称
        this.groupingList = response.data;
        response.data.forEach((item, index) => {
          item.newID =
@@ -1572,7 +1515,7 @@
      }
    },
    // 把每一行的索引放进row,方便双击修改无法获得索引则无法取消后数据进行还原
    tableRowClassName({ row, rowIndex }) {
      row.index = rowIndex;
    },
@@ -1588,11 +1531,19 @@
              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("请填写必传项");
            }
          }
        }
      });
@@ -1603,8 +1554,8 @@
      this.$modal
        .confirm(
          '是否确认删除体检单位信息维护编号为"' +
            drugManufacturerIds +
            '"的数据项?'
          drugManufacturerIds +
          '"的数据项?'
        )
        .then(function () {
          return delComp(drugManufacturerIds);
@@ -1613,7 +1564,7 @@
          this.getList();
          this.$modal.msgSuccess("删除成功");
        })
        .catch(() => {});
        .catch(() => { });
    },
    /** 导出按钮操作 */
    handleExport() {
@@ -1628,7 +1579,7 @@
  },
};
</script>
<style scoped>
<style lang="scss" scoped>
.pag {
  width: 100%;
  display: flex;
@@ -1657,4 +1608,24 @@
  justify-content: center;
  margin: auto;
}
.btnback {
  width: 50px;
  height: 100px;
}
::v-deep .el-dialog__body {
  padding: 5px 30px;
}
::v-deep .el-dialog {
  // height: 750px;
  overflow-y: auto;
}
::v-deep .btntoleft .el-button--medium {
  padding: 20px 20px 10px;
  font-size: 14px;
  border-radius: 4px;
}
</style>