|
|
@@ -40,7 +40,7 @@
|
|
40
|
40
|
<td v-if="!orderDetailData.F_ApplicationDept || orderDetailData.F_ApplicationDept=='0'">-</td>
|
|
41
|
41
|
<th>科室位置:</th>
|
|
42
|
42
|
<td>{{ orderDetailData.F_Location }}</td>
|
|
43
|
|
-
|
|
|
43
|
+
|
|
44
|
44
|
</tr>
|
|
45
|
45
|
<tr>
|
|
46
|
46
|
<th>申请时间:</th>
|
|
|
@@ -142,13 +142,17 @@
|
|
142
|
142
|
<el-tab-pane label="关联工单" name="2">
|
|
143
|
143
|
<el-col :md="24" class="order_detail_content">
|
|
144
|
144
|
<el-table :data="sonData" border style="width: 100%">
|
|
145
|
|
- <el-table-column prop="F_WorkOrderCode" label="工单编号" align="center" />
|
|
|
145
|
+ <el-table-column prop="F_WorkOrderCode" label="工单编号" align="center">
|
|
|
146
|
+ <template slot-scope="scope">
|
|
|
147
|
+ <span style="color: royalblue;cursor: pointer;" @click="hadndleOrderCode(scope.row.F_WorkOrderCode)">{{scope.row.F_WorkOrderCode}}</span>
|
|
|
148
|
+ </template>
|
|
|
149
|
+ </el-table-column>
|
|
146
|
150
|
<el-table-column prop="DealManName" label="接单人" align="center">
|
|
147
|
151
|
<template slot-scope="scope">
|
|
148
|
152
|
<span>{{scope.row.DealManName}}-{{scope.row.DealManPhone}}</span>
|
|
149
|
153
|
</template>
|
|
150
|
154
|
</el-table-column>
|
|
151
|
|
- <el-table-column prop="F_CreateTime" label="时间" align="center" />
|
|
|
155
|
+ <el-table-column prop="F_AcceptTime" label="接单时间" align="center" />
|
|
152
|
156
|
</el-table>
|
|
153
|
157
|
</el-col>
|
|
154
|
158
|
</el-tab-pane>
|