From 1b7eb0871a246af9c6dc64f2fa25348831fe0073 Mon Sep 17 00:00:00 2001
From: WXL <1785969728@qq.com>
Date: 星期五, 09 八月 2024 18:35:25 +0800
Subject: [PATCH] 测试完成
---
src/views/knowledge/questionbank/particulars/index.vue | 104 ++++++++++++++++++++++++++++++++++++++++++----------
1 files changed, 84 insertions(+), 20 deletions(-)
diff --git a/src/views/knowledge/questionbank/particulars/index.vue b/src/views/knowledge/questionbank/particulars/index.vue
index 0f60b5b..317f038 100644
--- a/src/views/knowledge/questionbank/particulars/index.vue
+++ b/src/views/knowledge/questionbank/particulars/index.vue
@@ -174,6 +174,45 @@
placeholder="璇疯緭鍏ラ鐩唴瀹�"
></el-input>
</el-form-item>
+ <el-form-item
+ label=""
+ prop="scriptContent"
+ v-if="topicobj.scriptType == 3"
+ >
+ <div style="display: flex; margin-bottom: 10px">
+ <div class="tsgnames" @click="tsgnametos">鎻掑叆濉┖鏍囪</div>
+ </div>
+ </el-form-item>
+ <el-row>
+ <el-col :span="20">
+ <el-form-item label="濉┖淇℃伅" v-if="topicobj.scriptType == 3">
+ <el-card class="box-card" style="width: 200%;">
+ <div
+ v-for="item in topicobj.svyLibScriptOptions"
+ v-if="item.isoperation != 3"
+ style="margin-bottom: 10px"
+ >
+ <el-input
+ type="text"
+ placeholder="濉叆鍐呭淇℃伅"
+ v-model="item.aaa"
+ >
+ <el-button
+ slot="append"
+ @click="deletexuanx(item)"
+ type="danger"
+ icon="el-icon-delete"
+ circle
+ ></el-button>
+ <span slot="prepend">{{
+ "(" + item.orderno + ")"
+ }}</span>
+ </el-input>
+ </div>
+ </el-card>
+ </el-form-item>
+ </el-col>
+ </el-row>
<el-form-item label="棰樼洰璇存槑">
<el-input
style="width: 40vw"
@@ -705,6 +744,7 @@
this.dynamicTags = this.topicobj.svyLibScriptTagList.map(
this.processElement
);
+ this.scriptTypels = this.topicobj.scriptType;
this.variablelist = JSON.parse(this.topicobj.otherdata)
? JSON.parse(this.topicobj.otherdata)
: this.variablelist;
@@ -837,11 +877,17 @@
},
// 鍒ゆ柇鎸囨爣
changefn(item) {
- if (this.topicobj.targetname) {
+ console.log(item);
+
+ if (
+ this.topicobj.targetname ||
+ this.topicobj.svyLibScriptOptions[0].optioncontent
+ ) {
this.$modal
.confirm("鏇存敼绫诲瀷鍚庨�夐」灏嗘竻绌烘槸鍚︾户缁紵")
.then(() => {
this.scriptTypels = this.topicobj.scriptType;
+ this.topicobj.svyLibScriptOptions = [];
})
.catch(() => {
this.topicobj.scriptType = this.scriptTypels;
@@ -855,7 +901,11 @@
this.topicobj.svyLibScriptOptions,
row
);
+ console.log(this.topicobj.svyLibScriptOptions);
+
if (this.topicobj.svyLibScriptOptions[index].id) {
+ console.log(2);
+
this.topicobj.svyLibScriptOptions[index].isoperation = 3;
} else {
this.topicobj.svyLibScriptOptions.splice(index, 1);
@@ -1022,21 +1072,18 @@
};
this.gettargetInfo();
},
- // 渚挎嵎鏍囩
- tsgnameto(row) {
+
+ // 渚挎嵎鏍囩鎻掑叆濉┖
+ tsgnametos(row) {
let inputValueArr = "";
+ let value = this.topicobj.svyLibScriptOptions.length + 1;
+
let el = document.querySelector("#" + this.currentInputId);
//el.selectionStart; 杩欏氨鏄綋鍓嶅厜鏍囨墍鍦ㄧ殑浣嶇疆锛堝瓧绗︿覆涓瓧绗︾殑index锛�
if (this.currentInputId == "scriptContent") {
+ console.log(1);
inputValueArr = this.topicobj.scriptContent.split("");
- } else if (this.currentInputId == "nomatchtext") {
- inputValueArr = this.topicobj.nomatchtext.split("");
- } else if (this.currentInputId == "sliencetext") {
- inputValueArr = this.topicobj.sliencetext.split("");
- } else if (this.currentInputId == "noclearlytext") {
- inputValueArr = this.topicobj.noclearlytext.split("");
- } else if (this.currentInputId == "submoduletext") {
- inputValueArr = this.topicobj.submoduletext.split("");
+ console.log(2);
} else {
return;
}
@@ -1045,20 +1092,22 @@
// 鎷垮埌閫変腑鏂囧瓧鐨勯暱搴︼紙鍚庣画鍙互鐢ㄦ潵鏇挎崲閫変腑鐨勬枃瀛楋級
let selectLength = el.selectionEnd - el.selectionStart;
// 灏嗚鎻掑叆/鏇挎崲鐨勬枃瀛楁彃鍏�/鏇挎崲锛坴alue.name鏄鎻掑叆/鏇挎崲鐨勫瓧绗︿覆锛�
- inputValueArr.splice(el.selectionStart, selectLength, `${row.variate}`);
+ inputValueArr.splice(
+ el.selectionStart,
+ selectLength,
+ "__" + value + "__"
+ );
+ this.topicobj.svyLibScriptOptions.push({
+ orderno: value,
+ optiondesc: "",
+ isoperation: 1,
+ });
// 鎶婃暟缁勯噸鏂拌浆鎹负瀛楃涓插苟璧嬪��
inputValueArr = inputValueArr.join("");
+
console.log(inputValueArr);
if (this.currentInputId == "scriptContent") {
this.topicobj.scriptContent = inputValueArr;
- } else if (this.currentInputId == "nomatchtext") {
- this.topicobj.nomatchtext = inputValueArr;
- } else if (this.currentInputId == "sliencetext") {
- this.topicobj.sliencetext = inputValueArr;
- } else if (this.currentInputId == "noclearlytext") {
- this.topicobj.noclearlytext = inputValueArr;
- } else if (this.currentInputId == "submoduletext") {
- this.topicobj.submoduletext = inputValueArr;
} else {
return;
}
@@ -1220,6 +1269,21 @@
.tsgname:hover {
background: #3366f5;
}
+.tsgnames {
+ width: 90px;
+ margin-right: 10px;
+ text-align: center;
+ cursor: pointer;
+ height: 40px;
+ line-height: 40px;
+ background: #66c18c;
+ color: #ffff;
+ font-size: 18px;
+ border-radius: 5px;
+}
+.tsgnames:hover {
+ background: #20894d;
+}
.preview-left {
margin: 20px;
// margin: 20px;
--
Gitblit v1.9.3