Browse Source

统一身份证类型

newMaster
1747191978@qq.com 4 months ago
parent
commit
e254a9ad70
  1. 8
      acupuncture-前台/src/views/followFile/index.vue
  2. 20
      acupuncture-前台/src/views/followFile/subjects.vue
  3. 8
      acupuncture-前台/src/views/followFile/work.vue
  4. 5
      acupuncture-前台/src/views/medicalFile/index.vue
  5. 4
      acupuncture-前台/src/views/patientFile/index.vue

8
acupuncture-前台/src/views/followFile/index.vue

@ -257,8 +257,7 @@ export default {
openCron: false,
//
expression: "",
idCardType: [
{
idCardType: [{
label: "身份证",
value: 0,
},
@ -274,12 +273,17 @@ export default {
label: "台湾居民来往大陆通行证",
value: 3,
},
{
label: "其他",
value: 4,
},
],
idCardTypeValue: {
0: "身份证",
1: "护照或外国人永居证",
2: "港澳居民来往内地通行",
3: "台湾居民来往大陆通行证",
4: "其他",
},
loading: false, //
ids: [], //

20
acupuncture-前台/src/views/followFile/subjects.vue

@ -215,8 +215,7 @@ export default {
data() {
return {
fileList: [],
idCardType: [
{
idCardType: [{
label: "身份证",
value: 0,
},
@ -232,12 +231,17 @@ export default {
label: "台湾居民来往大陆通行证",
value: 3,
},
{
label: "其他",
value: 4,
},
],
idCardTypeValue: {
0: "身份证",
1: "护照或外国人永居证",
2: "港澳居民来往内地通行",
3: "台湾居民来往大陆通行证",
4: "其他",
},
loading: false, //
ids: [], //
@ -332,9 +336,17 @@ export default {
);
},
/** 跳转患者档案 */
handlePatient(row) {},
handlePatient(row) {
this.$router.push({
path:`/patientIndex?idCard=${row.idCard}`
})
},
/** 诊疗档案 */
handleMedical(row) {},
handleMedical(row) {
this.$router.push({
path:`/medicalIndex?idCard=${row.idCard}`
})
},
/** 提交按钮 */
submitForm: function () {
this.$refs["form"].validate((valid) => {

8
acupuncture-前台/src/views/followFile/work.vue

@ -303,8 +303,7 @@ export default {
4: "超期未随访",
5: "超期已随访",
},
idCardType: [
{
idCardType: [{
label: "身份证",
value: 0,
},
@ -320,12 +319,17 @@ export default {
label: "台湾居民来往大陆通行证",
value: 3,
},
{
label: "其他",
value: 4,
},
],
idCardTypeValue: {
0: "身份证",
1: "护照或外国人永居证",
2: "港澳居民来往内地通行",
3: "台湾居民来往大陆通行证",
4: "其他",
},
loading: false, //
ids: [], //

5
acupuncture-前台/src/views/medicalFile/index.vue

@ -537,12 +537,17 @@
label: "台湾居民来往大陆通行证",
value: 3,
},
{
label: "其他",
value: 4,
},
],
idCardTypeValue: {
0: "身份证",
1: "护照或外国人永居证",
2: "港澳居民来往内地通行",
3: "台湾居民来往大陆通行证",
4: "其他",
},
//
systemType: [

4
acupuncture-前台/src/views/patientFile/index.vue

@ -3,7 +3,7 @@
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch"
label-width="68px">
<el-form-item label="" prop="noticeTitle">
<el-input v-model="queryParams.param.keywords" placeholder="支持姓名、全拼、简拼" clearable
<el-input v-model="queryParams.param.keywords" placeholder="支持姓名、全拼、简拼、手机号吗、证件号码" clearable
@keyup.enter.native="handleQuery" />
</el-form-item>
<el-form-item label="年龄范围" prop="createBy">
@ -329,6 +329,8 @@
};
},
created() {
let idCard = this.$route.query.idCard
this.queryParams.param.keywords = idCard || ''
this.getList();
},
methods: {

Loading…
Cancel
Save