新增任务弹窗及功能

main
许宏杰 1 month ago
parent 1f22abf4a1
commit 465325bd0b

@ -197,3 +197,86 @@ aside {
background-color: #f6f9fd;
}
}
// form--
.L-assets-info {
height: 100%;
padding: 20px 40px 20px 10px;
overflow-y: scroll;
.assets-info-top {
height: calc(100% - 20px);
.top-title-box {
font-weight: 700;
font-size: 18px;
color: #3d3d3d;
padding-left: 30px;
}
.top-title-two-box {
font-weight: 700;
font-size: 16px;
color: #3d3d3d;
padding-left: 50px;
}
.assets-info-box {
// padding-bottom: 100px;
.demo-ruleForm {
.upload-file {
cursor: pointer;
}
.el-select,
.el-autocomplete,
.el-date-editor,
.el-cascader {
width: 100%;
}
// 访
.fangwenwangzhi {
.el-input-group__prepend {
padding: 0 10px;
}
.el-input--suffix {
width: 80px;
.el-input__suffix {
right: 15px;
}
}
.wangzhispan {
margin-left: 15px;
}
}
// IpPort
.IpPort {
.line {
text-align: center;
}
}
//
// .yumingdaoqishijian,.shiyongshijian {
// .el-date-editor {
// width: 100%;
// }
// }
//
.daoqitixingren {
.el-form-item__content {
.el-row {
display: flex;
}
}
}
}
}
}
}

File diff suppressed because it is too large Load Diff

