特易招,招聘小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

88 lines
1.6 KiB

5 months ago
  1. <template>
  2. <view class="page">
  3. <navbar title="合同模板"
  4. leftClick
  5. @leftClick="$utils.navigateBack"/>
  6. <view class="content">
  7. <view class="projectContent"
  8. @click="$utils.navigateTo('/pages_order/contract/contractManageEdit')"
  9. >
  10. <image src="../static/contract/contract.png" alt="" />
  11. <view class="info">
  12. <view class="projectName">
  13. xxxx电子合同
  14. </view>
  15. <view class="text">
  16. 甲方湖南瀚海科技有限公司
  17. </view>
  18. <view class="text">
  19. 乙方四川特能博世科技有限公司
  20. </view>
  21. </view>
  22. <view class="run"
  23. @click.stop="$utils.navigateTo('/pages_order/contract/contractManageEdit')">
  24. <uv-icon
  25. name="arrow-right"
  26. color="#2979ff"
  27. size="30rpx"></uv-icon>
  28. </view>
  29. </view>
  30. </view>
  31. <image src="/static/image/1.png" mode=""></image>
  32. </view>
  33. </template>
  34. <script>
  35. export default {
  36. data() {
  37. return {
  38. }
  39. },
  40. methods: {
  41. }
  42. }
  43. </script>
  44. <style scoped lang="scss">
  45. .page{
  46. .content {
  47. width: 100%;
  48. height: 100%;
  49. .projectContent {
  50. background-color: #fff;
  51. display: flex;
  52. margin: 30rpx;
  53. border-radius: 20rpx;
  54. image {
  55. width: 140rpx;
  56. height: 120rpx;
  57. margin: 20rpx;
  58. }
  59. .info {
  60. margin: 28rpx 10rpx;
  61. .projectName {
  62. font-size: 32rpx;
  63. }
  64. .text {
  65. font-size: 24rpx;
  66. }
  67. }
  68. .run{
  69. margin: auto;
  70. margin-right: 30rpx;
  71. height: 60rpx;
  72. width: 60rpx;
  73. border-radius: 50%;
  74. border: 1px solid $uni-color;
  75. display: flex;
  76. justify-content: center;
  77. align-items: center;
  78. }
  79. }
  80. }
  81. }
  82. </style>