schemeList.vue 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <template>
  2. <view class="scheme">
  3. <u-list class="listContent">
  4. <view class="listBox-con">
  5. <view class="listBox-bottom">
  6. <view>项目:{{' '}}</view>
  7. <view>编码:{{' '}}</view>
  8. <view>名称:{{' '}}</view>
  9. <view class="label-s">型号:{{' '}}</view>
  10. <view class="label-s">规格:{{' '}}</view>
  11. <view class="label-s">仓库:{{' '}}</view>
  12. <view class="label-s">库存:{{' '}}</view>
  13. <view class="label-s">数量:{{' '}}</view>
  14. <view class="label-s">单位:{{' '}}</view>
  15. <view class="label-s">单价(元):{{' '}}</view>
  16. <view class="label-s">合计(元):{{' '}}</view>
  17. <view>详细内容:{{' '}}</view>
  18. </view>
  19. </view>
  20. </u-list>
  21. <view class="add" @click="add">
  22. <u-icon name="plus" color="#fff"></u-icon>
  23. </view>
  24. </view>
  25. </template>
  26. <script>
  27. export default {
  28. components:{},
  29. data(){
  30. return {}
  31. },
  32. computed:{},
  33. onShow() {
  34. },
  35. methods:{
  36. add(){
  37. uni.navigateTo({
  38. url: `/pages/salesServiceManagement/toDoList/components/schemeAdd?obtain=仓库`
  39. })
  40. }
  41. }
  42. }
  43. </script>
  44. <style lang="scss" scoped>
  45. @import url('@/pages/salesServiceManagement/demandList/components/invoice.scss');
  46. .scheme{
  47. padding: 10rpx 20rpx;
  48. }
  49. .add {
  50. width: 96rpx;
  51. height: 96rpx;
  52. border-radius: 48rpx;
  53. background: #3c9cff;
  54. position: fixed;
  55. bottom: 100rpx;
  56. right: 24rpx;
  57. display: flex;
  58. align-items: center;
  59. justify-content: center;
  60. }
  61. </style>