detail.vue 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681
  1. <!-- 音频管理 播客专辑详情 -->
  2. <template>
  3. <div class="app-container">
  4. <el-form class="form" :model="form" ref="form" :rules="rules" label-width="100px" :disabled="disabled">
  5. <el-form-item label="播客名称:" prop="name">
  6. <el-input v-model="form.name" placeholder="请输入播客名称" />
  7. </el-form-item>
  8. <el-form-item label="主播名称:" prop="podcasterIds">
  9. <el-select v-model="form.podcasterIds" multiple filterable remote reserve-keyword placeholder="请输入主播名称"
  10. :remote-method="getSelect" no-data-text="请新增主播">
  11. <el-option v-for="item in anchorOptions" :key="item.value" :value="item.value" :label="item.label" />
  12. </el-select>
  13. </el-form-item>
  14. <el-form-item label="播客分类:" prop="categoryIds">
  15. <el-select v-model="form.categoryIds" multiple placeholder="请选择播客分类">
  16. <el-option v-for="item in blogClassOptions" :key="item.value" :value="item.value" :label="item.label" />
  17. </el-select>
  18. </el-form-item>
  19. <el-form-item label="播客介绍:" prop="description">
  20. <el-input v-model="form.description" type="textarea" :autosize="{ minRows: 5, maxRows: 10 }" maxlength="300"
  21. show-word-limit placeholder=" 请输入播客介绍" />
  22. </el-form-item>
  23. <el-form-item label="资源平台:" prop="platformId">
  24. <el-select v-model="form.platformId" placeholder="请选择资源平台" :disabled="disabledPlatformId(form.platformId)">
  25. <el-option v-for="item in platformOptions" :key="item.value" :value="item.value" :label="item.label"
  26. :disabled="disabledJoinType(item.joinType)" />
  27. </el-select>
  28. </el-form-item>
  29. <el-form-item label="付费类型:" prop="charging">
  30. <el-select v-model="form.charging" placeholder="请选择付费类型">
  31. <el-option v-for="item in payTypeOptions" :key="item.value" :value="item.value" :label="item.label" />
  32. </el-select>
  33. </el-form-item>
  34. <el-form-item v-if="form.charging !== 1" label="原价:" prop="price">
  35. <el-input-number v-model="form.price" placeholder="请输入原价" :min="1" :precision="2" :controls="false" />
  36. </el-form-item>
  37. <el-form-item v-if="form.charging !== 1" label="折扣价:" prop="discountedPrice">
  38. <el-input-number v-model="form.discountedPrice" placeholder="请输入折扣价" :min="1" :precision="2"
  39. :controls="false" />
  40. </el-form-item>
  41. <el-form-item label="播客封面" prop="thumb">
  42. <Upload listType="picture-card" :url="form.thumb" @upload="upload" :disabled="disabled" />
  43. </el-form-item>
  44. <el-form-item label="关联节目:" prop="adminPodCastProgramDetailResp">
  45. <el-button type="primary" @click="getDialog">关联节目</el-button>
  46. <el-button @click="getDelete" :disabled="ids.length > 0 ? false : true">解除关联</el-button>
  47. </el-form-item>
  48. <el-form-item style="width: 100%">
  49. <el-table :data="form.adminPodCastProgramDetailResp" @selection-change="handleSelect">
  50. <el-table-column type="selection" align="center" />
  51. <el-table-column label="ID" prop="id" align="center" show-overflow-tooltip />
  52. <el-table-column label="节目名称" prop="name" align="center" show-overflow-tooltip />
  53. <el-table-column label="资源平台" prop="platformId" align="center" :formatter="platformFormatter" />
  54. <el-table-column label="当前状态" prop="status" align="center" :formatter="statusFormatter" />
  55. <el-table-column label="序号" align="center">
  56. <template slot-scope="scope">
  57. <div v-if="currentEditIndex !== scope.$index">
  58. <span :style="{ marginRight: (canOrder) ? '0px' : '8px' }">
  59. {{ (dialogForm.pageNum - 1) * dialogForm.pageSize + scope.$index + 1 }}
  60. </span>
  61. <svg-icon v-if="canOrder" icon-class="edit" @click.native="handleEditClick(scope.row, scope.$index)" />
  62. </div>
  63. <el-input v-else v-model="editData.sortIndex" size="mini" style="width:60px;" type="number"
  64. @blur="onNumberBlur(scope.row, scope.$index)" placeholder="序号" ref="numberInput" />
  65. </template>
  66. </el-table-column>
  67. <el-table-column label="操作" align="center">
  68. <template slot-scope="scope">
  69. <!-- 向上移动 -->
  70. <el-button type="text" icon="el-icon-caret-top" @click="getChange(true, scope.$index, scope.$index - 1)"
  71. :disabled="(scope.$index < 1 && !disabled) ||
  72. disabledPlatformId(form.platformId)
  73. " />
  74. <!-- 向下移动 -->
  75. <el-button type="text" icon="el-icon-caret-bottom"
  76. @click="getChange(false, scope.$index, scope.$index + 1)" :disabled="(scope.$index >
  77. form.adminPodCastProgramDetailResp.length - 2 &&
  78. !disabled) ||
  79. disabledPlatformId(form.platformId)
  80. " />
  81. </template>
  82. </el-table-column>
  83. </el-table>
  84. </el-form-item>
  85. </el-form>
  86. <div class="form-btn">
  87. <el-button @click="cancel">取消</el-button>
  88. <el-button v-if="!disabled" type="primary" @click="getSubmit">确定</el-button>
  89. </div>
  90. <!-- 弹窗 -->
  91. <el-dialog :visible.sync="dialogVisible" title="关联节目" width="1200px">
  92. <el-form inline size="mini" style="width: 100%">
  93. <el-form-item label="节目ID:">
  94. <el-input v-model="dialogForm.id" placeholder="请输入节目ID" clearable />
  95. </el-form-item>
  96. <el-form-item label="节目名称:">
  97. <el-input v-model="dialogForm.name" placeholder="请输入节目名称" clearable />
  98. </el-form-item>
  99. <el-form-item label="付费类型:">
  100. <el-select v-model="dialogForm.isFree" placeholder="请选择付费类型" clearable>
  101. <el-option v-for="item in freeOptions" :key="item.value" :value="item.value" :label="item.label" />
  102. </el-select>
  103. </el-form-item>
  104. <el-form-item label="资源平台:">
  105. <el-select v-model="dialogForm.platformId" placeholder="请选择资源平台">
  106. <el-option v-for="item in platformOptions.filter(
  107. (i) => !i.joinType.includes('1')
  108. )" :key="item.value" :value="item.value" :label="item.label" />
  109. </el-select>
  110. </el-form-item>
  111. <el-form-item>
  112. <el-button type="primary" icon="el-icon-search" @click="getSearch">搜索</el-button>
  113. <el-button icon="el-icon-refresh" @click="getRefresh">重置</el-button>
  114. </el-form-item>
  115. </el-form>
  116. <el-table :data="dialogTableData" ref="multipleTable" :row-key="tableKey" v-loading="loading"
  117. @selection-change="handleSelectionChange">
  118. <el-table-column type="selection" align="center" key="selection" reserve-selection />
  119. <el-table-column label="ID" prop="id" align="center" />
  120. <el-table-column label="节目名称" prop="name" align="center" show-overflow-tooltip />
  121. <el-table-column label="资源平台" prop="platformId" align="center" :formatter="platformFormatter" />
  122. <el-table-column label="付费类型" prop="isFree" align="center" :formatter="freeFormatter" />
  123. <el-table-column label="当前状态" prop="status" align="center" :formatter="statusFormatter" />
  124. <!-- <el-table-column label="操作" align="center">
  125. <template slot-scope="scope">
  126. <el-button
  127. type="text"
  128. @click="getChecked(scope.row)"
  129. :disabled="
  130. form.adminPodCastProgramDetailResp.findIndex(
  131. (i) => i.id === scope.row.id
  132. ) === -1
  133. ? false
  134. : true
  135. "
  136. >
  137. 选择
  138. </el-button>
  139. </template>
  140. </el-table-column> -->
  141. </el-table>
  142. <pagination v-show="total > 0" :total="total" :page.sync="dialogForm.pageNum" :limit.sync="dialogForm.pageSize"
  143. @pagination="getList" />
  144. </el-dialog>
  145. </div>
  146. </template>
  147. <script>
  148. import { selectAnchor } from "@/api/music/anchor";
  149. import { checkList, detail, relieve, submit } from "@/api/music/blog";
  150. import {
  151. blogClassMixin,
  152. isFreeMixin,
  153. onOrOffMixin,
  154. payTypeMixin,
  155. platformMixin,
  156. } from "@/mixin/index";
  157. export default {
  158. // name: "musicBlogDetail",
  159. mixins: [
  160. blogClassMixin,
  161. platformMixin,
  162. payTypeMixin,
  163. onOrOffMixin,
  164. isFreeMixin,
  165. ],
  166. data() {
  167. // 判断原价是否大于折扣价
  168. var checkPrice = (rule, value, callback) => {
  169. if (!value) {
  170. callback(new Error("请输入原价"));
  171. } else {
  172. if (this.form.discountedPrice && value <= this.form.discountedPrice) {
  173. callback(new Error("原价必须大于折扣价"));
  174. }
  175. callback();
  176. }
  177. };
  178. // 判断折扣价是否小于原价
  179. var checkDiscount = (rule, value, callback) => {
  180. if (this.form.price && value >= this.form.price) {
  181. callback(new Error("折扣价必须小于原价"));
  182. } else {
  183. callback();
  184. }
  185. };
  186. return {
  187. // 遮罩层
  188. loading: false,
  189. editData: {},
  190. currentEditIndex: -1,
  191. // 表单
  192. form: {
  193. adminPodCastProgramDetailResp: [],
  194. podcastProgramIds: [],
  195. categoryIds: [],
  196. status: 1,
  197. },
  198. // 主播
  199. anchorOptions: [],
  200. // 弹窗
  201. dialogVisible: false,
  202. // 弹窗表单
  203. dialogForm: {
  204. pageNum: 1,
  205. pageSize: 10,
  206. status: 1,
  207. platformId: null,
  208. },
  209. // 总数据
  210. total: 0,
  211. // 弹窗列表
  212. dialogTableData: [],
  213. // 只读
  214. disabled: false,
  215. // 校验
  216. rules: {
  217. name: [
  218. {
  219. required: true,
  220. message: "请输入播客专辑名称",
  221. trigger: "blur",
  222. },
  223. ],
  224. podcasterIds: [
  225. {
  226. required: true,
  227. message: "请输入主播名称",
  228. trigger: "blur",
  229. },
  230. ],
  231. categoryIds: [
  232. {
  233. required: true,
  234. message: "请选择播客分类",
  235. trigger: "change",
  236. },
  237. ],
  238. platformId: [
  239. {
  240. required: true,
  241. message: "请选择资源平台",
  242. trigger: "change",
  243. },
  244. ],
  245. charging: [
  246. {
  247. required: true,
  248. message: "请选择付费类型",
  249. trigger: "change",
  250. },
  251. ],
  252. price: [
  253. {
  254. required: true,
  255. validator: checkPrice,
  256. trigger: "blur",
  257. },
  258. ],
  259. discountedPrice: [
  260. {
  261. validator: checkDiscount,
  262. trigger: "blur",
  263. },
  264. ],
  265. thumb: [
  266. {
  267. required: true,
  268. message: "请上传播客封面",
  269. trigger: "change",
  270. },
  271. ],
  272. adminPodCastProgramDetailResp: [
  273. {
  274. required: true,
  275. message: "请关联节目",
  276. trigger: "change",
  277. },
  278. ],
  279. },
  280. // 解除关联
  281. ids: [],
  282. // 是否已选
  283. disabledChecked: false,
  284. ///被选中数据是否加载完
  285. isLoad: false,
  286. ///是否可以调整顺序
  287. canOrder: true,
  288. };
  289. },
  290. mounted() {
  291. console.log("博客专辑mounted");
  292. // 获取资源平台
  293. this.getPlatform({
  294. audioType: 8,
  295. });
  296. if (this.$route.query.id) {
  297. this.form.id = this.$route.query.id;
  298. this.disabled = Boolean(this.$route.query.disabled);
  299. this.getDetail();
  300. }
  301. },
  302. methods: {
  303. // 删除已选歌曲
  304. getDeletePlus(index) {
  305. this.form.adminPodCastProgramDetailResp.splice(index, 1);
  306. this.form.adminPodCastProgramDetailResp =
  307. this.form.adminPodCastProgramDetailResp.filter((i) => i);
  308. },
  309. // 排序
  310. getChange(top, index, laterIndex) {
  311. var row = this.form.adminPodCastProgramDetailResp[index];
  312. var laterRow = this.form.adminPodCastProgramDetailResp[laterIndex];
  313. if (top) {
  314. this.form.adminPodCastProgramDetailResp[index] = laterRow;
  315. this.form.adminPodCastProgramDetailResp[laterIndex] = row;
  316. } else {
  317. this.form.adminPodCastProgramDetailResp[laterIndex] = row;
  318. this.form.adminPodCastProgramDetailResp[index] = laterRow;
  319. }
  320. this.form.adminPodCastProgramDetailResp =
  321. this.form.adminPodCastProgramDetailResp.filter((i) => i);
  322. },
  323. tableKey(row) {
  324. return row.id;
  325. },
  326. handleSelectionChange(val) {
  327. if (this.isLoad) {
  328. if (this.form.adminPodCastProgramDetailResp.length == 0) {
  329. this.form.adminPodCastProgramDetailResp = JSON.parse(
  330. JSON.stringify(val)
  331. );
  332. } else {
  333. ///查找dialogTableData里面有的
  334. var tempDialogHas = [];
  335. for (var i = 0; i < this.dialogTableData.length; i++) {
  336. for (var j = 0; j < val.length; j++) {
  337. if (this.dialogTableData[i].id === val[j].id) {
  338. tempDialogHas.push(this.dialogTableData[i]);
  339. break;
  340. }
  341. }
  342. }
  343. ///查找dialogTableData里面没有的
  344. var tempDialogNot = [];
  345. if (tempDialogHas.length == 0) {
  346. tempDialogNot = JSON.parse(JSON.stringify(this.dialogTableData));
  347. } else {
  348. for (var i = 0; i < this.dialogTableData.length; i++) {
  349. var has = false;
  350. for (var j = 0; j < tempDialogHas.length; j++) {
  351. if (this.dialogTableData[i].id === tempDialogHas[j].id) {
  352. has = true;
  353. break;
  354. }
  355. }
  356. if (!has) {
  357. tempDialogNot.push(this.dialogTableData[i]);
  358. }
  359. }
  360. }
  361. ///减少val没有的
  362. if (tempDialogNot.length > 0) {
  363. for (var i = 0; i < tempDialogNot.length; i++) {
  364. for (
  365. var j = 0;
  366. j < this.form.adminPodCastProgramDetailResp.length;
  367. j++
  368. ) {
  369. if (
  370. tempDialogNot[i].id ===
  371. this.form.adminPodCastProgramDetailResp[j].id
  372. ) {
  373. this.form.adminPodCastProgramDetailResp.splice(j, 1);
  374. break;
  375. }
  376. }
  377. }
  378. }
  379. ///添加adminPodCastProgramDetailResp没有的
  380. for (var i = 0; i < val.length; i++) {
  381. var isHas = false;
  382. for (
  383. var j = 0;
  384. j < this.form.adminPodCastProgramDetailResp.length;
  385. j++
  386. ) {
  387. if (val[i].id === this.form.adminPodCastProgramDetailResp[j].id) {
  388. isHas = true;
  389. break;
  390. }
  391. }
  392. if (!isHas) {
  393. this.form.adminPodCastProgramDetailResp.push(val[i]);
  394. }
  395. }
  396. }
  397. this.form.adminPodCastProgramDetailResp =
  398. this.form.adminPodCastProgramDetailResp.filter((i) => i);
  399. this.$message.success("操作成功!");
  400. }
  401. },
  402. // 详情
  403. getDetail() {
  404. detail(this.form.id).then((res) => {
  405. if (res.code === 0) {
  406. this.form = res.data;
  407. ///qq音乐和喜马拉雅
  408. if (this.form.platformId == 6 || this.form.platformId == 12) {
  409. this.canOrder = false;
  410. }
  411. this.anchorOptions = [];
  412. res.data.adminPrdCasterResp.map((i) => {
  413. this.anchorOptions.push({
  414. value: i.podcasterId,
  415. label: i.podcasterName,
  416. });
  417. });
  418. this.form.podcasterIds = res.data.podcasterIds.split(",");
  419. }
  420. });
  421. },
  422. // 查询主播
  423. getSelect(e) {
  424. if (e) {
  425. setTimeout(() => {
  426. this.anchorOptions = [];
  427. selectAnchor(e).then((res) => {
  428. if (res.code === 0) {
  429. res.data.map((i) => {
  430. this.anchorOptions.push({
  431. value: i.id,
  432. label: i.nickname,
  433. });
  434. });
  435. }
  436. }, 500);
  437. });
  438. }
  439. },
  440. // 上传
  441. upload(e) {
  442. this.form.thumb = e.file;
  443. },
  444. // 弹窗
  445. getDialog() {
  446. this.dialogVisible = true;
  447. this.dialogForm.platformId = this.platformOptions.filter(
  448. (i) => !i.joinType.includes("1")
  449. )[0].value;
  450. this.getList();
  451. },
  452. // 节目列表
  453. getList() {
  454. this.loading = true;
  455. checkList(this.dialogForm).then((res) => {
  456. if (res.code === 0) {
  457. this.dialogTableData = res.data.records;
  458. this.total = res.data.total;
  459. this.loading = false;
  460. this.isLoad = false;
  461. this.$refs.multipleTable.clearSelection();
  462. if (this.form.adminPodCastProgramDetailResp.length > 0) {
  463. var temp = [];
  464. for (var i = 0; i < this.dialogTableData.length; i++) {
  465. for (
  466. var j = 0;
  467. j < this.form.adminPodCastProgramDetailResp.length;
  468. j++
  469. ) {
  470. if (
  471. this.form.adminPodCastProgramDetailResp[j].id ===
  472. this.dialogTableData[i].id
  473. ) {
  474. temp.push(this.dialogTableData[i]);
  475. break;
  476. }
  477. }
  478. }
  479. if (temp.length > 0) {
  480. temp.forEach((item) => {
  481. this.$refs.multipleTable.toggleRowSelection(item, true);
  482. });
  483. }
  484. }
  485. this.isLoad = true;
  486. }
  487. });
  488. },
  489. // 搜索
  490. getSearch() {
  491. this.dialogForm.pageNum = 1;
  492. this.getList();
  493. },
  494. // 重置
  495. getRefresh() {
  496. this.dialogForm = {
  497. pageNum: 1,
  498. pageSize: 10,
  499. status: 1,
  500. platformId: this.platformOptions[0].value,
  501. };
  502. this.getList();
  503. },
  504. // 选择
  505. getChecked(row) {
  506. this.form.adminPodCastProgramDetailResp.push(row);
  507. this.$message.success("选择成功!");
  508. },
  509. // 解除关联
  510. getDelete() {
  511. if (this.form.id) {
  512. relieve({
  513. id: this.form.id,
  514. podcastProgramIds: this.ids,
  515. }).then((res) => {
  516. if (res.code === 0) {
  517. this.$message.success("解除成功!");
  518. this.getDetail();
  519. }
  520. });
  521. } else {
  522. this.ids.map((i) => {
  523. this.form.adminPodCastProgramDetailResp.map((j, index) => {
  524. if (j.id === i) {
  525. this.form.adminPodCastProgramDetailResp.splice(index, 1);
  526. this.$message.success("解除成功!");
  527. }
  528. });
  529. });
  530. }
  531. },
  532. // 确定
  533. getSubmit() {
  534. this.$refs.form.validate((valid) => {
  535. if (valid) {
  536. let title = this.form.id ? "编辑成功!" : "新增成功!";
  537. this.form.podcastProgramIds = [];
  538. this.form.adminPodCastProgramDetailResp.map((i) => {
  539. this.form.podcastProgramIds.push(i.id);
  540. });
  541. submit(this.form).then((res) => {
  542. // if (res.code === 0) {
  543. // this.$message.success(title);
  544. // this.cancel();
  545. // }
  546. if (res.code === 0) {
  547. this.$message.success(`${title}`);
  548. if (this.form.id) {
  549. delete this.form.adminPodCastProgramDetailResp;
  550. this.getDetail();
  551. } else {
  552. this.cancel();
  553. }
  554. }
  555. });
  556. } else {
  557. return false;
  558. }
  559. });
  560. },
  561. // 多选
  562. handleSelect(e) {
  563. this.ids = [];
  564. e.map((i) => {
  565. this.ids.push(i.id);
  566. });
  567. },
  568. // 取消
  569. cancel() {
  570. this.$tab.closeOpenPage("/music/musicBlog");
  571. },
  572. // 输入框失去焦点时隐藏
  573. onNumberBlur(row, index) {
  574. let newValue = Number(this.editData.sortIndex);
  575. const maxLen = this.form.adminPodCastProgramDetailResp.length;
  576. if (isNaN(newValue) || newValue === null || newValue === undefined) {
  577. this.currentEditIndex = -1;
  578. console.log('序号未修改:', newValue);
  579. return;
  580. }
  581. if (newValue < 1) {
  582. this.$message.warning('序号必须大于1');
  583. this.currentEditIndex = -1;
  584. return;
  585. }
  586. if (newValue > maxLen) {
  587. // 超出就是最后一位
  588. newValue = maxLen
  589. }
  590. if (newValue === -1 || newValue === '') {
  591. // 新值为空时处理
  592. this.currentEditIndex = -1;
  593. console.log('序号未修改:', newValue);
  594. return
  595. }
  596. console.log('序号修改:', newValue, '当前索引:', index, this.currentEditIndex);
  597. // 计算目标下标
  598. const targetIndex = newValue - 1;
  599. if (targetIndex === index) {
  600. this.currentEditIndex = -1;
  601. return;
  602. }
  603. // 交换两个元素
  604. // ...existing code...
  605. const movingItem = this.form.adminPodCastProgramDetailResp.splice(index, 1)[0];
  606. this.form.adminPodCastProgramDetailResp.splice(targetIndex, 0, movingItem);
  607. this.currentEditIndex = -1;
  608. this.$message.success("操作成功!");
  609. },
  610. // 点击编辑图标显示输入框
  611. handleEditClick(row, index) {
  612. if (!this.canOrder) {
  613. console.log('编辑功能已禁用', this.disabled, this.canOrder);
  614. return;
  615. }
  616. this.editData = {
  617. sortIndex: row.index,
  618. };
  619. this.currentEditIndex = index;
  620. this.$nextTick(() => {
  621. this.$refs.numberInput.focus();
  622. });
  623. },
  624. // 字典翻译
  625. platformFormatter(row) {
  626. return this.selectDictLabel(this.platformOptions, row.platformId);
  627. },
  628. statusFormatter(row) {
  629. return this.selectDictLabel(this.onOrOffOptions, row.status);
  630. },
  631. freeFormatter(row) {
  632. return this.selectDictLabel(this.freeOptions, row.isFree);
  633. },
  634. },
  635. };
  636. </script>
  637. <style lang="scss" scoped>
  638. .form {
  639. .el-form-item {
  640. width: 500px;
  641. }
  642. }
  643. </style>