notice.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599
  1. <template>
  2. <div class="pb_content" style="background: unset;height: 100%;" v-loading="loading">
  3. <div class="pb_content_body" style="
  4. background: #fff;
  5. padding: 0px 25px;
  6. box-sizing: border-box;
  7. border-radius: 5px;
  8. ">
  9. <div class="pb_head">
  10. <span>通知公告</span>
  11. <div class="student_button">
  12. <el-button type="primary" @click="dialogVisibleAdd = true" v-if="role == '1'">新建通知</el-button>
  13. </div>
  14. </div>
  15. </div>
  16. <div class="pb_content_body" style="height:calc(100% - 100px)">
  17. <div class="noneBox" v-if="!tableData.length">
  18. <img src="../../../assets/icon/isNoMessage.png" />
  19. </div>
  20. <div class="n_noticeBox" v-else>
  21. <div class="left">
  22. <div class="title">通知内容</div>
  23. <div class="content">
  24. <div class="noticeContent" v-for="(item, index) in tableData" :key="index"
  25. @click="res = item, activeId = item.id" :class="{ active: item.id == activeId }">
  26. <div class="n_title"><span>{{ item.title }}</span></div>
  27. <div class="n_content">{{ snippet(item.content) }}</div>
  28. <div class="n_time">{{ item.creatTime }}</div>
  29. </div>
  30. </div>
  31. </div>
  32. <div class="right">
  33. <div class="title">通知详情</div>
  34. <div class="content">
  35. <img src="../../../assets/icon/notice/noticeBg.png" alt="">
  36. <div class="r_n_content">
  37. <div class="r_n_title">
  38. <div class="r_title"><span>{{ res.title }}</span></div>
  39. <div class="r_time"><span></span><span>{{ res.creatTime }}</span></div>
  40. </div>
  41. <div class="r_n_main">
  42. <div class="notice_content cont" v-html="res.content"></div>
  43. </div>
  44. </div>
  45. </div>
  46. </div>
  47. </div>
  48. </div>
  49. <el-dialog title="添加全站通知" :visible.sync="dialogVisibleAdd" width="700px" :before-close="handleClose"
  50. class="dialog_diy" center>
  51. <div>
  52. <div class="tian1">
  53. <span>通知标题</span>
  54. <el-input v-model="noticeTitle" style="width: 250px; margin: 15px 0px" placeholder="请输入通知标题"></el-input>
  55. </div>
  56. <div class="tian1">
  57. <span>通知内容</span>
  58. <editor-bar v-model="detail" @change="change"></editor-bar>
  59. </div>
  60. </div>
  61. <span slot="footer" class="dialog-footer">
  62. <el-button type="primary" @click="addNotice">确认通知</el-button>
  63. <el-button @click="dialogVisibleAdd = false">取 消</el-button>
  64. </span>
  65. </el-dialog>
  66. </div>
  67. </template>
  68. <script>
  69. import EditorBar from "../../../components/tools/wangEnduit";
  70. export default {
  71. components: {
  72. EditorBar,
  73. },
  74. data() {
  75. return {
  76. tableHeight: "500px",
  77. page: 1,
  78. total: 0,
  79. loading: false,
  80. formLabelWidth: "100px",
  81. dialogVisible: false,
  82. dialogVisibleAdd: false,
  83. title: "",
  84. tableData: [],
  85. res: {},
  86. userid: this.$route.query.userid,
  87. oid: this.$route.query.oid,
  88. org: this.$route.query.org,
  89. role: this.$route.query.role,
  90. noticeTitle: "",
  91. detail: "",
  92. now: "",
  93. timer: null,
  94. activeId: "",
  95. };
  96. },
  97. mounted() {
  98. },
  99. beforeDestroy() {
  100. if (this.timer) {
  101. clearInterval(this.timer)
  102. this.timer = null
  103. }
  104. },
  105. beforeRouteLeave(to, from, next) {
  106. if (this.timer) {
  107. clearInterval(this.timer)
  108. this.timer = null
  109. }
  110. next();
  111. },
  112. methods: {
  113. tableRowClassName({ row, rowIndex }) {
  114. if ((rowIndex + 1) % 2 === 0) {
  115. return "even_row";
  116. } else {
  117. return "";
  118. }
  119. },
  120. snippet(str) {
  121. str = str.replace(/<\/?[^>]*>/g, ''); //去除HTML tag
  122. str = str.replace(/[ | ]*\n/g, '\n'); //去除行尾空白
  123. //str = str.replace(/\n[\s| | ]*\r/g,'\n'); //去除多余空行
  124. str = str.replace(/&nbsp;/ig, '');//去掉&nbsp;
  125. return str;
  126. // return value.replace(/<[^>]*>/g, "");
  127. },
  128. tableRowClassName({ row, rowIndex }) {
  129. if ((rowIndex + 1) % 2 === 0) {
  130. return "even_row";
  131. } else {
  132. return "";
  133. }
  134. },
  135. handleCurrentChange(val) {
  136. this.page = val;
  137. this.getNews();
  138. },
  139. handleClose(done) {
  140. done();
  141. },
  142. getNewDetail(id) {
  143. this.dialogVisible = true;
  144. let params = { nid: id };
  145. this.ajax
  146. .get(this.$store.state.api + "selectNewDetail", params)
  147. .then((res) => {
  148. this.dialogVisible = true;
  149. this.res = res.data[0][0];
  150. })
  151. .catch((err) => {
  152. this.loading = false;
  153. });
  154. },
  155. getNews() {
  156. this.loading = true;
  157. let params = { uid: this.userid, oid: this.oid, org: this.org };
  158. this.ajax
  159. .get(this.$store.state.api + "selectNotice2", params)
  160. .then((res) => {
  161. this.loading = false;
  162. this.tableData = res.data[0];
  163. this.res = res.data[0][0];
  164. this.activeId = res.data[0][0].id;
  165. if (!this.timer) {
  166. this.timer = setInterval(() => {
  167. this.getNews2();
  168. }, 5000);
  169. }
  170. })
  171. .catch((err) => {
  172. this.loading = false;
  173. });
  174. },
  175. getNews2() {
  176. let params = { uid: this.userid, oid: this.oid, org: this.org };
  177. this.ajax
  178. .get(this.$store.state.api + "selectNotice2", params)
  179. .then((res) => {
  180. this.tableData = res.data[0];
  181. })
  182. .catch((err) => {
  183. this.loading = false;
  184. });
  185. },
  186. change(val) {
  187. console.log(val);
  188. },
  189. time() {
  190. if (!this.now) {
  191. this.now = new Date().getTime();
  192. return true;
  193. } else {
  194. let time = new Date().getTime();
  195. if (time - this.now > 3000) {
  196. this.now = time;
  197. return true;
  198. } else {
  199. return false;
  200. }
  201. }
  202. },
  203. //添加通知
  204. addNotice() {
  205. if (this.noticeTitle === "") {
  206. this.$message.error("请输入文章标题");
  207. return;
  208. } else if (this.detail === "") {
  209. this.$message.error("请输入文章内容");
  210. return;
  211. }
  212. if (this.time()) {
  213. let params = [
  214. {
  215. t: this.noticeTitle,
  216. nc: this.detail.replace(/%/g, "%25"),
  217. oid: this.oid,
  218. org: this.org,
  219. },
  220. ];
  221. this.ajax
  222. .post(this.$store.state.api + "addNotice", params)
  223. .then((res) => {
  224. this.$message({
  225. message: "添加成功",
  226. type: "success",
  227. });
  228. this.noticeTitle = ""
  229. this.detail = ""
  230. this.getNews();
  231. this.dialogVisibleAdd = false;
  232. })
  233. .catch((err) => {
  234. this.$message.error("添加失败");
  235. console.error(err);
  236. });
  237. }
  238. },
  239. },
  240. created() {
  241. this.getNews();
  242. },
  243. };
  244. </script>
  245. <style scoped>
  246. .pb_head {
  247. display: flex;
  248. justify-content: space-between;
  249. }
  250. .student_head {
  251. margin-bottom: 20px;
  252. }
  253. .student_search {
  254. display: flex;
  255. }
  256. .student_search>div:nth-child(1) {
  257. line-height: 35px;
  258. font-size: 14px;
  259. }
  260. .student_search>>>.el-input__inner {
  261. width: 190px;
  262. height: 35px;
  263. margin-left: 10px;
  264. }
  265. .student_table>>>.el-table--border td {
  266. border-right: 0px !important;
  267. }
  268. .header-title {
  269. display: flex;
  270. }
  271. .logoImg {
  272. width: 30px;
  273. }
  274. .logoImg>img {
  275. width: 100%;
  276. height: 100%;
  277. }
  278. .title_add_student {
  279. margin: 0 auto;
  280. color: #fff;
  281. }
  282. .dialog_diy>>>.el-dialog__header {
  283. background: #454545 !important;
  284. padding: 15px 20px;
  285. }
  286. .dialog_diy>>>.el-dialog__title {
  287. color: #fff;
  288. }
  289. .student_table>>>.el-table--border td {
  290. border-right: 0px !important;
  291. }
  292. .dialog_diy>>>.el-dialog__headerbtn {
  293. top: 19px;
  294. }
  295. .dialog_diy>>>.el-dialog__headerbtn .el-dialog__close {
  296. color: #fff;
  297. }
  298. .dialog_diy>>>.el-dialog__headerbtn .el-dialog__close:hover {
  299. color: #fff;
  300. }
  301. .notice_content {
  302. width: 100%;
  303. word-wrap: break-word;
  304. word-break: break-all;
  305. overflow: hidden;
  306. font-size: 16px;
  307. line-height: 31px;
  308. text-indent: 35px;
  309. }
  310. .close {
  311. width: 320px;
  312. height: 30px;
  313. line-height: 30px;
  314. font-size: 14px;
  315. background: #0e72e6;
  316. padding: 0 !important;
  317. }
  318. /* table 样式 */
  319. .cont>>>table {
  320. border-top: 1px solid #ccc;
  321. border-left: 1px solid #ccc;
  322. }
  323. .cont>>>table td,
  324. .cont>>>table th {
  325. border-bottom: 1px solid #ccc;
  326. border-right: 1px solid #ccc;
  327. padding: 3px 5px;
  328. }
  329. .cont>>>table th {
  330. border-bottom: 2px solid #ccc;
  331. text-align: center;
  332. }
  333. /* blockquote 样式 */
  334. .cont>>>blockquote {
  335. display: block;
  336. border-left: 8px solid #d0e5f2;
  337. padding: 5px 10px;
  338. margin: 10px 0;
  339. line-height: 1.4;
  340. font-size: 100%;
  341. background-color: #f1f1f1;
  342. }
  343. /* code 样式 */
  344. .cont>>>code {
  345. display: inline-block;
  346. *display: inline;
  347. *zoom: 1;
  348. background-color: #f1f1f1;
  349. border-radius: 3px;
  350. padding: 3px 5px;
  351. margin: 0 3px;
  352. }
  353. .cont>>>pre code {
  354. display: block;
  355. }
  356. /* ul ol 样式 */
  357. .cont>>>ul,
  358. ol {
  359. margin: 10px 0 10px 20px;
  360. }
  361. .el-table>>>.even_row {
  362. background-color: #f1f1f1;
  363. }
  364. .student_page {
  365. margin-top: 10px;
  366. }
  367. .pb_head {
  368. margin: 0 !important;
  369. width: 100% !important;
  370. }
  371. .student_table>>>.el-table,
  372. .student_table>>>.el-table__body-wrapper {
  373. height: auto !important;
  374. }
  375. .noneBox {
  376. height: 100%;
  377. width: 100%;
  378. background: rgb(242, 242, 242);
  379. display: flex;
  380. align-items: center;
  381. justify-content: center;
  382. }
  383. .noneBox img {
  384. width: 400px;
  385. }
  386. .n_noticeBox {
  387. height: 100%;
  388. width: 100%;
  389. display: flex;
  390. justify-content: space-between;
  391. }
  392. .n_noticeBox .left {
  393. width: 350px;
  394. height: 100%;
  395. }
  396. .n_noticeBox .left .title {
  397. background: rgb(241, 241, 241);
  398. width: 100%;
  399. font-weight: 700;
  400. color: rgb(153, 148, 143);
  401. text-align: center;
  402. height: 40px;
  403. line-height: 40px;
  404. border-radius: 5px;
  405. }
  406. .n_noticeBox .left .content {
  407. height: calc(100% - 50px);
  408. margin-top: 10px;
  409. background: #fff;
  410. border-radius: 5px;
  411. overflow: auto;
  412. }
  413. .n_noticeBox .right {
  414. width: calc(100% - 370px);
  415. }
  416. .n_noticeBox .right .title {
  417. background: rgb(241, 241, 241);
  418. width: 100%;
  419. font-weight: 700;
  420. color: rgb(153, 148, 143);
  421. text-align: center;
  422. height: 40px;
  423. line-height: 40px;
  424. border-top-left-radius: 5px;
  425. border-top-right-radius: 5px;
  426. }
  427. .n_noticeBox .right .content {
  428. height: calc(100% - 40px);
  429. background: #fff;
  430. border-bottom-left-radius: 5px;
  431. border-bottom-right-radius: 5px;
  432. position: relative;
  433. }
  434. .n_noticeBox .right .content>img {
  435. position: absolute;
  436. right: 20px;
  437. bottom: -30px;
  438. max-width: 100%;
  439. }
  440. .active {
  441. background: rgb(250, 250, 250) !important;
  442. }
  443. .noticeContent {
  444. padding: 15px 20px;
  445. cursor: pointer;
  446. }
  447. .noticeContent:hover {
  448. background: rgb(250, 250, 250) !important;
  449. }
  450. .noticeContent:nth-child(even) {
  451. background: rgb(247, 250, 255);
  452. }
  453. .n_title {
  454. width: 100%;
  455. display: flex;
  456. align-items: center;
  457. }
  458. .n_title span {
  459. overflow: hidden;
  460. text-overflow: ellipsis;
  461. word-break: break-all;
  462. white-space: nowrap;
  463. }
  464. .n_title::before {
  465. content: '';
  466. display: block;
  467. background-image: url(../../../assets/icon/notice/doi.png);
  468. min-width: 25px;
  469. height: 25px;
  470. background-size: 100% 100%;
  471. margin-right: 5px;
  472. margin-left: -5px;
  473. }
  474. .n_content {
  475. font-size: 14px;
  476. color: rgb(126, 126, 126);
  477. margin-top: 5px;
  478. line-height: 1.5;
  479. text-overflow: -o-ellipsis-lastline;
  480. overflow: hidden;
  481. text-overflow: ellipsis;
  482. display: -webkit-box;
  483. -webkit-line-clamp: 2;
  484. line-clamp: 2;
  485. -webkit-box-orient: vertical;
  486. }
  487. .n_time {
  488. font-size: 14px;
  489. color: rgb(61, 61, 61);
  490. margin-top: 5px;
  491. }
  492. .r_n_content {
  493. padding: 20px;
  494. height: 100%;
  495. width: 100%;
  496. box-sizing: border-box;
  497. }
  498. .r_n_title {}
  499. .r_title {
  500. font-size: 25px;
  501. display: flex;
  502. /* padding-bottom: 10px; */
  503. }
  504. .r_title::before {
  505. content: '';
  506. display: block;
  507. background-image: url(../../../assets/icon/notice/notice.png);
  508. min-width: 40px;
  509. height: 40px;
  510. background-size: 100% 100%;
  511. margin-right: 5px;
  512. margin-left: -5px;
  513. }
  514. .r_time {
  515. display: flex;
  516. font-size: 15px;
  517. align-items: center;
  518. color: rgb(61, 61, 61);
  519. }
  520. .r_time span:nth-child(1) {
  521. height: 1px;
  522. width: 100%;
  523. background: #eee;
  524. }
  525. .r_time span:nth-child(2) {
  526. min-width: fit-content;
  527. margin: 0 30px;
  528. }
  529. .r_n_main {
  530. height: calc(100% - 120px);
  531. width: 100%;
  532. overflow: auto;
  533. margin-top: 20px;
  534. padding: 0 20px;
  535. box-sizing: border-box;
  536. }
  537. </style>