|
@@ -370,7 +370,23 @@ export default {
|
|
|
},
|
|
|
checkBack() {
|
|
|
if (!this.checkList.length) {
|
|
|
- this.$message.warning("请勾选数据");
|
|
|
+ this.$confirm("您还未勾选数据,是否勾选全部数据?", "提示", {
|
|
|
+ confirmButtonText: "是",
|
|
|
+ cancelButtonText: "否",
|
|
|
+ type: "warning",
|
|
|
+ })
|
|
|
+ .then(() => {
|
|
|
+ this.checkList = this.allType3List.map((i) => {
|
|
|
+ if (
|
|
|
+ this.periodStatus === 3 &&
|
|
|
+ i.periodStatus === 1 &&
|
|
|
+ i.status !== 2
|
|
|
+ ) {
|
|
|
+ return i.periodStatusId;
|
|
|
+ }
|
|
|
+ });
|
|
|
+ })
|
|
|
+ .catch(() => {});
|
|
|
return;
|
|
|
}
|
|
|
this.popback = true;
|