index.vue 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <template>
  2. <view class="page">
  3. <navBar title="添加售后" :back="true" color="black" background="white" />
  4. <view class="content">
  5. <view class="item">
  6. <view class="label">
  7. *姓名
  8. </view>
  9. <u--input clearable placeholder="请输入姓名" border="surround" v-model="y_xm" @change="change"></u--input>
  10. </view>
  11. <view class="item">
  12. <view class="label">
  13. *电话
  14. </view>
  15. <u--input clearable placeholder="请输入电话" border="surround" v-model="y_dh" @change="change"></u--input>
  16. </view>
  17. <view class="item" style="margin-bottom: 24rpx;">
  18. <view class="label">
  19. 项目名称
  20. </view>
  21. <u--input clearable placeholder="请输入项目名称" border="surround" v-model="l_xmmc"
  22. @change="change"></u--input>
  23. </view>
  24. <button open-type="share" class="orderBtn" :plain="true">
  25. 确定
  26. </button>
  27. </view>
  28. </view>
  29. </template>
  30. <script>
  31. export default {
  32. components: {
  33. },
  34. data() {
  35. return {
  36. }
  37. },
  38. onLoad(options) {},
  39. methods: {
  40. }
  41. }
  42. </script>
  43. <style lang="scss" scoped>
  44. @import "./index.scss";
  45. </style>