Commit 63a1b70f authored by zhengke's avatar zhengke

修改

parent 83ba084c
......@@ -154,7 +154,6 @@
option-label="Name"
v-model="msg.OrderSourceType"
:options="customFromList"
:disable="isEdit"
label="来源"
dense
emit-value
......@@ -194,6 +193,7 @@
dense
:options="customList"
use-input
:disable="isEdit"
@input="getList"
label="关联同行"
@filter="filterFn"
......@@ -218,6 +218,7 @@
dense
:options="InvitationList"
use-input
:disable="isEdit"
@input="getList"
label="转介人"
@filter="filterFnStudent"
......@@ -455,9 +456,6 @@ export default {
if (this.$route.query && this.$route.query.OrderSourceId) {//人员ID
this.msg.OrderSourceId = parseInt(this.$route.query.OrderSourceId)
}
if (this.$route.query && this.$route.query.OrderSourceId && this.$route.query.OrderSourceId>0){
this.isShow=false;
}
if (this.$route.query && this.$route.query.CommissionType) {
this.msg.CommissionType = this.$route.query.CommissionType;
this.msg.Q_SelectNormal = 2
......@@ -515,11 +513,13 @@ export default {
);
},
getlaiyuan() {
if (this.msg.OrderSourceType == -1) {
this.msg.OrderSourceId = 0
} else {
this.msg.OrderSourceId = ''
if(!this.isEdit){
if (this.msg.OrderSourceType == -1) {
this.msg.OrderSourceId = 0
} else {
this.msg.OrderSourceId = ''
}
}
this.getList()
},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment