addTest.vue 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461
  1. <template>
  2. <div class="pb_content" style="background: #F0F2F5;" v-loading="loading">
  3. <div class="pb_content_body" style="position: relative; margin: 0">
  4. <div class="right">
  5. <div class="courseTop">
  6. <div class="stepsNav">
  7. <el-breadcrumb separator-class="el-icon-arrow-right">
  8. <el-breadcrumb-item :to="{
  9. path:
  10. '/test?userid=' +
  11. userid +
  12. '&oid=' +
  13. oid +
  14. '&org=' +
  15. org +
  16. '&role=' +
  17. role,
  18. }">表单管理</el-breadcrumb-item>
  19. <el-breadcrumb-item>
  20. <span style="color: rgb(15, 126, 255)">新建表单</span>
  21. </el-breadcrumb-item>
  22. </el-breadcrumb>
  23. </div>
  24. <div class="r_pub_button_retrun" @click="retrunCourse">返回</div>
  25. </div>
  26. <div class="step_box" :style="{ width: steps == 2 && '100%' }">
  27. <editInfo v-if="steps == 2 && !loading" :oid="oid" :org="org" :steps.sync="steps"
  28. :title.sync="title" :brief.sync="brief" :cJson.sync="cJson" @save="save" @publish="publish">
  29. </editInfo>
  30. </div>
  31. </div>
  32. </div>
  33. <el-dialog title="发布表单" :visible.sync="dialogVisible" width="550px" @close="dialogVisible = false" class="eld">
  34. <setInfo :oid="oid" :org="org" :steps.sync="steps" :title.sync="title" :testType.sync="testType"
  35. :see.sync="see" :cJson.sync="cJson" :typeid.sync="typeid" :brief.sync="brief" :juri.sync="juri"
  36. :overDate.sync="overDate" :juriList.sync="juriList" :typeInfo.sync="typeInfo">
  37. </setInfo>
  38. <span slot="footer" class="dialog-footer">
  39. <el-button type="primary" @click="updateWork(3)">发 布 </el-button>
  40. </span>
  41. </el-dialog>
  42. </div>
  43. </template>
  44. <script>
  45. import setInfo from './setInfo/index.vue'
  46. import editInfo from './edit/index.vue'
  47. export default {
  48. components: {
  49. setInfo, editInfo
  50. },
  51. data() {
  52. return {
  53. userid: this.$route.query.userid,
  54. oid: this.$route.query.oid,
  55. org: this.$route.query.org,
  56. role: this.$route.query.role,
  57. cid: this.$route.query.cid,
  58. steps: 2,
  59. title: "",
  60. testType: [],
  61. see: false,
  62. cJson: [],
  63. loading: false,
  64. look: "",
  65. typeid: "",
  66. brief: "",
  67. juri: '0',
  68. overDate: "",
  69. juriList: [],
  70. typeInfo: [],
  71. dialogVisible: false
  72. }
  73. },
  74. watch: {
  75. steps(newValue, oldValue) {
  76. if (!this.title) {
  77. this.$message.error("请补充填写课程名称");
  78. this.steps = 1
  79. return;
  80. }
  81. // else if(!this.juriList.length){
  82. // this.$message.error("请选择权限")
  83. // this.steps = 1
  84. // return
  85. // }
  86. if (this.cid) {
  87. this.updateWork(this.look)
  88. } else {
  89. this.addWork();
  90. }
  91. }
  92. },
  93. methods: {
  94. retrunCourse() {
  95. this
  96. .$confirm("是否保存已编辑内容?", "提示", {
  97. confirmButtonText: "保存",
  98. cancelButtonText: "不保存",
  99. distinguishCancelAndClose: true,
  100. type: "warning",
  101. })
  102. .then(() => {
  103. if (this.cid == "" || this.cid == undefined) {
  104. if (this.title == "") {
  105. this.$message.error("请补充填写课程名称");
  106. return;
  107. } else {
  108. this.addWork(5);
  109. }
  110. // else if(!this.juriList.length){
  111. // this.$message.error("请选择权限")
  112. // return
  113. // }
  114. } else {
  115. if (this.title == "") {
  116. this.$message.error("请补充填写课程名称");
  117. return;
  118. } else {
  119. this.updateWork(5);
  120. }
  121. // else if(!this.juriList.length){
  122. // this.$message.error("请选择权限")
  123. // return
  124. // }
  125. }
  126. })
  127. .catch((v) => {
  128. console.log(v)
  129. if (v == "cancel") {
  130. this.goTo(
  131. "/test?userid=" +
  132. this.userid +
  133. "&oid=" +
  134. this.oid +
  135. "&org=" +
  136. this.org +
  137. "&role=" +
  138. this.role
  139. );
  140. }
  141. });
  142. },
  143. goTo(path) {
  144. this.$router.push(path);
  145. },
  146. addWork(look, callback) {
  147. let j3 = []
  148. if (this.typeInfo.length) {
  149. this.typeInfo.forEach(e => {
  150. j3.push(e.value)
  151. })
  152. }
  153. let params = [
  154. {
  155. uid: this.userid,
  156. title: this.title,
  157. brief: this.brief,
  158. cover: "",
  159. evaId: "",
  160. astudent: this.juri,
  161. see: this.see == true ? 1 : 0,
  162. chapters: JSON.stringify(this.cJson),
  163. template: "",
  164. courseType: JSON.stringify(this.testType),
  165. ateacher: "",
  166. inviteCode: "",
  167. typeid: this.typeid ? this.typeid : '',
  168. overtime: this.overDate ? this.formatTime(this.overDate) : '',
  169. j2: this.juriList.length ? this.juriList.join(",") : '',
  170. j3: j3.length ? j3.join(",") : '',
  171. },
  172. ];
  173. this.ajax
  174. .post(this.$store.state.api + "addTestCourse3", params)
  175. .then((res) => {
  176. this.cid = res.data.courseId;
  177. if (look == 5) {
  178. this.$message.success("保存成功")
  179. this.goTo(
  180. "/test?userid=" +
  181. this.userid +
  182. "&oid=" +
  183. this.oid +
  184. "&org=" +
  185. this.org +
  186. "&role=" +
  187. this.role
  188. );
  189. }
  190. // setTimeout(() => {
  191. // this.getData(2);
  192. // }, 1000);
  193. callback ? callback() : ''
  194. })
  195. .catch((err) => {
  196. this.$message.error("网络不佳");
  197. console.error(err);
  198. });
  199. },
  200. formatTime(timestamp) {
  201. const date = new Date(timestamp);
  202. const year = date.getFullYear();
  203. const month = String(date.getMonth() + 1).padStart(2, '0');
  204. const day = String(date.getDate()).padStart(2, '0');
  205. return `${year}-${month}-${day}`;
  206. },
  207. updateWork(look) {
  208. let j3 = []
  209. if (this.typeInfo.length) {
  210. this.typeInfo.forEach(e => {
  211. j3.push(e.value)
  212. })
  213. }
  214. let params = [
  215. {
  216. cid: this.cid,
  217. title: this.title,
  218. brief: this.brief,
  219. cover: "",
  220. evaId: "",
  221. astudent: this.juri,
  222. see: this.see == true ? 1 : 0,
  223. chapters: JSON.stringify(this.cJson),
  224. uid: this.userid,
  225. courseType: JSON.stringify(this.testType),
  226. ateacher: "",
  227. inviteCode: "",
  228. look: look == 3 ? 2 : look == 4 ? this.look : look == 5 ? this.look : look,
  229. typeid: this.typeid ? this.typeid : '',
  230. overtime: this.overDate ? this.formatTime(this.overDate) : '',
  231. j2: this.juriList.length ? this.juriList.join(",") : '',
  232. j3: j3.length ? j3.join(",") : '',
  233. },
  234. ];
  235. this.ajax
  236. .post(this.$store.state.api + "updateTestCourse3", params)
  237. .then((res) => {
  238. if (look == 3) {
  239. this.$message.success("发布成功")
  240. this.goTo(
  241. "/test?userid=" +
  242. this.userid +
  243. "&oid=" +
  244. this.oid +
  245. "&org=" +
  246. this.org +
  247. "&role=" +
  248. this.role
  249. );
  250. } else if (look == 4) {
  251. this.$message.success("保存成功")
  252. } else if (look == 1 || look == 2) {
  253. // this.$message.success("保存成功")
  254. } else if (look == 5) {
  255. this.$message.success("保存成功")
  256. this.goTo(
  257. "/test?userid=" +
  258. this.userid +
  259. "&oid=" +
  260. this.oid +
  261. "&org=" +
  262. this.org +
  263. "&role=" +
  264. this.role
  265. );
  266. }
  267. setTimeout(() => {
  268. this.getData(2);
  269. }, 1000);
  270. })
  271. .catch((err) => {
  272. this.$message.error("网络不佳");
  273. console.error(err);
  274. });
  275. },
  276. getData(type) {
  277. if (this.cid == "" || this.cid == undefined) {
  278. console.log("这是新增课程");
  279. } else {
  280. if (type != 2) {
  281. this.loading = true
  282. }
  283. let params = {
  284. cid: this.cid,
  285. };
  286. this.ajax
  287. .get(this.$store.state.api + "getTestCourseDetail", params)
  288. .then((res) => {
  289. this.cJson = JSON.parse(res.data[0][0].chapters);
  290. this.title = res.data[0][0].title;
  291. this.juri = res.data[0][0].juri ? res.data[0][0].juri : '0';
  292. this.overDate = res.data[0][0].overTime ? res.data[0][0].overTime : '';
  293. this.juriList = res.data[0][0].juri2 ? res.data[0][0].juri2.split(',') : [];
  294. let juri3 = res.data[0][0].juri3 ? res.data[0][0].juri3.split(',') : [];
  295. if (juri3.length > 0) {
  296. this.typeInfo.forEach(e => {
  297. let array2 = []
  298. for (var i = 0; i < e.child.length; i++) {
  299. array2.push(e.child[i].id)
  300. }
  301. e.value = this.arrayToArray(juri3, array2)[0]
  302. })
  303. }
  304. this.see = res.data[0][0].open == 1 ? true : false;
  305. this.typeid = res.data[0][0].typeid;
  306. this.brief = res.data[0][0].brief;
  307. this.testType = [];
  308. for (var i = 0; i < res.data[1].length; i++) {
  309. this.testType.push(res.data[1][i].typeid);
  310. }
  311. console.log(this.testType);
  312. this.look = res.data[0][0].look
  313. this.$forceUpdate()
  314. if (type != 2) {
  315. this.loading = false
  316. }
  317. })
  318. .catch((err) => {
  319. console.error(err);
  320. });
  321. }
  322. },
  323. save(look) {
  324. if (!this.title) {
  325. this.$message.error("请补充填写课程名称");
  326. return;
  327. }
  328. if (this.cid) {
  329. this.updateWork(look == 4 ? look : this.look)
  330. } else {
  331. this.addWork();
  332. }
  333. // this.updateWork(5)
  334. },
  335. publish() {
  336. if (!this.title) {
  337. this.$message.error("请补充填写课程名称");
  338. return;
  339. }
  340. if (this.cid) {
  341. this.dialogVisible = true
  342. } else {
  343. this.addWork(this.look, ()=>{
  344. this.dialogVisible = true
  345. });
  346. }
  347. // this.updateWork(3)
  348. },
  349. //获取分类类名
  350. getTypeInfo() {
  351. this.loading = true
  352. let params = {
  353. oid: this.oid
  354. };
  355. this.ajax
  356. .get(this.$store.state.api + "selectPerInfoAllTea", params)
  357. .then((res) => {
  358. this.typeInfo = res.data[0];
  359. let typeInfo = res.data[1];
  360. this.typeInfo.forEach((e) => {
  361. e.child = [];
  362. e.value = '';
  363. typeInfo.forEach((i) => {
  364. if (e.id == i.parentid) {
  365. e.child.push({ id: i.id, name: i.name })
  366. }
  367. })
  368. })
  369. this.loading = false
  370. console.log(this.typeInfo, "typeInfo");
  371. this.getData();
  372. })
  373. .catch((err) => {
  374. console.error(err);
  375. });
  376. },
  377. arrayToArray(arrayo, arrayt) {
  378. let array1 = arrayo;
  379. let array2 = arrayt;
  380. let commonElements = [];
  381. for (let i = 0; i < array1.length; i++) {
  382. for (let j = 0; j < array2.length; j++) {
  383. if (array1[i] === array2[j]) {
  384. commonElements.push(array1[i]);
  385. }
  386. }
  387. }
  388. return commonElements;
  389. },
  390. },
  391. mounted() {
  392. this.getTypeInfo();
  393. },
  394. }
  395. </script>
  396. <style scoped>
  397. .pb_content {
  398. height: 100% !important;
  399. /* margin: 0 20px 0 20px; */
  400. }
  401. .pb_content_body {
  402. width: 100% !important;
  403. height: 100%;
  404. }
  405. .right {
  406. height: 100%;
  407. width: 100%;
  408. display: flex;
  409. overflow: hidden;
  410. flex-direction: column;
  411. }
  412. .basic_box {
  413. margin: 0 auto;
  414. position: relative;
  415. padding: 0 20px 0 20px;
  416. }
  417. .courseTop {
  418. display: flex;
  419. flex-direction: row;
  420. justify-content: space-between;
  421. align-items: center;
  422. width: calc(100% - 40px);
  423. margin: 0 auto;
  424. padding: 10px 0;
  425. }
  426. .stepsNav {
  427. display: flex;
  428. flex-direction: row;
  429. justify-content: flex-start;
  430. align-items: center;
  431. }
  432. .step_box {
  433. width: calc(100% - 40px);
  434. margin: 0 auto;
  435. height: calc(100% - 38px);
  436. }
  437. .eld >>> .el-dialog__header{
  438. border-bottom: 1px solid #E7E7E7;
  439. }
  440. .eld >>> .el-dialog__body {
  441. padding: 0 20px;
  442. color: unset;
  443. }
  444. </style>