|
@@ -2528,6 +2528,7 @@ export default {
|
2528
|
2528
|
}
|
2529
|
2529
|
});
|
2530
|
2530
|
},
|
|
2531
|
+ // 点击报存
|
2531
|
2532
|
submitNewAdvice(formName, action) {
|
2532
|
2533
|
console.log("kkkthis.adviceForm",this.adviceForm)
|
2533
|
2534
|
this.$refs[formName].validate(valid => {
|
|
@@ -3256,6 +3257,7 @@ export default {
|
3256
|
3257
|
this.dialogFormVisible = true;
|
3257
|
3258
|
},
|
3258
|
3259
|
changeAdviceName(key) {
|
|
3260
|
+
|
3259
|
3261
|
if (key in this.adviceTemplateMaps) {
|
3260
|
3262
|
this.adviceForm.advice_name = this.adviceTemplateMaps[key].advice_name;
|
3261
|
3263
|
this.adviceForm.advice_desc = this.adviceTemplateMaps[key].advice_desc;
|
|
@@ -3276,6 +3278,7 @@ export default {
|
3276
|
3278
|
key
|
3277
|
3279
|
].execution_frequency;
|
3278
|
3280
|
}
|
|
3281
|
+ console.log('444444',this.adviceForm);
|
3279
|
3282
|
},
|
3280
|
3283
|
indexMethod(index) {
|
3281
|
3284
|
if (index === 0) {
|
|
@@ -4661,35 +4664,64 @@ export default {
|
4661
|
4664
|
this.current_drug_name = name
|
4662
|
4665
|
this.adviceForm.advice_desc = ''
|
4663
|
4666
|
this.drugSpec = []
|
|
4667
|
+ console.log('7777777',name);
|
4664
|
4668
|
for (let i = 0; i < this.all_drug.length; i++) {
|
|
4669
|
+ // if(this.all_drug[i].drug_name.indexOf(name) != -1){
|
|
4670
|
+
|
|
4671
|
+ // }
|
4665
|
4672
|
if (this.all_drug[i].drug_name == name) {
|
4666
|
4673
|
this.drugSpec = this.all_drug[i].drug_specs
|
|
4674
|
+ console.log('this.drugSpec',this.drugSpec);
|
|
4675
|
+ for(let i=0;i<this.drugSpec.length;i++){
|
|
4676
|
+ console.log('this.drugSpec.length',this.drugSpec[i].drug_name);
|
|
4677
|
+ if (this.drugSpec[i].drug_name == name) {
|
|
4678
|
+ console.log('22222222',this.drugSpec[i])
|
|
4679
|
+ this.adviceForm.advice_desc = this.drugSpec[i].drug_spec
|
|
4680
|
+ this.adviceForm.prescribing_number = this.drugSpec[i].prescribing_number.toString()
|
|
4681
|
+ this.adviceForm.single_dose = this.drugSpec[i].single_dose.toString()
|
|
4682
|
+ this.adviceForm.delivery_way = this.drugSpec[i].delivery_way.toString()
|
|
4683
|
+ this.adviceForm.execution_frequency = this.drugSpec[i].execution_frequency.toString()
|
|
4684
|
+ this.drug_id = this.drugSpec[i].id
|
|
4685
|
+ this.src_type = this.drugSpec[i].type
|
|
4686
|
+ this.adviceForm.drug_id = this.drugSpec[i].id
|
|
4687
|
+ this.adviceForm.way = this.drugSpec[i].type
|
|
4688
|
+ this.adviceForm.single_dose_unit = this.drugSpec[i].min_unit
|
|
4689
|
+ this.adviceForm.drug_spec_unit = this.drugSpec[i].min_unit
|
|
4690
|
+ this.adviceForm.prescribing_number_unit = this.drugSpec[i].min_unit
|
|
4691
|
+ if(this.drugSpec[i].drug_name_id){
|
|
4692
|
+ this.adviceForm.drug_name_id = this.drugSpec[i].drug_name_id
|
|
4693
|
+ }else{
|
|
4694
|
+ this.adviceForm.drug_name_id = 0
|
|
4695
|
+ }
|
|
4696
|
+ }
|
|
4697
|
+ }
|
4667
|
4698
|
}
|
4668
|
4699
|
}
|
4669
|
4700
|
},
|
4670
|
4701
|
changeDrugDescTwo(name){
|
4671
|
4702
|
this.current_drug_spec = name
|
4672
|
|
- for (let i = 0; i < this.drugSpec.length; i++) {
|
4673
|
|
- if (this.drugSpec[i].drug_spec == name) {
|
4674
|
|
- this.adviceForm.advice_desc = this.drugSpec[i].drug_spec
|
4675
|
|
- this.adviceForm.prescribing_number = this.drugSpec[i].prescribing_number.toString()
|
4676
|
|
- this.adviceForm.single_dose = this.drugSpec[i].single_dose.toString()
|
4677
|
|
- this.adviceForm.delivery_way = this.drugSpec[i].delivery_way.toString()
|
4678
|
|
- this.adviceForm.execution_frequency = this.drugSpec[i].execution_frequency.toString()
|
4679
|
|
- this.drug_id = this.drugSpec[i].id
|
4680
|
|
- this.src_type = this.drugSpec[i].type
|
4681
|
|
- this.adviceForm.drug_id = this.drugSpec[i].id
|
4682
|
|
- this.adviceForm.way = this.drugSpec[i].type
|
4683
|
|
- this.adviceForm.single_dose_unit = this.drugSpec[i].min_unit
|
4684
|
|
- this.adviceForm.drug_spec_unit = this.drugSpec[i].min_unit
|
4685
|
|
- this.adviceForm.prescribing_number_unit = this.drugSpec[i].min_unit
|
4686
|
|
- if(this.drugSpec[i].drug_name_id){
|
4687
|
|
- this.adviceForm.drug_name_id = this.drugSpec[i].drug_name_id
|
4688
|
|
- }else{
|
4689
|
|
- this.adviceForm.drug_name_id = 0
|
4690
|
|
- }
|
4691
|
|
- }
|
4692
|
|
- }
|
|
4703
|
+ // for (let i = 0; i < this.drugSpec.length; i++) {
|
|
4704
|
+ // if (this.drugSpec[i].drug_spec == name) {
|
|
4705
|
+ // console.log('22222222',this.drugSpec[i])
|
|
4706
|
+ // this.adviceForm.advice_desc = this.drugSpec[i].drug_spec
|
|
4707
|
+ // this.adviceForm.prescribing_number = this.drugSpec[i].prescribing_number.toString()
|
|
4708
|
+ // this.adviceForm.single_dose = this.drugSpec[i].single_dose.toString()
|
|
4709
|
+ // this.adviceForm.delivery_way = this.drugSpec[i].delivery_way.toString()
|
|
4710
|
+ // this.adviceForm.execution_frequency = this.drugSpec[i].execution_frequency.toString()
|
|
4711
|
+ // this.drug_id = this.drugSpec[i].id
|
|
4712
|
+ // this.src_type = this.drugSpec[i].type
|
|
4713
|
+ // this.adviceForm.drug_id = this.drugSpec[i].id
|
|
4714
|
+ // this.adviceForm.way = this.drugSpec[i].type
|
|
4715
|
+ // this.adviceForm.single_dose_unit = this.drugSpec[i].min_unit
|
|
4716
|
+ // this.adviceForm.drug_spec_unit = this.drugSpec[i].min_unit
|
|
4717
|
+ // this.adviceForm.prescribing_number_unit = this.drugSpec[i].min_unit
|
|
4718
|
+ // if(this.drugSpec[i].drug_name_id){
|
|
4719
|
+ // this.adviceForm.drug_name_id = this.drugSpec[i].drug_name_id
|
|
4720
|
+ // }else{
|
|
4721
|
+ // this.adviceForm.drug_name_id = 0
|
|
4722
|
+ // }
|
|
4723
|
+ // }
|
|
4724
|
+ // }
|
4693
|
4725
|
},
|
4694
|
4726
|
changeDrugName(name){
|
4695
|
4727
|
this.current_drug_name = name
|
|
@@ -4731,12 +4763,13 @@ export default {
|
4731
|
4763
|
},
|
4732
|
4764
|
|
4733
|
4765
|
querySearch(queryString, cb) {
|
4734
|
|
- console.log('queryString',queryString)
|
|
4766
|
+ console.log('queryString1111',queryString)
|
4735
|
4767
|
var restaurants = this.all_drug;
|
4736
|
4768
|
restaurants.map(item => {
|
4737
|
4769
|
item.value = item.drug_name
|
4738
|
4770
|
})
|
4739
|
4771
|
var results = queryString ? restaurants.filter(this.createFilter(queryString)) : restaurants;
|
|
4772
|
+ // var results=arr
|
4740
|
4773
|
// 调用 callback 返回建议列表的数据
|
4741
|
4774
|
console.log('results',results)
|
4742
|
4775
|
cb(results);
|
|
@@ -4744,7 +4777,8 @@ export default {
|
4744
|
4777
|
|
4745
|
4778
|
createFilter(queryString) {
|
4746
|
4779
|
return (restaurant) => {
|
4747
|
|
- return (restaurant.drug_name.toLowerCase().indexOf(queryString.toLowerCase()) === 0);
|
|
4780
|
+ // return (restaurant.drug_name.toLowerCase().indexOf(queryString.toLowerCase()) === 0);
|
|
4781
|
+ return (restaurant.drug_name.indexOf(queryString) != -1);
|
4748
|
4782
|
};
|
4749
|
4783
|
},
|
4750
|
4784
|
|
|
@@ -4784,6 +4818,28 @@ export default {
|
4784
|
4818
|
this.nameForm.drug_id = tmp.id
|
4785
|
4819
|
console.log("isiisisthis.adviceForm",this.adviceForm)
|
4786
|
4820
|
this.adviceForm.drug_id = tmp.id
|
|
4821
|
+ for (let i = 0; i < this.drugSpec.length; i++) {
|
|
4822
|
+ if (this.drugSpec[i].drug_spec == tmp.drug_name) {
|
|
4823
|
+ console.log('22222222',this.drugSpec[i])
|
|
4824
|
+ this.adviceForm.advice_desc = this.drugSpec[i].drug_spec
|
|
4825
|
+ this.adviceForm.prescribing_number = this.drugSpec[i].prescribing_number.toString()
|
|
4826
|
+ this.adviceForm.single_dose = this.drugSpec[i].single_dose.toString()
|
|
4827
|
+ this.adviceForm.delivery_way = this.drugSpec[i].delivery_way.toString()
|
|
4828
|
+ this.adviceForm.execution_frequency = this.drugSpec[i].execution_frequency.toString()
|
|
4829
|
+ this.drug_id = this.drugSpec[i].id
|
|
4830
|
+ this.src_type = this.drugSpec[i].type
|
|
4831
|
+ this.adviceForm.drug_id = this.drugSpec[i].id
|
|
4832
|
+ this.adviceForm.way = this.drugSpec[i].type
|
|
4833
|
+ this.adviceForm.single_dose_unit = this.drugSpec[i].min_unit
|
|
4834
|
+ this.adviceForm.drug_spec_unit = this.drugSpec[i].min_unit
|
|
4835
|
+ this.adviceForm.prescribing_number_unit = this.drugSpec[i].min_unit
|
|
4836
|
+ if(this.drugSpec[i].drug_name_id){
|
|
4837
|
+ this.adviceForm.drug_name_id = this.drugSpec[i].drug_name_id
|
|
4838
|
+ }else{
|
|
4839
|
+ this.adviceForm.drug_name_id = 0
|
|
4840
|
+ }
|
|
4841
|
+ }
|
|
4842
|
+ }
|
4787
|
4843
|
},
|
4788
|
4844
|
getTime(val) {
|
4789
|
4845
|
if(val < 0){
|