117 lines
2.1 KiB
Vue
117 lines
2.1 KiB
Vue
<template>
|
|
<tpx-dialog :show="show" title="编辑货物信息" @onClose="handleCloseModal()">
|
|
<view style="position: relative;height: calc(70vh);">
|
|
<tpx-layout>
|
|
<template v-slot:body>
|
|
<view class="dt-block">
|
|
<view class="dt-tle">
|
|
<view class="t1">物品名称</view>
|
|
<view class="t2"></view>
|
|
</view>
|
|
<u-line margin="20rpx 0 20rpx"></u-line>
|
|
</view>
|
|
</template>
|
|
|
|
<template v-slot:footer>
|
|
<view class="blcok-white-noradius" style="margin-top: 0;margin-bottom: 0;">
|
|
<u-button @click="handleSubmitValue()" type="primary" size="large" shape="circle"
|
|
custom-style="height:80rpx;font-size: 30rpx;"
|
|
>确认</u-button>
|
|
</view>
|
|
</template>
|
|
</tpx-layout>
|
|
</view>
|
|
</tpx-dialog>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
// computed: {
|
|
// filDataList() {
|
|
// return []
|
|
// },
|
|
// },
|
|
props: {
|
|
show: {
|
|
default () {
|
|
return false
|
|
}
|
|
},
|
|
value: {
|
|
default () {
|
|
return {}
|
|
}
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
value1: '',
|
|
value2: '',
|
|
keyword: ''
|
|
}
|
|
},
|
|
created() {
|
|
|
|
},
|
|
onHide() {
|
|
|
|
},
|
|
destroyed() {},
|
|
|
|
methods: {
|
|
handleCloseModal() {
|
|
this.$emit('update:show', false)
|
|
},
|
|
handleSubmitValue(val) {
|
|
this.$emit('onSure', {})
|
|
this.$emit('update:value', {})
|
|
this.handleCloseModal()
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.shet-cont{
|
|
padding: 10rpx 0 30rpx 0;
|
|
}
|
|
.dt-block {
|
|
background-color: #FFF;
|
|
position: relative;
|
|
}
|
|
.dt-tle {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
.t1 {
|
|
font-size: 30rpx;
|
|
font-weight: 600;
|
|
}
|
|
.t2{
|
|
font-size: 30rpx;
|
|
}
|
|
}
|
|
.dt-item {
|
|
display: flex;
|
|
flex-direction: row;
|
|
margin-bottom: 20rpx;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.yditem{
|
|
padding: 20rpx 20rpx;
|
|
background-color: #F6F6F6;
|
|
border-radius: 10rpx;
|
|
margin-bottom: 20rpx;
|
|
}
|
|
.ydi-lab{
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
.edm-input-item{
|
|
padding: 20rpx 0;
|
|
border-bottom: 2rpx solid #F6F6F6;
|
|
}
|
|
</style> |