|
@@ -1,8 +1,5 @@
|
|
|
<template>
|
|
|
- <div class="popbox">
|
|
|
- <div class="tit">
|
|
|
- <h2>{{ judgeNum ? "修改" : "查看" }}</h2>
|
|
|
- </div>
|
|
|
+ <div>
|
|
|
<div class="cellBlock">
|
|
|
<div class="username">姓名</div>
|
|
|
<div class="cellInp">
|
|
@@ -34,7 +31,6 @@
|
|
|
collapse-tags
|
|
|
v-model="recordData.contact"
|
|
|
placeholder="请选择关联同学"
|
|
|
- style="width: 200px"
|
|
|
>
|
|
|
<el-option
|
|
|
v-for="(item, index) in studentList"
|
|
@@ -48,11 +44,7 @@
|
|
|
<div class="cellBlock">
|
|
|
<div class="username">学期</div>
|
|
|
<div>
|
|
|
- <el-select
|
|
|
- v-model="recordData.term"
|
|
|
- style="width: 200px"
|
|
|
- placeholder="请选择"
|
|
|
- >
|
|
|
+ <el-select v-model="recordData.term" placeholder="请选择">
|
|
|
<el-option
|
|
|
v-for="item in termList"
|
|
|
:key="item.id"
|
|
@@ -68,14 +60,13 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="cellBlock">
|
|
|
- <div class="username">纬度</div>
|
|
|
+ <div class="username">维度</div>
|
|
|
<div>
|
|
|
<el-select
|
|
|
multiple
|
|
|
collapse-tags
|
|
|
v-model="recordData.type"
|
|
|
placeholder="请选择教研室"
|
|
|
- style="width: 200px"
|
|
|
>
|
|
|
<el-option
|
|
|
v-for="(item, index) in weiList"
|
|
@@ -94,7 +85,7 @@
|
|
|
type="datetime"
|
|
|
value-format="yyyy-MM-dd HH:mm"
|
|
|
placeholder="选择日期时间"
|
|
|
- style="width: 200px"
|
|
|
+ style="width: 400px;"
|
|
|
>
|
|
|
</el-date-picker>
|
|
|
</div>
|
|
@@ -117,10 +108,10 @@
|
|
|
></el-input>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div style="margin: 15px 0;">
|
|
|
+ <div style="margin: 15px 0;width: 70px;font-size: 16px;text-align: right;">
|
|
|
观察记录
|
|
|
</div>
|
|
|
- <div>
|
|
|
+ <div style="width: 500px;">
|
|
|
<el-input
|
|
|
type="textarea"
|
|
|
placeholder="请输入内容"
|
|
@@ -131,11 +122,16 @@
|
|
|
</el-input>
|
|
|
</div>
|
|
|
|
|
|
- <div style="margin: 15px 0;">
|
|
|
+ <div style="margin: 15px 0;width: 70px;font-size: 16px;">
|
|
|
图片
|
|
|
</div>
|
|
|
<div class="imgBlock">
|
|
|
- <div class="imgCell" v-if="judgeNum" @click.stop="addImg($event)">
|
|
|
+ <div
|
|
|
+ class="imgCell"
|
|
|
+ v-if="judgeNum"
|
|
|
+ @click.stop="addImg($event)"
|
|
|
+ style="cursor: pointer;"
|
|
|
+ >
|
|
|
+
|
|
|
<input
|
|
|
type="file"
|
|
@@ -148,20 +144,40 @@
|
|
|
class="imgCell"
|
|
|
v-for="(i, index) in recordData.recordImg"
|
|
|
:key="index"
|
|
|
+ @click.stop="previewImg(i)"
|
|
|
>
|
|
|
<img class="imgCellCon" :src="i" alt="" />
|
|
|
- <div v-if="judgeNum" class="imgDelBtn" @click="delImg(i)">
|
|
|
+ <div v-if="judgeNum" class="imgDelBtn" @click.stop="delImg(i)">
|
|
|
×
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
|
- <div class="updateCordSty">
|
|
|
- <el-button v-if="judgeNum" style="color: #fff;" type="text" @click="open"
|
|
|
- >修改</el-button
|
|
|
- >
|
|
|
+ <div
|
|
|
+ style="width: 500px;display: flex;justify-content: flex-end;"
|
|
|
+ v-if="judgeNum"
|
|
|
+ >
|
|
|
+ <div class="updateCordSty" @click="open">修改</div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div v-if="proVisible" class="mask">
|
|
|
+ <div class="progressBox">
|
|
|
+ <div class="lbox">
|
|
|
+ <img src="@/assets/loading.gif" />上传中,请稍后
|
|
|
+ </div>
|
|
|
+ <div style="margin-bottom: 10px">
|
|
|
+ <span>{{ isFinishSize }}M</span>
|
|
|
+ /
|
|
|
+ <span>{{ isAllSize }}M</span>
|
|
|
+ </div>
|
|
|
+ <el-progress
|
|
|
+ :text-inside="true"
|
|
|
+ :stroke-width="20"
|
|
|
+ :percentage="progress ? progress : 0"
|
|
|
+ style="width: 80%"
|
|
|
+ ></el-progress>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
- <!-- <div v-if="isShadow" @click="isShadowShow" class="shadow"></div> -->
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
@@ -199,16 +215,21 @@ export default {
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
|
- // popType: this.recordDataCopy.type,
|
|
|
- // popTact: this.recordDataCopy.contact,
|
|
|
- // ico: false,
|
|
|
- // gIco: false,
|
|
|
recordData: {},
|
|
|
- // isShadow: false,
|
|
|
- imgList: []
|
|
|
+ imgList: [],
|
|
|
+ uploadProgress: 0,
|
|
|
+ // Progress: false,
|
|
|
+ proVisible: false,
|
|
|
+ progress: 0,
|
|
|
+ inputShow: false,
|
|
|
+ isFinishSize: 0,
|
|
|
+ isAllSize: 0
|
|
|
};
|
|
|
},
|
|
|
methods: {
|
|
|
+ previewImg(url) {
|
|
|
+ this.$hevueImgPreview(url);
|
|
|
+ },
|
|
|
// 确认修改记录提示?
|
|
|
open() {
|
|
|
// console.log(this.recordData);
|
|
@@ -264,7 +285,7 @@ export default {
|
|
|
.then(res => {
|
|
|
console.log(res);
|
|
|
this.$emit("closePop");
|
|
|
- // this.$emit("selectData");
|
|
|
+ this.$emit("getData");
|
|
|
});
|
|
|
// updateRecordData
|
|
|
},
|
|
@@ -313,6 +334,13 @@ export default {
|
|
|
this.imgLoading = true;
|
|
|
var _this = this;
|
|
|
|
|
|
+ this.inputShow = false;
|
|
|
+ this.progress = 0;
|
|
|
+ this.proVisible = true;
|
|
|
+ this.isFinishSize = 0;
|
|
|
+ this.isAllSize = (file.size / 1024 / 1024).toFixed(2);
|
|
|
+ _this.$forceUpdate();
|
|
|
+
|
|
|
if (file) {
|
|
|
var params = {
|
|
|
Key:
|
|
@@ -334,11 +362,22 @@ export default {
|
|
|
.upload(params, options)
|
|
|
.on("httpUploadProgress", function(evt) {
|
|
|
//这里可以写进度条
|
|
|
- // console.log("Uploaded : " + parseInt((evt.loaded * 80) / evt.total) + '%');
|
|
|
+ _this.progress = parseInt((evt.loaded / evt.total) * 100);
|
|
|
+ _this.isFinishSize = (evt.loaded / 1024 / 1024).toFixed(2);
|
|
|
+ _this.$forceUpdate();
|
|
|
})
|
|
|
.send(function(err, data) {
|
|
|
_this.imgLoading = false;
|
|
|
// loading.close();
|
|
|
+ _this.progress = 100;
|
|
|
+ _this.isFinishSize = _this.isAllSize;
|
|
|
+ _this.$forceUpdate();
|
|
|
+ setTimeout(() => {
|
|
|
+ _this.proVisible = false;
|
|
|
+ _this.$forceUpdate();
|
|
|
+ }, 1000);
|
|
|
+ _this.inputShow = true;
|
|
|
+
|
|
|
if (err) {
|
|
|
_this.$message.error("上传失败");
|
|
|
} else {
|
|
@@ -352,6 +391,14 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
},
|
|
|
+ watch: {
|
|
|
+ recordDataCopy: {
|
|
|
+ handler: function(newVal, oldVal) {
|
|
|
+ this.recordData = JSON.parse(JSON.stringify(this.recordDataCopy));
|
|
|
+ },
|
|
|
+ deep: true
|
|
|
+ }
|
|
|
+ },
|
|
|
mounted() {
|
|
|
this.recordData = JSON.parse(JSON.stringify(this.recordDataCopy));
|
|
|
// console.log("??????????????????????????????????", this.recordData);
|
|
@@ -361,18 +408,54 @@ export default {
|
|
|
|
|
|
<style scoped>
|
|
|
.popbox {
|
|
|
- width: 500px;
|
|
|
- background-color: #fff;
|
|
|
- /* height: 500px; */
|
|
|
padding: 10px;
|
|
|
- position: absolute;
|
|
|
- top: 50%;
|
|
|
- left: 50%;
|
|
|
- transform: translate(-50%, -50%);
|
|
|
- z-index: 3;
|
|
|
border-radius: 10px;
|
|
|
box-shadow: 0 0 10px #ccc;
|
|
|
}
|
|
|
+.mask {
|
|
|
+ background-color: rgb(0 0 0 / 30%);
|
|
|
+ /* position: fixed; */
|
|
|
+ position: absolute;
|
|
|
+ top: 0;
|
|
|
+ left: 0;
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ z-index: 90;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+}
|
|
|
+
|
|
|
+.progressBox {
|
|
|
+ width: 300px;
|
|
|
+ height: 150px;
|
|
|
+ background: #fff;
|
|
|
+ border-radius: 10px;
|
|
|
+ box-shadow: 0 0 6px 1px #bfbfbf;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ flex-direction: column;
|
|
|
+ position: relative;
|
|
|
+ color: #6c6c6c;
|
|
|
+}
|
|
|
+
|
|
|
+.progressBox >>> .el-progress-bar__outer {
|
|
|
+ background-color: #d1dfff !important;
|
|
|
+}
|
|
|
+
|
|
|
+.progressBox .lbox {
|
|
|
+ height: 50px;
|
|
|
+ font-size: 19px;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ color: #747474;
|
|
|
+}
|
|
|
+
|
|
|
+.progressBox .lbox img {
|
|
|
+ width: 40px;
|
|
|
+ margin-right: 20px;
|
|
|
+}
|
|
|
|
|
|
.tit {
|
|
|
width: 100%;
|
|
@@ -380,24 +463,28 @@ export default {
|
|
|
margin-bottom: 10px;
|
|
|
}
|
|
|
.cellBlock {
|
|
|
- width: 100%;
|
|
|
+ width: 500px;
|
|
|
box-sizing: border-box;
|
|
|
padding: 10px 0;
|
|
|
display: flex;
|
|
|
- justify-content: center;
|
|
|
+ /* justify-content: center; */
|
|
|
align-items: center;
|
|
|
}
|
|
|
.cellBlock > .username {
|
|
|
width: 70px;
|
|
|
flex-shrink: 0;
|
|
|
+ font-size: 16px;
|
|
|
text-align: right;
|
|
|
margin-right: 10px;
|
|
|
display: flex;
|
|
|
justify-content: flex-end;
|
|
|
/* justify-content: space-between; */
|
|
|
}
|
|
|
+/deep/ .el-input__inner {
|
|
|
+ width: 400px;
|
|
|
+}
|
|
|
.imgBlock {
|
|
|
- width: 100%;
|
|
|
+ width: 500px;
|
|
|
display: flex;
|
|
|
justify-content: flex-start;
|
|
|
flex-wrap: wrap;
|
|
@@ -432,8 +519,11 @@ export default {
|
|
|
display: block;
|
|
|
}
|
|
|
.updateCordSty {
|
|
|
+ cursor: pointer;
|
|
|
+ padding: 10px 0;
|
|
|
width: 120px;
|
|
|
- float: right;
|
|
|
+ transform: translate(50%, 0%);
|
|
|
+ /* float: right; */
|
|
|
background-color: rgba(17, 61, 221, 0.5);
|
|
|
border-radius: 5px;
|
|
|
color: #fff;
|
|
@@ -451,9 +541,7 @@ export default {
|
|
|
/* ::v-deep .el-input__inner {
|
|
|
width: 200px;
|
|
|
}
|
|
|
-::v-deep .el-input {
|
|
|
- width: 200px;
|
|
|
-}
|
|
|
+
|
|
|
::v-deep .el-select {
|
|
|
width: 200px !important;
|
|
|
} */
|