|
@@ -25,7 +25,7 @@
|
|
|
>订单详情</el-button
|
|
|
>
|
|
|
<el-button type="text" @click="theOrderJump(props.scope.row, 2)"
|
|
|
- :disabled="props.scope.row.orderFrom == 5"
|
|
|
+ :disabled="props.scope.row.orderFrom == 5 || props.scope.row.orderFrom == 6"
|
|
|
>计费单收费</el-button
|
|
|
>
|
|
|
<el-button type="text" @click="theOrderJump(props.scope.row, 3)"
|
|
@@ -189,6 +189,10 @@ export default {
|
|
|
label: "业务员录单",
|
|
|
value: "5",
|
|
|
},
|
|
|
+ {
|
|
|
+ label: "业务系统",
|
|
|
+ value: "6",
|
|
|
+ },
|
|
|
],
|
|
|
},
|
|
|
{
|
|
@@ -314,6 +318,7 @@ export default {
|
|
|
path: "orderDetailsT",
|
|
|
query: {
|
|
|
inputOrderSn: row.inputOrderSn,
|
|
|
+ orderFrom:row.orderFrom,
|
|
|
},
|
|
|
});
|
|
|
};
|