Commit 63a1b70f authored by zhengke's avatar zhengke

修改

parent 83ba084c
...@@ -154,7 +154,6 @@ ...@@ -154,7 +154,6 @@
option-label="Name" option-label="Name"
v-model="msg.OrderSourceType" v-model="msg.OrderSourceType"
:options="customFromList" :options="customFromList"
:disable="isEdit"
label="来源" label="来源"
dense dense
emit-value emit-value
...@@ -194,6 +193,7 @@ ...@@ -194,6 +193,7 @@
dense dense
:options="customList" :options="customList"
use-input use-input
:disable="isEdit"
@input="getList" @input="getList"
label="关联同行" label="关联同行"
@filter="filterFn" @filter="filterFn"
...@@ -218,6 +218,7 @@ ...@@ -218,6 +218,7 @@
dense dense
:options="InvitationList" :options="InvitationList"
use-input use-input
:disable="isEdit"
@input="getList" @input="getList"
label="转介人" label="转介人"
@filter="filterFnStudent" @filter="filterFnStudent"
...@@ -455,9 +456,6 @@ export default { ...@@ -455,9 +456,6 @@ export default {
if (this.$route.query && this.$route.query.OrderSourceId) {//人员ID if (this.$route.query && this.$route.query.OrderSourceId) {//人员ID
this.msg.OrderSourceId = parseInt(this.$route.query.OrderSourceId) 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) { if (this.$route.query && this.$route.query.CommissionType) {
this.msg.CommissionType = this.$route.query.CommissionType; this.msg.CommissionType = this.$route.query.CommissionType;
this.msg.Q_SelectNormal = 2 this.msg.Q_SelectNormal = 2
...@@ -515,11 +513,13 @@ export default { ...@@ -515,11 +513,13 @@ export default {
); );
}, },
getlaiyuan() { getlaiyuan() {
if (this.msg.OrderSourceType == -1) { if(!this.isEdit){
this.msg.OrderSourceId = 0 if (this.msg.OrderSourceType == -1) {
this.msg.OrderSourceId = 0
} else {
this.msg.OrderSourceId = '' } else {
this.msg.OrderSourceId = ''
}
} }
this.getList() 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