Elizabeth's proactive approach involves introducing urinal toilet attachment , an ingenious concept that optimizes space and functionality.

schedulePrint.vue 6.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237
  1. <template>
  2. <div>
  3. <div
  4. v-loading="loading"
  5. element-loading-text="服务器处理数据中,请稍候......."
  6. element-loading-spinner="el-icon-loading"
  7. element-loading-background="rgba(0, 0, 0, 0.8)"
  8. >
  9. <p style="margin-top: 10px;margin-bottom: 30px">
  10. 请选择你需要打印的排班打印单样式
  11. </p>
  12. <el-row :gutter="20" type="flex" justify="center">
  13. <el-col :span="6" style="text-align: center">
  14. <div
  15. @click="imgClick('https://kuyi.shengws.com/tempSchedule1.jpg')"
  16. >
  17. <el-tooltip
  18. class="item"
  19. effect="dark"
  20. :hide-after="2000"
  21. content="点击查看大图"
  22. placement="top-start"
  23. >
  24. <el-image
  25. style="width: 200px; height: 200px"
  26. :src="require('@/assets/home/111.jpg')"
  27. ></el-image>
  28. </el-tooltip>
  29. </div>
  30. <el-radio v-model="radio" label="1" @change="change">模版一</el-radio>
  31. </el-col>
  32. <el-col
  33. :span="6"
  34. style="margin-left: 50px;margin-right: 50px;text-align: center"
  35. >
  36. <div
  37. @click="imgClick('https://kuyi.shengws.com/tempSchedule2.jpg')"
  38. >
  39. <el-tooltip
  40. class="item"
  41. effect="dark"
  42. content="点击查看大图"
  43. placement="top-start"
  44. :hide-after="2000"
  45. >
  46. <el-image
  47. style="width: 200px; height: 200px"
  48. :src="require('@/assets/home/222.jpg')"
  49. ></el-image>
  50. </el-tooltip>
  51. </div>
  52. <el-radio v-model="radio" label="2" @change="change">模版二</el-radio
  53. >
  54. </el-col>
  55. <el-col
  56. :span="6"
  57. style="margin-right: 50px;text-align: center"
  58. >
  59. <div
  60. @click="imgClick('https://kuyi.shengws.com/tempSchedule2.jpg')"
  61. >
  62. <el-tooltip
  63. class="item"
  64. effect="dark"
  65. content="点击查看大图"
  66. placement="top-start"
  67. :hide-after="2000"
  68. >
  69. <el-image
  70. style="width: 200px; height: 200px"
  71. :src="require('@/assets/home/222.jpg')"
  72. ></el-image>
  73. </el-tooltip>
  74. </div>
  75. <el-radio v-model="radio" label="3" @change="change">模版三</el-radio
  76. >
  77. </el-col>
  78. <el-col
  79. :span="6"
  80. style="text-align: center"
  81. >
  82. <!-- margin-left: 100px;margin-right: 100px; -->
  83. <div
  84. @click="imgClick('https://kuyi.shengws.com/tempSchedule2.jpg')"
  85. >
  86. <el-tooltip
  87. class="item"
  88. effect="dark"
  89. content="点击查看大图"
  90. placement="top-start"
  91. :hide-after="2000"
  92. >
  93. <el-image
  94. style="width: 200px; height: 200px"
  95. :src="require('@/assets/home/222.jpg')"
  96. ></el-image>
  97. </el-tooltip>
  98. </div>
  99. <el-radio v-model="radio" label="4" @change="change">模版四</el-radio>
  100. </el-col>
  101. </el-row>
  102. <el-row>
  103. <el-col
  104. :span="6"
  105. style="text-align: center"
  106. >
  107. <div
  108. @click="imgClick('https://kuyi.shengws.com/tempSchedule2.jpg')"
  109. >
  110. <el-tooltip
  111. class="item"
  112. effect="dark"
  113. content="点击查看大图"
  114. placement="top-start"
  115. :hide-after="2000"
  116. >
  117. <el-image
  118. style="width: 200px; height: 200px"
  119. :src="require('@/assets/home/222.jpg')"
  120. ></el-image>
  121. </el-tooltip>
  122. </div>
  123. <el-radio v-model="radio" label="5" @change="change">模版五</el-radio>
  124. </el-col>
  125. </el-row>
  126. <el-image-viewer
  127. v-if="showViewer"
  128. :on-close="closeViewer"
  129. :url-list="imgs"
  130. ></el-image-viewer>
  131. </div>
  132. </div>
  133. </template>
  134. <script>
  135. import BreadCrumb from "@/xt_pages/components/bread-crumb";
  136. import ElImageViewer from 'element-ui/packages/image/src/image-viewer'
  137. import { getScheduleTemplate, postScheduleTemplate } from "@/api/schedule";
  138. import store from "@/store";
  139. export default {
  140. name: "printTemplate",
  141. components: { ElImageViewer, BreadCrumb },
  142. data() {
  143. return {
  144. showViewer:false,
  145. crumbs: [
  146. { path: false, name: "管理中心" },
  147. { path: "data/print", name: "打印模版" }
  148. ],
  149. imgUrl_One: require("@/assets/home/111.jpg"),
  150. imgUrl_Two: require("@/assets/home/222.jpg"),
  151. imgs:[],
  152. imgs_one: ["https://kuyi.shengws.com/template1.png"],
  153. imgs_two: ["https://kuyi.shengws.com/template2.png"],
  154. delay: 500,
  155. radio: 0,
  156. tempRadio: 0,
  157. loading: false
  158. };
  159. },
  160. methods: {
  161. imgClick(val){
  162. this.imgs = []
  163. this.imgs.push(val)
  164. this.showViewer = true
  165. },
  166. closeViewer() {
  167. this.showViewer = false
  168. },
  169. change: function(val) {
  170. var params = {
  171. template_id:val
  172. }
  173. postScheduleTemplate(params).then(response=>{
  174. if(response.data.state == 1){
  175. var template = response.data.data.template
  176. this.$message.success("保存成功!")
  177. this.getlist()
  178. }
  179. })
  180. },
  181. getlist(){
  182. getScheduleTemplate().then(response=>{
  183. if(response.data.state == 1){
  184. var template = response.data.data.template
  185. console.log("template222222",template)
  186. if(template.template_id == 0){
  187. this.radio = "1"
  188. }
  189. if(template.template_id!=0){
  190. this.radio = template.template_id.toString()
  191. }
  192. }
  193. })
  194. }
  195. },
  196. created() {
  197. this.getlist()
  198. }
  199. };
  200. </script>
  201. <style scoped>
  202. .el-row {
  203. margin-bottom: 20px;
  204. & :last-child {
  205. margin-bottom: 0;
  206. }
  207. }
  208. .el-col {
  209. border-radius: 4px;
  210. }
  211. </style>
  212. <style lang="scss">
  213. .app-print {
  214. .el-radio__label {
  215. padding-left: 10px;
  216. }
  217. }
  218. </style>