qinxianzhangyao
2024-07-26 494dd9608549c5ff1672306eeeff0ce45ab64582
qxtj
2个文件已修改
35 ■■■■■ 已修改文件
src/views/reservation/resercopy/index.vue 10 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/system/Checkout/index.vue 25 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/reservation/resercopy/index.vue
@@ -537,9 +537,9 @@
        reservationTime: [
          { required: true, validator: checkPhoneNum, trigger: "blur" },
        ],
        dwDeptName: [
          { required: true, validator: checkPhoneNum, trigger: "change" },
        ],
        // dwDeptName: [
        //   { required: true, validator: checkPhoneNum, trigger: "change" },
        // ],
        signingPic: [
          { required: true, validator: checkPhoneNum, trigger: "blur" },
        ],
@@ -848,11 +848,11 @@
    /** 导入按钮操作 */
    handleImport() {
      if (this.objs.drugManufacturerId && this.objs.reservationTime &&this.objs.dwDeptName) {
      if (this.objs.drugManufacturerId && this.objs.reservationTime) {
        this.upload.title = "用户导入";
        this.upload.open = true;
      } else {
        this.$modal.msgError("请选择单位或部门");
        this.$modal.msgError("请选择单位或预约时间");
      }
    },
    /** 下载模板操作 */
src/views/system/Checkout/index.vue
@@ -120,9 +120,10 @@
          :show-overflow-tooltip="true"
        >
          <template slot-scope="scope">
            <span v-if="scope.row.tjCustomerSex == '0'">男</span>
            <span v-if="scope.row.tjCustomerSex == '1'">女</span>
            <span v-if="scope.row.tjCustomerSex == '2'">未知</span>
            <dict-tag
              :options="dict.type.sys_user_sex"
              :value="scope.row.tjCustomerSex"
            />
          </template>
        </el-table-column>
        <el-table-column
@@ -251,7 +252,12 @@
    </el-dialog>
    <!-- 添加或修改体检记录对话框 -->
    <el-dialog :title="title" :visible.sync="open" width="660px" :close-on-click-modal="false">
    <el-dialog
      :title="title"
      :visible.sync="open"
      width="660px"
      :close-on-click-modal="false"
    >
      <el-form
        :model="formIn"
        ref="queryForm"
@@ -288,7 +294,8 @@
            style="width: 116px"
            ref="inputName"
            v-model="formIn.tjCustomerSex"
          />
          >
          </el-input>
        </el-form-item>
        <el-form-item label="年龄" prop="tjCustomerAge">
          <el-input
@@ -405,7 +412,7 @@
  components: {
    ViewPdf,
  },
  dicts: ["dict_pay_type"],
  dicts: ["dict_pay_type","sys_user_sex"],
  name: "Order",
  data() {
    return {
@@ -810,7 +817,7 @@
      //     item.type3 = false
      //   }
      // })
      for (let i = 0; i <= this.numberList.length; i++) {
        if (val.proId == this.numberList[i].proId) {
          if (this.numberList[i].type2 === true) {
@@ -819,7 +826,6 @@
            this.tcShow = false;
            return;
          } else {
            return;
          }
        }
@@ -883,7 +889,8 @@
    handleDelete() {
      this.title = "签离登记";
      this.numberList = [];
      this.List.forEach((item) => {
      let list = JSON.parse(JSON.stringify(this.List))
      list.forEach((item) => {
        this.formIn = item;
        if (this.formIn.tjCustomerSex === 0) {
          this.formIn.tjCustomerSex = "男";