Commit 81d54e27 authored by liudong1993's avatar liudong1993

1

parent cab6ec1d
...@@ -1929,13 +1929,25 @@ ...@@ -1929,13 +1929,25 @@
}, },
gourltx(obj) { gourltx(obj) {
if (obj.OrderType == 1) { if (obj.OrderType == 1) {
this.OpenNewUrl("/financial/cycleOrderList", { if(obj.IsAchievements == 1){
OrderId: obj.OrderId this.OpenNewUrl("/financial/market/AchievementsForOrderList", {
}); OrderId: obj.OrderId
});
}else{
this.OpenNewUrl("/financial/cycleOrderList", {
OrderId: obj.OrderId
});
}
} else { } else {
this.OpenNewUrl("/financial/studyabroad/ordercommission", { if(obj.OrderId >= 1165){
OrderId: obj.OrderId this.OpenNewUrl("/financial/market/AchievementsForOrderList", {
}); OrderId: obj.OrderId
});
}else{
this.OpenNewUrl("/financial/studyabroad/ordercommission", {
OrderId: obj.OrderId
});
}
} }
}, },
//合同提交审核 //合同提交审核
......
...@@ -139,7 +139,7 @@ ...@@ -139,7 +139,7 @@
style="cursor: pointer;text-decoration: underline;" style="cursor: pointer;text-decoration: underline;"
@click="goUrlclass('/course/classManage', scope.row.ClassName)" @click="goUrlclass('/course/classManage', scope.row.ClassName)"
>{{ scope.row.ClassName }}</span> >{{ scope.row.ClassName }}</span>
{{ scope.row.ClassTypeName }} {{ scope.row.ClassType == 1?'学生班':scope.row.ClassType == 2?'社会班':scope.row.ClassType == 3 ? '留学' :'' }}
<span <span
style="color: #409EFF;" style="color: #409EFF;"
v-if="scope.row.IsContinueClass == 1" v-if="scope.row.IsContinueClass == 1"
...@@ -155,7 +155,7 @@ ...@@ -155,7 +155,7 @@
<div <div
v-if="scope.row.OrderId" v-if="scope.row.OrderId"
style="cursor: pointer;text-decoration: underline;" style="cursor: pointer;text-decoration: underline;"
@click="goUrlorderList('/sale/orderStatistics', scope.row)" @click="goUrlorderList(scope.row.ClassType == 3 ?'/sale/studyOrderStatistics' : '/sale/orderStatistics', scope.row)"
>{{ scope.row.OrderId }}</div> >{{ scope.row.OrderId }}</div>
</template> </template>
</el-table-column> </el-table-column>
......
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