questionnaireOption.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395
  1. <template>
  2. <div id="questionnaire-survey-option" class="questionnaire-survey-option">
  3. <div class="questionnaire-title" style="margin-bottom: 32px;">
  4. {{ optionList[0]&&optionList[0].Options[0] }}
  5. <div class="question-setting-zone">
  6. <img src="../../../assets/img/icons/edit-blue.png" @click="editTitle" />
  7. </div>
  8. </div>
  9. <div class="question-row" v-for="(item,index) in optionList.slice(1)" :key="index">
  10. <div class="questionnaire-title">
  11. <span style="color: #C54322;" v-show="item.IsMust==1">*</span>{{index+1}}.{{ item.Question }}
  12. <div class="question-setting-zone">
  13. <img src="../../../assets/img/icons/edit-blue.png" @click="editQusetion(item,index)" />
  14. <img src="../../../assets/img/icons/delete-red.png" @click="deleteQusetion(item,index)" />
  15. </div>
  16. </div>
  17. <div class="questionnaire-options">
  18. <el-radio-group v-if="item.Type==1" v-model="item.answer">
  19. <el-radio v-for="it in item.Options" :label="it" :key="it">{{ it }}</el-radio>
  20. </el-radio-group>
  21. <el-checkbox-group v-else-if="item.Type==2" v-model="item.answer">
  22. <el-checkbox v-for="it in item.Options" :label="it" :key="it">{{ it }}</el-checkbox>
  23. </el-checkbox-group>
  24. <el-input v-else type="textarea" v-model="item.answer" :rows="5" resize="none"></el-input>
  25. </div>
  26. </div>
  27. <div class="add-sty">
  28. <span @click="addQusetion">
  29. <img src="../../../assets/img/set_m/add_ico.png" />
  30. 添加题目
  31. </span>
  32. </div>
  33. <div class="operation-zone">
  34. <el-button type="primary" style="height: 40;width: 120px;" @click="submit">保存</el-button>
  35. <el-button style="height: 40;width: 120px;margin-left: 30px;" @click="cancel">取消</el-button>
  36. </div>
  37. <!-- 添加/编辑题目 弹窗 -->
  38. <el-dialog
  39. width="510px"
  40. :title="dialogTitle"
  41. :visible.sync="showQuestionOption"
  42. :append-to-body="true"
  43. v-dialogDrag @closed="questionDiaClose">
  44. <el-form style="padding: 10px 40px 0;"
  45. ref="questionForm"
  46. hide-required-asterisk
  47. :model="questionForm">
  48. <el-form-item label="" prop="Type" :rules="[{required:true,message:'请选择题目类型',trigger:'change'}]">
  49. <el-radio-group v-model="questionForm.Type" :disabled="isEdit">
  50. <el-radio :label="1">单选</el-radio>
  51. <el-radio :label="2">多选</el-radio>
  52. <el-radio :label="3">简答</el-radio>
  53. </el-radio-group>
  54. </el-form-item>
  55. <el-form-item label="" prop="IsMust" :rules="specialRules[0]">
  56. <div style="display: flex;align-items: center;justify-content: space-between;">
  57. <el-select v-model="questionForm.IsMust" style="width: 240px;">
  58. <el-option label="必答题" :value="1"></el-option>
  59. <el-option label="非必答题" :value="0"></el-option>
  60. </el-select>
  61. <el-input-number v-model="questionForm.Sort" style="width: 120px;"
  62. controls-position="right" :min="0" step-strictly placeholder="输入排序"></el-input-number>
  63. </div>
  64. </el-form-item>
  65. <el-form-item label="" prop="Question" :rules="[{required:true,message:'问题描述不能为空',trigger:'change'}]">
  66. <el-input v-model="questionForm.Question" placeholder="请输入问题描述" style="width: 100%;" />
  67. </el-form-item>
  68. <template v-if="questionForm.Type==1 || questionForm.Type==2">
  69. <el-form-item label="" :prop="`Options.${ansInd}`" :rules="[{required:true,message:'选项不能为空',trigger:'change'}]"
  70. v-for="(ans,ansInd) in questionForm.Options" :key="ansInd">
  71. <div style="display: flex;align-items: center;">
  72. <el-input v-model="questionForm.Options[ansInd]" placeholder="请输入选项" style="flex-grow: 1;" >
  73. <div slot="prefix" style="margin-left: 5px;color: #333333;font-size: 14px;">
  74. {{ `${OptionLetterList[ansInd]} :`}}
  75. </div>
  76. </el-input>
  77. <img src="../../../assets/img/icons/delete-red.png" v-show="questionForm.Options.length>2"
  78. style="margin-left: 18px;width: 16px;cursor: pointer;" @click="deleteAnswer(ansInd)"/>
  79. </div>
  80. </el-form-item>
  81. <div class="add-sty" style="margin-top:0 ;">
  82. <span @click="addAnswer">
  83. <img src="../../../assets/img/set_m/add_ico.png" />
  84. 添加选项
  85. </span>
  86. </div>
  87. </template>
  88. <div class="operation-zone">
  89. <el-button type="primary" style="width: 120px;height: 40px;" @click="submitQuestion">确定</el-button>
  90. <el-button style="width: 120px;height: 40px;margin-left: 26px;" @click="showQuestionOption=false">取消</el-button>
  91. </div>
  92. </el-form>
  93. </el-dialog>
  94. <!-- 编辑说明弹窗 -->
  95. <el-dialog
  96. width="510px"
  97. :title="dialogTitle"
  98. :visible.sync="showTitleDia"
  99. :append-to-body="true"
  100. @closed="titleDiaClose"
  101. v-dialogDrag>
  102. <el-form style="padding: 10px 40px 0;"
  103. ref="titleForm"
  104. hide-required-asterisk
  105. :model="titleForm">
  106. <el-form-item label="" prop="title" :rules="[{required:true,message:'说明不能为空',trigger:'blur'}]">
  107. <el-input v-model="titleForm.title" placeholder="请输入内容" style="width: 100%;" type="textarea"
  108. :rows="4" resize="none"></el-input>
  109. </el-form-item>
  110. <div class="operation-zone">
  111. <el-button type="primary" style="width: 120px;height: 40px;" @click="submitTitle">确定</el-button>
  112. <el-button style="width: 120px;height: 40px;margin-left: 26px;" @click="showTitleDia=false">取消</el-button>
  113. </div>
  114. </el-form>
  115. </el-dialog>
  116. </div>
  117. </template>
  118. <script>
  119. import{etaTrialInterence}from '@/api/modules/crmApi.js';
  120. export default {
  121. name:'questionnaireOption',
  122. data() {
  123. this.OptionLetterList=['A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z',
  124. 'a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z']
  125. return {
  126. optionList:[],
  127. // 弹窗
  128. dialogTitle:'',
  129. showQuestionOption:false,
  130. showTitleDia:false,
  131. questionForm:{
  132. Type:1,
  133. IsMust:1,
  134. Sort:0,
  135. Question:'',
  136. Options:['','']
  137. },
  138. isEdit:false,
  139. questionIndex:0,
  140. tempTile:'尊敬的用户,感谢您使用系统,以下是对系统使用的调研问卷,我们期待您真实的反馈!',
  141. titleForm:{
  142. title:''
  143. },
  144. specialRules:[
  145. [
  146. {required:true,message:'请选择题目是否必答',trigger:'change'},
  147. {validator:(rule,value,callback)=>{
  148. if(!this.questionForm.Sort&&this.questionForm.Sort!=0){
  149. callback(new Error('请选择排序'))
  150. }else{
  151. callback()
  152. }
  153. },trigger:['blur','change']}
  154. ]
  155. ]
  156. }
  157. },
  158. methods:{
  159. getQuestionOption(){
  160. etaTrialInterence.getQuestionOptionList().then(res=>{
  161. if(res.Ret==200){
  162. this.optionList = res.Data.List || []
  163. if(this.optionList.length==0){
  164. // 添加标题项
  165. this.optionList.push({
  166. Question:'标题',
  167. Type:4,
  168. Sort:-1,
  169. Options:[''],
  170. CreateTime:this.$moment(new Date()).format('YYYY-MM-DD HH:mm:ss')
  171. })
  172. }
  173. this.tempTile = this.optionList[0].Options[0]
  174. this.optionList.forEach(item =>{
  175. this.$set(item,'answer',item.Type==2?[]:'')
  176. })
  177. }
  178. })
  179. },
  180. // 编辑说明
  181. editTitle(){
  182. this.titleForm.title = this.optionList[0].Options[0]
  183. this.dialogTitle = "编辑说明"
  184. this.showTitleDia = true
  185. },
  186. // 编辑说明弹窗关闭
  187. titleDiaClose(){
  188. this.titleForm.title=''
  189. this.$nextTick(()=>{
  190. this.$refs.titleForm.clearValidate()
  191. })
  192. },
  193. // 添加题目
  194. addQusetion(){
  195. this.dialogTitle = "添加题目"
  196. this.showQuestionOption = true
  197. this.questionForm.Sort = this.optionList[this.optionList.length-1].Sort+1
  198. this.isEdit=false
  199. },
  200. editQusetion(item,index){
  201. this.dialogTitle = "编辑题目"
  202. this.questionIndex = index+1
  203. this.questionForm={
  204. ...item,
  205. Options:[...item.Options],
  206. answer:item.Type==2?[]:''}
  207. this.isEdit=true
  208. this.showQuestionOption = true
  209. },
  210. // 删除题目
  211. deleteQusetion(item,index){
  212. this.$confirm('删除题目将一起删除该题目下所有回答,确认删除吗?', '提示', {
  213. confirmButtonText: '确定',
  214. cancelButtonText: '取消',
  215. type: 'warning'
  216. }).then(async () => {
  217. if(item.QuestionnaireId){
  218. // 数据库里原本有,请求删除接口
  219. const res=await etaTrialInterence.questionOptionDelete({QuestionnaireId:item.QuestionnaireId})
  220. if(res.Ret !=200) return
  221. }
  222. this.optionList.splice(index+1,1)
  223. this.$message.success('删除成功')
  224. }).catch(() => {});
  225. },
  226. // 添加选项 - 单选/多选
  227. addAnswer(){
  228. this.questionForm.Options.push('')
  229. },
  230. // 删除选项
  231. deleteAnswer(index){
  232. this.questionForm.Options.splice(index,1)
  233. },
  234. // 题目弹窗关闭
  235. questionDiaClose(){
  236. this.questionForm={
  237. Type:1,
  238. IsMust:1,
  239. Sort:0,
  240. Question:'',
  241. Options:['','']
  242. },
  243. this.$nextTick(()=>{
  244. this.$refs.questionForm.clearValidate()
  245. })
  246. },
  247. // 提交问题
  248. submitQuestion(){
  249. this.$refs.questionForm.validate(valid=>{
  250. if(valid){
  251. // 单选、多选选项判断
  252. if(this.questionForm.Type==1 || this.questionForm.Type==2){
  253. let clearRepeatList = Array.from(new Set(this.questionForm.Options))
  254. if(this.questionForm.Options.length!=clearRepeatList.length){
  255. this.$message.warning('有选项内容重复')
  256. return
  257. }
  258. }
  259. if(!(this.questionForm.QuestionnaireId || this.questionForm.virtualId)){
  260. //添加
  261. this.optionList.push({
  262. virtualId:'00000',
  263. Type:this.questionForm.Type,
  264. Sort:this.questionForm.Sort,
  265. IsMust:this.questionForm.IsMust,
  266. Question:this.questionForm.Question,
  267. Options:this.questionForm.Type==3?[]:this.questionForm.Options,
  268. CreateTime:this.$moment(new Date()).format('YYYY-MM-DD HH:mm:ss'),
  269. answer:this.questionForm.Type==2?[]:''
  270. })
  271. }else{
  272. this.optionList[this.questionIndex]={
  273. ...this.questionForm,
  274. Options:[...this.questionForm.Options],
  275. answer:this.questionForm.Type==2?[]:''}
  276. }
  277. // 排序
  278. this.optionList.sort((a,b) =>{
  279. if(b.Sort != a.Sort){
  280. return a.Sort - b.Sort
  281. }else{
  282. return new Date(b.CreateTime) - new Date(a.CreateTime)
  283. }
  284. })
  285. // console.log(this.questionForm,this.optionList);
  286. this.$message.success(this.dialogTitle+'成功')
  287. this.showQuestionOption=false
  288. }
  289. })
  290. },
  291. // 提交说明
  292. submitTitle(){
  293. this.$refs.titleForm.validate(valid=>{
  294. if(valid){
  295. this.optionList[0].Options[0] = this.titleForm.title
  296. this.$message.success(this.dialogTitle+'成功')
  297. this.showTitleDia=false
  298. }
  299. })
  300. },
  301. // 保存
  302. submit(){
  303. etaTrialInterence.questionOptionSave({List:this.optionList}).then(res=>{
  304. if(res.Ret ==200){
  305. this.$message.success('保存成功')
  306. this.getQuestionOption()
  307. }
  308. })
  309. },
  310. // 取消保存
  311. cancel(){
  312. this.getQuestionOption()
  313. }
  314. },
  315. created() {
  316. this.getQuestionOption()
  317. },
  318. }
  319. </script>
  320. <style lang="scss" scoped>
  321. .questionnaire-survey-option{
  322. width: 40%;
  323. min-width: 750px;
  324. background-color: white;
  325. padding: 30px;
  326. box-sizing: border-box;
  327. min-height: calc(100vh - 110px);
  328. .question-row{
  329. margin-top: 26px;
  330. .questionnaire-options{
  331. margin-top: 18px;
  332. padding: 20px;
  333. }
  334. }
  335. .operation-zone{
  336. margin-top: 80px;
  337. display: flex;
  338. align-items: center;
  339. justify-content: center;
  340. }
  341. .questionnaire-title{
  342. font-weight: 500;
  343. font-size: 16px;
  344. display: flex;
  345. align-items: center;
  346. .question-setting-zone{
  347. display: flex;
  348. align-items: center;
  349. img{
  350. cursor: pointer;
  351. height: 16px;
  352. margin-left: 20px;
  353. }
  354. }
  355. }
  356. }
  357. .add-sty{
  358. font-size: 14px;
  359. font-weight: 400;
  360. color: #409EFF;
  361. margin-top: 60px;
  362. span{
  363. display: inline-flex;
  364. align-items: center;
  365. cursor: pointer;
  366. img{
  367. height: 16px;
  368. margin-right: 8px;
  369. }
  370. }
  371. }
  372. .operation-zone{
  373. padding: 50px 0 35px;
  374. text-align: center;
  375. }
  376. </style>
  377. <style lang="scss">
  378. .el-dialog .el-input {
  379. width: 100% !important;
  380. }
  381. #questionnaire-survey-option{
  382. .el-checkbox{
  383. margin-right: 40px;
  384. }
  385. .el-radio{
  386. margin-right: 40px;
  387. }
  388. }
  389. </style>