+
+
+
-
-
+
+
-
-
+
+
-
-
-
-
-
-
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
- 将文件拖到此处,或点击上传
-
+
+
+
+ 将文件拖到此处,或点击上传
+
+
-
-
-
-
-
+
+
+
-
-
@@ -65,11 +49,13 @@
import {
uploadProjectFile,
} from "@/api/project/project.js"
+import DictDataSelect from "../../sys/dict-data-select.vue";
/* 引入组件 */
var functionId = 'C10000002';
export default {
+ components: {DictDataSelect},
data() {
return {
titleCon: '项目文件上传',
@@ -126,14 +112,14 @@ export default {
},
/*选择上传文件时*/
- onChange(file){
- this.fileList.push(file);
+ onChange(file,fileList){
+ this.fileList = fileList;
},
/*关闭modal*/
closeDialog(){
//刷新报工的页面
- this.$emit('refreshPageTables');
+ // this.$emit('refreshPageTables');
//关闭当前的页面
this.visible = false;
},
@@ -146,7 +132,7 @@ export default {
return false;
}
/*判断文件是否上传*/
- if(null == this.fileList || 0 == this.fileList.length){
+ if(null == this.fileList || 0 === this.fileList.length){
this.$message.error("请先上传文件!");
return false;
}
@@ -165,7 +151,9 @@ export default {
this.$message.success('操作成功');
//清空文件上传记录
this.$refs.uploadFile.clearFiles();
+ this.fileList = [];
this.pageData.fileRemark = '';
+ this.$emit('refreshPageTables');
}else {
this.$message.warning(data.msg);
}
@@ -180,7 +168,9 @@ export default {
}
-
diff --git a/src/views/modules/project/projectInfo/projectInfo.vue b/src/views/modules/project/projectInfo/projectInfo.vue
index e55c5a1..97046ef 100644
--- a/src/views/modules/project/projectInfo/projectInfo.vue
+++ b/src/views/modules/project/projectInfo/projectInfo.vue
@@ -304,7 +304,7 @@
- 上传文件
+ 上传文件
-
-
-
-
-
{{ scope.row[item.columnProp] }}
-
![]()
-
-
-
{{ scope.row[item.columnProp] }}
-
![]()
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
+
+
+
@@ -547,9 +548,11 @@
import technicalSpecification from "./com_project_technicalSpecification";
import quotationHeader from "./com_project_info_quotation.vue";
import DictDataSelect from "../../sys/dict-data-select.vue";
+ import ChangeRecord from "./com_project_change_record.vue";
/*組件*/
export default {
components: {
+ ChangeRecord,
DictDataSelect,
Chooselist,
AddOrUpdate,
diff --git a/src/views/modules/sampleManagement/technicalSpecificationList.vue b/src/views/modules/sampleManagement/technicalSpecificationList.vue
index f1b82a2..9414f17 100644
--- a/src/views/modules/sampleManagement/technicalSpecificationList.vue
+++ b/src/views/modules/sampleManagement/technicalSpecificationList.vue
@@ -357,7 +357,7 @@
columnProp: "buNo",
headerAlign: "center",
align: "center",
- columnLabel: "部门编码",
+ columnLabel: "BU",
columnHidden: false,
columnImage: false,
columnSortable: false,
diff --git a/src/views/modules/sys/user.vue b/src/views/modules/sys/user.vue
index 295aac5..fa79e74 100644
--- a/src/views/modules/sys/user.vue
+++ b/src/views/modules/sys/user.vue
@@ -136,13 +136,12 @@
用户:
名称:
-
+
+ border :height="350">
+ border :height="350">
-
+
+ border :height="350">
+ border :height="350">
+ v-loading="dataListLoading" :height="350">
+ border :height="350">
{
return item.userId
})
- this.$confirm(`确定对[id=${userIds.join(',')}]进行[${id ? '删除' : '批量删除'}]操作?`, '提示', {
+ let usernames = this.dataList.filter(item => item.userId === id).map(item=>item.username)
+ this.$confirm(`确定对[用户账号${usernames.join(',')}]进行[${id ? '删除' : '批量删除'}]操作?`, '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'