| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <template>
- <view class="scheme">
- <u-list class="listContent">
- <view class="listBox-con">
- <view class="listBox-bottom">
- <view>项目:{{' '}}</view>
- <view>编码:{{' '}}</view>
- <view>名称:{{' '}}</view>
- <view class="label-s">型号:{{' '}}</view>
- <view class="label-s">规格:{{' '}}</view>
- <view class="label-s">仓库:{{' '}}</view>
- <view class="label-s">库存:{{' '}}</view>
- <view class="label-s">数量:{{' '}}</view>
- <view class="label-s">单位:{{' '}}</view>
- <view class="label-s">单价(元):{{' '}}</view>
- <view class="label-s">合计(元):{{' '}}</view>
- <view>详细内容:{{' '}}</view>
- </view>
- </view>
- </u-list>
- <view class="add" @click="add">
- <u-icon name="plus" color="#fff"></u-icon>
- </view>
- </view>
- </template>
- <script>
- export default {
- components:{},
- data(){
- return {}
- },
- computed:{},
- onShow() {
-
- },
- methods:{
- add(){
- uni.navigateTo({
- url: `/pages/salesServiceManagement/toDoList/components/schemeAdd?obtain=仓库`
- })
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- @import url('@/pages/salesServiceManagement/demandList/components/invoice.scss');
- .scheme{
- padding: 10rpx 20rpx;
- }
- .add {
- width: 96rpx;
- height: 96rpx;
- border-radius: 48rpx;
- background: #3c9cff;
- position: fixed;
- bottom: 100rpx;
- right: 24rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- </style>
|