allocationNumber.vue 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229
  1. <template>
  2. <div class="container-allocation-number-rai">
  3. <el-dialog title="派点" width="1300px" :visible.sync="allocationVisible" v-dialogDrag :close-on-click-modal="false" :modal-append-to-body="false" center @close="handleClose">
  4. <div class="top-content">
  5. <div>
  6. <h5>总点数:{{ TotalPointsContent }}</h5>
  7. <el-button style="margin-top: 20px" type="primary" size="mini" @click="averageaAllocation">平均分配</el-button>
  8. </div>
  9. <p>
  10. 1)单行业套餐只能在对应行业内部分配研究员贡献百分比<br />
  11. 2)多行业套餐先在行业间分配百分比(最低不低于平均值的一半),再分配到个人<br />
  12. 3)允许总额20%以内的负分<br />
  13. 4)转正后一个季度内可以提交和修改
  14. <br />
  15. </p>
  16. </div>
  17. <div class="content-box">
  18. <div v-for="item in listArr" :key="item.ChartPermissionName">
  19. <div class="industry-ul">
  20. <span :class="['industry-name', item.ChartPermissionName == '买方研选' && 'name-yanxuan']">{{ item.ChartPermissionName }}</span>
  21. <template v-if="item.ChartPermissionName !== '买方研选'">
  22. <el-input :min="-100" :max="100" type="number" v-model="item.Proportion" size="small" @input="restrictInput(item)" style="width: 76px; margin: 0 5px 0 8px">
  23. <div class="per_cent_" slot="suffix">%</div>
  24. </el-input>
  25. <p style="width: 38px">{{ roundedResult(item) }}</p>
  26. </template>
  27. <p style="width: 38px; height: 32px; line-height: 32px; text-align: center" v-else>{{ item.Money }}</p>
  28. </div>
  29. <div v-for="study in item.List" :key="study.RealName" class="industry-ul">
  30. <span :class="['study-name', item.ChartPermissionName == '买方研选' && 'name-yanxuan']">{{ study.RealName }}</span>
  31. <template v-if="study.RealName !== '买方研选'">
  32. <el-input :min="-100" :max="100" type="number" v-model="study.Proportion" size="small" style="width: 76px; margin: 0 5px 0 8px">
  33. <div class="per_cent_" slot="suffix">%</div>
  34. </el-input>
  35. <p style="width: 38px">{{ roundedResult(study) }}</p>
  36. </template>
  37. <p style="width: 38px; height: 32px; line-height: 32px; text-align: center" v-else>{{ study.Money }}</p>
  38. </div>
  39. <div class="all-item" v-if="item.ChartPermissionName != '买方研选'">
  40. <span> {{ allPerCentHandler(item) == 0 ? "" : `总占比:` }}</span>
  41. <span> {{ allPerCentHandler(item) == 0 ? "" : `${allPerCentHandler(item)}` }}</span>
  42. </div>
  43. </div>
  44. </div>
  45. <span slot="footer" class="dialog-footer">
  46. <el-button @click="handleClose">取 消</el-button>
  47. <el-button type="primary" @click="addAllocationHandler">确 定</el-button>
  48. </span>
  49. </el-dialog>
  50. </div>
  51. </template>
  52. <script>
  53. import { contractInterface } from "@/api/api.js";
  54. export default {
  55. name: "",
  56. components: {},
  57. props: {
  58. allocationVisible: {
  59. default: false,
  60. type: Boolean,
  61. },
  62. allocationForm: {
  63. type: Object,
  64. default: {},
  65. },
  66. },
  67. data() {
  68. return {
  69. listArr: [],
  70. allNum: 0,
  71. TotalPointsContent: "",
  72. };
  73. },
  74. computed: {},
  75. watch: {
  76. allocationVisible: {
  77. handler(newVal) {
  78. newVal && this.getList();
  79. },
  80. immediate: true,
  81. },
  82. },
  83. created() {},
  84. mounted() {},
  85. methods: {
  86. // 取消弹框
  87. handleClose() {
  88. this.listArr = [];
  89. this.$emit("update:allocationForm", {});
  90. this.$emit("update:allocationVisible", false);
  91. },
  92. // 提交弹框
  93. async addAllocationHandler() {
  94. this.listArr.forEach((item) => {
  95. item.Money = Number(item.Money) || 0;
  96. item.Proportion = Number(item.Proportion) || 0;
  97. item.List.forEach((_) => {
  98. _.Money = Number(_.Money) || 0;
  99. _.Proportion = Number(_.Proportion) || 0;
  100. });
  101. });
  102. let arrList = this.listArr;
  103. const res = await contractInterface.getAllocationDetailUpdate({
  104. CompanyContractId: this.allocationForm.CompanyContractId,
  105. List: arrList,
  106. });
  107. if (res.Ret === 200) {
  108. this.$message.success("操作成功");
  109. this.$parent.getTableData();
  110. this.handleClose();
  111. }
  112. },
  113. // 处理百分比
  114. roundedResult(row) {
  115. let num = row.Proportion >= 0 ? (row.Proportion * 100) / 100 / 100 : row.Proportion / 100;
  116. row.Money = row.Proportion ? (this.allNum * num).toFixed(2) : "";
  117. return row.Money;
  118. },
  119. // 输入框的限制
  120. restrictInput(item) {
  121. if (item.Proportion > 100) return (item.Proportion = 100);
  122. if (item.Proportion < -100) return (item.Proportion = -100);
  123. },
  124. // 数量的总和
  125. allPerCentHandler(item) {
  126. let num = 0;
  127. item && item.List.forEach((key) => (num = num + +key.Proportion));
  128. return num.toFixed(2);
  129. },
  130. // 获取数据
  131. async getList() {
  132. const res = await contractInterface.getAllocationDetail({
  133. CompanyContractId: this.allocationForm.CompanyContractId,
  134. });
  135. if (res.Ret === 200) {
  136. this.allNum = res.Data.Money;
  137. this.listArr = res.Data.List;
  138. this.TotalPointsContent = res.Data.TotalPointsContent;
  139. }
  140. },
  141. // 平均分配
  142. averageaAllocation() {
  143. let isName = this.listArr.some((item) => item.ChartPermissionName == "买方研选");
  144. let num = 100 / (isName ? this.listArr.length - 1 : this.listArr.length);
  145. this.listArr.forEach((item) => {
  146. if (item.ChartPermissionName != "买方研选") {
  147. item.Proportion = num;
  148. }
  149. let childrenNum = num / item.List.length;
  150. item.List.forEach((key) => {
  151. if (key.RealName != "买方研选") {
  152. key.Proportion = childrenNum;
  153. }
  154. });
  155. });
  156. },
  157. },
  158. };
  159. </script>
  160. <style lang="scss">
  161. .container-allocation-number-rai {
  162. overflow: hidden;
  163. .top-content {
  164. display: flex;
  165. justify-content: space-between;
  166. }
  167. .content-box {
  168. display: flex;
  169. .industry-ul {
  170. display: flex;
  171. align-items: center;
  172. margin: 30px 0;
  173. width: 180px;
  174. color: #333;
  175. margin-right: 35px;
  176. .per_cent_ {
  177. line-height: 32px;
  178. }
  179. .industry-name {
  180. width: 58px;
  181. flex-shrink: 0;
  182. font-weight: 800;
  183. font-size: 16px;
  184. line-height: 22px;
  185. }
  186. .study-name {
  187. width: 58px;
  188. flex-shrink: 0;
  189. font-size: 14px;
  190. line-height: 22px;
  191. }
  192. p {
  193. color: #9999;
  194. font-size: 14px;
  195. }
  196. }
  197. }
  198. .all-item {
  199. display: flex;
  200. padding-right: 15px;
  201. align-items: center;
  202. // justify-content: center;
  203. color: #999;
  204. font-size: 14px;
  205. span {
  206. display: inline-block;
  207. width: 80px;
  208. }
  209. }
  210. .name-yanxuan {
  211. width: 65px !important;
  212. }
  213. /* 取消[type='number']的input的上下箭头 */
  214. input::-webkit-inner-spin-button {
  215. -webkit-appearance: none !important;
  216. }
  217. input::-webkit-outer-spin-button {
  218. -webkit-appearance: none !important;
  219. }
  220. input[type="number"] {
  221. -moz-appearance: textfield;
  222. }
  223. }
  224. </style>