Commit 0e81c8a5 authored by youjie's avatar youjie

no message

parent 8a265b70
......@@ -40,7 +40,7 @@
<q-select v-show="model.Type==1" dense standout behavior="menu" filled v-model="props.row.ClassId" ref="class" use-input
:options="classList" option-label="allName" option-value="ClassId" emit-value map-options @filter="classfilter"
:rules="[val => !!val || '请选择班级']" @input='filterCourseFn($event,props.rowIndex)'/>
<q-input v-show="model.Type==3" dense standout filled v-model="props.row.OrderId"
<q-input v-show="model.Type==3" dense standout filled v-model="props.row.OrderId" style="min-width: 200px;"
label="订单ID" :rules="[val => !!val || '请输入约课订单']" @blur='filterOrderFn($event,props.rowIndex)'/>
</q-td>
</template>
......@@ -640,11 +640,10 @@ import {
},
//显示耗材列表
showhaocai(index){
// 1班级 2其他 3约课
if(this.model.Type){
this.haochaidig=true
if(this.model.Type===1){
this.chooseHcIndex=index
}
this.chooseHcIndex=index
}else{
this.$q.notify({
position: 'center',
......@@ -658,7 +657,7 @@ import {
//获取耗材选择列表
gethaocai() {
this.hccheckList = [];
GetMaterialPageList(this.haochaimsg,).then(res=>{
GetMaterialPageList(this.haochaimsg).then(res=>{
if (res.data.resultCode === 1) {
this.haocaiList = res.data.data.pageData;
this.haocaitotal = res.data.data.count;
......
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