reportList.vue 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542
  1. <template>
  2. <div>
  3. <section class="main-section">
  4. <div class="Layout_space_between">
  5. <div class="el-main-title">
  6. <div class="title-left-icon" />
  7. <div class="title-left-name">提测报告</div>
  8. </div>
  9. <el-button class="task-report-btn" type="text" @click="getTest(10086)">{{ dataStatus?'查看历史':"回到最新" }}</el-button>
  10. </div>
  11. <div class="detail-info">
  12. <el-table
  13. :data="testData"
  14. size="small"
  15. :header-cell-style="{ color: 'rgb(74, 74, 74)', fontSize: '14px', fontWeight: '500' }"
  16. show-overflow-tooltip="true"
  17. max-height="300"
  18. >
  19. <el-table-column label="标题名称" min-width="120">
  20. <template slot-scope="scope">
  21. <a v-if="dataStatus" href="javascript:void(0)" style="color:#20a0ff" @click="toReportView(scope.row, 2)">{{ scope.row.reportName }}</a>
  22. <a v-if="!dataStatus" href="javascript:void(0)" style="color:#20a0ff" @click="toReportView(scope.row, 2)">{{ scope.row.name }}</a>
  23. <br>{{ scope.row.returnReason }}
  24. </template>
  25. </el-table-column>
  26. <el-table-column label="状态" min-width="100" align="center">
  27. <template slot-scope="scope">
  28. <span :style="{color: stColors[scope.row.status]}"> {{ scope.row.statusString }} </span>
  29. </template>
  30. </el-table-column>
  31. <el-table-column label="报告人" min-width="100" align="center">
  32. <template slot-scope="scope">
  33. <span v-if="dataStatus">{{ scope.row.reportorObject === null ? '' : scope.row.reportorObject.name }}</span>
  34. <span v-if="!dataStatus">{{ scope.row.createrObject.name }}</span>
  35. </template>
  36. </el-table-column>
  37. <el-table-column label="创建日期" min-width="100" align="center">
  38. <template slot-scope="scope">{{ scope.row.gmtCreate }}</template>
  39. </el-table-column>
  40. <el-table-column v-if="dataStatus" label="操作" width="200">
  41. <template slot-scope="scope">
  42. <div v-if="scope.row.status === 1 ? false : true">
  43. <span v-if="scope.row.status === 3 ? true : false" class="btn" @click="back(1,scope.row.id, scope.row)">通过</span>
  44. <span v-if="scope.row.status === 3 ? true : false" style="margin-left: 30px;" class="btn" @click="back(2,scope.row.id, scope.row)">打回</span>
  45. <span v-if="scope.row.status === 0 ? true : false" class="btn" @click="back(5,scope.row.id, scope.row)">发送</span>
  46. <span v-if="scope.row.status === 0 ? true : false" style="margin: 0 30px;" class="btn" @click="back(6,scope.row.id, scope.row)">编辑</span>
  47. <span v-if="scope.row.status === 0 ? true : false" class="btn" @click="back(4,scope.row.id, scope.row )">删除</span>
  48. <span v-if="scope.row.status === 2 ? true : false" class="btn" @click="back(3,scope.row.id, scope.row)">重新提测</span>
  49. <el-dialog :title="titName" :visible.sync="dialog_testData" width="30%" :close-on-click-modal="false">
  50. <div style="position: absolute; top: 23px; left: 12px;width:4px;height:17px;background:#409EFF;border-radius:1px;" />
  51. <div align="center">
  52. <div>是否{{ Str }}以下提测?</div>
  53. <div style="color: #f79232;">{{ requireName }}</div>
  54. </div>
  55. <el-input v-show="Str === '打回'" v-model="launchRepulseInfo" type="textarea" placeholder="请输入打回原因..." :rows="3" />
  56. <span slot="footer" class="dialog-footer">
  57. <el-button type="primary" size="mini" @click="passOrBackSend()">确 定</el-button>
  58. <el-button type="danger" size="mini" @click="endDialog">取 消</el-button>
  59. </span>
  60. </el-dialog>
  61. </div>
  62. </template>
  63. </el-table-column>
  64. </el-table>
  65. <el-col :span="24">
  66. <div align="right">
  67. <el-pagination
  68. :page-sizes="[5, 10, 15, testPages.total]"
  69. :current-page="testPages.curIndex"
  70. :page-size="testPages.pageSize"
  71. background
  72. layout="total, sizes, prev, pager, next, jumper"
  73. :total="testPages.total"
  74. @size-change="testSizeChange"
  75. @current-change="testCurrentChange"
  76. />
  77. </div>
  78. </el-col>
  79. </div>
  80. </section>
  81. <section class="main-section">
  82. <div class="Layout_space_between">
  83. <div class="el-main-title">
  84. <div class="title-left-icon" />
  85. <div class="title-left-name">测试日报</div>
  86. </div>
  87. <el-button class="task-report-btn" type="text" @click="getDaily(10011)">{{ dailyDataStatus?'查看历史':"回到最新" }}</el-button>
  88. </div>
  89. <div class="detail-info">
  90. <el-table :data="dailyData" size="small" :header-cell-style="{ color: 'rgb(74, 74, 74)', fontSize: '14px', fontWeight: '500' }" show-overflow-tooltip="true">
  91. <el-table-column label="标题名称" min-width="120">
  92. <template slot-scope="scope">
  93. <a href="javascript:void(0)" style="color:#20a0ff" @click="toReportView(scope.row, 0)">{{ scope.row.reportName }}</a>
  94. </template>
  95. </el-table-column>
  96. <el-table-column label="状态" min-width="100" align="center">
  97. <template slot-scope="scope">{{ scope.row.statusString }}</template>
  98. </el-table-column>
  99. <el-table-column label="报告人" min-width="100" align="center">
  100. <template slot-scope="scope">
  101. <span v-if="dailyDataStatus">{{ !scope.row.reportorObject? '':scope.row.reportorObject.name }}</span>
  102. <span v-if="!dailyDataStatus">{{ scope.row.createrObject.name }}</span>
  103. </template>
  104. </el-table-column>
  105. <el-table-column label="创建日期" min-width="100" align="center">
  106. <template slot-scope="scope">{{ scope.row.gmtCreate }}</template>
  107. </el-table-column>
  108. <el-table-column v-if="dailyDataStatus" label="操作" width="200">
  109. <template slot-scope="scope">
  110. <div>
  111. <span v-if="scope.row.status === 0 ? true : false" class="btn" @click="dailyButtom(5,scope.row.id, scope.row)">发送</span>
  112. <span v-if="scope.row.status === 0 ? true : false" style="margin: 0 30px;" class="btn" @click="dailyButtom(6,scope.row.id, scope.row)">编辑</span>
  113. <span v-if="scope.row.status === 0 ? true : false" class="btn" @click="dailyButtom(4,scope.row.id, scope.row )">删除</span>
  114. <span v-if="scope.row.status === 3 ? true : false" class="btn" @click="dailyButtom(3,scope.row.id, scope.row)">复制</span>
  115. <el-dialog :title="titName" :visible.sync="dialog_daily" width="30%" :close-on-click-modal="false">
  116. <div style="position: absolute; top: 23px; left: 12px;width:4px;height:17px;background:#409EFF;border-radius:1px;" />
  117. <div align="center">
  118. <div>是否{{ Str }}以下测试日报?</div>
  119. <div style="color: #f79232;">{{ requireName }}</div>
  120. </div>
  121. <el-input v-show="Str === '打回'" v-model="launchRepulseInfo" type="textarea" placeholder="请输入打回原因..." :rows="3" />
  122. <span slot="footer" class="dialog-footer">
  123. <el-button type="primary" size="mini" @click="dailySend(scope.row.id)">确 定</el-button>
  124. <el-button type="danger" size="mini" @click="dialog_daily = false">取 消</el-button>
  125. </span>
  126. </el-dialog>
  127. </div>
  128. </template>
  129. </el-table-column>
  130. </el-table>
  131. <el-col :span="24">
  132. <div align="right">
  133. <el-pagination
  134. :page-sizes="[5, 10, 15, dailyPages.total]"
  135. :current-page="dailyPages.curIndex"
  136. :page-size="dailyPages.pageSize"
  137. background
  138. layout="total, sizes, prev, pager, next, jumper"
  139. :total="dailyPages.total"
  140. @size-change="dailySizeChange"
  141. @current-change="dailyCurrentChange"
  142. />
  143. </div>
  144. </el-col>
  145. </div>
  146. </section>
  147. <section class="main-section">
  148. <div class="Layout_space_between">
  149. <div class="el-main-title">
  150. <div class="title-left-icon" />
  151. <div class="title-left-name">准出报告</div>
  152. </div>
  153. <el-button class="task-report-btn" type="text" @click="getClient(10000)">{{ releaseDataStatus?'查看历史':"回到最新" }}</el-button>
  154. </div>
  155. <div class="detail-info">
  156. <el-table :data="clientData" size="small" :header-cell-style="{ color: 'rgb(74, 74, 74)', fontSize: '14px', fontWeight: '500' }" show-overflow-tooltip="true">
  157. <el-table-column label="标题名称" min-width="120">
  158. <template slot-scope="scope">
  159. <a href="javascript:void(0)" style="color:#20a0ff" @click="toReportView(scope.row, 1)">{{ scope.row.reportName }}</a>
  160. </template>
  161. </el-table-column>
  162. <el-table-column label="状态" min-width="100" align="center">
  163. <template slot-scope="scope">
  164. <span v-if="!releaseDataStatus">{{ scope.row.reportStatusString }}</span>
  165. <span v-if="releaseDataStatus">{{ scope.row.statusString }}</span>
  166. </template>
  167. </el-table-column>
  168. <el-table-column label="报告人" min-width="100" align="center">
  169. <template slot-scope="scope">
  170. <span v-if="!releaseDataStatus">{{ scope.row.createrObject.name }}</span>
  171. <span v-if="releaseDataStatus">{{ scope.row.reportorObject === null ? '' :scope.row.reportorObject.name }}</span>
  172. </template>
  173. </el-table-column>
  174. <el-table-column label="创建日期" min-width="100" align="center">
  175. <template slot-scope="scope">{{ scope.row.gmtCreate }}</template>
  176. </el-table-column>
  177. <el-table-column v-if="releaseDataStatus" label="操作" width="200">
  178. <template slot-scope="scope">
  179. <div v-if="scope.row.status === 1 ? false : true">
  180. <span v-if="scope.row.status === 2 ? true : false" class="btn" @click="clientButtom(5,scope.row.id, scope.row)">发送</span>
  181. <span v-if="scope.row.status === 2 ? true : false" style="margin: 0 30px;" class="btn" @click="clientButtom(6,scope.row.id, scope.row)">编辑</span>
  182. <span v-if="scope.row.status === 2 ? true : false" class="btn" @click="clientButtom(4,scope.row.id, scope.row )">删除</span>
  183. <el-dialog :title="titName" :visible.sync="dialog_client" width="30%" :close-on-click-modal="false">
  184. <div style="position: absolute; top: 23px; left: 12px;width:4px;height:17px;background:#409EFF;border-radius:1px;" />
  185. <div align="center">
  186. <div>是否{{ Str }}以下准出?</div>
  187. <div style="color: #f79232;">{{ requireName }}</div>
  188. </div>
  189. <el-input v-show="Str === '打回'" v-model="launchRepulseInfo" type="textarea" placeholder="请输入打回原因..." :rows="3" />
  190. <span slot="footer" class="dialog-footer">
  191. <el-button type="primary" size="mini" @click="clientSend(scope.row.id)">确 定</el-button>
  192. <el-button type="danger" size="mini" @click="dialog_client = false">取 消</el-button>
  193. </span>
  194. </el-dialog>
  195. </div>
  196. </template>
  197. </el-table-column>
  198. </el-table>
  199. <el-col :span="24">
  200. <div align="right">
  201. <el-pagination
  202. :page-sizes="[5, 10, 15, clientPages.total]"
  203. :current-page="clientPages.curIndex"
  204. :page-size="clientPages.pageSize"
  205. background
  206. layout="total, sizes, prev, pager, next, jumper"
  207. :total="clientPages.total"
  208. @size-change="clientSizeChange"
  209. @current-change="clientCurrentChange"
  210. />
  211. </div>
  212. </el-col>
  213. </div>
  214. </section>
  215. <!-- 弹框 -->
  216. <Test-report v-if="dialogTest" ref="TestReport" />
  217. <Daily-report v-if="dialogDaily" ref="DailyReport" />
  218. <ReleaseReport v-if="dialogClient" ref="ClientReport" />
  219. </div>
  220. </template>
  221. <script>
  222. import {
  223. dailyReport,
  224. projectTestReport,
  225. launchTest,
  226. launchTestDelete
  227. } from '@/api/taskIndex' // ajax
  228. import '@/styles/PublicStyle/index.scss'
  229. import TestReport from '@/views/reportManagement/components/TestingReport' // 提测
  230. import DailyReport from '@/views/reportManagement/components/DailyReport' // 日报
  231. import ReleaseReport from '@/views/reportManagement/components/ReleaseReport' // 准出
  232. import { dailyReportDelete, projectTestReportDelete } from '@/api/testPresentetion' // 日报
  233. import { reportdelivertestGetByTaskId, reportreleaseGetByTaskId, dailyReportGetByTaskIdV2, reportdelivertestUpdate, reportdelivertestCheckStatus } from '@/api/reportTemplate'
  234. export default {
  235. components: {
  236. TestReport,
  237. DailyReport,
  238. ReleaseReport
  239. },
  240. data() {
  241. return {
  242. userInformation: localStorage.getItem('username'),
  243. userNames: localStorage.getItem('realname'),
  244. taskId: Number(this.$route.query.id), // 任务id
  245. stColors: ['#409EFF', '#07BCA4', '#F56C6C', '#07BCA4'],
  246. dataStatus: true, // 数据状态
  247. releaseDataStatus: true, // 准出
  248. dailyDataStatus: true, // 日报
  249. dialog_testData: false, // 打回弹窗
  250. dialog_daily: false, // 测试报告dialog
  251. dialog_client: false, // 准出报告dialog
  252. launchRepulseInfo: '', // 打回原因
  253. CallBackStatus: '', // 打回状态
  254. CallBackId: '', // 打回id
  255. reportData: {},
  256. titName: '', // 打回title
  257. Str: '', // 打回操作名称
  258. requireName: '', // 归属需求name
  259. testData: [], // 提测信息
  260. testPages: { // 提测分页
  261. curIndex: 1,
  262. pageSize: 5,
  263. total: 0
  264. },
  265. dailyData: [], // 日报信息
  266. dailyPages: { // 提测分页
  267. curIndex: 1,
  268. pageSize: 5,
  269. total: 0
  270. },
  271. clientData: [], // 准出信息
  272. clientPages: {// 准出分页
  273. curIndex: 1,
  274. pageSize: 5,
  275. total: 0
  276. },
  277. dialogTest: false, // 新建提测报告
  278. dialogDaily: false, // 新建测试日报
  279. dialogClient: false // 新建准出报告
  280. }
  281. },
  282. created() {
  283. this.getTest()
  284. this.getDaily()
  285. this.getClient()
  286. },
  287. methods: {
  288. async getTest(val) { // 获取提测
  289. val === 10086 ? this.dataStatus = !this.dataStatus : ''
  290. if (this.dataStatus) {
  291. const data = { taskId: this.taskId, bizId: localStorage.getItem('bizId'), curIndex: this.testPages.curIndex, pageSize: this.testPages.pageSize }
  292. const res = await reportdelivertestGetByTaskId(data)
  293. if (res.code === 200) {
  294. this.testData = res.data.list
  295. this.testPages.total = res.data.total
  296. }
  297. } else {
  298. const params = { taskId: this.taskId, curIndex: this.testPages.curIndex, pageSize: this.testPages.pageSize }
  299. const res = await launchTest(params)
  300. if (res.code === 200) {
  301. this.testData = res.data.list
  302. this.testPages.total = res.data.total
  303. }
  304. }
  305. },
  306. async getDaily(val) { // 获取日报
  307. val === 10011 ? this.dailyDataStatus = !this.dailyDataStatus : ''
  308. if (this.dailyDataStatus) {
  309. const indexPage = { taskId: this.taskId, bizId: localStorage.getItem('bizId'), curIndex: this.clientPages.curIndex, pageSize: this.clientPages.pageSize }
  310. const res = await dailyReportGetByTaskIdV2(indexPage)
  311. if (res.code === 200) {
  312. this.dailyData = res.data.list
  313. this.dailyPages.total = res.data.total
  314. }
  315. } else {
  316. const params = { taskId: this.taskId, curIndex: this.dailyPages.curIndex, pageSize: this.dailyPages.pageSize }
  317. const res = await dailyReport(params)
  318. if (res.code === 200) {
  319. this.dailyData = res.data.list
  320. this.dailyPages.total = res.data.total
  321. }
  322. }
  323. },
  324. async getClient(val) { // 获取准出
  325. val === 10000 ? this.releaseDataStatus = !this.releaseDataStatus : ''
  326. if (this.releaseDataStatus) {
  327. const indexPage = { taskId: this.taskId, bizId: localStorage.getItem('bizId'), curIndex: this.clientPages.curIndex, pageSize: this.clientPages.pageSize }
  328. const res = await reportreleaseGetByTaskId(indexPage)
  329. if (res.code === 200) {
  330. this.clientData = res.data.list
  331. this.clientPages.total = res.data.total
  332. }
  333. } else {
  334. const params = { taskId: this.taskId, curIndex: this.clientPages.curIndex, pageSize: this.clientPages.pageSize }
  335. const res = await projectTestReport(params)
  336. if (res.code === 200) {
  337. this.clientData = res.data.list
  338. this.clientPages.total = res.data.total
  339. }
  340. }
  341. },
  342. testSizeChange(e) { // 提测分页
  343. this.testPages.pageSize = e
  344. this.getTest()
  345. },
  346. testCurrentChange(e) { // 提测分页
  347. this.testPages.curIndex = e
  348. this.getTest()
  349. },
  350. dailySizeChange(e) { // 日报分页
  351. this.dailyPages.pageSize = e
  352. this.getDaily()
  353. },
  354. dailyCurrentChange(e) { // 日报分页
  355. this.dailyPages.curIndex = e
  356. this.getDaily()
  357. },
  358. clientSizeChange(e) { // 准出分页
  359. this.clientPages.pageSize = e
  360. this.getClient()
  361. },
  362. clientCurrentChange(e) { // 准出分页
  363. this.clientPages.curIndex = e
  364. this.getClient()
  365. },
  366. async passOrBackSend() { // 提测打回
  367. this.dialog_testData = false
  368. // const userData = { id: '', ename: this.userInformation, name: this.userNames }
  369. if (this.Str === '通过' || this.Str === '打回') {
  370. const data = {
  371. id: this.reportData.id,
  372. moduleId: this.reportData.moduleId,
  373. bizId: this.reportData.bizId,
  374. taskIds: [this.taskId],
  375. reportName: this.reportData.reportName,
  376. returnReason: this.launchRepulseInfo,
  377. status: this.Str === '打回' ? 2 : 1
  378. }
  379. const res = await reportdelivertestUpdate(data)
  380. if (res.code === 200) {
  381. this.getTest()
  382. this.$message({ message: res.msg, type: 'success', offset: 150 })
  383. }
  384. } else if (this.Str === '删除') {
  385. const res = await launchTestDelete(this.reportData.id)
  386. if (res.code === 200) {
  387. this.$message({ type: 'success', message: '删除成功' })
  388. }
  389. }
  390. },
  391. async dailySend(e) { // 测试日报删除
  392. console.log(e)
  393. const res = await dailyReportDelete(e)
  394. if (res.code === 200) {
  395. this.$message({ type: 'success', message: '删除成功' })
  396. }
  397. },
  398. async clientSend() { // 准出报告删除
  399. const res = await projectTestReportDelete(this.CallBackId)
  400. if (res.code === 200) {
  401. this.$message({ type: 'success', message: '删除成功' })
  402. }
  403. },
  404. endDialog() { // 结束对话框
  405. this.dialog_testData = false
  406. this.$message({ type: 'warning', message: '已取消' })
  407. },
  408. toReportView(ele, index) { // 进入报告详情页
  409. switch (index) {
  410. case 0:
  411. this.$router.push({ name: '日报详情', query: { id: ele.id }})
  412. break
  413. case 1:
  414. this.$router.push({ name: '准出详情', query: { id: ele.id }})
  415. break
  416. case 2:
  417. this.$router.push({ name: '提测详情', query: { id: ele.id }})
  418. break
  419. }
  420. },
  421. back(e, ele, data) { // 提测报告
  422. this.reportData = data
  423. this.dataStatus ? this.requireName = data.reportName : this.requireName = data.name
  424. this.CallBackStatus = e
  425. this.CallBackId = ele
  426. switch (e) {
  427. case 1:
  428. this.dialog_testData = true
  429. this.titName = '提测确认'
  430. this.Str = '通过'
  431. break
  432. case 2:
  433. this.dialog_testData = true
  434. this.titName = '提测确认'
  435. this.Str = '打回'
  436. break
  437. case 3:
  438. data.taskIds = [Number(this.taskId)]
  439. reportdelivertestCheckStatus([this.taskId]).then(res => {
  440. if (res.code === 200) {
  441. this.dialogTest = true
  442. this.$nextTick(() => {
  443. this.$refs.TestReport.init(4, data)
  444. })
  445. }
  446. })
  447. break
  448. case 4:
  449. this.dialog_testData = true
  450. this.titName = '删除确认'
  451. this.Str = '删除'
  452. break
  453. case 5:
  454. this.dialogTest = true
  455. this.$nextTick(() => {
  456. this.$refs.TestReport.init(3, data)
  457. })
  458. break
  459. case 6:
  460. this.dialogTest = true
  461. this.$nextTick(() => {
  462. this.$refs.TestReport.init(2, data)
  463. })
  464. break
  465. }
  466. },
  467. dailyButtom(e, ele, data) { // 测试报告
  468. this.requireName = data.reportName
  469. this.CallBackStatus = e
  470. this.CallBackId = ele
  471. switch (e) {
  472. case 3:
  473. this.dialogDaily = true
  474. this.$nextTick(() => {
  475. this.$refs.DailyReport.init(4, data)
  476. })
  477. break
  478. case 4:
  479. this.dialog_daily = true
  480. this.titName = '删除确认'
  481. this.Str = '删除'
  482. break
  483. case 5:
  484. this.dialogDaily = true
  485. this.$nextTick(() => {
  486. this.$refs.DailyReport.init(3, data)
  487. })
  488. break
  489. case 6:
  490. this.dialogDaily = true
  491. this.$nextTick(() => {
  492. this.$refs.DailyReport.init(2, data)
  493. })
  494. break
  495. }
  496. },
  497. clientButtom(e, ele, data) { // 准出报告
  498. this.requireName = data.reportName
  499. this.CallBackStatus = e
  500. this.CallBackId = ele
  501. switch (e) {
  502. case 4:
  503. this.dialog_client = true
  504. this.titName = '删除确认'
  505. this.Str = '删除'
  506. break
  507. case 5:
  508. this.dialogClient = true
  509. this.$nextTick(() => {
  510. this.$refs.ClientReport.init(3, data)
  511. })
  512. break
  513. case 6:
  514. this.dialogClient = true
  515. this.$nextTick(() => {
  516. this.$refs.ClientReport.init(2, data)
  517. })
  518. break
  519. }
  520. }
  521. }
  522. }
  523. </script>
  524. <style lang="scss" scoped>
  525. @import '@/styles/detail-pages.scss';
  526. .main-section {
  527. @include main-section;
  528. overflow: auto;
  529. .detail-info {
  530. padding: 0 34px 20px 34px;
  531. }
  532. }
  533. .btn{
  534. cursor: pointer;
  535. }
  536. .task-report-btn {
  537. margin-right: 30px;
  538. }
  539. </style>