fujian.vue 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  1. <template>
  2. <view class="page">
  3. <view class="content" v-if="file_show ==1" @click.stop="preview">
  4. <!-- <view class="jianli u-flex u-row-between" v-for="(item,index) in file" :key="index"> -->
  5. <view class="jianli u-flex u-row-between">
  6. <view class="u-flex">
  7. <image style="width: 80rpx; height: 80rpx;" src="../static/images/pdf.png" mode=""></image>
  8. <view class="">
  9. <view class="top">{{file.title}}.pdf</view>
  10. <text class="update">{{file.updatetime}}上传</text>
  11. </view>
  12. </view>
  13. <view class="" @click.stop="hint">
  14. <u-icon name="more-dot-fill" color="#000" size="28"></u-icon>
  15. </view>
  16. </view>
  17. </view>
  18. <view class="bottom">
  19. <view class="btn" @click="toupload">上传简历附件</view>
  20. </view>
  21. <u-modal confirmText="删除" :show="show" :title="title" :content='content' :showCancelButton="true"
  22. @confirm="destroy" @cancel="show = false"></u-modal>
  23. <u-popup customStyle="height:452rpx;padding:52rpx 0 0 0;" :show="hits_show" mode="bottom" round="32"
  24. @close="close">
  25. <view>
  26. <view @click="ren" class=" bttop" style="">
  27. 重命名
  28. </view>
  29. <view class="" style="padding: 0 32rpx;">
  30. <view class="" style="height: 2rpx; background: #f3f3f3;margin-top: 34rpx;"></view>
  31. </view>
  32. <view @click="delect" class="bttop" style="height: 128rpx;line-height: 128rpx;">
  33. 删除
  34. </view>
  35. <view class="" style="height: 20rpx; background: #f3f3f3;"></view>
  36. <view @click="close" class="bttop" style="height: 98rpx;line-height: 98rpx;">
  37. 取消
  38. </view>
  39. </view>
  40. <!-- <view class="safe-area-inset-bottom"></view> -->
  41. </u-popup>
  42. <view style="height: 70vh;display: flex;justify-content: center;align-items: center;" v-if="file_show == 0">
  43. <u-empty text="暂无数据" mode="list"></u-empty>
  44. </view>
  45. </view>
  46. </template>
  47. <script>
  48. import {
  49. resumeDetail,
  50. destroy,
  51. refresh,
  52. update
  53. } from "@/units/inquire.js"
  54. export default {
  55. data() {
  56. return {
  57. id: "",
  58. hits_show: false,
  59. show: false,
  60. file_show: "",
  61. file: {
  62. createtime: "",
  63. file: "",
  64. id: '',
  65. resume_id: '',
  66. title: "",
  67. updatetime: "",
  68. user_id: '',
  69. },
  70. content: '确定要删除该附件简历吗?'
  71. }
  72. },
  73. onLoad() {
  74. this.resumeDetail()
  75. },
  76. methods: {
  77. preview() {
  78. uni.openDocument({
  79. filePath: this.file.file,
  80. showMenu: true,
  81. success: function(res) {
  82. console.log('打开文档成功');
  83. },
  84. fail: () => {
  85. console.log('文件打开失败');
  86. }
  87. });
  88. },
  89. ren() {
  90. uni.navigateTo({
  91. url: "/pagesD/change-jianli?name=" + this.name,
  92. events: {
  93. getjianli: res => {
  94. update({
  95. source_type: "file",
  96. source_id: this.id,
  97. title: res.virtual_name
  98. }).then(res => {
  99. if (res.code == 1) {
  100. this.$u.toast("更改成功")
  101. this.resumeDetail()
  102. }
  103. })
  104. }
  105. }
  106. })
  107. this.close()
  108. },
  109. close() {
  110. this.hits_show = false
  111. },
  112. hint() {
  113. this.hits_show = true
  114. },
  115. toupload() {
  116. uni.navigateTo({
  117. url: "/pagesD/upload?type=" + 2,
  118. events: {
  119. up: res => {
  120. console.log(1111);
  121. this.resumeDetail()
  122. }
  123. }
  124. })
  125. },
  126. destroy() {
  127. this.show = false
  128. destroy({
  129. source_type: "file",
  130. source_id: this.id
  131. }).then(res => {
  132. this.resumeDetail()
  133. })
  134. },
  135. delect() {
  136. this.show = true
  137. this.hits_show = false
  138. },
  139. resumeDetail() {
  140. resumeDetail().then(res => {
  141. if (res.data.file == null) {
  142. this.file_show = 0
  143. } else {
  144. this.file_show = 1
  145. this.file = res.data.file
  146. this.id = res.data.file.id
  147. this.name = res.data.file.title
  148. }
  149. })
  150. }
  151. }
  152. }
  153. </script>
  154. <style lang="scss" scoped>
  155. .bttop {
  156. text-align: center;
  157. font-size: 36rpx;
  158. font-family: PingFangSC, PingFang SC;
  159. font-weight: 400;
  160. color: #222222;
  161. background: #fff;
  162. }
  163. .page {
  164. background: #F3F3F3;
  165. min-height: 100vh;
  166. padding: 10rpx 32rpx;
  167. }
  168. .top {
  169. font-size: 32rpx;
  170. font-family: SFPro, SFPro;
  171. font-weight: 400;
  172. color: #222222;
  173. }
  174. .update {
  175. font-size: 24rpx;
  176. font-family: SFPro, SFPro;
  177. font-weight: 400;
  178. color: #777777;
  179. }
  180. .jianli {
  181. width: 686rpx;
  182. height: 154rpx;
  183. background: #FFFFFF;
  184. border-radius: 20rpx;
  185. margin-top: 20rpx;
  186. padding: 36rpx 38rpx;
  187. box-sizing: border-box;
  188. }
  189. .bottom {
  190. width: 750rpx;
  191. padding: 8rpx 38rpx 0;
  192. height: 166rpx;
  193. background: #FDFDFD;
  194. box-sizing: border-box;
  195. box-shadow: 0rpx 0rpx 0rpx 0rpx rgba(0, 0, 0, 0.2);
  196. position: fixed;
  197. bottom: 0;
  198. left: 0;
  199. }
  200. .btn {
  201. height: 88rpx;
  202. background: #0C66C2;
  203. border-radius: 12rpx;
  204. font-size: 32rpx;
  205. font-family: PingFangSC, PingFang SC;
  206. font-weight: 500;
  207. color: #FFFFFF;
  208. text-align: center;
  209. line-height: 88rpx;
  210. }
  211. </style>