time.vue 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. <template>
  2. <div class="c_box">
  3. <div class="choice_box">
  4. <div class="title" style="display: flex;">
  5. <span style="min-width: fit-content;">{{ tindex + 1 + "、" }}</span>
  6. <span>{{ checkJson.title }}</span>
  7. </div>
  8. <div class="detail" v-if="checkJson.detail" v-html="checkJson.detail"
  9. style="color: #00000099;margin-top: 5px;">
  10. </div>
  11. <div style="margin-top: 10px;">
  12. <el-date-picker
  13. v-model="checkJson.answer2"
  14. type="date"
  15. format="yyyy 年 MM 月 dd 日"
  16. value-format="yyyy年MM月dd日"
  17. placeholder="年/月/日">
  18. </el-date-picker>
  19. </div>
  20. </div>
  21. </div>
  22. </template>
  23. <script>
  24. export default {
  25. props: {
  26. tindex: {
  27. type: Number
  28. },
  29. cJson: {
  30. type: Object,
  31. },
  32. checktype: {
  33. type: Number,
  34. default: 1
  35. },
  36. see: {
  37. type: Boolean,
  38. default: false
  39. }
  40. },
  41. data() {
  42. return {
  43. option: {
  44. 1: { name: '附件' },
  45. },
  46. userid: this.$route.query.userid,
  47. checkJson: undefined,
  48. progress: 0,
  49. isFinishSize: 0,
  50. proVisible: false,
  51. isAllSize: 0,
  52. wurl: "",
  53. isTong: false
  54. }
  55. },
  56. watch: {
  57. checkJson: {
  58. handler(newValue) {
  59. this.$emit('update:cJson', newValue)
  60. },
  61. deep: true
  62. },
  63. },
  64. methods: {
  65. depthCopy(s) {
  66. return JSON.parse(JSON.stringify(s));
  67. },
  68. },
  69. mounted() {
  70. this.checkJson = this.cJson ? this.depthCopy(this.cJson) : undefined
  71. }
  72. }
  73. </script>
  74. <style scoped>
  75. .c_box {
  76. width: 100%;
  77. position: relative;
  78. }
  79. /* .mask {
  80. position: absolute;
  81. height: 100%;
  82. width: 100%;
  83. z-index: 2;
  84. } */
  85. .choice_box {
  86. white-space: pre-line;
  87. }
  88. .choice_box>.title {
  89. font-weight: bold;
  90. width: 100%;
  91. word-break: break-all;
  92. }
  93. </style>