notiCheck.vue 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <template>
  2. <div class="orderbox">
  3. <h2>{{infolist.noticeTitle}}</h2>
  4. <span>{{infolist.noticeContent}}</span>
  5. <div style="padding: 0 30px 0 20px;">
  6. <uploadDown :datalist="datalist" :dialogStatus="dialogInfo"></uploadDown>
  7. </div>
  8. </div>
  9. </template>
  10. <script>
  11. import uploadDown from './uploadDown.vue'
  12. export default {
  13. props: ["infolist","datalist","dialogInfo"],
  14. components:{
  15. uploadDown
  16. },
  17. data() {
  18. return {
  19. };
  20. },
  21. methods: {
  22. },
  23. created() {
  24. this.$forceUpdate()
  25. },
  26. watch: {
  27. dialogInfo(){
  28. this.$forceUpdate()
  29. },
  30. }
  31. };
  32. </script>
  33. <style scoped lang="scss">
  34. .orderbox{
  35. h2{
  36. width: 100%;
  37. text-align: center;
  38. margin-bottom: 10px;
  39. }
  40. span{
  41. display: inline-block;
  42. text-indent:30px;
  43. line-height: 30px;
  44. padding: 0 30px 0 20px;
  45. text-align: justify;
  46. margin-bottom: 20px;
  47. }
  48. em{
  49. font-style: normal;
  50. display: inline-block;
  51. text-indent:30px;
  52. line-height: 30px;
  53. padding: 0 30px 0 20px;
  54. text-align: justify;
  55. margin-top: 20px;
  56. }
  57. .tabbox{
  58. padding: 0 30px 0 20px;
  59. margin-top: 20px;
  60. }
  61. p{
  62. text-align: right;
  63. margin-right: 30px;
  64. }
  65. }
  66. </style>