123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- <template>
- <div class="c_box">
- <div class="choice_box">
- <div class="title" style="display: flex;">
- <span style="min-width: fit-content;">{{ tindex + 1 + "、" }}</span>
- <span>{{ checkJson.title }}</span>
- </div>
- <div class="detail" v-if="checkJson.detail" v-html="checkJson.detail"
- style="color: #00000099;margin-top: 5px;">
- </div>
- <div style="margin-top: 10px;">
- <el-date-picker
- v-model="checkJson.answer2"
- type="date"
- format="yyyy 年 MM 月 dd 日"
- value-format="yyyy年MM月dd日"
- placeholder="年/月/日">
- </el-date-picker>
- </div>
- </div>
- </div>
- </template>
- <script>
- export default {
- props: {
- tindex: {
- type: Number
- },
- cJson: {
- type: Object,
- },
- checktype: {
- type: Number,
- default: 1
- },
- see: {
- type: Boolean,
- default: false
- }
- },
- data() {
- return {
- option: {
- 1: { name: '附件' },
- },
- userid: this.$route.query.userid,
- checkJson: undefined,
- progress: 0,
- isFinishSize: 0,
- proVisible: false,
- isAllSize: 0,
- wurl: "",
- isTong: false
- }
- },
- watch: {
- checkJson: {
- handler(newValue) {
- this.$emit('update:cJson', newValue)
- },
- deep: true
- },
- },
- methods: {
- depthCopy(s) {
- return JSON.parse(JSON.stringify(s));
- },
- },
- mounted() {
- this.checkJson = this.cJson ? this.depthCopy(this.cJson) : undefined
- }
- }
- </script>
- <style scoped>
- .c_box {
- width: 100%;
- position: relative;
- }
- /* .mask {
- position: absolute;
- height: 100%;
- width: 100%;
- z-index: 2;
- } */
- .choice_box {
- white-space: pre-line;
- }
- .choice_box>.title {
- font-weight: bold;
- width: 100%;
- word-break: break-all;
- }
- </style>
|