index.html 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367
  1. <link rel="stylesheet" href="/assets/css/tuwen.css" />
  2. <style type="text/css">
  3. html,body{
  4. background-color: #f1f4f6;
  5. }
  6. .img_txt_add_but:hover,.img_txt_add_but:active,.img_txt_add_but:focus,
  7. .textarea_txt_add_but:hover,.textarea_txt_add_but:active,.textarea_txt_add_but:focus{
  8. color: #1581ff
  9. }
  10. .textarea_txt_main,
  11. .textarea_txt_box{
  12. overflow: hidden;
  13. }
  14. .textarea_txt_box{
  15. }
  16. .textarea_txt_box textarea{
  17. display: block;
  18. margin: 0;
  19. padding: 10px;
  20. width: 100%;
  21. height: 200px;
  22. font-size: 14px;
  23. line-height: 1.4;
  24. outline: none;
  25. border: 1px solid #ccc;
  26. resize: none;
  27. }
  28. .textarea_txt_but_box{
  29. overflow: hidden;
  30. padding: 10px 0;
  31. }
  32. .textarea_txt_but_box a{
  33. float: left;
  34. padding: 0 8px;
  35. margin-right: 10px;
  36. height: 30px;
  37. background-color: #f60;
  38. font-size: 14px;
  39. color: #fff;
  40. line-height: 30px;
  41. }
  42. .textarea_txt_error{
  43. overflow: hidden;
  44. padding: 10px 0 0;
  45. }
  46. .textarea_txt_error strong{
  47. float: left;
  48. height: 24px;
  49. color: #f60;
  50. font-size: 14px;
  51. font-weight: normal;
  52. line-height: 24px;
  53. }
  54. .textarea_txt_error span{
  55. float: right;
  56. height: 24px;
  57. color: #f60;
  58. font-size: 14px;
  59. font-weight: normal;
  60. line-height: 24px;
  61. }
  62. .switch_txt_but{
  63. display: block;
  64. height: 40px;
  65. width: 180px;
  66. background-color: #f60;
  67. color: #fff;
  68. font-size: 14px;
  69. text-align: center;
  70. line-height: 40px;
  71. border-radius: 3px;
  72. }
  73. .img_txt_url{
  74. overflow: hidden;
  75. padding: 20px 0;
  76. background-color: #fff;
  77. }
  78. .img_txt_url ul{
  79. display: block;
  80. }
  81. .img_txt_url li{
  82. position: relative;
  83. left: 0;
  84. top: 0;
  85. height: 50px;
  86. }
  87. .img_txt_url p{
  88. overflow: hidden;
  89. padding: 0 20px;
  90. height: 50px;
  91. font-size: 14px;
  92. text-align: left;
  93. color: #3292e0;
  94. line-height: 50px;
  95. display: -webkit-box;
  96. -webkit-box-orient: vertical;
  97. -webkit-line-clamp: 1;
  98. }
  99. .img_txt_tip_box{
  100. visibility: hidden;
  101. position: absolute;
  102. left: 0;
  103. top: 0;
  104. right: 0;
  105. bottom: 0;
  106. padding: 15px 0;
  107. background-color: rgba(0,0,0,.6);
  108. text-align: center;
  109. }
  110. .img_txt_url li:hover .img_txt_tip_box{
  111. visibility: visible;
  112. }
  113. .img_txt_tip_box i{
  114. overflow: hidden;
  115. display: inline-block;
  116. margin: 0 10px;
  117. height: 20px;
  118. width: 20px;
  119. font-size: 14px;
  120. color: #fff;
  121. text-align: center;
  122. line-height: 20px;
  123. border-radius: 20px;
  124. cursor: pointer;
  125. }
  126. .img_txt_tip_box i:hover{
  127. background-color: #1581ff;
  128. }
  129. .anticon_edit_box{
  130. overflow: hidden;
  131. padding: 20px;
  132. width: 520px;
  133. height: 120px;
  134. }
  135. .anticon_edit_select_tit_box,
  136. .anticon_edit_input_tit_box{
  137. margin: 10px 0;
  138. height: 30px;
  139. }
  140. .anticon_edit_select_tit_box strong,
  141. .anticon_edit_input_tit_box strong{
  142. float: left;
  143. height: 30px;
  144. margin-right: 10px;
  145. white-space: nowrap;
  146. font-weight: normal;
  147. font-size: 14px;
  148. color: #666;
  149. line-height: 30px;
  150. }
  151. .anticon_edit_select_tit_box p{
  152. overflow: hidden;
  153. float: left;
  154. margin-right: 20px;
  155. height: 30px;
  156. width: 250px;
  157. font-size: 14px;
  158. color: #666;
  159. line-height: 30px;
  160. display: -webkit-box;
  161. -webkit-box-orient: vertical;
  162. -webkit-line-clamp: 1;
  163. }
  164. .anticon_edit_select_tit_box a{
  165. overflow: hidden;
  166. float: left;
  167. margin-top: 4px;
  168. width: 22px;
  169. height: 22px;
  170. background-color: #f60;
  171. color: #fff;
  172. font-size: 14px;
  173. text-align: center;
  174. line-height: 22px;
  175. border-radius: 2px;
  176. }
  177. .anticon_edit_input_tit{
  178. overflow: hidden;
  179. padding: 4px 10px;
  180. float: left;
  181. height: 30px;
  182. border: 1px solid #ccc;
  183. width: 360px;
  184. box-sizing: border-box;
  185. border-radius: 2px;
  186. }
  187. .anticon_edit_input_tit input{
  188. margin: 0;
  189. padding: 0;
  190. border: 0;
  191. outline: none;
  192. display: block;
  193. height: 20px;
  194. width: 100%;
  195. font-size: 14px;
  196. color: #666;
  197. }
  198. .wxb-card-item{
  199. padding-bottom: 0;
  200. }
  201. table td,
  202. table tr{
  203. float: left;
  204. border: none !important;
  205. }
  206. .table-striped > tbody > tr:nth-of-type(odd),
  207. .table-striped > tbody > tr:hover{
  208. background:none;
  209. }
  210. .table-striped > tbody > tr:hover{
  211. position: relative;
  212. left: 0;
  213. top: 0;
  214. z-index: 1;
  215. }
  216. .table-striped >thead{
  217. display: none !important;
  218. }
  219. .fixed-table-body{
  220. padding: 10px;
  221. overflow: inherit;
  222. border: 0;
  223. }
  224. .bootstrap-table .table{
  225. border: 0;
  226. }
  227. .fixed-table-body .card-view .title{
  228. display: none;
  229. }
  230. .tweets-card-title p{
  231. overflow: hidden;
  232. font-size: 12px;
  233. color: #999;
  234. line-height: 24px;
  235. text-align: left;
  236. display: -webkit-box;
  237. -webkit-box-orient: vertical;
  238. -webkit-line-clamp: 1;
  239. }
  240. .fixed-table-toolbar{
  241. display: none;
  242. }
  243. .assignment_but_box{
  244. overflow: hidden;
  245. padding: 10px 0;
  246. margin-bottom: 20px;
  247. }
  248. .assignment_but_box a{
  249. float: left;
  250. margin: 10px;
  251. height: 50px;
  252. width: 190px;
  253. font-size: 18px;
  254. color: #000;
  255. text-align: center;
  256. line-height: 50px;
  257. }
  258. .assignment_but_box .hover{
  259. color: #fff;
  260. background-color: #09c;
  261. }
  262. .assignment_but_box a:hover,.assignment_but_box a:active,.assignment_but_box a:focus{
  263. color: #000;
  264. -webkit-transition: color 0s ease;
  265. transition: color 0s ease
  266. }
  267. .assignment_but_box a.hover:hover,.assignment_but_box a.hover:active,.assignment_but_box a.hover:focus{
  268. color: #fff;
  269. -webkit-transition: color 0s ease;
  270. transition: color 0s ease
  271. }
  272. .wxb-card-item-inner ul.footer-btns>li>a{
  273. font-size: 14px;
  274. color: #333;
  275. }
  276. .wxb-card-item-inner ul.article-list>li:first-child .article-item-title{
  277. text-align: left;
  278. }
  279. .popover{
  280. background-color: rgba(0,0,0,.9);
  281. }
  282. .popover.top > .arrow:after {
  283. border-top-color: rgba(0,0,0,.9);
  284. }
  285. .msg_popover_but_box{
  286. display: block;
  287. }
  288. .msg_popover_but_box a{
  289. display: block;
  290. margin: 4px 0;
  291. font-size: 12px;
  292. color: #fff;
  293. line-height: 20px;
  294. }
  295. .msg_popover_html{
  296. display: none;
  297. }
  298. </style>
  299. <div class="panel panel-default panel-intro">
  300. {:build_heading()}
  301. <div class="panel-body">
  302. <div id="myTabContent" class="tab-content">
  303. <div class="assignment_but_box">
  304. <a href="/admin/messagecustom/imagetextmedia/index?addtabs=1" data-but="-1">图文客服消息素材库</a>
  305. <a href="/admin/messagecustom/imagetextmediapush/index?addtabs=1&status=0" class="{if $status == 0}hover{/if}" data-but="1">待群发</a>
  306. <a href="/admin/messagecustom/imagetextmediapush/index?addtabs=1&status=1" class="{if $status == 1}hover{/if}" data-but="2">群发中</a>
  307. <a href="/admin/messagecustom/imagetextmediapush/index?addtabs=1&status=2" class="{if $status == 2}hover{/if}" data-but="3">已群发</a>
  308. </div>
  309. <div class="tab-pane fade active in" id="one">
  310. <div class="widget-body no-padding">
  311. <div id="toolbar" class="toolbar">
  312. <a href="javascript:;" class="btn btn-primary btn-refresh" title="{:__('Refresh')}" ><i class="fa fa-refresh"></i> </a>
  313. <a href="javascript:;" class="btn btn-success btn-add {:$auth->check('message/media/add')?'':'hide'}" title="{:__('Add')}" ><i class="fa fa-plus"></i> {:__('Add')}</a>
  314. <a href="javascript:;" class="btn btn-success btn-edit btn-disabled disabled {:$auth->check('message/media/edit')?'':'hide'}" title="{:__('Edit')}" ><i class="fa fa-pencil"></i> {:__('Edit')}</a>
  315. <a href="javascript:;" class="btn btn-danger btn-del btn-disabled disabled {:$auth->check('message/media/del')?'':'hide'}" title="{:__('Delete')}" ><i class="fa fa-trash"></i> {:__('Delete')}</a>
  316. <a href="javascript:;" class="btn btn-danger btn-import {:$auth->check('message/media/import')?'':'hide'}" title="{:__('Import')}" id="btn-import-file" data-url="ajax/upload" data-mimetype="csv,xls,xlsx" data-multiple="false"><i class="fa fa-upload"></i> {:__('Import')}</a>
  317. <div class="dropdown btn-group {:$auth->check('message/media/multi')?'':'hide'}">
  318. <a class="btn btn-primary btn-more dropdown-toggle btn-disabled disabled" data-toggle="dropdown"><i class="fa fa-cog"></i> {:__('More')}</a>
  319. <ul class="dropdown-menu text-left" role="menu">
  320. <li><a class="btn btn-link btn-multi btn-disabled disabled" href="javascript:;" data-params="status=normal"><i class="fa fa-eye"></i> {:__('Set to normal')}</a></li>
  321. <li><a class="btn btn-link btn-multi btn-disabled disabled" href="javascript:;" data-params="status=hidden"><i class="fa fa-eye-slash"></i> {:__('Set to hidden')}</a></li>
  322. </ul>
  323. </div>
  324. </div>
  325. <div id="myTabContent" class="tab-content">
  326. <div class="tab-pane fade active in" id="one">
  327. <div class="widget-body no-padding">
  328. <table id="table" class="table table-striped table-bordered table-hover"
  329. data-operate-edit="{:$auth->check('book/book/edit')}"
  330. width="100%">
  331. </table>
  332. </div>
  333. </div>
  334. </div>
  335. </div>
  336. </div>
  337. </div>
  338. </div>
  339. </div>