Commit f224ee16 authored by zhengke's avatar zhengke

修改

parent 7bb81535
......@@ -25,8 +25,9 @@
<template v-if="modityOrderType==3">
<q-input filled stack-label :dense="false" v-model="OrderMsg.Unit_Price" @blur="countPrice" class="col-12"
label="成交单价" :rules="[val => !!val || '请填成交单价']" />
<q-input filled stack-label v-if="OrderMsg.OrderType==1" :dense="false" maxlength="10" @keyup.native="checkPrice(OrderMsg,'PreferPrice')"
:disable="true" v-model="OrderMsg.PreferPrice" class="col-12 q-pb-lg" label="应收" />
</template>
<q-select :disable="modityOrderType==2" standout="bg-primary text-white" option-value="Id" option-label="Name" v-model="OrderMsg.OrderSource"
:options="SourceEnumList" emit-value map-options class="q-pb-lg" label="客人来源" />
<!--课程订单订单-->
......
......@@ -866,6 +866,18 @@
}
},
watch: {
modityOrderType: {
handler(newValue) {
if(this.isEditOrder){
this.newModityOrderType=3;
}else{
this.newModityOrderType = newValue;
}
},
immediate: true
}
},
mounted() {},
methods: {
//初始化权限信息
......
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