|
@@ -0,0 +1,204 @@
|
|
|
+<template>
|
|
|
+ <div class="c_box">
|
|
|
+ <div class="mask" v-if="!isOpen"></div>
|
|
|
+ <!-- <div v-if="!cJson">暂未设置题目</div> -->
|
|
|
+ <div class="punchQRcode">
|
|
|
+ <div class="title" style="display: flex;">
|
|
|
+ <span v-if="!updateList.title" @click.stop="updateTitle()">{{
|
|
|
+ cJson.title ? cJson.title : "输入问题"
|
|
|
+ }}</span>
|
|
|
+ <input
|
|
|
+ v-if="updateList.title"
|
|
|
+ ref="titleRef"
|
|
|
+ class="editInput"
|
|
|
+ v-model="checkJson.title"
|
|
|
+ @blur="save"
|
|
|
+ @keyup.enter="save"
|
|
|
+ placeholder="输入问题"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ <div
|
|
|
+ class="detail"
|
|
|
+ v-if="!updateList.detail"
|
|
|
+ @click.stop="updateDetail()"
|
|
|
+ >
|
|
|
+ {{ cJson.detail ? cJson.detail : "暂无描述" }}
|
|
|
+ </div>
|
|
|
+ <input
|
|
|
+ v-if="updateList.detail"
|
|
|
+ ref="detailRef"
|
|
|
+ class="editInput"
|
|
|
+ v-model="checkJson.detail"
|
|
|
+ @blur="save"
|
|
|
+ style="margin-top: 10px;color: rgb(136, 139, 146);"
|
|
|
+ @keyup.enter="save"
|
|
|
+ placeholder="请填写描述说明"
|
|
|
+ />
|
|
|
+
|
|
|
+ <div class="endTime">
|
|
|
+ <span>过期时间(分):</span>
|
|
|
+ <input
|
|
|
+ class="binfo_input"
|
|
|
+ type="value"
|
|
|
+ placeholder="请设置过期时间"
|
|
|
+ v-model="checkJson.minutes"
|
|
|
+ @change="minutesChange"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+export default {
|
|
|
+ props: {
|
|
|
+ cJson: {
|
|
|
+ type: Object
|
|
|
+ },
|
|
|
+ cJson2: {
|
|
|
+ type: Object
|
|
|
+ },
|
|
|
+ isOpen: {
|
|
|
+ type: Boolean,
|
|
|
+ default: false
|
|
|
+ },
|
|
|
+ index: {
|
|
|
+ type: String,
|
|
|
+ default: ""
|
|
|
+ }
|
|
|
+ },
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ option: {
|
|
|
+ 1: { name: "附件" }
|
|
|
+ // 2: { name: '多选题' }
|
|
|
+ },
|
|
|
+ checkJson: {},
|
|
|
+ updateList: {
|
|
|
+ title: false,
|
|
|
+ detail: false
|
|
|
+ }
|
|
|
+ };
|
|
|
+ },
|
|
|
+ watch: {
|
|
|
+ checkJson: {
|
|
|
+ handler(newVal) {
|
|
|
+ this.$emit("setJson", newVal, this.index);
|
|
|
+ },
|
|
|
+ deep: true
|
|
|
+ },
|
|
|
+ isOpen(newValue) {
|
|
|
+ if (newValue) {
|
|
|
+ if (!this.cJson2 || Object.keys(this.cJson2).length == 0) {
|
|
|
+ this.checkJson = {
|
|
|
+ title: "标题",
|
|
|
+ type: 1,
|
|
|
+ answer: ""
|
|
|
+ };
|
|
|
+ } else {
|
|
|
+ this.checkJson = this.depthCopy(this.cJson2);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ depthCopy(s) {
|
|
|
+ console.log("4",s)
|
|
|
+ return JSON.parse(JSON.stringify(s));
|
|
|
+ },
|
|
|
+ save() {
|
|
|
+ for (let key in this.updateList) {
|
|
|
+ this.updateList[key] = false;
|
|
|
+ }
|
|
|
+ },
|
|
|
+ updateTitle() {
|
|
|
+ this.updateList.title = true;
|
|
|
+ this.$nextTick(() => {
|
|
|
+ this.$refs["titleRef"].focus();
|
|
|
+ });
|
|
|
+ },
|
|
|
+ updateDetail() {
|
|
|
+ this.updateList.detail = true;
|
|
|
+ this.$nextTick(() => {
|
|
|
+ this.$refs["detailRef"].focus();
|
|
|
+ });
|
|
|
+ },
|
|
|
+ minutesChange() {
|
|
|
+ if (/[^\d]/.test(this.checkJson.minutes) || this.checkJson.minutes < 0) {
|
|
|
+ this.$message.error("请输入大于0的整数数字");
|
|
|
+ this.checkJson.minutes = 0;
|
|
|
+ } else if (this.checkJson.minutes === "") {
|
|
|
+ this.checkJson.minutes = 0;
|
|
|
+ }
|
|
|
+ },
|
|
|
+
|
|
|
+ },
|
|
|
+ mounted() {
|
|
|
+ if (!this.cJson || Object.keys(this.cJson).length == 0) {
|
|
|
+ this.checkJson = {
|
|
|
+ title: "",
|
|
|
+ detail: "",
|
|
|
+ answer: "", //内容
|
|
|
+ answer2: "", //内容
|
|
|
+ minutes: 5, //设置的分钟
|
|
|
+ };
|
|
|
+ } else {
|
|
|
+ console.log("2", this.cJson);
|
|
|
+ this.checkJson = this.depthCopy(this.cJson);
|
|
|
+ console.log("3",this.checkJson)
|
|
|
+ this.$forceUpdate();
|
|
|
+ }
|
|
|
+ }
|
|
|
+};
|
|
|
+</script>
|
|
|
+
|
|
|
+<style scoped>
|
|
|
+@import "../../global_styles.css";
|
|
|
+
|
|
|
+.punchQRcode > .detail {
|
|
|
+ width: 100%;
|
|
|
+ word-break: break-all;
|
|
|
+ color: rgb(136, 139, 146);
|
|
|
+ margin: 10px 0 0;
|
|
|
+}
|
|
|
+
|
|
|
+.binfo_input {
|
|
|
+ width: 180px;
|
|
|
+ height: 40px;
|
|
|
+ border-radius: 5px;
|
|
|
+ background: #fff;
|
|
|
+ font-size: 16px;
|
|
|
+ font-family: "Microsoft YaHei";
|
|
|
+ /* border: 1px solid #3682fc00; */
|
|
|
+ border: 1.5px solid #e0e0e0;
|
|
|
+ text-indent: 1em;
|
|
|
+ outline-color: rgb(64, 158, 255);
|
|
|
+ outline-offset: 1px;
|
|
|
+
|
|
|
+}
|
|
|
+
|
|
|
+.binfo_input > div {
|
|
|
+ border: 1.5px dashed #dfdfdf;
|
|
|
+ height: 120px;
|
|
|
+ width: 100%;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ background: rgb(249, 250, 251);
|
|
|
+ color: rgb(124, 124, 124);
|
|
|
+ border-radius: 5px;
|
|
|
+}
|
|
|
+
|
|
|
+.endTime{
|
|
|
+ display: flex;
|
|
|
+ justify-content: flex-end;
|
|
|
+ align-items: center;
|
|
|
+ margin-top: 10px;
|
|
|
+
|
|
|
+}
|
|
|
+
|
|
|
+.endTime>span{
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+}
|
|
|
+</style>
|