fujian.vue 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  1. <template>
  2. <view class="page">
  3. <view class="content">
  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="">
  14. <u-icon name="more-dot-fill" color="#000" size="28" @click="hint"></u-icon>
  15. </view>
  16. </view>
  17. </view>
  18. <view class="bottom">
  19. <view class="btn">上传简历附件</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;"
  43. v-if="file.createtime == ''">
  44. <u-empty text="暂无数据" mode="list"></u-empty>
  45. </view> -->
  46. </view>
  47. </template>
  48. <script>
  49. import {
  50. resumeDetail,
  51. destroy,
  52. refresh,
  53. update
  54. } from "@/units/inquire.js"
  55. export default {
  56. data() {
  57. return {
  58. id: "",
  59. hits_show: false,
  60. show: false,
  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. ren() {
  78. uni.navigateTo({
  79. url: "/pagesD/change-jianli?name=" + this.name,
  80. events: {
  81. getjianli: res => {
  82. update({
  83. source_type: "file",
  84. source_id: this.id,
  85. title: res.virtual_name
  86. }).then(res => {
  87. if (res.code == 1) {
  88. this.$u.toast("更改成功")
  89. this.resumeDetail()
  90. }
  91. })
  92. }
  93. }
  94. })
  95. this.close()
  96. },
  97. close() {
  98. this.hits_show = false
  99. },
  100. hint() {
  101. this.hits_show = true
  102. },
  103. destroy() {
  104. destroy({
  105. source_type: "file",
  106. source_id: this.id
  107. }).then(res => {
  108. this.resumeDetail()
  109. })
  110. },
  111. delect() {
  112. this.show = true
  113. this.hits_show = false
  114. },
  115. resumeDetail() {
  116. resumeDetail().then(res => {
  117. // if (res.data.fill != null) {
  118. this.file = res.data.file
  119. this.id = res.data.file.id
  120. this.name = res.data.file.title
  121. // }
  122. })
  123. }
  124. }
  125. }
  126. </script>
  127. <style lang="scss" scoped>
  128. .bttop {
  129. text-align: center;
  130. font-size: 36rpx;
  131. font-family: PingFangSC, PingFang SC;
  132. font-weight: 400;
  133. color: #222222;
  134. background: #fff;
  135. }
  136. .page {
  137. background: #F3F3F3;
  138. min-height: 100vh;
  139. padding: 10rpx 32rpx;
  140. }
  141. .top {
  142. font-size: 32rpx;
  143. font-family: SFPro, SFPro;
  144. font-weight: 400;
  145. color: #222222;
  146. }
  147. .update {
  148. font-size: 24rpx;
  149. font-family: SFPro, SFPro;
  150. font-weight: 400;
  151. color: #777777;
  152. }
  153. .jianli {
  154. width: 686rpx;
  155. height: 154rpx;
  156. background: #FFFFFF;
  157. border-radius: 20rpx;
  158. margin-top: 20rpx;
  159. padding: 36rpx 38rpx;
  160. box-sizing: border-box;
  161. }
  162. .bottom {
  163. width: 750rpx;
  164. padding: 8rpx 38rpx 0;
  165. height: 166rpx;
  166. background: #FDFDFD;
  167. box-sizing: border-box;
  168. box-shadow: 0rpx 0rpx 0rpx 0rpx rgba(0, 0, 0, 0.2);
  169. position: fixed;
  170. bottom: 0;
  171. left: 0;
  172. }
  173. .btn {
  174. height: 88rpx;
  175. background: #0C66C2;
  176. border-radius: 12rpx;
  177. font-size: 32rpx;
  178. font-family: PingFangSC, PingFang SC;
  179. font-weight: 500;
  180. color: #FFFFFF;
  181. text-align: center;
  182. line-height: 88rpx;
  183. }
  184. </style>