notice.vue 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315
  1. <template>
  2. <div class="pb_content">
  3. <div class="pb_head">
  4. <span>通知公告</span>
  5. </div>
  6. <div class="pb_content_body">
  7. <div class="student_table">
  8. <el-table
  9. ref="table"
  10. :data="tableData"
  11. border
  12. :height="tableHeight"
  13. :fit="true"
  14. style="width: 100%"
  15. :header-cell-style="{ background: '#f1f1f1' }"
  16. :row-class-name="tableRowClassName"
  17. v-loading="loading"
  18. >
  19. <el-table-column
  20. prop="content"
  21. label="通知内容"
  22. min-width="35"
  23. align="center"
  24. :show-overflow-tooltip="true"
  25. >
  26. <template slot-scope="scope"
  27. ><div v-html="snippet(scope.row.content)"></div
  28. ></template>
  29. </el-table-column>
  30. <el-table-column
  31. prop="creater"
  32. label="创建者"
  33. min-width="15"
  34. align="center"
  35. ><template slot-scope="scope">
  36. {{ scope.row.creater ? scope.row.creater : "未知" }}
  37. </template>
  38. </el-table-column>
  39. <el-table-column
  40. prop="creatTime"
  41. label="创建时间"
  42. min-width="25"
  43. align="center"
  44. >
  45. </el-table-column>
  46. <el-table-column label="操作" min-width="20">
  47. <template slot-scope="scope">
  48. <el-button
  49. type="primary"
  50. size="small"
  51. @click="getNewDetail(scope.row.newsid)"
  52. >查看通知</el-button
  53. >
  54. </template>
  55. </el-table-column>
  56. </el-table>
  57. </div>
  58. <div class="student_page">
  59. <el-pagination
  60. background
  61. layout="prev, pager, next"
  62. :page-size="10"
  63. :total="total"
  64. @current-change="handleCurrentChange"
  65. >
  66. </el-pagination>
  67. </div>
  68. </div>
  69. <el-dialog
  70. title="查看通知"
  71. :visible.sync="dialogVisible"
  72. :append-to-body="true"
  73. width="50%"
  74. :before-close="handleClose"
  75. class="look_notice"
  76. >
  77. <div slot="title" class="header-title">
  78. <div class="logoImg">
  79. <img src="../../assets/logo.png" alt="" />
  80. </div>
  81. <div class="title_add_student">查看通知</div>
  82. </div>
  83. <div>
  84. <div class="pb_head">
  85. <span style="font-size: 20px">{{ res.title }}</span>
  86. <span style="font-size: 15px; line-height: 35px">{{
  87. res.creater ? res.creater : "未知"
  88. }}</span>
  89. </div>
  90. <div class="notice_content cont" v-html="res.newscontent"></div>
  91. </div>
  92. <span slot="footer" class="dialog-footer">
  93. <el-button class="close" @click="dialogVisible = false" type="primary"
  94. >关闭</el-button
  95. >
  96. </span>
  97. </el-dialog>
  98. </div>
  99. </template>
  100. <script>
  101. export default {
  102. data() {
  103. return {
  104. tableHeight: "500px",
  105. page: 1,
  106. total: 0,
  107. isLoading: false,
  108. formLabelWidth: "100px",
  109. dialogVisible: false,
  110. title: "",
  111. tableData: [],
  112. res: [],
  113. };
  114. },
  115. mounted() {
  116. this.$nextTick(function () {
  117. this.tableHeight =
  118. window.innerHeight - this.$refs.table.$el.offsetTop - 200;
  119. if (this.tableHeight <= 530) {
  120. this.tableHeight = 530;
  121. }
  122. // 监听窗口大小变化
  123. let self = this;
  124. window.onresize = function () {
  125. self.tableHeight =
  126. window.innerHeight - self.$refs.table.$el.offsetTop - 200;
  127. if (self.tableHeight <= 530) {
  128. self.tableHeight = 530;
  129. }
  130. };
  131. });
  132. },
  133. methods: {
  134. tableRowClassName({ row, rowIndex }) {
  135. if ((rowIndex + 1) % 2 === 0) {
  136. return "even_row";
  137. } else {
  138. return "";
  139. }
  140. },
  141. snippet(value) {
  142. return value.replace(/<[^>]*>/g, "");
  143. },
  144. tableRowClassName({ row, rowIndex }) {
  145. if ((rowIndex + 1) % 2 === 0) {
  146. return "even_row";
  147. } else {
  148. return "";
  149. }
  150. },
  151. handleCurrentChange(val) {
  152. this.page = val;
  153. },
  154. handleClose(done) {
  155. done();
  156. },
  157. getNewDetail(id) {
  158. this.dialogVisible = true;
  159. let params = { nid: id };
  160. this.ajax
  161. .get(this.$store.state.api + "selectNewDetail", params)
  162. .then((res) => {
  163. this.dialogVisible = true;
  164. this.res = res.data[0][0];
  165. })
  166. .catch((err) => {
  167. this.loading = false;
  168. });
  169. },
  170. getNews() {
  171. this.loading = true;
  172. let params = { uid: this.$store.state.userInfo.userid, page: this.page };
  173. this.ajax
  174. .get(this.$store.state.api + "getNewsTeacher", params)
  175. .then((res) => {
  176. this.total = res.data[0].length > 0 ? res.data[0][0].num : 0;
  177. this.loading = false;
  178. this.tableData = res.data[0];
  179. })
  180. .catch((err) => {
  181. this.loading = false;
  182. });
  183. },
  184. },
  185. created() {
  186. this.getNews();
  187. },
  188. };
  189. </script>
  190. <style scoped>
  191. .pb_head {
  192. display: flex;
  193. justify-content: space-between;
  194. }
  195. .student_head {
  196. margin-bottom: 20px;
  197. }
  198. .student_search {
  199. display: flex;
  200. }
  201. .student_search > div:nth-child(1) {
  202. line-height: 35px;
  203. font-size: 14px;
  204. }
  205. .student_search >>> .el-input__inner {
  206. width: 190px;
  207. height: 35px;
  208. margin-left: 10px;
  209. }
  210. .student_table >>> .el-table--border td {
  211. border-right: 0px !important;
  212. }
  213. .header-title {
  214. display: flex;
  215. }
  216. .logoImg {
  217. width: 30px;
  218. }
  219. .logoImg > img {
  220. width: 100%;
  221. height: 100%;
  222. }
  223. .title_add_student {
  224. margin: 0 auto;
  225. color: #fff;
  226. }
  227. .look_notice >>> .el-dialog__header {
  228. padding: 20px 20px 10px;
  229. text-align: center;
  230. background: #32455b;
  231. }
  232. .look_notice >>> .el-dialog__title {
  233. font-size: 14px !important;
  234. color: #fff !important;
  235. }
  236. .look_notice >>> .el-dialog__headerbtn {
  237. font-size: 20px !important;
  238. }
  239. .look_notice >>> .el-form-item__label {
  240. margin-left: 65px;
  241. }
  242. .look_notice >>> .el-form-item {
  243. display: flex;
  244. }
  245. .look_notice >>> .el-form-item__content {
  246. margin: 0 !important;
  247. }
  248. .look_notice >>> .el-dialog__footer {
  249. text-align: center !important;
  250. }
  251. .notice_content {
  252. margin: 20px 0 0 20px;
  253. width: 850px;
  254. word-wrap: break-word;
  255. word-break: break-all;
  256. overflow: hidden;
  257. font-size: 18px;
  258. line-height: 35px;
  259. text-indent: 35px;
  260. }
  261. .close {
  262. width: 320px;
  263. height: 30px;
  264. line-height: 30px;
  265. font-size: 14px;
  266. background: #0e72e6;
  267. padding: 0 !important;
  268. }
  269. /* table 样式 */
  270. .cont >>> table {
  271. border-top: 1px solid #ccc;
  272. border-left: 1px solid #ccc;
  273. }
  274. .cont >>> table td,
  275. .cont >>> table th {
  276. border-bottom: 1px solid #ccc;
  277. border-right: 1px solid #ccc;
  278. padding: 3px 5px;
  279. }
  280. .cont >>> table th {
  281. border-bottom: 2px solid #ccc;
  282. text-align: center;
  283. }
  284. /* blockquote 样式 */
  285. .cont >>> blockquote {
  286. display: block;
  287. border-left: 8px solid #d0e5f2;
  288. padding: 5px 10px;
  289. margin: 10px 0;
  290. line-height: 1.4;
  291. font-size: 100%;
  292. background-color: #f1f1f1;
  293. }
  294. /* code 样式 */
  295. .cont >>> code {
  296. display: inline-block;
  297. *display: inline;
  298. *zoom: 1;
  299. background-color: #f1f1f1;
  300. border-radius: 3px;
  301. padding: 3px 5px;
  302. margin: 0 3px;
  303. }
  304. .cont >>> pre code {
  305. display: block;
  306. }
  307. /* ul ol 样式 */
  308. .cont >>> ul,
  309. ol {
  310. margin: 10px 0 10px 20px;
  311. }
  312. </style>