|
|
|
@ -0,0 +1,587 @@
|
|
|
|
|
<template>
|
|
|
|
|
<view class="page-product-receipt">
|
|
|
|
|
<view class="header" :style="{ backgroundColor: `rgba(250, 53, 52, ${scrollTop / 100})` }">
|
|
|
|
|
<view class="left">
|
|
|
|
|
<u-icon class="icon" name="arrow-left" @click="uni.navigateBack({})" />
|
|
|
|
|
</view>
|
|
|
|
|
<view class="title">成品生产记录</view>
|
|
|
|
|
<view class="right"></view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="fiexdcontent">
|
|
|
|
|
<u-form class="form" ref="form" label-width="180rpx">
|
|
|
|
|
<!-- 单号 -->
|
|
|
|
|
<view class="single">
|
|
|
|
|
<view class="single-left">
|
|
|
|
|
<view>托盘号:</view>
|
|
|
|
|
<u-search placeholder="请扫描" v-model="orderNo" :show-action="false"></u-search>
|
|
|
|
|
</view>
|
|
|
|
|
<!-- <view class="single-right">
|
|
|
|
|
<u-button type="primary" @click="tidan">提单</u-button>
|
|
|
|
|
</view> -->
|
|
|
|
|
</view>
|
|
|
|
|
<view class="row-list">
|
|
|
|
|
<view class="list-item">产线: </view>
|
|
|
|
|
<jPicker style="width: 80%" sureColor="#ff0000" @bindpicker="arrtChange" showKey="value" valKey="value" :val="aimWl.value" :options="orderNoItemList" />
|
|
|
|
|
</view>
|
|
|
|
|
<view class="row-list">
|
|
|
|
|
<view class="list-item">工单: </view>
|
|
|
|
|
<jPicker style="width: 80%" sureColor="#ff0000" @bindpicker="warehouseChange" showKey="value" valKey="value" :val="cimWl.value" :options="warehouselist" />
|
|
|
|
|
</view>
|
|
|
|
|
<view class="row-list">
|
|
|
|
|
<view class="list-item">批次: </view>
|
|
|
|
|
<jPicker style="width: 80%" sureColor="#ff0000" @bindpicker="batchChange" showKey="value" valKey="value" :val="bimWl.value" :options="PiCilist" />
|
|
|
|
|
</view>
|
|
|
|
|
<u-form-item label="产品"> {{ production.productName }}</u-form-item>
|
|
|
|
|
<!-- <u-form-item label="批次"> {{ session.FactoryCode }}</u-form-item> -->
|
|
|
|
|
<u-form-item label="数量"> <u-input border v-model="quantity"></u-input></u-form-item>
|
|
|
|
|
</u-form>
|
|
|
|
|
</view>
|
|
|
|
|
<view style="height: 14rpx"></view>
|
|
|
|
|
|
|
|
|
|
<view class="bottom-bar">
|
|
|
|
|
<u-row class="button-bar">
|
|
|
|
|
<!-- 确定 -->
|
|
|
|
|
<u-col :span="6">
|
|
|
|
|
<u-button @click="onSubmit" type="primary">确认</u-button>
|
|
|
|
|
</u-col>
|
|
|
|
|
<!-- 返回 -->
|
|
|
|
|
<u-col :span="6">
|
|
|
|
|
<u-button type="error" @click="uni.navigateBack({})">返回</u-button>
|
|
|
|
|
</u-col>
|
|
|
|
|
</u-row>
|
|
|
|
|
</view>
|
|
|
|
|
<u-toast ref="uToast" />
|
|
|
|
|
</view>
|
|
|
|
|
</template>
|
|
|
|
|
<script lang="ts">
|
|
|
|
|
import { Component } from 'vue-property-decorator';
|
|
|
|
|
import { BasePage } from '@/components/base/page';
|
|
|
|
|
import jPicker from '@/components/J-Picker/jPicker.vue';
|
|
|
|
|
import model from './model';
|
|
|
|
|
import { session } from '@/store/modules/session';
|
|
|
|
|
interface OptionType {
|
|
|
|
|
label: string;
|
|
|
|
|
value: string;
|
|
|
|
|
}
|
|
|
|
|
//import { session } from '@/store/modules/session';
|
|
|
|
|
@Component({
|
|
|
|
|
components: {
|
|
|
|
|
jPicker,
|
|
|
|
|
},
|
|
|
|
|
})
|
|
|
|
|
export default class ProductionRecord extends BasePage {
|
|
|
|
|
model = model;
|
|
|
|
|
orderNo = '';
|
|
|
|
|
aimWl: OptionType = {};
|
|
|
|
|
cimWl: OptionType = {};
|
|
|
|
|
bimWl: OptionType = {};
|
|
|
|
|
orderNoItemList: Array = [];
|
|
|
|
|
warehouselist: Array = [];
|
|
|
|
|
PiCilist: Array = [];
|
|
|
|
|
border = true;
|
|
|
|
|
production: any = {};
|
|
|
|
|
quantity = '';
|
|
|
|
|
|
|
|
|
|
async onReady() {
|
|
|
|
|
await this.model.getlistBaseEquipment();
|
|
|
|
|
this.orderNoItemList = model.WlList;
|
|
|
|
|
}
|
|
|
|
|
// 在页面A中
|
|
|
|
|
onUnload() {
|
|
|
|
|
// 清空缓存数据
|
|
|
|
|
}
|
|
|
|
|
async onShow() {
|
|
|
|
|
//
|
|
|
|
|
}
|
|
|
|
|
//去重方法
|
|
|
|
|
uniqueArray(arr: any[], key: string) {
|
|
|
|
|
// 使用一个对象来存储已经看到的key对应的值
|
|
|
|
|
const seenKeys = {};
|
|
|
|
|
return arr.reduce((accumulator, currentValue) => {
|
|
|
|
|
// 检查当前元素的key值是否已经被存储过
|
|
|
|
|
const currentValueKey = currentValue[key];
|
|
|
|
|
if (!seenKeys[currentValueKey]) {
|
|
|
|
|
// 如果没有存储过,则将当前元素添加到结果数组,并在seenKeys中标记
|
|
|
|
|
seenKeys[currentValueKey] = true;
|
|
|
|
|
accumulator.push(currentValue);
|
|
|
|
|
}
|
|
|
|
|
// 不需要console.log调试,除非你需要
|
|
|
|
|
// console.log('000000', currentValueKey, seenKeys[currentValueKey]);
|
|
|
|
|
return accumulator;
|
|
|
|
|
}, []);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//选择产线
|
|
|
|
|
async arrtChange(e: any) {
|
|
|
|
|
this.aimWl = e.pickerName;
|
|
|
|
|
//根据产线查询工单
|
|
|
|
|
await this.model.queryOrderNo({ factoryCode: session.FactoryCode, workorderName: e.pickerName.value });
|
|
|
|
|
|
|
|
|
|
let oldwarehouselist = model.orderNoItemList.map((item) => ({
|
|
|
|
|
label: item.workorderCodeSap,
|
|
|
|
|
value: item.workorderCodeSap,
|
|
|
|
|
...item,
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
this.warehouselist = this.uniqueArray(oldwarehouselist, 'workorderCodeSap');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//选择工单
|
|
|
|
|
async warehouseChange(e: any) {
|
|
|
|
|
this.cimWl = e.pickerName;
|
|
|
|
|
///根据选择工单查询批次
|
|
|
|
|
await this.model.queryOrderNo({ factoryCode: session.FactoryCode, workorderName: this.aimWl.value, workorderCodeSap: e.pickerName.value });
|
|
|
|
|
this.PiCilist = model.orderNoItemList.map((item) => ({
|
|
|
|
|
label: item.batchCode,
|
|
|
|
|
value: item.batchCode,
|
|
|
|
|
...item,
|
|
|
|
|
}));
|
|
|
|
|
}
|
|
|
|
|
//选择批次
|
|
|
|
|
async batchChange(e: any) {
|
|
|
|
|
this.bimWl = e.pickerName;
|
|
|
|
|
await this.model.queryOrderNo({ factoryCode: session.FactoryCode, workorderName: this.aimWl.value, workorderCodeSap: this.cimWl.value, batchCode: e.pickerName.value });
|
|
|
|
|
this.production = model.orderNoItemList[0];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//入库确认按钮
|
|
|
|
|
async onSubmit() {
|
|
|
|
|
if (this.orderNo == '' || this.orderNo.length == 0) {
|
|
|
|
|
(this.$refs.uToast as any).show({
|
|
|
|
|
title: '请扫描托盘',
|
|
|
|
|
});
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (this.aimWl.value == '') {
|
|
|
|
|
(this.$refs.uToast as any).show({
|
|
|
|
|
title: '请先选择产线',
|
|
|
|
|
});
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (this.cimWl.value == '') {
|
|
|
|
|
(this.$refs.uToast as any).show({
|
|
|
|
|
title: '请先选择工单',
|
|
|
|
|
});
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (this.bimWl.value == '') {
|
|
|
|
|
(this.$refs.uToast as any).show({
|
|
|
|
|
title: '请先选择批次',
|
|
|
|
|
});
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (this.quantity == '') {
|
|
|
|
|
(this.$refs.uToast as any).show({
|
|
|
|
|
title: '请输入数量',
|
|
|
|
|
});
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
let params = {
|
|
|
|
|
factoryCode: session.FactoryCode,
|
|
|
|
|
createBy: session.loginName,
|
|
|
|
|
workorderCodeSap: this.cimWl.value,
|
|
|
|
|
batchCode: this.bimWl.value,
|
|
|
|
|
productCode: this.production.productCode,
|
|
|
|
|
productName: this.production.productName,
|
|
|
|
|
prodLineCode: this.aimWl.value,
|
|
|
|
|
prodLineName: this.aimWl.label,
|
|
|
|
|
sn: this.orderNo,
|
|
|
|
|
quantity: this.quantity,
|
|
|
|
|
};
|
|
|
|
|
//console.log('参数',params);
|
|
|
|
|
await this.model.getwarehouselist(params);
|
|
|
|
|
if (this.model.submitcode == '200') {
|
|
|
|
|
(this.$refs.uToast as any).show({
|
|
|
|
|
title: '成功',
|
|
|
|
|
type: 'success',
|
|
|
|
|
});
|
|
|
|
|
this.quantity = '';
|
|
|
|
|
this.orderNo = '';
|
|
|
|
|
} else {
|
|
|
|
|
(this.$refs.uToast as any).show({
|
|
|
|
|
title: '失败',
|
|
|
|
|
type: 'error',
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
.page-product-receipt {
|
|
|
|
|
background: #f2f2f2 linear-gradient(0deg, #f2f2f2 0%, #f8262c 51%, #d9001b 100%) no-repeat;
|
|
|
|
|
background-size: 100% 600rpx;
|
|
|
|
|
padding: 118rpx 30rpx 162rpx;
|
|
|
|
|
min-height: 100%;
|
|
|
|
|
|
|
|
|
|
.header {
|
|
|
|
|
position: fixed;
|
|
|
|
|
top: 0rpx;
|
|
|
|
|
left: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
z-index: 99;
|
|
|
|
|
display: flex;
|
|
|
|
|
height: 120rpx;
|
|
|
|
|
line-height: 88rpx;
|
|
|
|
|
color: #fff;
|
|
|
|
|
font-size: 34rpx;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
text-align: center;
|
|
|
|
|
padding: 45rpx 0rpx 0rpx;
|
|
|
|
|
|
|
|
|
|
.title {
|
|
|
|
|
flex: 3;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.left,
|
|
|
|
|
.right {
|
|
|
|
|
flex: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.icon {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
width: 88rpx;
|
|
|
|
|
height: 88rpx;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.fiexdcontent {
|
|
|
|
|
position: fixed;
|
|
|
|
|
width: 92%;
|
|
|
|
|
// box-shadow: 0 0 14px 0 rgb(128 128 128 / 46%);
|
|
|
|
|
z-index: 100;
|
|
|
|
|
}
|
|
|
|
|
.form {
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
padding: 30rpx;
|
|
|
|
|
border-radius: 10rpx;
|
|
|
|
|
//box-shadow: 0 0 20rpx 0 rgba(128, 128, 128, 0.2);
|
|
|
|
|
|
|
|
|
|
.u-form-item {
|
|
|
|
|
padding: 20rpx 0;
|
|
|
|
|
line-height: 35rpx;
|
|
|
|
|
|
|
|
|
|
.Transfer {
|
|
|
|
|
width: 280rpx;
|
|
|
|
|
height: 64rpx;
|
|
|
|
|
background: rgb(242, 242, 242);
|
|
|
|
|
border-radius: 110rpx;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.single {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 60rpx;
|
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
|
|
.single-left {
|
|
|
|
|
width: 80%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
|
|
view {
|
|
|
|
|
width: 142rpx;
|
|
|
|
|
height: 100%;
|
|
|
|
|
line-height: 55rpx;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.single-right {
|
|
|
|
|
button {
|
|
|
|
|
// margin-top: 15rpx;
|
|
|
|
|
width: 140rpx;
|
|
|
|
|
height: 70rpx;
|
|
|
|
|
background-color: #fa3534;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.row {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
justify-content: space-around;
|
|
|
|
|
flex: 1;
|
|
|
|
|
}
|
|
|
|
|
.row-list {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
padding: 10rpx 0rpx;
|
|
|
|
|
.list-item {
|
|
|
|
|
width: 30%;
|
|
|
|
|
}
|
|
|
|
|
.item-input {
|
|
|
|
|
border: 1rpx solid #8e8a8a;
|
|
|
|
|
width: 100%;
|
|
|
|
|
border-radius: 4rpx;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.form3 {
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
padding: 25rpx 25rpx 25rpx;
|
|
|
|
|
border-radius: 10rpx;
|
|
|
|
|
//box-shadow: 0 0 20rpx 0 rgba(128, 128, 128, 0.2);
|
|
|
|
|
//color: #8d8989;
|
|
|
|
|
// .list {
|
|
|
|
|
// display: flex;
|
|
|
|
|
// flex-direction: row;
|
|
|
|
|
// }
|
|
|
|
|
.row-list {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
.row-list-item {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
width: 40%;
|
|
|
|
|
}
|
|
|
|
|
.list-item {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
flex: 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.righttitle {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
|
|
|
|
|
.boder-icon-rigth {
|
|
|
|
|
border: 1rpx solid #fa3534;
|
|
|
|
|
width: 130rpx;
|
|
|
|
|
text-align: center;
|
|
|
|
|
background: #fa3534;
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
margin-top: 10px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.form4 {
|
|
|
|
|
// background-color: #fff;
|
|
|
|
|
padding: 1rpx;
|
|
|
|
|
border-radius: 10rpx;
|
|
|
|
|
margin-top: 2rpx;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
// margin-bottom: 5px;
|
|
|
|
|
padding-bottom: 5px;
|
|
|
|
|
.buttontostore {
|
|
|
|
|
margin-top: 5px;
|
|
|
|
|
background: red;
|
|
|
|
|
width: 13%;
|
|
|
|
|
/* height: 100%; */
|
|
|
|
|
height: 33px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
/* margin: auto; */
|
|
|
|
|
color: #ffff;
|
|
|
|
|
line-height: 30px;
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
}
|
|
|
|
|
.u-input__input {
|
|
|
|
|
min-height: 36px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.scroll {
|
|
|
|
|
// margin-top: 2rpx;
|
|
|
|
|
height: 835rpx;
|
|
|
|
|
position: absolute;
|
|
|
|
|
width: 92%;
|
|
|
|
|
top: 550rpx;
|
|
|
|
|
/* bottom: 40px; */
|
|
|
|
|
overflow: auto;
|
|
|
|
|
.form2 {
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
padding: 25rpx 25rpx 25rpx;
|
|
|
|
|
border-radius: 10rpx;
|
|
|
|
|
box-shadow: 0 0 20rpx 0 rgba(128, 128, 128, 0.2);
|
|
|
|
|
color: #8d8989;
|
|
|
|
|
.list {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
.rowleft {
|
|
|
|
|
width: 80%;
|
|
|
|
|
.row-list {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
.row-list-item {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
width: 40%;
|
|
|
|
|
}
|
|
|
|
|
.list-item {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
flex: 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.rowright {
|
|
|
|
|
width: 20%;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: right;
|
|
|
|
|
.righttitle {
|
|
|
|
|
width: 60%;
|
|
|
|
|
background-color: #8d898947;
|
|
|
|
|
color: red;
|
|
|
|
|
text-align: center;
|
|
|
|
|
/* margin: auto; */
|
|
|
|
|
height: 100%;
|
|
|
|
|
line-height: 70rpx;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// .righttitle {
|
|
|
|
|
// display: flex;
|
|
|
|
|
// justify-content: flex-end;
|
|
|
|
|
|
|
|
|
|
// .boder-icon-rigth {
|
|
|
|
|
// border: 1rpx solid #fa3534;
|
|
|
|
|
// width: 130rpx;
|
|
|
|
|
// text-align: center;
|
|
|
|
|
// background: #fa3534;
|
|
|
|
|
// color: #ffffff;
|
|
|
|
|
// margin-top: 10px;
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
// .zhuangtai {
|
|
|
|
|
// background: #a7a0a04a;
|
|
|
|
|
// width: 224rpx;
|
|
|
|
|
// margin-right: -27rpx;
|
|
|
|
|
// border: 2rpx solid #a7a0a04a;
|
|
|
|
|
// border-radius: 12rpx;
|
|
|
|
|
// text-align: center;
|
|
|
|
|
// margin-bottom: 10rpx;
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
// .zhuangtai[data-state='1'] {
|
|
|
|
|
// color: green;
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
// .zhuangtai[data-state='0'] {
|
|
|
|
|
// color: blue;
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.bottom-bar {
|
|
|
|
|
position: fixed;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
z-index: 99;
|
|
|
|
|
background: #ffffff;
|
|
|
|
|
box-shadow: 0 1rpx 20rpx 0 rgba(128, 128, 128, 0.2);
|
|
|
|
|
padding: 20rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.photoList {
|
|
|
|
|
display: flex;
|
|
|
|
|
padding-top: 12rpx;
|
|
|
|
|
|
|
|
|
|
.chooseBtn {
|
|
|
|
|
width: 202rpx;
|
|
|
|
|
height: 202rpx;
|
|
|
|
|
background: #fafafa;
|
|
|
|
|
border-radius: 12rpx;
|
|
|
|
|
border: 2rpx dashed #e2e2e2;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
|
|
.inner {
|
|
|
|
|
text-align: center;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.desc {
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
color: #24252a;
|
|
|
|
|
line-height: 40rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.img {
|
|
|
|
|
width: 50rpx;
|
|
|
|
|
height: 50rpx;
|
|
|
|
|
margin-bottom: 6rpx;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.photoBox {
|
|
|
|
|
width: 202rpx;
|
|
|
|
|
height: 202rpx;
|
|
|
|
|
background: #fafafa;
|
|
|
|
|
border-radius: 12rpx;
|
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
|
|
.closeBtn {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: -12rpx;
|
|
|
|
|
right: -12rpx;
|
|
|
|
|
z-index: 2;
|
|
|
|
|
width: 36rpx;
|
|
|
|
|
height: 36rpx;
|
|
|
|
|
|
|
|
|
|
.img {
|
|
|
|
|
width: 36rpx;
|
|
|
|
|
height: 36rpx;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.img {
|
|
|
|
|
width: 202rpx;
|
|
|
|
|
height: 202rpx;
|
|
|
|
|
border-radius: 12rpx;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.itemBox {
|
|
|
|
|
flex: 0 0 202rpx;
|
|
|
|
|
margin-right: 20rpx;
|
|
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
|
margin-right: 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// /deep/ .remarksBox textarea {
|
|
|
|
|
// font-size: 24rpx;
|
|
|
|
|
// }
|
|
|
|
|
}
|
|
|
|
|
.form5 {
|
|
|
|
|
padding: 20rpx;
|
|
|
|
|
//border-radius: 10rpx;
|
|
|
|
|
//box-shadow: 0 0 20rpx 0 rgba(128, 128, 128, 0.2);
|
|
|
|
|
.poupitem {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
justify-content: space-around;
|
|
|
|
|
margin: 20rpx;
|
|
|
|
|
align-items: center;
|
|
|
|
|
.pouptitle {
|
|
|
|
|
// width: 25%;
|
|
|
|
|
min-width: 35%;
|
|
|
|
|
// white-space: nowrap;
|
|
|
|
|
}
|
|
|
|
|
.poupcontent {
|
|
|
|
|
border: 1px solid rgba(128, 128, 128, 0.2);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.poupbutton {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|