提交 e06f060e authored 作者: CRS's avatar CRS

new

......@@ -200,3 +200,6 @@
.el-upload-list{
display: none;
}
.el-scrollbar__wrap{
margin-bottom: 0px !important;
}
\ No newline at end of file
......@@ -137,9 +137,9 @@ export default {
download (val) {
if (val.path) {
let link = document.createElement('a');
link.download ='文件';
link.style.display = 'none';
link.href = val.path;
link.download = val.name;
link.style.display = 'none';
document.body.appendChild(link);
link.click();
document.body.removeChild(link);
......
......@@ -180,6 +180,7 @@
</template>
</el-table-column>
<el-table-column
:formatter="formChange"
prop="form"
label="类型"
align="center">
......@@ -467,6 +468,7 @@ export default {
thirdName: this.supervisor,
des: this.textarea
};
console.log(data)
if (this.supervisor && this.endTime && this.startTime && this.develop && this.integrate && this.build) {
this.$server.postProjectAdd(data).then(res => {
console.log(res)
......@@ -489,8 +491,9 @@ export default {
this.techList.map(item => { // 技术路线查询产品信息
if (item.name === this.techVal && item.producies) {
this.productData = item.producies;
this.productData.map(val => { // 默认技术数量
val.expect = 1;
this.productData.map(val => {
val.expect = 1; // 默认技术数量
val.form = this.formVal[val.form]; // 产品类型转换
})
}
})
......@@ -664,4 +667,8 @@ export default {
.projectAdd .content>>>.el-scrollbar__wrap {
overflow-x: hidden;
}
.projectAdd .content>>>.el-scrollbar__wrap{
margin-bottom: 0px !important;
}
</style>
\ No newline at end of file
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论