changyong-list.vue 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. <template>
  2. <view class="changyong-list">
  3. <view class="changyong-item u-flex u-col-top" v-for="(item,index) in changList" :key="index">
  4. <view class="item-text u-flex-1">
  5. {{item.content}}
  6. </view>
  7. <image @click="emit(item.content,item.id)" src="/pagesC/static/edit.png" mode=""></image>
  8. <image @click="dell(item.id)" src="/pagesC/static/del.png" mode=""></image>
  9. </view>
  10. <view class="changyong-down">
  11. <view class="u-flex u-row-center changyong-btn">
  12. <text @click="toadd">添加常用语</text>
  13. </view>
  14. <view class="safe-area-inset-bottom"></view>
  15. </view>
  16. <u-modal :show="show" :content="title" :show-cancel-button="true" @confirm="del"
  17. @cancel="show = false"></u-modal>
  18. </view>
  19. </template>
  20. <script>
  21. import {
  22. phraseList,
  23. phrase_destory
  24. } from "../units/inquire.js"
  25. export default {
  26. data() {
  27. return {
  28. changList: [],
  29. show: false,
  30. title: "确定要删除此常用语吗?"
  31. }
  32. },
  33. onLoad() {
  34. this.getlist()
  35. },
  36. methods: {
  37. dell(id) {
  38. this.show = true
  39. this.id = id
  40. },
  41. emit(content, id) {
  42. uni.navigateTo({
  43. url: "/pagesC/changyong-add?content=" + content + "&id=" + id
  44. })
  45. },
  46. del() {
  47. phrase_destory({
  48. id: this.id
  49. }).then(res => {
  50. this.getlist()
  51. this.show = false
  52. })
  53. },
  54. getlist() {
  55. phraseList().then(res => {
  56. this.changList = res.data
  57. })
  58. },
  59. toadd() {
  60. uni.navigateTo({
  61. url: "/pagesC/changyong-add"
  62. })
  63. }
  64. }
  65. }
  66. </script>
  67. <style lang="scss">
  68. .changyong-list {
  69. padding: 0 32rpx;
  70. .changyong-down {
  71. position: fixed;
  72. bottom: 0;
  73. left: 0;
  74. z-index: 99;
  75. background-color: #fff;
  76. box-shadow: 0rpx -1rpx 0rpx 0rpx rgba(0, 0, 0, 0.1);
  77. width: 750rpx;
  78. .changyong-btn {
  79. padding: 16rpx 0;
  80. text {
  81. width: 686rpx;
  82. line-height: 88rpx;
  83. background: #0C66C2;
  84. border-radius: 12rpx;
  85. text-align: center;
  86. font-size: 32rpx;
  87. font-family: PingFangSC-Regular, PingFang SC;
  88. font-weight: 400;
  89. color: #FFFFFF;
  90. }
  91. }
  92. }
  93. .changyong-item {
  94. padding: 32rpx 0;
  95. border-bottom: 2rpx solid #F0F0F0;
  96. .item-text {
  97. margin-right: 16rpx;
  98. font-size: 30rpx;
  99. font-family: PingFangSC-Regular, PingFang SC;
  100. font-weight: 400;
  101. color: #222222;
  102. }
  103. image {
  104. width: 40rpx;
  105. height: 40rpx;
  106. margin-left: 32rpx;
  107. }
  108. }
  109. }
  110. </style>