@ -1,28 +1,257 @@
<template>
<!-- 新增任务添加核查单位 -->
<!-- <el-form
:model="taskForm"
:rules="taskRules"
ref="taskForm"
label-width="110px"
label-position="right"
class="task-form"
<el-dialog
title="单位列表"
:visible.sync="showEnterpriseList"
width="80%"
append-to-body
>
<div class="enterprise-list">
<el-form
:model="queryParams"
ref="queryForm"
size="small"
:inline="true"
label-width="110px"
class="search-form"
label-position="right"
>
<el-form-item label="单位名称:" prop="nickName">
<el-input
v-model="queryParams.nickName"
placeholder="请输入单位名称"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="单位类型:" prop="dwlx">
<el-select
v-model="queryParams.dwlx"
placeholder="请选择单位类型"
clearable
>
<el-option
v-for="dict in dict.type.dwlx"
:key="dict.value"
:label="dict.label"
:value="dict.value"
/>
</el-select>
</el-form-item>
<el-form-item
label="统一社会信用代码:"
class="tyshxydm-class"
prop="userName"
label-width="140px"
>
<el-input
v-model="queryParams.userName"
placeholder="请输入统一社会信用代码"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item>
<el-button
type="primary"
icon="el-icon-search"
size="mini"
@click="handleQuery"
>搜索</el-button
>
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery"
>重置</el-button
>
</el-form-item>
</el-form>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitTask"> </el-button>
<el-button @click="openTask = false"> </el-button>
</div>
</el-dialog> -->
<el-table
v-loading="loading"
:data="userList"
:height="tabHeader"
:row-class-name="tableRowClassName"
@selection-change="handleSelectionChange"
row-key="userName"
ref="multipleTable"
>
<el-table-column type="selection" width="55" :reserve-selection="true">
</el-table-column>
<el-table-column type="index" label="序号" width="50" align="center" />
<el-table-column
label="单位名称"
align="center"
key="nickName"
prop="nickName"
show-overflow-tooltip
>
<template slot-scope="scope">{{ scope.row.nickName }}</template>
</el-table-column>
<el-table-column label="单位类型" align="center" key="dwlx" prop="dwlx">
<template slot-scope="scope">
<dict-tag :options="dict.type.dwlx" :value="scope.row.dwlx" />
</template>
</el-table-column>
<el-table-column
label="统一社会信用代码"
align="center"
key="userName"
prop="userName"
>
<template slot-scope="scope">{{ scope.row.userName }}</template>
</el-table-column>
<el-table-column
label="所属区域"
align="center"
key="ssqycounty"
prop="ssqycounty"
>
<template slot-scope="scope">{{ scope.row | getSsqu }}</template>
</el-table-column>
<el-table-column label="所属行业" align="center" key="sshy" prop="sshy">
<template slot-scope="scope">
<dict-tag :options="dict.type.sshy" :value="scope.row.sshy" />
</template>
</el-table-column>
<el-table-column
label="单位地址"
align="center"
key="dwxxdz"
prop="dwxxdz"
show-overflow-tooltip
>
<template slot-scope="scope">{{ scope.row.dwxxdz }}</template>
</el-table-column>
</el-table>
<pagination
prev-text="上页"
next-text="下页"
v-show="total > 0"
:total="total"
:page-sizes="[10, 20, 40, 80, 100]"
:page.sync="queryParams.current"
:limit.sync="queryParams.size"
@pagination="getList"
/>
</div>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitTask"> </el-button>
<el-button @click="showEnterpriseList = false"> </el-button>
</div>
</el-dialog>
</template>
<script>
import { listUnitdw } from "@/api/auditPagesApi/index";
export default {
dicts: ["dwlx", "sshy"],
props: {
//
value: [Array],
},
data() {
return {};
return {
showEnterpriseList: false,
total: 0,
queryParams: {
current: 1,
size: 20,
type: "0",
isSearch: 1,
},
userList: [],
tabHeader: 650,
loading: false,
ids: [],
};
},
created() {},
filters: {
getSsqu(row) {
if (row.ssqyprovince && row.ssqycity && row.ssqycounty) {
return row.ssqyprovince + "/" + row.ssqycity + "/" + row.ssqycounty;
} else if (row.ssqyprovince && row.ssqycity) {
return row.ssqyprovince + "/" + row.ssqycity;
} else if (row.ssqyprovince) {
return row.ssqyprovince;
} else {
return;
}
},
},
methods: {
openDialog(type) {
this.ids = this.value;
this.queryParams.type = type.toString();
this.showEnterpriseList = true;
this.getList();
},
submitTask() {
if (this.ids.length == 0) {
this.$message("请选择至少一个单位");
return;
}
this.$emit("input", this.ids);
this.showEnterpriseList = false;
},
getList() {
this.loading = true;
listUnitdw(this.queryParams).then((response) => {
this.userList = response.data.records;
this.total = response.data.total;
this.toggleSelection();
this.loading = false;
});
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.current = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
if (this.queryParams.type) {
this.queryParams.type = this.queryParams.type;
}
this.resetForm("queryForm");
this.handleQuery();
},
handleSelectionChange(e) {
//getListchange
this.ids = Array.from(new Map(e.map((item) => [item.id, item])).values());
},
toggleSelection() {
if (this.ids.length > 0) {
this.userList.forEach((row) => {
let index = this.ids.findIndex((item) => item.id == row.id);
if (index > -1) {
this.$refs.multipleTable.toggleRowSelection(row, true);
}
});
} else {
this.$refs.multipleTable.clearSelection();
}
},
// table
tableRowClassName({ row, rowIndex }) {
if (rowIndex % 2 !== 0) {
return "evenNumber-row";
}
return "";
},
},
};
</script>
<style></style>
<style lang="scss" scoped>
.enterprise-list {
height: 800px;
}
.dialog-footer {
display: flex;
align-items: center;
justify-content: center;
}
</style>

