|
@@ -3,6 +3,7 @@
|
3
|
3
|
<el-table v-if="prescription.type == 1" :data="prescription.advices" border style="width: 100%;"
|
4
|
4
|
:row-style="{ color: '#303133' }"
|
5
|
5
|
:header-cell-style="{backgroundColor: 'rgb(245, 247, 250)',color: '#606266'}" highlight-current-row>
|
|
6
|
+ <el-table-column align="center" type="index" width="40" label="序号"></el-table-column>
|
6
|
7
|
<el-table-column align="center" prop="name" label="名称">
|
7
|
8
|
<template slot-scope="scope">{{ scope.row.drug_name }}</template>
|
8
|
9
|
</el-table-column>
|
|
@@ -27,6 +28,11 @@
|
27
|
28
|
|
28
|
29
|
</template>
|
29
|
30
|
</el-table-column>
|
|
31
|
+ <el-table-column align="center" prop="day" width="50" label="天数">
|
|
32
|
+ <template slot-scope="scope">
|
|
33
|
+ <div>{{ scope.row.day }}</div>
|
|
34
|
+ </template>
|
|
35
|
+ </el-table-column>
|
30
|
36
|
|
31
|
37
|
<el-table-column align="center" prop="name" width="100" label="总量">
|
32
|
38
|
<template slot-scope="scope">
|