fujian.vue 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  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. });
  85. },
  86. ren() {
  87. uni.navigateTo({
  88. url: "/pagesD/change-jianli?name=" + this.name,
  89. events: {
  90. getjianli: res => {
  91. update({
  92. source_type: "file",
  93. source_id: this.id,
  94. title: res.virtual_name
  95. }).then(res => {
  96. if (res.code == 1) {
  97. this.$u.toast("更改成功")
  98. this.resumeDetail()
  99. }
  100. })
  101. }
  102. }
  103. })
  104. this.close()
  105. },
  106. close() {
  107. this.hits_show = false
  108. },
  109. hint() {
  110. this.hits_show = true
  111. },
  112. toupload() {
  113. uni.navigateTo({
  114. url: "/pagesD/upload?type=" + 2,
  115. events: {
  116. up: res => {
  117. console.log(1111);
  118. this.resumeDetail()
  119. }
  120. }
  121. })
  122. },
  123. destroy() {
  124. this.show = false
  125. destroy({
  126. source_type: "file",
  127. source_id: this.id
  128. }).then(res => {
  129. this.resumeDetail()
  130. })
  131. },
  132. delect() {
  133. this.show = true
  134. this.hits_show = false
  135. },
  136. resumeDetail() {
  137. resumeDetail().then(res => {
  138. if (res.data.file == null) {
  139. this.file_show = 0
  140. } else {
  141. this.file_show = 1
  142. this.file = res.data.file
  143. this.id = res.data.file.id
  144. this.name = res.data.file.title
  145. }
  146. })
  147. }
  148. }
  149. }
  150. </script>
  151. <style lang="scss" scoped>
  152. .bttop {
  153. text-align: center;
  154. font-size: 36rpx;
  155. font-family: PingFangSC, PingFang SC;
  156. font-weight: 400;
  157. color: #222222;
  158. background: #fff;
  159. }
  160. .page {
  161. background: #F3F3F3;
  162. min-height: 100vh;
  163. padding: 10rpx 32rpx;
  164. }
  165. .top {
  166. font-size: 32rpx;
  167. font-family: SFPro, SFPro;
  168. font-weight: 400;
  169. color: #222222;
  170. }
  171. .update {
  172. font-size: 24rpx;
  173. font-family: SFPro, SFPro;
  174. font-weight: 400;
  175. color: #777777;
  176. }
  177. .jianli {
  178. width: 686rpx;
  179. height: 154rpx;
  180. background: #FFFFFF;
  181. border-radius: 20rpx;
  182. margin-top: 20rpx;
  183. padding: 36rpx 38rpx;
  184. box-sizing: border-box;
  185. }
  186. .bottom {
  187. width: 750rpx;
  188. padding: 8rpx 38rpx 0;
  189. height: 166rpx;
  190. background: #FDFDFD;
  191. box-sizing: border-box;
  192. box-shadow: 0rpx 0rpx 0rpx 0rpx rgba(0, 0, 0, 0.2);
  193. position: fixed;
  194. bottom: 0;
  195. left: 0;
  196. }
  197. .btn {
  198. height: 88rpx;
  199. background: #0C66C2;
  200. border-radius: 12rpx;
  201. font-size: 32rpx;
  202. font-family: PingFangSC, PingFang SC;
  203. font-weight: 500;
  204. color: #FFFFFF;
  205. text-align: center;
  206. line-height: 88rpx;
  207. }
  208. </style>