Commit bb9cbb09 authored by 黄奎's avatar 黄奎

页面修改

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