promptClassifySection.vue 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272
  1. <template>
  2. <div class="prompt-classify-wrapper">
  3. <!-- 公共提示词 -->
  4. <div class="public-classify" v-if="publicPromptList.length">
  5. <h3
  6. @click="isExpandPublic = !isExpandPublic"
  7. class="classify-type"
  8. >
  9. <!-- 公共提示词 -->{{$t('SemanticsManage.AiSummeryPage.public_prompt')}}
  10. <span><i :class="{'el-icon-arrow-down':!isExpandPublic,'el-icon-arrow-up':isExpandPublic}"></i></span>
  11. </h3>
  12. <div class="tree-wrap" v-show="isExpandPublic">
  13. <el-tree
  14. ref="catalogTree"
  15. class="target_tree"
  16. empty-text="暂无提示词"
  17. :props="defaultProp"
  18. :data="publicPromptList"
  19. node-key="nodeKeyId"
  20. :expand-on-click-node="false"
  21. @current-change="(data,node)=>{nodeChange(data,node)}"
  22. >
  23. <div class="custom-tree-node" slot-scope="{ data }">
  24. <span class="tree-label">{{ data.label }}</span>
  25. </div>
  26. </el-tree>
  27. </div>
  28. </div>
  29. <!-- 我的提示词 -->
  30. <div class="classify">
  31. <h3 class="classify-type"><!-- 我的提示词 -->{{$t('SemanticsManage.AiSummeryPage.my_prompt')}}</h3>
  32. <template v-if="myPromptList.length">
  33. <draggable
  34. v-model="myPromptList"
  35. class="classify-ul"
  36. animation="300"
  37. tag="ul"
  38. @start="dragStart"
  39. @update="dragenter"
  40. @end="dragOver"
  41. >
  42. <li
  43. :class="[
  44. 'classify-item',
  45. { 'act': item.AiPromptId=== selectId },
  46. ]"
  47. v-for="item in myPromptList"
  48. :key="item.AiPromptId"
  49. @click="chooseClassify(item)"
  50. >
  51. <div>
  52. <img
  53. src="~@/assets/img/data_m/move_ico.png"
  54. alt=""
  55. class="move"
  56. style="width: 14px; height: 14px;margin-right: 5px;"
  57. />
  58. {{ item.Title }}
  59. </div>
  60. <div class="right-item-box">
  61. <el-dropdown
  62. style="margin-right: 10px"
  63. @command="handleCommand"
  64. trigger="click"
  65. >
  66. <span class="el-dropdown-link el-dropdown-link-img">
  67. <img src="~@/assets/img/chart_m/Group.png" v-if="item.IsShare === 0">
  68. <img src="~@/assets/img/chart_m/User.png" v-else>
  69. </span>
  70. <el-dropdown-menu slot="dropdown">
  71. <el-dropdown-item
  72. :command="{key:'own',IsPublic:undefined,item}"
  73. :class="item.IsShare === 0 ? 'el-dropdown-menu-item-chat-act' : ''"
  74. class="el-dropdown-menu-item-chat"
  75. >
  76. <img v-if="item.IsShare === 0" src="~@/assets/img/chart_m/Group_act.png">
  77. <img v-else src="~@/assets/img/chart_m/Group.png">
  78. <!-- 仅自己可见 -->{{$t('MyEtaPage.option_view_person')}}</el-dropdown-item>
  79. <el-dropdown-item
  80. :command="{key:'public',IsPublic:undefined,item}"
  81. :class="item.IsShare === 1 ? 'el-dropdown-menu-item-chat-act' : ''"
  82. class="el-dropdown-menu-item-chat"
  83. >
  84. <img v-if="item.IsShare === 1" src="~@/assets/img/chart_m/User_act.png">
  85. <img v-else src="~@/assets/img/chart_m/User.png">
  86. <!-- 所有人可见 -->{{$t('MyEtaPage.option_view_all')}}</el-dropdown-item>
  87. </el-dropdown-menu>
  88. </el-dropdown>
  89. <el-dropdown @command="handleCommand" trigger="click">
  90. <span class="el-dropdown-link">
  91. <i class="el-icon-more" style="font-size: 16px;transform: rotate(90deg);cursor: pointer"/>
  92. </span>
  93. <el-dropdown-menu slot="dropdown">
  94. <el-dropdown-item v-if="permissionBtn.isShowBtn('myETAPermission','myChart_classifyOpt_delete')"
  95. :command="{key:'del',IsPublic:undefined,item}"><!-- 删除 -->{{$t('Table.delete_btn')}}</el-dropdown-item>
  96. </el-dropdown-menu>
  97. </el-dropdown>
  98. </div>
  99. </li>
  100. </draggable>
  101. </template>
  102. <tableNoData text="暂无提示词" v-else size="mini"/>
  103. </div>
  104. </div>
  105. </template>
  106. <script>
  107. import draggable from 'vuedraggable';
  108. import { aiSummeryInterface } from '@/api/modules/semanticsApi';
  109. export default {
  110. components: { draggable },
  111. props: {
  112. publicList: {
  113. type: Array
  114. },
  115. myList: {
  116. type: Array
  117. }
  118. },
  119. data() {
  120. return {
  121. selectId: 0,
  122. defaultProp: {
  123. label: 'label',
  124. value: 'value',
  125. children: 'children'
  126. },
  127. publicPromptList: [],
  128. isExpandPublic: false,
  129. myPromptList: [],
  130. startIndex: 0,
  131. nextIndex: 0,
  132. preIndex: 0
  133. }
  134. },
  135. watch: {
  136. myList(nval) {
  137. this.myPromptList = nval
  138. },
  139. publicList(nval) {
  140. this.publicPromptList = nval
  141. }
  142. },
  143. methods:{
  144. handleCommand({key,IsPublic,item}) {
  145. key==='del' && this.delPrompt(item);
  146. ['own', 'public'].includes(key) && aiSummeryInterface.setPromptPublic({
  147. AiPromptId: this.selectId
  148. }).then(res => {
  149. if(res.Ret !== 200) return;
  150. this.$message.success(/* '设置成功' */this.$t('MsgPrompt.set_success_msg'));
  151. if(key === 'own'){
  152. item.IsShare=0
  153. }else{
  154. item.IsShare=1
  155. }
  156. this.$emit('getData')
  157. })
  158. },
  159. delPrompt(item) {
  160. this.$confirm('确认删除该提示词吗?', this.$t('Confirm.prompt'), {
  161. type: 'warning',
  162. }).then(async() => {
  163. const res = await aiSummeryInterface.promptDel({
  164. AiPromptId: item.AiPromptId
  165. })
  166. if(res.Ret !== 200) return
  167. this.$message.success(res.Msg)
  168. this.myPromptList.splice(this.myPromptList.findIndex(_ =>_.AiPromptId===item.AiPromptId),1)
  169. this.selectId = 0;
  170. this.$emit('close')
  171. });
  172. },
  173. nodeChange(data,node) {
  174. if(data.AiPromptId) { //提示词
  175. this.selectId = 0;
  176. this.$emit('change',data)
  177. }
  178. },
  179. /* 切换分类 */
  180. chooseClassify(item) {
  181. const {AiPromptId } = item
  182. this.$refs.catalogTree&&this.$refs.catalogTree.setCurrentKey(null)
  183. this.selectId = AiPromptId;
  184. this.$emit('change',item)
  185. },
  186. /* 拖动开始 记录位置 */
  187. dragStart({ oldIndex }) {
  188. this.startIndex = this.myPromptList[oldIndex].AiPromptId;
  189. },
  190. /* 拖动结束 替换 */
  191. dragOver() {
  192. aiSummeryInterface.promptMove({
  193. AiPromptId: this.startIndex,
  194. NextAiPromptId: this.nextIndex || 0,
  195. PrevAiPromptId: this.preIndex || 0,
  196. }).then(res => {
  197. if(res.Ret !== 200) return;
  198. this.$message.success(res.Msg)
  199. })
  200. },
  201. /* 拖动时 获取移动后的上一个位置id 若移到第一位则取0 获取后一个id 若是最后一个取0*/
  202. dragenter({ newIndex }) {
  203. this.preIndex = newIndex > 0 ? this.myPromptList[newIndex - 1].AiPromptId: 0;
  204. this.nextIndex = newIndex === this.myPromptList.length - 1 ? 0 : this.myPromptList[newIndex + 1].AiPromptId
  205. },
  206. },
  207. }
  208. </script>
  209. <style scoped lang='scss'>
  210. .prompt-classify-wrapper {
  211. padding: 15px 0 30px;
  212. overflow: auto;
  213. position: relative;
  214. height: calc(100vh - 300px);
  215. .classify-item {
  216. padding: 10px 30px;
  217. display: flex;
  218. justify-content: space-between;
  219. align-items: center;
  220. &.act {
  221. background: #e0eefd;
  222. color: #409eff;
  223. }
  224. }
  225. .classify-type {
  226. margin-bottom: 8px;
  227. padding-left: 15px;
  228. }
  229. .public-classify {
  230. margin-bottom: 20px;
  231. .tree-wrap{
  232. padding:15px;
  233. }
  234. .custom-tree-node {
  235. display: flex !important;
  236. justify-content: space-between;
  237. align-items: center;
  238. display: block;
  239. flex: 1;
  240. }
  241. }
  242. .right-item-box {
  243. display: flex;
  244. align-items: center;
  245. }
  246. }
  247. </style>