addMusic.tsx 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943
  1. import {defineComponent, h, onMounted, reactive, ref} from "vue";
  2. import SaveForm from "@components/save-form";
  3. import {DataTableColumns, DataTableRowKey, NButton, NDataTable, NFormItem, NIcon, NImage, NInput, NInputNumber, NSelect, NSpace, NStep, NSteps, useDialog, useMessage} from "naive-ui";
  4. import Pagination from "@components/pagination";
  5. import {getMapValueByKey, getSelectDataFromObj} from "@/utils/objectUtil";
  6. import {musicSheetAvailableType, musicSheetPaymentType, musicSheetSourceType, musicSheetType} from "@/utils/constant";
  7. import {musicSheetApplicationExtendSaveBatch, musicSheetPage} from "@views/music-library/api";
  8. import deepClone from "@/utils/deep.clone";
  9. import {getOwnerName} from "@views/music-library/musicUtil";
  10. export default defineComponent({
  11. name: 'klx-addMusic',
  12. props: {
  13. appId: {
  14. type: String,
  15. required: true
  16. },
  17. subjectList: {
  18. type: Array,
  19. default: () => []
  20. },
  21. musicSheetTagList: {
  22. type: Array,
  23. default: () => []
  24. }
  25. },
  26. emits: ['close', 'getList'],
  27. setup(props, {slots, attrs, emit}) {
  28. const dialogs = useDialog()
  29. const message = useMessage()
  30. const state = reactive({
  31. loading: false,
  32. pagination: {
  33. page: 1,
  34. rows: 5,
  35. pageTotal: 0
  36. },
  37. stepPagination: {
  38. page: 1,
  39. rows: 5,
  40. pageTotal: 0
  41. },
  42. searchForm: {
  43. keyword: null,
  44. musicSheetType: null,
  45. subjectId: null,
  46. sourceType: null,
  47. },
  48. subjectList: [] as any,
  49. showAdd: false,
  50. currentStep: 1,
  51. dataList: [],
  52. selectRowData: [] as any,// 选择的数据列表
  53. musicSheetCategories: [] as any,
  54. musicSheetTagList: [] as any,
  55. globalMusicTagIds: [] as any, //曲目标签
  56. globalPaymentType: null as any, //收费方式
  57. globalMusicPrice: null as any, //曲目价格
  58. globalAvailableType: null as any, //可用途径
  59. globalTopFlag: null as any, //是否置顶
  60. globalExquisiteFlag: null as any, //精品乐谱
  61. globalStartSortNum: null as any,// 排序起始值
  62. })
  63. onMounted(() => {
  64. state.subjectList = props.subjectList
  65. state.musicSheetTagList = props.musicSheetTagList
  66. getList()
  67. })
  68. const getList = async () => {
  69. try {
  70. state.loading = true
  71. const {data} = await musicSheetPage({
  72. ...state.pagination,
  73. ...state.searchForm,
  74. addAppId: props.appId
  75. })
  76. state.pagination.pageTotal = Number(data.total)
  77. state.dataList = data.rows || []
  78. } catch {
  79. }
  80. state.loading = false
  81. }
  82. const saveForm = ref()
  83. const onSearch = () => {
  84. saveForm.value?.submit()
  85. }
  86. const onBtnReset = () => {
  87. saveForm.value?.reset()
  88. }
  89. const onSubmit = () => {
  90. state.pagination.page = 1
  91. getList()
  92. }
  93. const onSave = async () => {
  94. if (state.selectRowData.length == 0) {
  95. message.error('未选择曲目');
  96. return;
  97. }
  98. const params = [] as any[];
  99. for (let i = 0; i < state.selectRowData.length; i++) {
  100. const item = state.selectRowData[i];
  101. if (!item.musicTagIds || item.musicTagIds.length == 0) {
  102. message.error('曲目标签不能为空')
  103. return;
  104. }
  105. if (!item.paymentType) {
  106. message.error('收费方式不能为空')
  107. return;
  108. }
  109. if (item.paymentType === 'FREE') {
  110. item.musicPrice = 0;
  111. } else {
  112. if (!item.musicPrice) {
  113. message.error('曲目价格不能为空')
  114. return;
  115. }
  116. }
  117. if (!item.availableType) {
  118. message.error('可用途径不能为空')
  119. return;
  120. }
  121. if (typeof item.topFlag !== 'boolean') {
  122. message.error('是否置顶不能为空')
  123. return;
  124. }
  125. if (typeof item.exquisiteFlag !== 'boolean') {
  126. message.error('是否精品不能为空')
  127. return;
  128. }
  129. if (!item.sortNo) {
  130. message.error('排序号不能为空')
  131. return;
  132. }
  133. params.push({
  134. ...item,
  135. musicSheetId: item.id,
  136. // musicSheetCategoryId: item.projectMusicCategoryId,
  137. applicationId: props.appId,
  138. musicTagIds: item.musicTagIds.join(','),
  139. id: null
  140. })
  141. }
  142. const res = await musicSheetApplicationExtendSaveBatch(params) as any
  143. if (res && res.code == '200') {
  144. message.success(`添加成功`)
  145. emit('getList')
  146. emit('close')
  147. }
  148. }
  149. const columnsField = [
  150. {
  151. type: 'selection'
  152. },
  153. {
  154. title: '曲目编号',
  155. key: 'id',
  156. },
  157. {
  158. title: '封面图',
  159. key: 'titleImg',
  160. render(row: any) {
  161. return <NImage width={40} height={40} src={row.musicCover}/>
  162. }
  163. },
  164. {
  165. title: '声部',
  166. key: 'subjectNames',
  167. },
  168. {
  169. title: '曲目名称',
  170. key: 'name',
  171. },
  172. {
  173. title: '音乐人',
  174. key: 'composer',
  175. },
  176. {
  177. title: '曲目类型',
  178. key: 'musicSheetType',
  179. render: (row: any) => {
  180. return <div>{getMapValueByKey(row.musicSheetType, new Map(Object.entries(musicSheetType)))}</div>
  181. }
  182. },
  183. {
  184. title: '作者属性',
  185. key: 'sourceType',
  186. render(row: any) {
  187. return getMapValueByKey(row.sourceType, new Map(Object.entries(musicSheetSourceType)));
  188. }
  189. },
  190. {
  191. title: '所属人',
  192. key: 'userName',
  193. render: (row: any) => {
  194. return <div>{getOwnerName(row.musicSheetExtend, row.sourceType)}</div>
  195. }
  196. },
  197. ]
  198. const columns = (): any => {
  199. return columnsField
  200. }
  201. const stepColumns = (): DataTableColumns => {
  202. const field = deepClone(columnsField);
  203. field.splice(0, 1)
  204. field.push({
  205. title(column: any) {
  206. return (
  207. <NSpace>
  208. 曲目标签
  209. <NButton type="primary"
  210. size="small"
  211. text
  212. onClick={() => {
  213. dialogs.create({
  214. title: "请选择曲目标签",
  215. showIcon: false,
  216. content: () => {
  217. return h(
  218. "div",
  219. {
  220. class: "flex flex-col justify-center items-center text-14px",
  221. },
  222. [
  223. h(NSelect, {
  224. onUpdateValue(v) {
  225. state.globalMusicTagIds = v
  226. },
  227. multiple: true,
  228. clearable: true,
  229. options: state.musicSheetTagList
  230. }),
  231. ]
  232. )
  233. },
  234. positiveText: "确定",
  235. negativeText: '取消',
  236. onPositiveClick: () => {
  237. for (let i = 0; i < state.selectRowData.length; i++) {
  238. const item = state.selectRowData[i];
  239. item.musicTagIds = state.globalMusicTagIds
  240. }
  241. console.log(state.selectRowData)
  242. },
  243. })
  244. }
  245. }
  246. >
  247. <NIcon size={15} style="padding-left: 5px;margin-top:4px">
  248. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
  249. <path d="M2 26h28v2H2z" fill="currentColor"></path>
  250. <path d="M25.4 9c.8-.8.8-2 0-2.8l-3.6-3.6c-.8-.8-2-.8-2.8 0l-15 15V24h6.4l15-15zm-5-5L24 7.6l-3 3L17.4 7l3-3zM6 22v-3.6l10-10l3.6 3.6l-10 10H6z" fill="currentColor"></path>
  251. </svg>
  252. </NIcon>
  253. </NButton>
  254. </NSpace>
  255. )
  256. },
  257. key: 'musicTagIds',
  258. render: (row: any) => {
  259. // })
  260. return (
  261. <NSelect
  262. placeholder="请选择曲目标签"
  263. value={row.musicTagIds}
  264. options={state.musicSheetTagList}
  265. clearable
  266. multiple
  267. maxTagCount={1}
  268. onUpdateValue={(value) => {
  269. row['musicTagIds'] = value
  270. }}
  271. />
  272. )
  273. }
  274. })
  275. field.push({
  276. title(column: any) {
  277. return (
  278. <NSpace>
  279. 收费方式
  280. <NButton type="primary"
  281. size="small"
  282. text
  283. onClick={() => {
  284. dialogs.create({
  285. title: "请选择收费方式",
  286. showIcon: false,
  287. content: () => {
  288. return h(
  289. "div",
  290. {
  291. class: "flex flex-col justify-center items-center text-14px",
  292. },
  293. [
  294. h(NSelect, {
  295. onUpdateValue(v) {
  296. state.globalPaymentType = v
  297. },
  298. clearable: true,
  299. options: getSelectDataFromObj(musicSheetPaymentType)
  300. }),
  301. ]
  302. )
  303. },
  304. positiveText: "确定",
  305. negativeText: '取消',
  306. onPositiveClick: () => {
  307. for (let i = 0; i < state.selectRowData.length; i++) {
  308. const item = state.selectRowData[i];
  309. item.paymentType = state.globalPaymentType
  310. }
  311. },
  312. })
  313. }
  314. }
  315. >
  316. <NIcon size={15} style="padding-left: 5px;margin-top:4px">
  317. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
  318. <path d="M2 26h28v2H2z" fill="currentColor"></path>
  319. <path d="M25.4 9c.8-.8.8-2 0-2.8l-3.6-3.6c-.8-.8-2-.8-2.8 0l-15 15V24h6.4l15-15zm-5-5L24 7.6l-3 3L17.4 7l3-3zM6 22v-3.6l10-10l3.6 3.6l-10 10H6z" fill="currentColor"></path>
  320. </svg>
  321. </NIcon>
  322. </NButton>
  323. </NSpace>
  324. )
  325. },
  326. key: 'paymentType',
  327. render: (row: any) => {
  328. return (
  329. <NSelect
  330. placeholder="请选择收费方式"
  331. value={row.paymentType}
  332. options={getSelectDataFromObj(musicSheetPaymentType)}
  333. clearable
  334. onUpdateValue={(value) => {
  335. row['paymentType'] = value
  336. }}
  337. />
  338. )
  339. }
  340. })
  341. field.push({
  342. title(column: any) {
  343. return (
  344. <NSpace>
  345. 曲目价格
  346. <NButton type="primary"
  347. size="small"
  348. text
  349. onClick={() => {
  350. dialogs.create({
  351. title: "请输入曲目价格",
  352. showIcon: false,
  353. content: () => {
  354. return h(
  355. "div",
  356. {
  357. class: "flex flex-col justify-center items-center text-14px",
  358. },
  359. [
  360. // icon
  361. h(NInputNumber, {
  362. onUpdateValue(v) {
  363. state.globalMusicPrice = v
  364. },
  365. min: 0,
  366. max: 9999,
  367. }),
  368. ]
  369. )
  370. },
  371. positiveText: "确定",
  372. negativeText: '取消',
  373. onPositiveClick: () => {
  374. if (state.globalMusicPrice) {
  375. for (let i = 0; i < state.selectRowData.length; i++) {
  376. const item = state.selectRowData[i];
  377. item.musicPrice = state.globalMusicPrice
  378. }
  379. }
  380. },
  381. })
  382. }
  383. }
  384. >
  385. <NIcon size={15} style="padding-left: 5px;margin-top:4px">
  386. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
  387. <path d="M2 26h28v2H2z" fill="currentColor"></path>
  388. <path d="M25.4 9c.8-.8.8-2 0-2.8l-3.6-3.6c-.8-.8-2-.8-2.8 0l-15 15V24h6.4l15-15zm-5-5L24 7.6l-3 3L17.4 7l3-3zM6 22v-3.6l10-10l3.6 3.6l-10 10H6z" fill="currentColor"></path>
  389. </svg>
  390. </NIcon>
  391. </NButton>
  392. </NSpace>
  393. )
  394. },
  395. key: 'musicPrice',
  396. render: (row: any) => {
  397. return h(NInputNumber, {
  398. value: row.musicPrice,
  399. min: 0,
  400. max: 9999,
  401. onUpdateValue(value: any) {
  402. row['musicPrice'] = value
  403. }
  404. })
  405. }
  406. })
  407. field.push({
  408. title(column: any) {
  409. return (
  410. <NSpace>
  411. 可用途径
  412. <NButton type="primary"
  413. size="small"
  414. text
  415. onClick={() => {
  416. dialogs.create({
  417. title: "请选择可用途径",
  418. showIcon: false,
  419. content: () => {
  420. return h(
  421. "div",
  422. {
  423. class: "flex flex-col justify-center items-center text-14px",
  424. },
  425. [
  426. // icon
  427. h(NSelect, {
  428. onUpdateValue(v) {
  429. state.globalAvailableType = v
  430. },
  431. clearable: true,
  432. options: getSelectDataFromObj(musicSheetAvailableType)
  433. }),
  434. ]
  435. )
  436. },
  437. positiveText: "确定",
  438. negativeText: '取消',
  439. onPositiveClick: () => {
  440. for (let i = 0; i < state.selectRowData.length; i++) {
  441. const item = state.selectRowData[i];
  442. item.availableType = state.globalAvailableType
  443. }
  444. },
  445. })
  446. }
  447. }
  448. >
  449. <NIcon size={15} style="padding-left: 5px;margin-top:4px">
  450. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
  451. <path d="M2 26h28v2H2z" fill="currentColor"></path>
  452. <path d="M25.4 9c.8-.8.8-2 0-2.8l-3.6-3.6c-.8-.8-2-.8-2.8 0l-15 15V24h6.4l15-15zm-5-5L24 7.6l-3 3L17.4 7l3-3zM6 22v-3.6l10-10l3.6 3.6l-10 10H6z" fill="currentColor"></path>
  453. </svg>
  454. </NIcon>
  455. </NButton>
  456. </NSpace>
  457. )
  458. },
  459. key: 'availableType',
  460. render: (row: any) => {
  461. return (
  462. <NSelect
  463. placeholder="请选择可用途径"
  464. value={row.availableType}
  465. options={getSelectDataFromObj(musicSheetAvailableType)}
  466. onUpdateValue={(value) => {
  467. row['availableType'] = value
  468. }}
  469. clearable
  470. />
  471. )
  472. }
  473. })
  474. field.push({
  475. title(column: any) {
  476. return (
  477. <NSpace>
  478. 是否置顶
  479. <NButton type="primary"
  480. size="small"
  481. text
  482. onClick={() => {
  483. dialogs.create({
  484. title: "请选择是否置顶",
  485. showIcon: false,
  486. content: () => {
  487. return h(
  488. "div",
  489. {
  490. class: "flex flex-col justify-center items-center text-14px",
  491. },
  492. [
  493. // icon
  494. h(NSelect, {
  495. onUpdateValue(v) {
  496. state.globalTopFlag = v
  497. },
  498. options: [
  499. {
  500. label: '是',
  501. value: true
  502. },
  503. {
  504. label: '否',
  505. value: false
  506. }
  507. ] as any
  508. }),
  509. ]
  510. )
  511. },
  512. positiveText: "确定",
  513. negativeText: '取消',
  514. onPositiveClick: () => {
  515. for (let i = 0; i < state.selectRowData.length; i++) {
  516. const item = state.selectRowData[i];
  517. item.topFlag = state.globalTopFlag
  518. }
  519. },
  520. })
  521. }
  522. }
  523. >
  524. <NIcon size={15} style="padding-left: 5px;margin-top:4px">
  525. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
  526. <path d="M2 26h28v2H2z" fill="currentColor"></path>
  527. <path d="M25.4 9c.8-.8.8-2 0-2.8l-3.6-3.6c-.8-.8-2-.8-2.8 0l-15 15V24h6.4l15-15zm-5-5L24 7.6l-3 3L17.4 7l3-3zM6 22v-3.6l10-10l3.6 3.6l-10 10H6z" fill="currentColor"></path>
  528. </svg>
  529. </NIcon>
  530. </NButton>
  531. </NSpace>
  532. )
  533. },
  534. key: 'topFlag',
  535. render: (row: any) => {
  536. return (
  537. <NSelect
  538. placeholder="请选择是否置顶"
  539. value={row.topFlag}
  540. options={[
  541. {
  542. label: '是',
  543. value: true
  544. },
  545. {
  546. label: '否',
  547. value: false
  548. }
  549. ] as any}
  550. clearable
  551. onUpdateValue={(value) => {
  552. row['topFlag'] = value
  553. }}
  554. />
  555. )
  556. }
  557. })
  558. field.push({
  559. title(column: any) {
  560. return (
  561. <NSpace>
  562. 是否精品
  563. <NButton type="primary"
  564. size="small"
  565. text
  566. onClick={() => {
  567. dialogs.create({
  568. title: "请选择是否精品",
  569. showIcon: false,
  570. content: () => {
  571. return h(
  572. "div",
  573. {
  574. class: "flex flex-col justify-center items-center text-14px",
  575. },
  576. [
  577. // icon
  578. h(NSelect, {
  579. onUpdateValue(v) {
  580. state.globalExquisiteFlag = v
  581. },
  582. options: [
  583. {
  584. label: '是',
  585. value: true
  586. },
  587. {
  588. label: '否',
  589. value: false
  590. }
  591. ] as any
  592. }),
  593. ]
  594. )
  595. },
  596. positiveText: "确定",
  597. negativeText: '取消',
  598. onPositiveClick: () => {
  599. for (let i = 0; i < state.selectRowData.length; i++) {
  600. const item = state.selectRowData[i];
  601. item.exquisiteFlag = state.globalExquisiteFlag
  602. }
  603. },
  604. })
  605. }
  606. }
  607. >
  608. <NIcon size={15} style="padding-left: 5px;margin-top:4px">
  609. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
  610. <path d="M2 26h28v2H2z" fill="currentColor"></path>
  611. <path d="M25.4 9c.8-.8.8-2 0-2.8l-3.6-3.6c-.8-.8-2-.8-2.8 0l-15 15V24h6.4l15-15zm-5-5L24 7.6l-3 3L17.4 7l3-3zM6 22v-3.6l10-10l3.6 3.6l-10 10H6z" fill="currentColor"></path>
  612. </svg>
  613. </NIcon>
  614. </NButton>
  615. </NSpace>
  616. )
  617. },
  618. key: 'exquisiteFlag',
  619. render: (row: any) => {
  620. return (
  621. <NSelect
  622. placeholder="请选择是否精品"
  623. value={row.exquisiteFlag}
  624. onUpdateValue={(value) => {
  625. row['exquisiteFlag'] = value
  626. }}
  627. options={[
  628. {
  629. label: '是',
  630. value: true
  631. },
  632. {
  633. label: '否',
  634. value: false
  635. }
  636. ] as any}
  637. clearable
  638. />
  639. )
  640. }
  641. })
  642. field.push({
  643. title(column: any) {
  644. return (
  645. <NSpace>
  646. 排序
  647. <NButton type="primary"
  648. size="small"
  649. text
  650. onClick={() => {
  651. dialogs.create({
  652. title: "请输入排序起始值",
  653. showIcon: false,
  654. content: () => {
  655. return h(
  656. "div",
  657. {
  658. class: "flex flex-col justify-center items-center text-14px",
  659. },
  660. [
  661. // icon
  662. h(NInputNumber, {
  663. onUpdateValue(v) {
  664. state.globalStartSortNum = v
  665. },
  666. min: 0,
  667. max: 9999,
  668. }),
  669. ]
  670. )
  671. },
  672. positiveText: "确定",
  673. negativeText: '取消',
  674. onPositiveClick: () => {
  675. for (let i = 0; i < state.selectRowData.length; i++) {
  676. const item = state.selectRowData[i];
  677. item.sortNo = state.globalStartSortNum + i
  678. }
  679. },
  680. })
  681. }
  682. }
  683. >
  684. <NIcon size={15} style="padding-left: 5px;margin-top:4px">
  685. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
  686. <path d="M2 26h28v2H2z" fill="currentColor"></path>
  687. <path d="M25.4 9c.8-.8.8-2 0-2.8l-3.6-3.6c-.8-.8-2-.8-2.8 0l-15 15V24h6.4l15-15zm-5-5L24 7.6l-3 3L17.4 7l3-3zM6 22v-3.6l10-10l3.6 3.6l-10 10H6z" fill="currentColor"></path>
  688. </svg>
  689. </NIcon>
  690. </NButton>
  691. </NSpace>
  692. )
  693. },
  694. key: 'sortNo',
  695. fixed: 'right',
  696. width: 150,
  697. render: (row: any) => {
  698. return h(NInputNumber, {
  699. value: row.sortNo,
  700. min: 0,
  701. max: 9999,
  702. onUpdateValue(value: any) {
  703. row.sortNo = value
  704. }
  705. })
  706. }
  707. })
  708. field.push({
  709. title: '操作',
  710. key: 'operation',
  711. fixed: 'right',
  712. render(row: any) {
  713. return (
  714. <NSpace>
  715. <NButton
  716. type="primary"
  717. size="small"
  718. text
  719. //v-auth="musicSheet/update1602302618558099458"
  720. onClick={() => {
  721. dialogs.warning({
  722. title: '警告',
  723. content: `是否删除该数据?`,
  724. positiveText: '确定',
  725. negativeText: '取消',
  726. onPositiveClick: async () => {
  727. try {
  728. const index = state.selectRowData.findIndex((item: any) => {
  729. if (item.id == row.id) {
  730. return true
  731. }
  732. })
  733. if (index > -1) {
  734. state.selectRowData.splice(index, 1)
  735. }
  736. const index1 = checkedRowKeysRef.value.findIndex((item: any) => {
  737. if (item == row.id) {
  738. return true
  739. }
  740. })
  741. if (index1 > -1) {
  742. checkedRowKeysRef.value.splice(index, 1)
  743. }
  744. } catch {
  745. }
  746. }
  747. })
  748. }}
  749. >
  750. 移除
  751. </NButton>
  752. </NSpace>
  753. )
  754. }
  755. })
  756. return field;
  757. }
  758. const checkedRowKeysRef = ref<DataTableRowKey[]>([])
  759. const handleCheck = (rowKeys: DataTableRowKey[]) => {
  760. checkedRowKeysRef.value = rowKeys
  761. // 添加行更新值
  762. state.dataList.forEach((next: any) => {
  763. if (checkedRowKeysRef.value.includes(next.id)) {
  764. const find = state.selectRowData.find((row: any) => {
  765. return row.id === next.id
  766. });
  767. if (!find) {
  768. state.selectRowData.push(next)
  769. }
  770. }
  771. })
  772. // 去掉行更新值
  773. state.selectRowData = state.selectRowData.filter((next: any) => {
  774. return checkedRowKeysRef.value.includes(next.id)
  775. })
  776. }
  777. return () => {
  778. return (
  779. <div class="system-menu-container">
  780. <NSpace vertical size="medium">
  781. <NSteps
  782. current={state.currentStep}
  783. // onUpdateCurrent={()=>{
  784. // state.currentStep = val
  785. // }}
  786. style={"margin-bottom: 10px;margin-top: 10px"}
  787. >
  788. <NStep
  789. title="选择曲目"
  790. description=""
  791. >
  792. </NStep>
  793. <NStep
  794. title="设置曲目信息"
  795. description=""
  796. >
  797. </NStep>
  798. </NSteps>
  799. </NSpace>
  800. {state.currentStep === 1 && (
  801. <div class="system-menu-container">
  802. <SaveForm
  803. ref={saveForm}
  804. model={state.searchForm}
  805. onSubmit={onSubmit}
  806. // saveKey="cooleshow-edu-addMusic"
  807. onSetModel={(val: any) => (state.searchForm = val)}
  808. >
  809. <NFormItem label="关键词" path="keyword">
  810. <NInput
  811. v-model:value={state.searchForm.keyword}
  812. placeholder="请输入曲目名称/编号"
  813. clearable
  814. />
  815. </NFormItem>
  816. <NFormItem label="曲目类型" path="musicSheetType">
  817. <NSelect
  818. placeholder="请选择曲目类型"
  819. v-model:value={state.searchForm.musicSheetType}
  820. options={getSelectDataFromObj(musicSheetType)}
  821. clearable
  822. />
  823. </NFormItem>
  824. <NFormItem label="声部" path="musicSubject">
  825. <NSelect
  826. placeholder="请选择声部"
  827. v-model:value={state.searchForm.subjectId}
  828. options={state.subjectList}
  829. clearable
  830. />
  831. </NFormItem>
  832. <NFormItem label="曲目来源" path="sourceType">
  833. <NSelect
  834. placeholder="请选择曲目来源"
  835. v-model:value={state.searchForm.sourceType}
  836. options={getSelectDataFromObj(musicSheetSourceType)}
  837. // onUpdateValue={async (value: any) => {
  838. // }}
  839. clearable
  840. />
  841. </NFormItem>
  842. <NFormItem>
  843. <NSpace>
  844. <NButton type="primary" onClick={onSearch}>
  845. 搜索
  846. </NButton>
  847. <NButton type="default" onClick={onBtnReset}>
  848. 重置
  849. </NButton>
  850. </NSpace>
  851. </NFormItem>
  852. </SaveForm>
  853. <p style={{paddingBottom: '12px'}}>
  854. 你选择了<span style={"color:red;padding:0 8px"}>{state.selectRowData.length}</span>条曲目
  855. </p>
  856. <NDataTable
  857. loading={state.loading}
  858. columns={columns()}
  859. data={state.dataList}
  860. rowKey={(row: any) => row.id}
  861. onUpdateCheckedRowKeys={handleCheck}
  862. ></NDataTable>
  863. <Pagination
  864. v-model:page={state.pagination.page}
  865. v-model:pageSize={state.pagination.rows}
  866. v-model:pageTotal={state.pagination.pageTotal}
  867. onList={getList}
  868. sync
  869. // saveKey="cooleshow-edu-addMusic"
  870. ></Pagination>
  871. </div>
  872. )}
  873. {state.currentStep === 2 && (
  874. <div class="system-menu-container" style={"margin-top: 15px;"}>
  875. <NDataTable
  876. loading={state.loading}
  877. columns={stepColumns()}
  878. data={state.selectRowData}
  879. rowKey={(row: any) => row.id}
  880. maxHeight={500}
  881. scrollX={2000}
  882. ></NDataTable>
  883. </div>
  884. )}
  885. <NSpace justify="end" style={"margin-top:10px"}>
  886. <NButton type="default" onClick={() => {
  887. if (state.currentStep > 1) {
  888. state.currentStep = state.currentStep - 1;
  889. } else {
  890. emit('close')
  891. }
  892. }}>
  893. {state.currentStep === 1 ? '取消' : '上一步'}
  894. </NButton>
  895. <NButton
  896. type="primary"
  897. onClick={() => {
  898. if (state.currentStep < 2) {
  899. if (state.selectRowData.length == 0) {
  900. message.warning("请选择曲目")
  901. return
  902. }
  903. state.currentStep = state.currentStep + 1;
  904. } else {
  905. onSave()
  906. }
  907. }}
  908. // loading={btnLoading.value}
  909. // disabled={btnLoading.value}
  910. >
  911. {state.currentStep === 2 ? '确定' : '下一步'}
  912. </NButton>
  913. </NSpace>
  914. </div>
  915. )
  916. }
  917. }
  918. })