songguoqiang
7 months ago
16 changed files with 860 additions and 101 deletions
@ -0,0 +1,269 @@ |
|||
<template> |
|||
<!-- 选择备件 --> |
|||
<u-popup v-model="props.isShowSelectItem" mode="center" border-radius="14"> |
|||
<view class="popup-title">选择备件</view> |
|||
<view class="popup"> |
|||
<!-- <input v-model="searchKeyword" @input="filterItems" placeholder="搜索备件名称"> --> |
|||
<u-search placeholder="搜索" v-model="form1.searchName" @change="searchItem" clearabled=false></u-search> |
|||
<!-- <u-input v-model="form1.searchName" placeholder="请输入备件名称" @change="searchItem"/> |
|||
<u-button>搜索</u-button> --> |
|||
<view class="list"> |
|||
<view class="item" v-for="(item,index) in singleColumnList" :key="index" @click="chooseItem(item)"> |
|||
<u-checkbox v-model="item.checked" shape="circle" style="margin-top: 8rpx;"></u-checkbox> |
|||
<view class="right"> |
|||
<view class="item-name"> |
|||
备件名称:<span>{{item.name}}</span> |
|||
</view> |
|||
<view class="item-dec"> |
|||
备件编码:<span>{{item.number}}</span> |
|||
</view> |
|||
</view> |
|||
</view> |
|||
</view> |
|||
</view> |
|||
<view class="popup-footer"> |
|||
<view @click="chooseItem1(0)">取消</view> |
|||
<view class="sure" @click="chooseItem1(1)">确认</view> |
|||
</view> |
|||
</u-popup> |
|||
</template> |
|||
|
|||
<script setup lang="ts"> |
|||
import { |
|||
ref, |
|||
defineProps, |
|||
defineEmits, |
|||
getCurrentInstance, |
|||
watch |
|||
} from 'vue' |
|||
import { |
|||
onLoad, |
|||
} from '@dcloudio/uni-app' |
|||
import * as repairOrderApi from "@/api/repairOrder.js" |
|||
|
|||
const props = defineProps({ |
|||
isShowSelectItem: { |
|||
type: Boolean, |
|||
default: () => { return false }, |
|||
require: true |
|||
}, |
|||
singleColumnList:{ |
|||
type: Array, |
|||
default: () => { return [] }, |
|||
require: false |
|||
}, |
|||
}); |
|||
|
|||
// 监测isShowSelectItem的变化 |
|||
watch(() => props.isShowSelectItem, (newValue, oldValue) => { |
|||
if(newValue){ |
|||
console.log('props.isShowSelectItem',props.isShowSelectItem); |
|||
form1.value.searchName = null |
|||
form1.value.temporarilyNumber = null |
|||
form1.value.temporarilyName = null |
|||
} |
|||
}); |
|||
const { proxy } = getCurrentInstance() |
|||
|
|||
const repairOrderList = ref([]) |
|||
|
|||
const itemList = ref([]) |
|||
const type = ref('') |
|||
const isShowSelectItem = ref(false); |
|||
const selectVal = ref(null); |
|||
const emits = defineEmits(['searchItem','chooseItem1']); |
|||
const form1 = ref({ |
|||
number: "", |
|||
name:"", |
|||
qty: 0, |
|||
temporarilyNumber:"",//;临时选中的编码 |
|||
temporarilyName:"",//临时选中的名称 |
|||
searchName:"",//模糊搜索 |
|||
}) |
|||
onLoad((option) => { |
|||
if (option.type) type.value = option.type; |
|||
if (option.type) isShowSelectItem.value = option.isShowSelectItem;//是否显示 |
|||
if (option.selectVal) selectVal.value = option.selectVal;//是否显示 |
|||
}) |
|||
//取消和确认方法 |
|||
function chooseItem1(type){ |
|||
if(type==1){ |
|||
form1.value.number = form1.value.temporarilyNumber |
|||
form1.value.name = form1.value.temporarilyName |
|||
} |
|||
emits('chooseItem1',type,form1); |
|||
} |
|||
function searchItem(){ |
|||
emits('searchItem',form1.value.searchName); |
|||
} |
|||
function chooseItem(item){ |
|||
console.log('props.isShowSelectItem',props.isShowSelectItem); |
|||
console.log('props.singleColumnList',props.singleColumnList); |
|||
let arr = props.singleColumnList.filter(cur=>cur.number != item.number) |
|||
arr.forEach(item=>{ |
|||
item.checked = false |
|||
}) |
|||
item.checked = !item.checked |
|||
let arr1 = props.singleColumnList.filter(cur=>cur.number == item.number) |
|||
form1.value.temporarilyNumber = arr1[0].number; |
|||
form1.value.temporarilyName = arr1[0].name; |
|||
} |
|||
</script> |
|||
|
|||
<style lang="scss" scoped> |
|||
.add-form-container { |
|||
min-height: calc(100vh - 140rpx); |
|||
background: white; |
|||
padding: 0px 30rpx 140rpx; |
|||
} |
|||
|
|||
|
|||
.footer { |
|||
position: fixed; |
|||
bottom: 0px; |
|||
left: 0px; |
|||
width: 100%; |
|||
z-index: 22; |
|||
} |
|||
|
|||
.btns { |
|||
display: flex; |
|||
|
|||
|
|||
button { |
|||
flex: 1; |
|||
} |
|||
|
|||
.sure { |
|||
background: #409eff; |
|||
color: white; |
|||
border-radius: 0px; |
|||
|
|||
&::after { |
|||
border: 1px solid #409eff; |
|||
border-radius: 0px; |
|||
} |
|||
} |
|||
|
|||
.reset { |
|||
background: #F5F5F5; |
|||
border-radius: 0px; |
|||
|
|||
&::after { |
|||
border-radius: 0px; |
|||
} |
|||
} |
|||
} |
|||
|
|||
.right-button { |
|||
background: #409eff; |
|||
color: white; |
|||
padding: 0rpx 30rpx; |
|||
border-radius: 16rpx; |
|||
text-align: center; |
|||
font-size: 28rpx; |
|||
} |
|||
|
|||
.select { |
|||
display: flex; |
|||
align-items: center; |
|||
height: 72rpx; |
|||
width: 100%; |
|||
|
|||
.input { |
|||
flex: 1; |
|||
font-size: 28rpx; |
|||
color: #000000; |
|||
} |
|||
|
|||
.placeholder { |
|||
flex: 1; |
|||
font-size: 28rpx; |
|||
color: rgb(192, 196, 204); |
|||
|
|||
} |
|||
} |
|||
|
|||
.title { |
|||
padding: 32rpx 0px; |
|||
position: relative; |
|||
|
|||
span { |
|||
position: absolute; |
|||
left: -16rpx; |
|||
color: #fa3534; |
|||
padding-top: 6rpx; |
|||
} |
|||
} |
|||
|
|||
.list { |
|||
.item { |
|||
display: flex; |
|||
margin-bottom: 20rpx; |
|||
|
|||
.item-box { |
|||
background: #F5F5F5; |
|||
border-radius: 12rpx; |
|||
flex: 1; |
|||
width: 0rpx; |
|||
} |
|||
|
|||
.spare-title { |
|||
padding: 20rpx 30rpx; |
|||
border-bottom: 1px solid #e4e4e4; |
|||
|
|||
.title-txt { |
|||
color: #409eff; |
|||
font-size: 30rpx; |
|||
font-weight: bold; |
|||
} |
|||
} |
|||
|
|||
.dec { |
|||
color: #9c9c9c; |
|||
padding: 20rpx 30rpx 20rpx; |
|||
} |
|||
|
|||
} |
|||
} |
|||
|
|||
.add-btn { |
|||
display: flex; |
|||
justify-content: flex-start; |
|||
align-items: center; |
|||
} |
|||
|
|||
.popup-title { |
|||
text-align: center; |
|||
font-size: 32rpx; |
|||
font-weight: bold; |
|||
color: #409eff; |
|||
padding: 30rpx 30rpx 0px |
|||
} |
|||
|
|||
.popup { |
|||
width: 600rpx; |
|||
padding: 30rpx 60rpx 30rpx; |
|||
|
|||
} |
|||
|
|||
.popup-footer { |
|||
display: flex; |
|||
border-top: 1px solid #e4e4e4; |
|||
|
|||
view { |
|||
line-height: 100rpx; |
|||
flex: 1; |
|||
text-align: center; |
|||
|
|||
&.sure { |
|||
color: #409eff; |
|||
} |
|||
} |
|||
} |
|||
|
|||
::v-deep .u-checkbox-group { |
|||
display: grid !important; |
|||
} |
|||
</style> |
|||
|
After Width: | Height: | Size: 9.6 KiB |
Loading…
Reference in new issue