|
@@ -301,6 +301,12 @@
|
301
|
301
|
</template>
|
302
|
302
|
</el-table-column>
|
303
|
303
|
|
|
304
|
+ <el-table-column prop="remark" align="center" label="医嘱嘱托">
|
|
305
|
+ <template slot-scope="scope">
|
|
306
|
+ {{scope.row.remark}}
|
|
307
|
+ </template>
|
|
308
|
+ </el-table-column>
|
|
309
|
+
|
304
|
310
|
</el-table>
|
305
|
311
|
</div>
|
306
|
312
|
<div slot="footer" class="dialog-footer">
|
|
@@ -488,6 +494,12 @@
|
488
|
494
|
</el-form-item>
|
489
|
495
|
</el-col>
|
490
|
496
|
|
|
497
|
+ <el-col :span="12">
|
|
498
|
+ <el-form-item prop="day_count" label="医嘱嘱托:">
|
|
499
|
+ <el-input style="width: 200px" v-model="templateForm.remark"></el-input>
|
|
500
|
+ </el-form-item>
|
|
501
|
+ </el-col>
|
|
502
|
+
|
491
|
503
|
</el-row>
|
492
|
504
|
</el-form>
|
493
|
505
|
<div slot="footer" class="dialog-footer">
|
|
@@ -1422,7 +1434,8 @@
|
1422
|
1434
|
execution_frequency: '',
|
1423
|
1435
|
id: 0,
|
1424
|
1436
|
drug_id:0,
|
1425
|
|
- way:0
|
|
1437
|
+ way:0,
|
|
1438
|
+ remark:""
|
1426
|
1439
|
},
|
1427
|
1440
|
dialogConfigVisible:false,
|
1428
|
1441
|
templateFormEdit: {
|
|
@@ -1877,7 +1890,10 @@
|
1877
|
1890
|
templateFormTwo.parent_id = this.parent_id
|
1878
|
1891
|
templateFormTwo.drug_id = this.templateForm.drug_id
|
1879
|
1892
|
templateFormTwo.way = this.templateForm.way
|
1880
|
|
-
|
|
1893
|
+ templateFormTwo.remark = this.templateForm.remark
|
|
1894
|
+
|
|
1895
|
+ console.log("remake------------------",templateFormTwo.remark)
|
|
1896
|
+
|
1881
|
1897
|
if (this.isAddChild) {
|
1882
|
1898
|
CreateSubAdvice(templateFormTwo).then(response => {
|
1883
|
1899
|
if (response.data.state == 0) {
|
|
@@ -1933,7 +1949,7 @@
|
1933
|
1949
|
templateFormTwo.parent_id = this.parent_id
|
1934
|
1950
|
templateFormTwo.drug_id = this.templateForm.drug_id
|
1935
|
1951
|
templateFormTwo.way = this.templateForm.way
|
1936
|
|
-
|
|
1952
|
+ templateFormTwo.remark = this.templateForm.remark
|
1937
|
1953
|
if (this.templateForm.frequency_type == 1) {
|
1938
|
1954
|
templateFormTwo.frequency_type = this.templateForm.frequency_type
|
1939
|
1955
|
templateFormTwo.day_count = '0'
|
|
@@ -1979,6 +1995,7 @@
|
1979
|
1995
|
this.adviceTableData[i].weekdays = templateFormTwo.weekdays
|
1980
|
1996
|
this.adviceTableData[i].drug_id = templateFormTwo.drug_id
|
1981
|
1997
|
this.adviceTableData[i].way = templateFormTwo.way
|
|
1998
|
+ this.adviceTableData[i].remark =templateFormTwo.remark
|
1982
|
1999
|
|
1983
|
2000
|
}
|
1984
|
2001
|
}
|