conditionTableMixin.js 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309
  1. import { transDecimalPlace, getDecimalPlaces } from '../common/customTable';
  2. export default {
  3. methods: {
  4. // 判断时间
  5. isDateInRange(dateStr) {
  6. const today = new Date();
  7. const tomorrow = new Date(today);
  8. tomorrow.setDate(today.getDate() + 1);
  9. const sevenDaysAgo = new Date(today); // 当前日期的副本
  10. sevenDaysAgo.setDate(sevenDaysAgo.getDate() - 7); // 减去6天
  11. const date = new Date(dateStr);
  12. const startOfWeek = new Date(
  13. today.getFullYear(),
  14. today.getMonth(),
  15. today.getDate() - today.getDay() + 1
  16. );
  17. const lastWeekfristDay = new Date(
  18. today.getFullYear(),
  19. today.getMonth(),
  20. today.getDate() - today.getDay() + 1
  21. );
  22. lastWeekfristDay.setDate(lastWeekfristDay.getDate() - 7);
  23. const endOfWeek = new Date(
  24. today.getFullYear(),
  25. today.getMonth(),
  26. today.getDate() + (7 - today.getDay())
  27. );
  28. const nextWeekLastDay = new Date(
  29. today.getFullYear(),
  30. today.getMonth(),
  31. today.getDate() + (7 - today.getDay())
  32. );
  33. nextWeekLastDay.setDate(nextWeekLastDay.getDate() + 7);
  34. const startOfMonth = new Date(today.getFullYear(), today.getMonth(), 1);
  35. const startOfLastMonth = new Date(
  36. today.getFullYear(),
  37. today.getMonth() - 1,
  38. 1
  39. );
  40. const endOfMonth = new Date(today.getFullYear(), today.getMonth() + 1, 0);
  41. const endOfNextMonth = new Date(
  42. today.getFullYear(),
  43. today.getMonth() + 2,
  44. 0
  45. );
  46. return {
  47. today: date.toDateString() === today.toDateString(),
  48. tomorrow: date.toDateString() === tomorrow.toDateString(),
  49. thisweek: date >= startOfWeek && date <= endOfWeek,
  50. lastweek: date < startOfWeek && date >= lastWeekfristDay,
  51. nextweek: date > endOfWeek && date <= nextWeekLastDay,
  52. thismonth: date >= startOfMonth && date <= endOfMonth,
  53. lastmonth: date < startOfMonth && date >= endOfNextMonth,
  54. nextmonth: date > endOfMonth && date <= endOfNextMonth,
  55. last7days: date <= today && date > sevenDaysAgo,
  56. };
  57. },
  58. // 删除规则
  59. deleteExcelRule(item) {
  60. // console.log(item);
  61. this.resetTableData()
  62. this.getExcelRule();
  63. },
  64. // 修改规则
  65. editExcelRule(item) {
  66. // console.log(item);
  67. this.resetTableData()
  68. this.getExcelRule();
  69. },
  70. // 清空全部单元格样式
  71. resetTableData() {
  72. this.config.data.forEach((el) => {
  73. el.forEach((item) => {
  74. const styleCss = item.ShowStyle
  75. ? JSON.parse(
  76. item.ShowStyle
  77. )
  78. : {};
  79. item.ShowStyle = JSON.stringify({
  80. ...styleCss,
  81. glObj: null,
  82. })
  83. })
  84. })
  85. },
  86. commonInitCell(initType = "change", rulist = this.excelRuleList) {
  87. if (initType == 'edit') {
  88. this.resetTableData()
  89. }
  90. // 获取表格
  91. const table = document.getElementById("myTable");
  92. rulist.forEach((el) => {
  93. let indexArr = [];
  94. if (el.ScopeShow.indexOf(":") > -1) {
  95. let rowCols = this.getRowsAndColumns(el.ScopeShow);
  96. // console.log(rowCols);
  97. if (rowCols.length === 2) {
  98. indexArr = this.getCellIndices(
  99. table,
  100. rowCols[0].row,
  101. rowCols[1].row,
  102. rowCols[0].column,
  103. rowCols[1].column
  104. );
  105. }
  106. } else {
  107. indexArr = this.getRowsAndColumns(el.ScopeShow);
  108. }
  109. // console.log(indexArr);
  110. indexArr.forEach((item) => {
  111. if (this.config.data[item.row - 1] && this.config.data[item.row - 1][item.column - 1]) {
  112. // 先判断类型然后取值,再去进行比较,符合再去设置样式 判断两个值都是数字
  113. const keyObj = {
  114. 1: "ShowValue",
  115. 3: "Value",
  116. 5: "ShowValue",
  117. };
  118. const types =
  119. this.config.data[item.row - 1][item.column - 1].DataType;
  120. const cellValue = this.config.data[item.row - 1][item.column - 1];
  121. const val = cellValue[types == 3 ? "Value" : "ShowValue"];
  122. const leftVal =
  123. el.RuleType == 5
  124. ? el.LeftValue
  125. : Number.isFinite(+el.LeftValue)
  126. ? el.LeftValue
  127. : this.config.data[
  128. this.getRowsAndColumns(el.LeftValue)[0].row - 1
  129. ][this.getRowsAndColumns(el.LeftValue)[0].column - 1][
  130. this.config.data[
  131. this.getRowsAndColumns(el.LeftValue)[0].row - 1
  132. ][this.getRowsAndColumns(el.LeftValue)[0].column - 1]
  133. .DataType == 3
  134. ? "Value"
  135. : "ShowValue"
  136. ];
  137. // console.log(leftVal)
  138. const rightVal = Number.isFinite(+el.RightValue)
  139. ? el.RightValue
  140. : this.config.data[
  141. this.getRowsAndColumns(el.RightValue)[0].row - 1
  142. ][this.getRowsAndColumns(el.RightValue)[0].column - 1][
  143. this.config.data[
  144. this.getRowsAndColumns(el.RightValue)[0].row - 1
  145. ][this.getRowsAndColumns(el.RightValue)[0].column - 1]
  146. .DataType == 3
  147. ? "Value"
  148. : "ShowValue"
  149. ];
  150. let tag = false;
  151. const regex = /^\d{4}-\d{2}-\d{2}$/;
  152. if (
  153. (val != '' && Number.isFinite(+val) && leftVal != '' &&
  154. Number.isFinite(+leftVal) &&
  155. (el.RuleType == 3 && rightVal
  156. ? Number.isFinite(+rightVal)
  157. : true) &&
  158. el.RuleType != 5) ||
  159. (el.RuleType == 5 && cellValue.ShowValue && regex.test(cellValue.ShowValue))
  160. ) {
  161. switch (+el.RuleType) {
  162. case 1:
  163. if (+val > +leftVal) {
  164. tag = true;
  165. }
  166. break;
  167. case 2:
  168. if (+val < +leftVal) {
  169. // console.log(+val < +leftVal);
  170. tag = true;
  171. }
  172. break;
  173. case 3:
  174. // console.log(el.RuleType, 3333);
  175. if (+val >= +leftVal && +val <= +rightVal) {
  176. tag = true;
  177. }
  178. break;
  179. case 4:
  180. if (+val == +leftVal) {
  181. tag = true;
  182. }
  183. break;
  184. case 5:
  185. const dateRanges = this.isDateInRange(cellValue.ShowValue);
  186. if (dateRanges[el.LeftValue]) {
  187. tag = true;
  188. }
  189. break;
  190. default:
  191. break;
  192. }
  193. // console.log(tag);
  194. const showStyle =
  195. this.config.data[item.row - 1][item.column - 1].ShowStyle;
  196. const styleCss = showStyle
  197. ? JSON.parse(
  198. showStyle
  199. )
  200. : {};
  201. let glObj = tag
  202. ? {
  203. color: el.FontColor ? el.FontColor : "#606266",
  204. "background-color": el.BackgroundColor
  205. ? el.BackgroundColor
  206. : "#fff",
  207. }
  208. : styleCss.glObj;
  209. this.config.data[item.row - 1][item.column - 1].ShowStyle =
  210. JSON.stringify({
  211. ...styleCss,
  212. glObj,
  213. });
  214. }
  215. }
  216. });
  217. });
  218. },
  219. //获取选区及值的下标数组
  220. getRowsAndColumns(input) {
  221. const matches = input.match(/\$([A-Z])\$(\d+)/g) || [];
  222. const result = [];
  223. // console.log(matches);
  224. matches.forEach((match) => {
  225. const [, column, row] = match.match(/\$([A-Z])\$(\d+)/);
  226. result.push({
  227. row: Number(row),
  228. column: Number(this.getColumnHeaderIndex(column) + 1),
  229. });
  230. });
  231. return result;
  232. },
  233. //获取字母对应下标
  234. getColumnHeaderIndex(code) {
  235. return code.charCodeAt() - 65;
  236. },
  237. // 获取区间所有坐标
  238. getCellIndices(table, startRow, endRow, startCol, endCol) {
  239. // console.log(startRow, endRow, startCol, endCol);
  240. const indices = [];
  241. for (let i = startRow; i <= endRow; i++) {
  242. for (let j = startCol; j <= endCol; j++) {
  243. indices.push({ row: i, column: j });
  244. }
  245. }
  246. return indices;
  247. },
  248. // 展示小数
  249. showDecimalValue(cell) {
  250. const styleCss = cell.ShowStyle ? JSON.parse(cell.ShowStyle) : {};
  251. let Value = ''
  252. if (styleCss.nt == 'percent' && cell.ShowFormatValue.indexOf('%') > -1) {
  253. if (styleCss.last == 'nt') {
  254. Value = this.commonDecimalValue(cell.ShowValue * 100, styleCss.decimal) + '%'
  255. } else {
  256. Value = (parseFloat(this.commonDecimalValue(cell.ShowValue, styleCss.decimal) * 100)) + '%'
  257. }
  258. } else {
  259. Value = parseFloat(this.commonDecimalValue(cell.ShowValue, styleCss.decimal)).toFixed(styleCss.decimal)
  260. }
  261. if (getDecimalPlaces(cell.ShowValue) < styleCss.decimal || styleCss.nt == 'percent') {
  262. Value = transDecimalPlace(cell.ShowValue + '', { ...styleCss, pn: styleCss.decimal - getDecimalPlaces(cell.ShowValue) + (styleCss.nt == 'percent'&&getDecimalPlaces(cell.ShowValue)!=0 ? 2 : 0) })
  263. }
  264. // console.log(cell)
  265. this.$set(this.config.data[cell.rIndex][cell.cIndex],'ShowFormatValue',Value)
  266. return Value
  267. },
  268. commonDecimalValue(values, decimal) {
  269. const multiplier = Math.pow(10, decimal);
  270. return decimal == 0 ? Math.round(values) : Math.round(values * multiplier) / multiplier;
  271. },
  272. // 是否展示小数
  273. isShowDecimal(cell) {
  274. // console.log(cell,111)
  275. const styleCss = cell.ShowStyle ? JSON.parse(cell.ShowStyle) : {};
  276. let tag = !isNaN(parseFloat(cell.ShowValue)) && isFinite(cell.ShowValue)
  277. return tag ? !isNaN(parseFloat(styleCss.decimal)) && isFinite(styleCss.decimal) : false
  278. },
  279. // 由于在showStyle做了背景色及字体颜色处理,解决判断冲突
  280. isShowFormat(style, type = "css") {
  281. const styleCss = style ? JSON.parse(style) : {};
  282. let tag =
  283. type === "css"
  284. ? styleCss.pn > 0 || styleCss.pn < 0 || ["percent"].includes(styleCss.nt)
  285. : style.EdbInfoId;
  286. return tag;
  287. },
  288. // 初始化单元格横纵坐标
  289. initIndex(rindex, cindex, row, col) {
  290. this.config.data[rindex][cindex]["cIndex"] = cindex;
  291. this.config.data[rindex][cindex]["rIndex"] = rindex;
  292. this.config.data[rindex][cindex]["colIndex"] = col;
  293. this.config.data[rindex][cindex]["rowIndex"] = row;
  294. },
  295. // 设置背景色及字体颜色
  296. getShowCss(style) {
  297. const styleCss = JSON.parse(style);
  298. let color = styleCss.glObj ? styleCss.glObj["color"] : styleCss["color"];
  299. let BackgroundColor = styleCss.glObj
  300. ? styleCss.glObj["background-color"]
  301. : styleCss["background-color"];
  302. return {
  303. color: color,
  304. "background-color": BackgroundColor,
  305. };
  306. },
  307. },
  308. };