移动端
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 

76 Zeilen
1.6 KiB

  1. <template>
  2. <div class="app-container">
  3. <van-nav-bar
  4. left-arrow
  5. fixed
  6. placeholder
  7. @click-left="$router.back(-1)"
  8. >
  9. <template #title>
  10. <p style="font-weight: bold;">证书查看</p>
  11. </template>
  12. </van-nav-bar>
  13. <van-swipe-cell v-for="(item,index) in 10">
  14. <van-cell title="李凤莲-宅基地申请" value="查看证书" center to="certificateSee">
  15. <template #icon>
  16. <van-icon name="../../../static/images/icon/icon_zs.png" size="22" color="#7790FE" style="margin-right: 10px;" />
  17. </template>
  18. <template #label>
  19. <p>3710022021000001</p>
  20. </template>
  21. </van-cell>
  22. <template #right>
  23. <van-button square text="删除" type="danger" class="delete-button" />
  24. </template>
  25. </van-swipe-cell>
  26. </div>
  27. </template>
  28. <script>
  29. export default {
  30. name: "applicationList",
  31. data() {
  32. return {
  33. };
  34. },
  35. created() {
  36. },
  37. methods: {
  38. },
  39. }
  40. </script>
  41. <style scoped>
  42. .app-container {
  43. padding: 0.2rem 3%;
  44. }
  45. /deep/.van-cell__title{
  46. flex: 0.7;
  47. }
  48. /deep/.van-cell__title span{
  49. font-family: Arial;
  50. font-size: 0.4rem;
  51. font-weight: normal;
  52. }
  53. /deep/.van-cell__value{
  54. flex: 0.3;
  55. color: #1D6FE9;
  56. font-weight: bold;
  57. }
  58. /deep/.van-swipe-cell{
  59. margin-bottom: 0.2rem;
  60. border-radius: 0.2rem;
  61. overflow: hidden;
  62. box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.16);
  63. }
  64. /deep/van-ellipsis{
  65. font-weight: bold;
  66. }
  67. .delete-button {
  68. height: 100%;
  69. }
  70. </style>