index.vue 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <template>
  2. <view>
  3. <view class="ceng"></view>
  4. <view class="update-pop">
  5. <block>
  6. <view class="ddflex" style="justify-content: center;margin-top: 90rpx;">
  7. <image style="width: 120rpx;height: 120rpx;" src="../../static/pages/images/userimg.png"></image>
  8. <image style="width: 53rpx;height: 11rpx;margin: 0 30rpx;" src="/static/images/sl.png"></image>
  9. <image style="width: 120rpx;height: 120rpx;" src="/static/images/userimg2.png"></image>
  10. </view>
  11. <view class="bind-title">
  12. 绑定工号
  13. </view>
  14. <view class="bind-text">
  15. 绑定工号后可管理微页和名片等操作
  16. <view>仅限公司内部员工绑定</view>
  17. </view>
  18. <view class="update-btn" @click="confirm()">立即绑定</view>
  19. </block>
  20. <image :src="picUrlss+'update_close.png'" class="update-close" @click="closeUpdate"></image>
  21. </view>
  22. </view>
  23. </template>
  24. <script>
  25. const app = getApp();
  26. const req = require("../../utils/request.js");
  27. export default {
  28. data() {
  29. return {
  30. picUrlss: req.public.picUrls,
  31. };
  32. },
  33. components: {},
  34. props: {
  35. },
  36. watch: {},
  37. mounted() {
  38. },
  39. methods: {
  40. confirm() {
  41. uni.navigateTo({
  42. url:'/mine/bindNumber/bindNumber'
  43. })
  44. this.closeUpdate()
  45. },
  46. closeUpdate(){
  47. this.$emit('closeBind');
  48. },
  49. }
  50. };
  51. </script>
  52. <style>
  53. @import "./index.css";
  54. </style>