Commit bb9cbb09 authored by 黄奎's avatar 黄奎

页面修改

parent 5d30b0ff
...@@ -102,7 +102,6 @@ ...@@ -102,7 +102,6 @@
}, },
//选择文件弹窗 //选择文件弹窗
attachmentSelected(fileArray) { attachmentSelected(fileArray) {
if (fileArray&&fileArray.length) { if (fileArray&&fileArray.length) {
let html = ''; let html = '';
//图片 //图片
...@@ -144,8 +143,8 @@ ...@@ -144,8 +143,8 @@
} }
if(this.uploadType==3) if(this.uploadType==3)
{ {
for (let i in e) { for (let i in fileArray) {
var type = e[i].fileName.split('.')[1]; var type = fileArray[i].fileName.split('.')[1];
var imgUrl = ""; var imgUrl = "";
var dataName = ""; var dataName = "";
if (type == 'xlsx' || type == 'xls') { if (type == 'xlsx' || type == 'xls') {
......
...@@ -284,8 +284,8 @@ ...@@ -284,8 +284,8 @@
default: null default: null
}, },
CourseId: { CourseId: {
type: String, //课程编号 type: Number, //课程编号
default: "0", default: 0,
}, },
BankId: { BankId: {
type: String, //题库编号 type: String, //题库编号
......
...@@ -811,10 +811,13 @@ ...@@ -811,10 +811,13 @@
}, },
//跳转到学生名单 //跳转到学生名单
gostudent(item) { gostudent(item) {
var tempStr = '/sale/studentList?OrderId=' + item.OrderId + '&ClassId=' + item.ClassId; var tempStr = '/sale/studentList';
this.$router.push({ this.$router.push({
path: tempStr, path: tempStr,
query: { query: {
OrderId:item.OrderId,
ClassId:item.ClassId,
SourceId:item.SourceId,
isShow: this.AuthorityObj.isShowGuestBtn isShow: this.AuthorityObj.isShowGuestBtn
} }
}); });
......
This diff is collapsed.
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