Commit 720fc4f7 authored by zhengke's avatar zhengke

修改

parent ef2e595f
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
<q-dialog v-model="persistent" content-class="bg-grey-1" persistent transition-show="scale" transition-hide="scale"> <q-dialog v-model="persistent" content-class="bg-grey-1" persistent transition-show="scale" transition-hide="scale">
<q-card style="width: 800px;max-width:900px;"> <q-card style="width: 800px;max-width:900px;">
<q-card-section> <q-card-section>
<div class="text-h6">修改咨询</div> <div class="text-h6">{{optionTitle}}</div>
</q-card-section> </q-card-section>
<q-card-section class="q-pt-none scroll" style="max-height: 70vh"> <q-card-section class="q-pt-none scroll" style="max-height: 70vh">
<div class="text-caption q-mb-lg q-px-md text-grey-6">咨询信息</div> <div class="text-caption q-mb-lg q-px-md text-grey-6">咨询信息</div>
...@@ -56,14 +56,15 @@ ...@@ -56,14 +56,15 @@
DealStatus: 1 DealStatus: 1
}, },
editObj: {}, editObj: {},
optionTitle: "", optionTitle: "修改咨询",
saveLoading: false, saveLoading: false,
isEdit:false isEdit:false
} }
}, },
mounted() { mounted() {
if(this.saveObj.isView==1){ if(this.saveObj.isView==1){
this.isEdit=true this.isEdit=true;
this.optionTitle='查看咨询';
} }
this.initObj() this.initObj()
}, },
...@@ -81,6 +82,7 @@ ...@@ -81,6 +82,7 @@
this.editObj.Remark = res.Data.Remark; this.editObj.Remark = res.Data.Remark;
this.objOption.Id = res.Data.Id; this.objOption.Id = res.Data.Id;
this.objOption.DealContent = res.Data.DealContent; this.objOption.DealContent = res.Data.DealContent;
this.$forceUpdate();
} }
}) })
} }
......
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