Commit 07d59b45 authored by 黄奎's avatar 黄奎
parents 6f0392cb 0e520df0
...@@ -54,7 +54,7 @@ ...@@ -54,7 +54,7 @@
<q-field filled label="进度" stack-label class="col-6"> <q-field filled label="进度" stack-label class="col-6">
<template v-slot:control> <template v-slot:control>
<div> <div>
{{ saveObj.CompleteProgress > 0 ? saveObj.CompleteProgress : 0 }}% {{ saveObj.Ranks}}/{{saveObj.TotalPlanNum}}
</div> </div>
</template> </template>
</q-field> </q-field>
...@@ -127,9 +127,10 @@ ...@@ -127,9 +127,10 @@
v-for="(item, index) in saveObj.GuestList" v-for="(item, index) in saveObj.GuestList"
:key="index" :key="index"
:label="item.GuestName" :label="item.GuestName"
:val="item.StuId" :val="item.AppointmentId"
/> />
</div> </div>
{{checkStuType2}}
</div> </div>
<div v-else> <div v-else>
{{ saveObj.GuestList.map(e => e.GuestName).toString() }} {{ saveObj.GuestList.map(e => e.GuestName).toString() }}
...@@ -178,7 +179,7 @@ export default { ...@@ -178,7 +179,7 @@ export default {
const msg = { const msg = {
Date: this.dateObj.date, Date: this.dateObj.date,
TeacherId: this.saveObj.Tid, TeacherId: this.saveObj.Tid,
StuIds: this.checkStuType2.toString() AppointIds : this.checkStuType2.toString()
}; };
CancelAppointment(msg).then(res => { CancelAppointment(msg).then(res => {
if (res.Code == 1) { if (res.Code == 1) {
...@@ -186,7 +187,6 @@ export default { ...@@ -186,7 +187,6 @@ export default {
message: "操作成功", message: "操作成功",
position: "top" position: "top"
}); });
this.changeDig(false);
this.$emit("success"); this.$emit("success");
} }
}); });
......
...@@ -22,9 +22,8 @@ ...@@ -22,9 +22,8 @@
</q-field> </q-field>
<!-- 详情显示内容 start--> <!-- 详情显示内容 start-->
<div class="col-12" v-if="editType==2"> <div class="col-12" v-if="editType==2">
<Detail :dateObj="dateObj" :saveObj="saveObj"/> <Detail :dateObj="dateObj" :saveObj="saveObj" @success="detailSuccessHandle"/>
</div> </div>
<!-- 详情显示内容 end --> <!-- 详情显示内容 end -->
<q-select <q-select
filled filled
...@@ -511,6 +510,10 @@ export default { ...@@ -511,6 +510,10 @@ export default {
} else { } else {
return true; return true;
} }
},
detailSuccessHandle(){
this.changeDig(false);
this.$emit("success");
} }
} }
}; };
......
...@@ -900,7 +900,10 @@ ...@@ -900,7 +900,10 @@
<!-- <p>附加说明</p> --> <!-- <p>附加说明</p> -->
<div> <div>
<p v-if="GetDetail.Type!==7">费用归属部门:<span>{{GetDetail.DepartName}}</span></p> <p v-if="GetDetail.Type!==7">费用归属部门:<span>{{GetDetail.DepartName}}</span></p>
<div> <div style="display:flex;">
<div style="margin-right:20px;text-decoration:underline;cursor:pointer;" v-if="GetDetail.OtherType==53" @click="goFinDetail(GetDetail)">
单据详情
</div>
<el-popover popper-class="detailsIT_Journal_bdm" width="250" trigger="click"> <el-popover popper-class="detailsIT_Journal_bdm" width="250" trigger="click">
<div class="InfoChangeLog"> <div class="InfoChangeLog">
<div class="changLog"> <div class="changLog">
...@@ -3489,6 +3492,17 @@ ...@@ -3489,6 +3492,17 @@
getSJstate(){ getSJstate(){
this.ishowSJ = false this.ishowSJ = false
}, },
//跳转至详情
goFinDetail(obj){
this.$router.push({
path: '/financial/returnPassbook/ReturnUserList',
query: {
id: obj.ReFinanceId,
ReFinanceId2: obj.ReFinanceId2,
CommissionType: 1
}
})
}
}, },
created() { created() {
if (this.$route.query.pageIndex) { if (this.$route.query.pageIndex) {
......
...@@ -220,11 +220,7 @@ ...@@ -220,11 +220,7 @@
<div class="flex no-wrap"> <div class="flex no-wrap">
<span class="detailLabel">进度:</span <span class="detailLabel">进度:</span
><span ><span
>{{ >{{__item.Ranks}}/{{__item.TotalPlanNum}}</span
__item.CompleteProgress > 0
? __item.CompleteProgress
: 0
}}%</span
> >
</div> </div>
<div class="flex no-wrap"> <div class="flex no-wrap">
...@@ -297,11 +293,7 @@ ...@@ -297,11 +293,7 @@
<div class="flex no-wrap"> <div class="flex no-wrap">
<span class="detailLabel">进度:</span <span class="detailLabel">进度:</span
><span ><span
>{{ >{{__item.Ranks}}/{{__item.TotalPlanNum}}</span
__item.CompleteProgress > 0
? __item.CompleteProgress
: 0
}}%</span
> >
</div> </div>
<div class="flex no-wrap"> <div class="flex no-wrap">
......
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