front_instruments_config.js 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601
  1. // 长笛 flute
  2. // 单簧管 clarinet
  3. // 萨克斯管 saxophone
  4. // 小号 trumpet
  5. // 长号 trombone
  6. // 圆号 horn
  7. // 上低音号 upperBass
  8. // 次中音号 tenorHorn
  9. // 小军鼓 snareDrum
  10. // 打击乐 idiophonic
  11. let instruments = {
  12. flute: {
  13. name: '长笛',
  14. config: [
  15. {
  16. default: 1,
  17. name: '标准配置',
  18. marketPrice: 4500,
  19. referencePrice: 3570,
  20. checked: true,
  21. texture: '进口镍白铜管体、法式键',
  22. index: 2
  23. },
  24. {
  25. default: 0, // 1 为默认配置
  26. name: '初级配置',
  27. marketPrice: 3150,
  28. referencePrice: 2680,
  29. checked: false,
  30. texture: '白铜管体',
  31. index: 1
  32. },
  33. {
  34. default: 0,
  35. name: '自备',
  36. marketPrice: 0,
  37. referencePrice: 0,
  38. checked: false,
  39. index: 99 // 99为自备
  40. }
  41. ],
  42. configuration: 'C调 表面镀银厚度:8μm 管材厚度:0.42mm',
  43. auxiliaries: [
  44. {
  45. name: '节拍器',
  46. marketPrice: 120,
  47. referencePrice: 95,
  48. checked: true,
  49. index: 1
  50. },
  51. {
  52. name: '谱架',
  53. marketPrice: 80,
  54. referencePrice: 65,
  55. checked: true,
  56. index: 2
  57. },
  58. {
  59. name: '乐器维护',
  60. marketPrice: 480,
  61. referencePrice: 300,
  62. checked: true,
  63. index: 8
  64. }
  65. ]
  66. },
  67. clarinet: {
  68. name: '单簧管',
  69. config: [
  70. {
  71. default: 1,
  72. name: '标准配置',
  73. marketPrice: 4580,
  74. referencePrice: 3650,
  75. checked: true,
  76. texture: '聚碳酸酯、蓝钢针弹簧线',
  77. index: 4
  78. },
  79. {
  80. default: 0, // 1 为默认配置
  81. name: '初级配置',
  82. marketPrice: 3280,
  83. referencePrice: 2780,
  84. checked: false,
  85. texture: '胶木',
  86. index: 3
  87. },
  88. {
  89. default: 0,
  90. name: '自备',
  91. marketPrice: 0,
  92. referencePrice: 0,
  93. checked: false,
  94. index: 99
  95. }
  96. ],
  97. configuration: '降B调、八字螺丝固定键柱 按键铍铜、镍白铜 喇叭口直径:8cm',
  98. auxiliaries: [
  99. {
  100. index: 1,
  101. name: '节拍器',
  102. marketPrice: 120,
  103. checked: true,
  104. referencePrice: 95
  105. },
  106. {
  107. index: 2,
  108. name: '谱架',
  109. marketPrice: 80,
  110. checked: true,
  111. referencePrice: 65
  112. },
  113. {
  114. index: 4,
  115. name: '软木膏',
  116. marketPrice: 30,
  117. checked: true,
  118. referencePrice: 25
  119. },
  120. {
  121. index: 5,
  122. name: '哨片',
  123. marketPrice: 150,
  124. checked: true,
  125. referencePrice: 120
  126. },
  127. {
  128. index: 8,
  129. name: '乐器维护',
  130. marketPrice: 480,
  131. checked: true,
  132. referencePrice: 300
  133. }
  134. ]
  135. },
  136. saxophone: {
  137. name: '萨克斯管',
  138. config: [
  139. {
  140. default: 1,
  141. name: '标准配置',
  142. marketPrice: 6080,
  143. referencePrice: 4500,
  144. checked: true,
  145. texture: '68铜、实心保护盖、蓝钢针弹簧线',
  146. index: 6
  147. },
  148. {
  149. default: 0, // 1 为默认配置
  150. name: '初级配置',
  151. marketPrice: 4200,
  152. referencePrice: 3550,
  153. checked: false,
  154. texture: '/',
  155. index: 5
  156. },
  157. {
  158. default: 0,
  159. name: '自备',
  160. marketPrice: 0,
  161. referencePrice: 0,
  162. checked: false,
  163. index: 99
  164. }
  165. ],
  166. configuration: '降E调、黄铜材质、表面电泳处理 喇叭口直径:11.8cm',
  167. auxiliaries: [
  168. {
  169. index: 1,
  170. name: '节拍器',
  171. marketPrice: 120,
  172. checked: true,
  173. referencePrice: 95
  174. },
  175. {
  176. index: 2,
  177. name: '谱架',
  178. marketPrice: 80,
  179. checked: true,
  180. referencePrice: 65
  181. },
  182. {
  183. index: 4,
  184. name: '软木膏',
  185. marketPrice: 30,
  186. checked: true,
  187. referencePrice: 25
  188. },
  189. {
  190. index: 5,
  191. name: '哨片',
  192. marketPrice: 150,
  193. checked: true,
  194. referencePrice: 120
  195. },
  196. {
  197. index: 8,
  198. name: '乐器维护',
  199. marketPrice: 480,
  200. checked: true,
  201. referencePrice: 300
  202. }
  203. ]
  204. },
  205. trumpet: {
  206. name: '小号',
  207. config: [
  208. {
  209. default: 1,
  210. name: '标准配置',
  211. marketPrice: 4800,
  212. referencePrice: 3650,
  213. checked: true,
  214. texture: '白铜变音管磷铜发音管',
  215. index: 7
  216. },
  217. {
  218. default: 0,
  219. name: '自备',
  220. marketPrice: 0,
  221. referencePrice: 0,
  222. checked: false,
  223. index: 99
  224. }
  225. ],
  226. configuration: '降B调 特殊结构:可调试调音管控制环 喇叭口直径:123mm 内管:11.66mm',
  227. auxiliaries: [
  228. {
  229. index: 1,
  230. name: '节拍器',
  231. marketPrice: 120,
  232. checked: true,
  233. referencePrice: 95
  234. },
  235. {
  236. index: 2,
  237. name: '谱架',
  238. marketPrice: 80,
  239. checked: true,
  240. referencePrice: 65
  241. },
  242. {
  243. index: 3,
  244. name: '活塞油',
  245. marketPrice: 30,
  246. checked: true,
  247. referencePrice: 25
  248. },
  249. {
  250. index: 7,
  251. name: '调音管油',
  252. marketPrice: 30,
  253. checked: true,
  254. referencePrice: 25
  255. },
  256. {
  257. index: 8,
  258. name: '乐器维护',
  259. marketPrice: 480,
  260. checked: true,
  261. referencePrice: 300
  262. }
  263. ]
  264. },
  265. trombone: {
  266. name: '长号',
  267. config: [
  268. {
  269. default: 1,
  270. name: '标准配置',
  271. marketPrice: 5550,
  272. referencePrice: 3870,
  273. checked: true,
  274. texture: '白铜内外伸缩管',
  275. index: 8
  276. },
  277. {
  278. default: 0,
  279. name: '自备',
  280. marketPrice: 0,
  281. referencePrice: 0,
  282. checked: false,
  283. index: 99
  284. }
  285. ],
  286. configuration: '降B/F调、喇叭口:215mm、内管:13.9mm管:13.9mm',
  287. auxiliaries: [
  288. {
  289. index: 1,
  290. name: '节拍器',
  291. marketPrice: 120,
  292. checked: true,
  293. referencePrice: 95
  294. },
  295. {
  296. index: 2,
  297. name: '谱架',
  298. marketPrice: 80,
  299. checked: true,
  300. referencePrice: 65
  301. },
  302. {
  303. index: 3,
  304. name: '活塞油',
  305. marketPrice: 30,
  306. checked: true,
  307. referencePrice: 25
  308. },
  309. {
  310. index: 6,
  311. name: '拉杆油',
  312. marketPrice: 30,
  313. checked: true,
  314. referencePrice: 25
  315. },
  316. {
  317. index: 8,
  318. name: '乐器维护',
  319. marketPrice: 480,
  320. checked: true,
  321. referencePrice: 300
  322. }
  323. ]
  324. },
  325. horn: {
  326. name: '圆号',
  327. config: [
  328. {
  329. default: 1,
  330. name: '标准配置',
  331. marketPrice: 5500,
  332. referencePrice: 3910,
  333. checked: true,
  334. texture: '白铜变音管磷铜发音管',
  335. index: 9
  336. },
  337. {
  338. default: 0,
  339. name: '自备',
  340. marketPrice: 0,
  341. referencePrice: 0,
  342. checked: false,
  343. index: 99
  344. }
  345. ],
  346. configuration: '降B/F调、结构:双排管 喇叭口直径:306mm 内管:11.5mm',
  347. auxiliaries: [
  348. {
  349. index: 1,
  350. name: '节拍器',
  351. marketPrice: 120,
  352. checked: true,
  353. referencePrice: 95
  354. },
  355. {
  356. index: 2,
  357. name: '谱架',
  358. marketPrice: 80,
  359. checked: true,
  360. referencePrice: 65
  361. },
  362. {
  363. index: 3,
  364. name: '活塞油',
  365. marketPrice: 30,
  366. checked: true,
  367. referencePrice: 25
  368. },
  369. {
  370. index: 7,
  371. name: '调音管油',
  372. marketPrice: 30,
  373. checked: true,
  374. referencePrice: 25
  375. },
  376. {
  377. index: 8,
  378. name: '乐器维护',
  379. marketPrice: 480,
  380. checked: true,
  381. referencePrice: 300
  382. }
  383. ]
  384. },
  385. upperBass: {
  386. name: '上低音号',
  387. config: [
  388. {
  389. default: 1,
  390. name: '标准配置',
  391. marketPrice: 5800,
  392. referencePrice: 3980,
  393. checked: true,
  394. texture: '白铜变音管磷铜发音管',
  395. index: 10
  396. },
  397. {
  398. default: 0,
  399. name: '自备',
  400. marketPrice: 0,
  401. referencePrice: 0,
  402. checked: false,
  403. index: 99
  404. }
  405. ],
  406. configuration: '降B调、结构:三立键 喇叭口直径:278mm、内管:13.4mm',
  407. auxiliaries: [
  408. {
  409. index: 1,
  410. name: '节拍器',
  411. marketPrice: 120,
  412. checked: true,
  413. referencePrice: 95
  414. },
  415. {
  416. index: 2,
  417. name: '谱架',
  418. marketPrice: 80,
  419. checked: true,
  420. referencePrice: 65
  421. },
  422. {
  423. index: 3,
  424. name: '活塞油',
  425. marketPrice: 30,
  426. checked: true,
  427. referencePrice: 25
  428. },
  429. {
  430. index: 7,
  431. name: '调音管油',
  432. marketPrice: 30,
  433. checked: true,
  434. referencePrice: 25
  435. },
  436. {
  437. index: 8,
  438. name: '乐器维护',
  439. marketPrice: 480,
  440. checked: true,
  441. referencePrice: 300
  442. }
  443. ]
  444. },
  445. snareDrum: {
  446. name: '小军鼓',
  447. config: [
  448. {
  449. default: 1,
  450. name: '标准配置',
  451. marketPrice: 3700,
  452. referencePrice: 3190,
  453. checked: true,
  454. texture: '',
  455. index: 11
  456. },
  457. {
  458. default: 0,
  459. name: '自备',
  460. marketPrice: 0,
  461. referencePrice: 0,
  462. checked: false,
  463. index: 99
  464. }
  465. ],
  466. configuration: '珍珠镍小军鼓,桦木鼓腔,高碳钢纱带',
  467. auxiliaries: [
  468. {
  469. index: 1,
  470. name: '节拍器',
  471. marketPrice: 120,
  472. checked: true,
  473. referencePrice: 95
  474. },
  475. {
  476. index: 2,
  477. name: '谱架',
  478. marketPrice: 80,
  479. checked: true,
  480. referencePrice: 65
  481. }
  482. ]
  483. },
  484. tenorHorn: {
  485. name: '次中音号',
  486. config: [
  487. {
  488. default: 1,
  489. name: '标准配置',
  490. marketPrice: 5800,
  491. referencePrice: 3980,
  492. checked: true,
  493. texture: '白铜变音管磷铜发音管',
  494. index: 12
  495. },
  496. {
  497. default: 0,
  498. name: '自备',
  499. marketPrice: 0,
  500. referencePrice: 0,
  501. checked: false,
  502. index: 99
  503. }
  504. ],
  505. configuration: '降B调、结构:三立键 喇叭口直径:278mm、内管:13.4mm',
  506. auxiliaries: [
  507. {
  508. index: 1,
  509. name: '节拍器',
  510. marketPrice: 120,
  511. checked: true,
  512. referencePrice: 95
  513. },
  514. {
  515. index: 2,
  516. name: '谱架',
  517. marketPrice: 80,
  518. checked: true,
  519. referencePrice: 65
  520. },
  521. {
  522. index: 3,
  523. name: '活塞油',
  524. marketPrice: 30,
  525. checked: true,
  526. referencePrice: 25
  527. },
  528. {
  529. index: 7,
  530. name: '调音管油',
  531. marketPrice: 30,
  532. checked: true,
  533. referencePrice: 25
  534. },
  535. {
  536. index: 8,
  537. name: '乐器维护',
  538. marketPrice: 480,
  539. checked: true,
  540. referencePrice: 300
  541. }
  542. ]
  543. },
  544. idiophonic: {
  545. name: '打击乐',
  546. config: [
  547. {
  548. default: 1,
  549. name: '标准配置',
  550. marketPrice: 3700,
  551. referencePrice: 3190,
  552. checked: true,
  553. texture: '',
  554. index: 13
  555. },
  556. {
  557. default: 0,
  558. name: '自备',
  559. marketPrice: 0,
  560. referencePrice: 0,
  561. checked: false,
  562. index: 99
  563. }
  564. ],
  565. configuration: '珍珠镍小军鼓,桦木鼓腔,高碳钢纱带',
  566. auxiliaries: [
  567. {
  568. index: 1,
  569. name: '节拍器',
  570. marketPrice: 120,
  571. checked: true,
  572. referencePrice: 95
  573. },
  574. {
  575. index: 2,
  576. name: '谱架',
  577. marketPrice: 80,
  578. checked: true,
  579. referencePrice: 65
  580. }
  581. ]
  582. }
  583. }
  584. let baseInfo = {
  585. other: [
  586. {
  587. name: '教材',
  588. marketPrice: 7680,
  589. referencePrice: 0
  590. },
  591. {
  592. name: '乐谱',
  593. marketPrice: 7680,
  594. referencePrice: 0
  595. }
  596. ]
  597. }
  598. export { instruments, baseInfo}