dejdsqyyRzjd.js 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290
  1. var template = ''
  2. $.ajax('../html/dejdsqyyRzjd.html',{
  3. data: {},
  4. dataType: 'html',
  5. cache: false,
  6. timeout: 60000,
  7. async: false,
  8. error: function(res) {
  9. },
  10. success: function(res) {
  11. template = res
  12. }
  13. })
  14. Vue.component('mzf-dejdsqyy-rzjd', {
  15. props: [],
  16. template: template,
  17. data: function() {
  18. return {
  19. dejdSqyyRzDate:[],
  20. testArr1: [],
  21. testArr2: [],
  22. testArr3: [],
  23. // testArr4: [],
  24. testPosition1: 0,
  25. testPosition2: 0,
  26. testPosition3: 0,
  27. // testPosition4: 0,
  28. list:[],
  29. startTime:new Date('2023','05','26'),
  30. endTime:new Date(),
  31. regionList:[],
  32. regionData:[
  33. {label:'全市',id:'1',type:'1'}
  34. ],
  35. regionListList:[],
  36. tertiaryHospitalsData:[
  37. {label:'全部',id:'1',type:'2'}
  38. ],
  39. communityHospitalsList:[],
  40. communityHospitalsData:[
  41. {label:'全部',id:'1',type:'3'}
  42. ],
  43. groupingList:[],
  44. groupingData:[
  45. {label:'全部',id:'1',type:'4'}
  46. ],
  47. administrationStatusList:[],
  48. administrationStatusData:[
  49. {label:'全部',id:'1',type:'5'}
  50. ],
  51. show:false,
  52. showTwo:false,
  53. showThree:false,
  54. currentPage:1,
  55. currentSize:10,
  56. datatotal:0, //总数
  57. loadingTwo:false,
  58. setDisabled:{
  59. disabledDate:function(time) {
  60. return time.getTime() < new Date('2023','05','26') || time.getTime() > Date.now();
  61. }
  62. },
  63. s:'',
  64. e:'',
  65. courseArr: [],
  66. coursePos: 0,
  67. mergeObj: {},
  68. mergeArr: ['areaName', 'gradeHospitalName', 'entryRate','communityHospitalName','targetEntryCont','v1MonthCount','v1AllCount','firstV1FinishDate'],
  69. }
  70. },
  71. created: function(){
  72. this.s = this.startTime.format('yyyy-MM-dd')
  73. this.e = this.endTime.format('yyyy-MM-dd')
  74. this.list.unshift({type:'0',id:'time',label:this.s +"~"+ this.e})
  75. this.getCommunityHospitalEntryData()
  76. },
  77. watch:{
  78. 'startTime':{
  79. handler:function(o) {
  80. if(!o) {
  81. this.list.splice(0,1)
  82. }
  83. },
  84. deep: true,
  85. immediate: true
  86. },
  87. 'endTime':{
  88. handler:function(o) {
  89. if(!o) {
  90. this.list.splice(0,1)
  91. }
  92. },
  93. deep: true,
  94. immediate: true
  95. },
  96. },
  97. methods: {
  98. getCommunityHospitalEntryData:function() {
  99. var vm = this
  100. vm.loadingTwo = true
  101. var data = {
  102. startTime:this.startTime.format('yyyy-MM-dd'),
  103. endTime:this.endTime.format('yyyy-MM-dd')
  104. }
  105. statisticAPI.getCommunityHospitalEntryData({
  106. jsonStr:JSON.stringify(data)
  107. }).then(function(res){
  108. if(res.status == 200) {
  109. vm.loadingTwo = false
  110. // vm.dejdSqyyRzDate =res.data
  111. vm.dejdSqyyRzDate= vm.mergeArrays(res.data.data01,res.data.data02)
  112. console.log('第二阶段社区医院入组进度',vm.dejdSqyyRzDate)
  113. vm.getSpanArr(vm.dejdSqyyRzDate)
  114. }
  115. }).catch(function(err){
  116. vm.loadingTwo = false
  117. })
  118. },
  119. mergeArrays:function(array1, array2) {
  120. var mergedArray = [];
  121. array1.forEach(function(item1,index){
  122. array2.slice(index*3,index*3+3).forEach(function(item2){
  123. var mergedObj = Object.assign({}, item1, item2, { newDetail: 'Detail ' + i });
  124. mergedArray.push(mergedObj);
  125. })
  126. })
  127. return mergedArray;
  128. },
  129. startTimeChange:function(o) {
  130. if(!this.list[0] || this.list[0].type!=0) {
  131. this.list.unshift({type:'0',id:'time',label:o.format('yyyy-MM-dd') +"~"+ this.endTime.format('yyyy-MM-dd')})
  132. }else{
  133. this.list[0].label = o.format('yyyy-MM-dd') +"~"+ this.endTime.format('yyyy-MM-dd')
  134. }
  135. },
  136. endTimeChange:function(o) {
  137. if(!this.list[0] || this.list[0].type!=0) {
  138. this.list.unshift({type:'0',id:'time',label:this.startTime.format('yyyy-MM-dd') +"~"+ o.format('yyyy-MM-dd')})
  139. }else{
  140. this.list[0].label = this.startTime.format('yyyy-MM-dd') +"~"+ o.format('yyyy-MM-dd')
  141. }
  142. },
  143. deleteClick:function(item) {
  144. if(item.id == "time") {
  145. this.startTime = ''
  146. this.endTime = ''
  147. this.list.splice(0,1)
  148. }
  149. var index = this.list.findIndex(function(v){
  150. return item.id == v.id
  151. })
  152. this.list.splice(index,1)
  153. },
  154. // 下一页 上一页
  155. handleCurrentChange:function(val) {
  156. var vm = this
  157. vm.currentPage = val
  158. },
  159. change:function(val) {
  160. this.list = this.list.concat(val)
  161. },
  162. // 确定
  163. confirm:function() {
  164. this.getCommunityHospitalEntryData()
  165. },
  166. // 取消
  167. cancel:function() {
  168. this.startTime = new Date('2023','05','26')
  169. this.endTime = new Date()
  170. if(!this.list[0] || this.list[0].type!=0) {
  171. this.list.unshift({type:'0',id:'time',label:this.startTime.format('yyyy-MM-dd') +"~"+ this.endTime.format('yyyy-MM-dd')})
  172. }else{
  173. this.list[0].label = this.startTime.format('yyyy-MM-dd') +"~"+ this.endTime.format('yyyy-MM-dd')
  174. }
  175. },
  176. // 导出
  177. exportHandle:function() {
  178. var vm = this
  179. vm.loadingTwo = true
  180. var data = {
  181. startTime:this.startTime.format('yyyy-MM-dd'),
  182. endTime:this.endTime.format('yyyy-MM-dd')
  183. }
  184. var jsonStr = JSON.stringify(data)
  185. statisticAPI.exportCommunityHospitalEntryData({
  186. jsonStr: encodeURIComponent(jsonStr)
  187. },'慢阻肺第二阶段社区医院入组总明细.xls').then(function(res){
  188. vm.loadingTwo = false
  189. })
  190. },
  191. // getSpanArr方法
  192. // getSpanArr(data) {
  193. // this.mergeArr.forEach((key, index1) => {
  194. // var count = 0; // 用来记录需要合并行的起始位置
  195. // this.mergeObj[key] = []; // 记录每一列的合并信息
  196. // data.forEach((item, index) => {
  197. // // index == 0表示数据为第一行,直接 push 一个 1
  198. // if(index === 0) {
  199. // this.mergeObj[key].push(1);
  200. // } else {
  201. // // 判断当前行是否与上一行其值相等 如果相等 在 count 记录的位置其值 +1 表示当前行需要合并 并push 一个 0 作为占位
  202. // if(item[key] === data[index - 1][key]) {
  203. // this.mergeObj[key][count] += 1;
  204. // this.mergeObj[key].push(0);
  205. // } else {
  206. // // 如果当前行和上一行其值不相等
  207. // count = index; // 记录当前位置
  208. // this.mergeObj[key].push(1); // 重新push 一个 1
  209. // }
  210. // }
  211. // })
  212. // })
  213. // },
  214. getSpanArr(data) {
  215. this.mergeArr.forEach((key, index1) => {
  216. var count = 0; // 用来记录需要合并行的起始位置
  217. this.mergeObj[key] = []; // 记录每一列的合并信息
  218. data.forEach((item, index) => {
  219. // index == 0表示数据为第一行,直接 push 一个 1
  220. if(index === 0) {
  221. this.mergeObj[key].push(1);
  222. } else {
  223. // 判断当前行是否与上一行其值相等 如果相等 在 count 记录的位置其值 +1 表示当前行需要合并 并push 一个 0 作为占位
  224. if(key==='v1MonthCount'||key==='targetEntryCont'||key==='firstV1FinishDate'||key==='v1AllCount'||key==='entryRate'){
  225. if(item[key] === data[index - 1][key] && this.mergeObj[key][count]%3!=0) {
  226. this.mergeObj[key][count] += 1;
  227. this.mergeObj[key].push(0);
  228. } else {
  229. // 如果当前行和上一行其值不相等
  230. count = index; // 记录当前位置
  231. this.mergeObj[key].push(1); // 重新push 一个 1
  232. }
  233. }else{
  234. if(item[key] === data[index - 1][key] ) {
  235. this.mergeObj[key][count] += 1;
  236. this.mergeObj[key].push(0);
  237. } else {
  238. // 如果当前行和上一行其值不相等
  239. count = index; // 记录当前位置
  240. this.mergeObj[key].push(1); // 重新push 一个 1
  241. }
  242. }
  243. }
  244. })
  245. })
  246. },
  247. //得到行、列的合并值
  248. objectSpanMethod: function({row, column, rowIndex, columnIndex}) {
  249. if(this.mergeArr.indexOf(column.property) !== -1) {
  250. // 判断其值是不是为0
  251. if(this.mergeObj[column.property][rowIndex]) {
  252. return [this.mergeObj[column.property][rowIndex], 1]
  253. } else {
  254. // 如果为0则为需要合并的行
  255. return [0, 0];
  256. }
  257. }
  258. },
  259. renderHeadeRexpert: function(h, item) {
  260. var index = item.$index
  261. console.log(index,"我是index",item)
  262. return [
  263. index=='1'?'目标V2入组例数':index=='2'?'首例V1入筛时间(YYYY/MM/DD)':index=='9'?'入组完成率(%)':index=='6'?'首例V2入组时间':'',
  264. h(
  265. 'el-tooltip',
  266. {
  267. props: {
  268. content: (function() {
  269. return index=='1'?'即目标入组例数(与管理目标数一致)':index=='2'?'完成V1的提交时间,即“第一例完成V1并成功纳入筛选期的访视日期':index=='9'?'入组完成率=已入组/目标V2入组例数':index=='6'?'查询第一个入组的时间(访视2触发入组,统计第一个做访视2的患者,且是完成访视2提交的时间。)':''
  270. })(),
  271. placement: 'top'
  272. }
  273. },
  274. [
  275. h('span', {
  276. class: {
  277. 'el-icon-question': true
  278. }
  279. })
  280. ]
  281. )
  282. ]
  283. },
  284. }
  285. })