|
@@ -68,7 +68,7 @@ export default {
|
|
|
listArr: [],
|
|
|
allNum: 0,
|
|
|
TotalPointsContent: "",
|
|
|
- widthDlg: 580,
|
|
|
+ widthDlg: 500,
|
|
|
};
|
|
|
},
|
|
|
computed: {},
|
|
@@ -85,12 +85,14 @@ export default {
|
|
|
methods: {
|
|
|
// 取消弹框
|
|
|
handleClose() {
|
|
|
+ this.listArr = [];
|
|
|
+ this.widthDlg = 500;
|
|
|
this.$emit("update:allocationForm", {});
|
|
|
this.$emit("update:allocationVisible", false);
|
|
|
},
|
|
|
// 提交弹框
|
|
|
async addAllocationHandler() {
|
|
|
- this.listArr.forEach((item) => {
|
|
|
+ +this.listArr.forEach((item) => {
|
|
|
item.Money = Number(item.Money) || 0;
|
|
|
item.List.forEach((_) => {
|
|
|
_.Money = Number(_.Money) || 0;
|
|
@@ -131,8 +133,8 @@ export default {
|
|
|
CompanyContractId: this.allocationForm.CompanyContractId,
|
|
|
});
|
|
|
if (res.Ret === 200) {
|
|
|
- if (res.Data.List.length > 3) {
|
|
|
- let isWidth = (res.Data.List.length - 3) * 220;
|
|
|
+ if (res.Data.List.length > 2) {
|
|
|
+ let isWidth = (res.Data.List.length - 2) * 260;
|
|
|
this.widthDlg = this.widthDlg + isWidth;
|
|
|
}
|
|
|
this.allNum = res.Data.Money;
|
|
@@ -143,27 +145,25 @@ export default {
|
|
|
// 平均分配
|
|
|
averageaAllocation() {
|
|
|
let isName = this.listArr.some((item) => item.ChartPermissionName == "买方研选");
|
|
|
- if (isName) {
|
|
|
- let num = 100 / (this.listArr.length - 1);
|
|
|
- this.listArr.forEach((item) => {
|
|
|
- if (item.ChartPermissionName != "买方研选") {
|
|
|
- item.Proportion = num;
|
|
|
+ let num = 100 / (isName ? this.listArr.length - 1 : this.listArr.length);
|
|
|
+ this.listArr.forEach((item) => {
|
|
|
+ if (item.ChartPermissionName != "买方研选") {
|
|
|
+ item.Proportion = num;
|
|
|
+ }
|
|
|
+ let childrenNum = num / item.List.length;
|
|
|
+ item.List.forEach((key) => {
|
|
|
+ if (key.RealName != "买方研选") {
|
|
|
+ key.Proportion = childrenNum;
|
|
|
}
|
|
|
- let childrenNum = num / item.List.length;
|
|
|
- item.List.forEach((key) => {
|
|
|
- if (key.ChartPermissionName != "买方研选") {
|
|
|
- key.Proportion = childrenNum;
|
|
|
- }
|
|
|
- });
|
|
|
});
|
|
|
- }
|
|
|
+ });
|
|
|
},
|
|
|
},
|
|
|
};
|
|
|
</script>
|
|
|
<style lang="scss">
|
|
|
.container-allocation-number-rai {
|
|
|
-
|
|
|
+ overflow: hidden;
|
|
|
.content-box {
|
|
|
display: flex;
|
|
|
.industry-ul {
|