123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176 |
- <!-- 选择物料 -->
- <template>
- <view>
- <uni-nav-bar title="选择物料" @clickLeft="$utils.back()" :status-bar="true" background-color="#3F92F9" color="#FFF">
- <view slot="left">
- <u-icon name="arrow-leftward" color="#FFF" size="35"></u-icon>
- </view>
- </uni-nav-bar>
- <view class="container">
- <scroll-view
- scroll-y="true"
- style="height: calc(100vh - 150rpx);padding-bottom: 50rpx;">
- <xiaolu-tree
- v-slot:default="{item}"
- :checkList="checkList"
- v-if="tree.length>0"
- :max="max" :props="prop"
- @sendValue="confirm"
- :parent="true"
- :isCheck="true"
- :trees="tree">
- <!-- 内容插槽 -->
- <view>
- <view class="content-item">
- <view class="word">{{item.name}}</view>
- </view>
- </view>
- </xiaolu-tree>
- </scroll-view>
- </view>
- </view>
- </template>
- <script>
- import XiaoluTree from '@/components/xiaolu-tree/tree.vue';
- import dataList from './data.js'
- export default {
- components: {
- XiaoluTree
- },
- data() {
- return {
- tree: [],
- checkList: [],
- backList: this.checkList,
- prop:{},
- max: 5,
- aprop: {
- label: 'name',
- children: 'children',
- multiple:true
- },
- bprop: {
- label: 'name',
- children: 'children',
- multiple:true,
- checkStrictly:true
- },
- cprop: {//单选模式(任意一项)
- label: 'name',
- children: 'children',
- multiple:false,
- nodes:false
- },
- dprop: {//单选模式选user
- label: 'name',
- children: 'children',
- multiple:false,
- nodes:true
- }
- }
- },
- onLoad(option) {
- this.$http.GetZTreeChildren().then(res => {
- if(res.code === 0) {
- this.tree = res.result
- this.handleArray(this.tree)
- }
- })
- // this.tree=dataList;//树形数据赋值
- // #ifdef H5
- // let obj = option.arr.replace("\"([^\"]*)\"", "$1");
- // let checkList = JSON.parse(obj);
- // // #endif
- // // #ifdef MP-QQ||MP-WEIXIN||APP-NVUE||APP-PLUS
- // let checkList = JSON.parse(option.arr);
- // // #endif
-
- this.checkList = []
- // this.checkList = checkList;
-
- if(option.type==0){
- this.prop=this.aprop;//多选
- }else if(option.type==1){
- this.prop=this.bprop;//多选
- }else if(option.type==2){
- this.prop=this.cprop;//单选任意一项
- }else{
- this.prop=this.dprop;//单选user
- }
- },
- methods: {
- handleArray(array) {
- array.forEach(item => {
- if(item.children && item.children.length > 0) {
- this.handleArray(item.children)
- } else {
- item.isEnd = true
- }
- })
- },
- //获取选中的值
- confirm(val,back) {
- // this.checkList = val;
- if(back){
- this.backConfirm(val)
- return
- }
- this.backList = val;
- },
-
-
- // 返回上一页传参
- backConfirm(val) {
- uni.$emit('materialcfm', val)
-
- uni.navigateBack();
- }
- }
- }
- </script>
- <style lang="scss">
- .box_sizing {
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- box-sizing: border-box;
- }
- .btn {
- position: fixed;
- bottom: 0;
- padding: 10px;
- background-color: #fff;
- width: 100%;
- .sureBtn {
- background-color: #0095F2;
- color: #fff;
- }
- }
-
- .content-item{
- display: flex;
- position: relative;
- align-items: center;
- .person {
- height: 36rpx;
- min-width: 64rpx;
- border-radius: 50%;
- border: 1rpx solid rgba(0, 149, 235, 0.15);
- background-color: rgba(0, 149, 235, 0.1);
- margin-left: 0px;
- color: #0095F2;
- line-height: 36rpx;
- font-size: 22rpx;
- text-align: center;
- margin-left: 20rpx;
- }
- .word {
- margin-left: 16rpx;
- font-size: 28rpx;
- color: #5b5757;
- width: 500rpx;
- word-break: break-all;
- }
- }
- </style>
|