@ -1,7 +1,12 @@
<template>
<main-app :showTree="false" listTitle="任务列表">
<template v-slot:tablec>
<el-button type="primary" plain icon="el-icon-plus" size="mini"
<el-button
type="primary"
plain
icon="el-icon-plus"
size="mini"
@click="handleAddTask()"
>任务创建</el-button
>
</template>
@ -169,13 +174,6 @@
multiple
collapse-tags
>
<el-option
v-for="item in taskFormDwmc"
:key="item.value"
:label="item.label"
:value="item.value"
>
</el-option>
</el-select>
<el-button
@ -199,8 +197,11 @@
></el-date-picker>
</el-form-item>
</el-form>
<!-- 单位列表弹窗 -->
<selectUnit v-model="taskFormDwmc" ref="enterpriseList" />
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitTask"> </el-button>
<el-button type="primary" @click="submitTask"></el-button>
<el-button @click="openTask = false"> </el-button>
</div>
</el-dialog>
@ -215,8 +216,10 @@ import {
getassetTaskid,
assetTaskclose,
} from "@/api/renwuApi/index.js";
import selectUnit from "@/views/auditPages/components/taskManagement/selectUnit.vue";
export default {
dicts: ["tc_rwgl_stste"],
components: { selectUnit },
data() {
return {
taskForm: {
@ -248,7 +251,8 @@ export default {
return [`${hour}:${minute}:${second} - 23:59:59`];
})(),
},
openTask: true,
openTask: false,
btnloading: false,
time: [],
formInline: {
@ -267,20 +271,64 @@ export default {
created() {
this.getList();
},
watch: {
taskFormDwmc(newValue, oldValue) {
console.log(newValue);
this.taskForm.dwmc = newValue.map((item) => item.nickName);
},
},
methods: {
//
handleAddTask() {
this.openTask = true;
this.resetForm("taskForm");
},
//
submitTask() {
this.$refs["taskForm"].validate((valid) => {
this.$refs["taskForm"].validate(async (valid) => {
if (valid) {
alert("submit!");
if (!this.fonsisis(this.taskForm.taskDeadline)) {
this.$message.error("选择时间不能小于当前时间");
return false;
}
this.taskForm.dwmc = this.taskForm.dwmc.toString();
this.taskForm.type = this.taskForm.type.toString();
await addassetTaskadd(this.taskForm);
try {
this.$modal.msgSuccess("新增成功");
this.getList();
this.openTask = false;
} catch {
this.taskForm.dwmc = this.taskForm.dwmc.split(",");
this.taskForm.type = this.taskForm.type.split(",");
}
} else {
return false;
}
});
},
fonsisis(data) {
//
const specificTimeStr = data;
// Date
const specificTime = new Date(specificTimeStr);
//
const currentTime = new Date();
//
if (currentTime > specificTime) {
return false;
} else {
return true;
}
},
//
assetChange() {
this.taskForm.dwmc = [];
this.taskFormDwmc = [];
this.$nextTick(() => {
this.$refs.taskForm.clearValidate();
});
@ -288,6 +336,7 @@ export default {
//
handleAddUnit() {
if (this.taskForm.type.length > 0) {
this.$refs.enterpriseList.openDialog(this.taskForm.type);
} else {
this.$message("请先选择核查资产类型");
}

@ -0,0 +1,24 @@
import { unitAllList } from "@/api/auditPagesApi/index";
const equalToPassword = (rule, value, callback) => {
console.log("出发出发");
console.log(rule);
console.log(value);
unitAllList({ nickName: value }).then(res => {
if (res.data.length != 1) {
callback(new Error("请输入正确的单位名称"));
} else {
if (value == res.data[0].nickName) {
callback();
} else {
callback(new Error("请输入正确的单位名称"));
}
}
})
};
export default equalToPassword

@ -0,0 +1,226 @@
<template>
<div class="upload-file">
<el-upload
multiple
v-show="fileList.length == 0"
:action="uploadFileUrl"
:before-upload="handleBeforeUpload"
:file-list="fileList"
:limit="limit"
:on-error="handleUploadError"
:on-exceed="handleExceed"
:on-success="handleUploadSuccess"
:show-file-list="false"
:headers="headers"
class="upload-file-uploader"
ref="fileUpload"
>
<!-- 上传按钮 -->
<slot v-if="fileList.length == 0"></slot>
</el-upload>
<!-- 文件列表 -->
<transition-group class="upload-file-list el-upload-list el-upload-list--text" name="el-fade-in-linear" tag="ul">
<li :key="file.url" class="el-upload-list__item ele-upload-list__item-content" v-for="(file, index) in fileList">
<el-link :href="`${baseUrl}${file.url}`" :underline="false" target="_blank">
<span class="el-icon-document"> {{ getFileName(file.name) }} </span>
</el-link>
<div class="ele-upload-list__item-content-action" v-if="$route.query.pageType != 'look'">
<el-link :underline="false" @click="handleDelete(index)" type="danger">删除</el-link>
</div>
</li>
</transition-group>
</div>
</template>
<script>
import { getToken } from "@/utils/auth";
export default {
name: "FileUpload",
props: {
//
value: [String, Object, Array],
//
limit: {
type: Number,
default: 5,
},
// (MB)
fileSize: {
type: Number,
default: 5,
},
// , ['png', 'jpg', 'jpeg']
fileType: {
type: Array,
default: () => ["doc", "xls", "ppt", "txt", "pdf"],
},
//
isShowTip: {
type: Boolean,
default: true
}
},
data() {
return {
number: 0,
uploadList: [],
// baseUrl: process.env.VUE_APP_BASE_API,
baseUrl: location.origin + '/api',
// uploadFileUrl: process.env.VUE_APP_BASE_API + "/common/upload", //
uploadFileUrl: location.origin + '/api/common/upload',
headers: {
Authorization: "Bearer " + getToken(),
},
fileList: [],
};
},
watch: {
value: {
handler(val) {
if (val) {
let temp = 1;
//
const list = Array.isArray(val) ? val : this.value.split(',');
//
this.fileList = list.map(item => {
if (typeof item === "string") {
item = { name: item, url: item };
}
item.uid = item.uid || new Date().getTime() + temp++;
return item;
});
} else {
this.fileList = [];
return [];
}
},
deep: true,
immediate: true
}
},
computed: {
//
showTip() {
return this.isShowTip && (this.fileType || this.fileSize);
},
},
methods: {
//
handleBeforeUpload(file) {
//
if (this.fileType) {
const fileName = file.name.split('.');
const fileExt = fileName[fileName.length - 1];
const isTypeOk = this.fileType.indexOf(fileExt) >= 0;
if (!isTypeOk) {
this.$modal.msgError(`文件格式不正确,请上传${this.fileType.join("/")}格式文件!`);
return false;
}
}
//
if (file.name.includes(',')) {
this.$modal.msgError('文件名不正确,不能包含英文逗号!');
return false;
}
//
if (this.fileSize) {
const isLt = file.size / 1024 / 1024 < this.fileSize;
if (!isLt) {
this.$modal.msgError(`上传文件大小不能超过 ${this.fileSize} MB!`);
return false;
}
}
this.$modal.loading("正在上传文件,请稍候...");
this.number++;
return true;
},
//
handleExceed() {
this.$modal.msgError(`上传文件数量不能超过 ${this.limit} 个!`);
},
//
handleUploadError(err) {
this.$modal.msgError("上传文件失败,请重试");
this.$modal.closeLoading();
},
//
handleUploadSuccess(res, file) {
if (res.code === 200) {
this.uploadList.push({ name: res.fileName, url: res.fileName });
this.uploadedSuccessfully();
} else if(res.code == 401) {
this.$store.dispatch('LogOut').then(() => {
// location.href = '/login';
this.$modal.msgError(res.msg);
this.$modal.closeLoading();
this.uploadedSuccessfully();
this.$router.replace("/login");
})
} else {
this.number--;
this.$modal.closeLoading();
this.$modal.msgError(res.msg);
this.$refs.fileUpload.handleRemove(file);
this.uploadedSuccessfully();
}
},
//
handleDelete(index) {
this.fileList.splice(index, 1);
this.$emit("input", this.listToString(this.fileList));
},
//
uploadedSuccessfully() {
if (this.number > 0 && this.uploadList.length === this.number) {
this.fileList = this.fileList.concat(this.uploadList);
this.uploadList = [];
this.number = 0;
this.$emit("input", this.listToString(this.fileList));
this.$modal.closeLoading();
}
},
//
getFileName(name) {
// url
if (name.lastIndexOf("/") > -1) {
return name.slice(name.lastIndexOf("/") + 1);
} else {
return name;
}
},
//
listToString(list, separator) {
let strs = "";
separator = separator || ",";
for (let i in list) {
strs += list[i].url + separator;
}
return strs != '' ? strs.substr(0, strs.length - 1) : '';
}
}
};
</script>
<style scoped lang="scss">
.upload-file-uploader {
margin-bottom: 5px;
}
.upload-file-list .el-upload-list__item {
border: 1px solid #e4e7ed;
line-height: 2;
margin-bottom: 10px;
position: relative;
}
.upload-file-list .ele-upload-list__item-content {
display: flex;
justify-content: space-between;
align-items: center;
color: inherit;
}
.ele-upload-list__item-content-action .el-link {
margin-right: 10px;
}
</style>
Loading…
Cancel
Save