123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771 |
- <template>
- <view>
- <view class="box" v-show="hs.visible">
- <view class="top">
- <text class="title">录入核酸人员</text>
- </view>
- <view style="display: flex;margin-top: 40rpx;">
- <u-button type="primary" @click="hs.visible=false" text="返回" style="width: 20px;" size="mini"/>
- <u-button type="primary" @click="showHsModal" text="添加" v-show="hs.num>hs.list.length" icon="plus"
- style="width: 20px;" size="mini"/>
- </view>
- <u-row style="margin-top: 70rpx;">
- <u-col span="4" style="text-align: center;">姓名</u-col>
- <u-col span="4" style="text-align: center;">联系号码</u-col>
- <u-col span="4" style="text-align: center;">操作</u-col>
- </u-row>
- <u-row v-for="item in hs.list" style="margin-top: 40rpx;">
- <u-col span="4" style="text-align: center;">{{ item.name }}</u-col>
- <u-col span="4" style="text-align: center;">{{ item.phone }}</u-col>
- <u-col span="4" style="text-align: center;">
- <u-row>
- <u-col span="6">
- <u-button type="primary" text="编辑" style="width: 20px;" @click="editFn(item)" size="mini">
- </u-button>
- </u-col>
- <u-col span="6">
- <u-button type="error" style="width: 20px;" text="删除" @click="deleteFn(item)" size="mini">
- </u-button>
- </u-col>
- </u-row>
- </u-col>
- </u-row>
- </view>
- <view class="box" v-show="china.visible">
- <view class="top">
- <text class="title">中国车录入</text>
- </view>
- <view style="display: flex;margin-top: 40rpx;">
- <u-button type="primary" @click="china.visible=false" text="返回" style="width: 20px;" size="mini"/>
- <u-button type="primary" @click="showChinaModal" text="添加" icon="plus" style="width: 20px;"
- size="mini"/>
- </view>
- <u-row style="margin-top: 70rpx;">
- <u-col span="3" style="text-align: center;">车牌号</u-col>
- <u-col span="3" style="text-align: center;">联系人</u-col>
- <u-col span="3" style="text-align: center;">联系号码</u-col>
- <u-col span="3" style="text-align: center;">操作</u-col>
- </u-row>
- <u-row v-for="(item,index) in china.list" style="margin-top: 40rpx;">
- <u-col span="3" style="text-align: center;">{{ item.carNo }}</u-col>
- <u-col span="3" style="text-align: center;">{{ item.driverName }}</u-col>
- <u-col span="3" style="text-align: center;">{{ item.driverPhone }}</u-col>
- <u-col span="3" style="text-align: center;">
- <u-row>
- <u-col span="6">
- <u-button type="primary" text="编辑" style="width: 20px;" @click="editChinaCar(item,index)"
- size="mini">
- </u-button>
- </u-col>
- <u-col span="6">
- <u-button type="error" style="width: 20px;" text="删除" @click="deleteChinaCar(item,index)"
- size="mini">
- </u-button>
- </u-col>
- </u-row>
- </u-col>
- </u-row>
- </view>
- <view class="box" v-show="!hs.visible&&!china.visible">
- <view class="top">
- <text class="title">业务录入</text>
- </view>
- <view class="item">
- <view class="l">
- <text style="color: red;">*</text>
- 申报单号:
- </view>
- <view class="r">
- <u-input placeholder="申报订单号" v-model="form.declareNo" clearable readonly>
- <text slot="suffix" style="font-size: 50rpx;" @click="selectDeclare">+</text>
- </u-input>
- </view>
- </view>
- <view class="item">
- <view class="l">申报单位:</view>
- <view class="r">
- <u-input placeholder="申报单位" disabled v-model="form.customerName">
- </u-input>
- </view>
- </view>
- <view class="item">
- <view class="l">
- <text style="color: red;">*</text>
- 申报单号:
- </view>
- <view class="r">
- <u-input placeholder="申报订单号" v-model="form.declareNo" clearable readonly>
- <text slot="suffix" style="font-size: 50rpx;" @click="selectDeclare">+</text>
- </u-input>
- </view>
- </view>
- <view class="item">
- <view class="l">
- <text style="color: red;">*</text>
- 货物:
- </view>
- <view class="r">
- <picker v-if="goods.goodsList.length>0" class="p-picker" id="hw" @change="whChange($event)"
- :value="goods.index" :range="goods.goodsList" range-key="name">
- <text class="p-text">{{ goods.goodsList[goods.index].name }}</text>
- <u-icon class="p-icon" name="arrow-down-fill" size="20"></u-icon>
- </picker>
- </view>
- </view>
- <view class="item">
- <view class="l">
- <text style="color: red;">*</text>
- 载重:
- </view>
- <view class="r">
- <u-input type="number" placeholder="输入载重" v-model="form.netWeight">
- <text slot="suffix">kg</text>
- </u-input>
- </view>
- </view>
- <view class="item">
- <view class="l">
- <text style="color: red;">*</text>
- 境外车牌:
- </view>
- <view class="r">
- <u-input placeholder="输入车牌号" v-model="form.cardNo"/>
- </view>
- </view>
- <view class="item">
- <view class="l">
- <text style="color: red;">*</text>
- 境外车规格:
- </view>
- <view class="r">
- <u-input type="number" placeholder="输入车辆规格" v-model="form.cardSize">
- <text slot="suffix">米</text>
- </u-input>
- </view>
- </view>
- <view class="item">
- <view class="l">中国车:</view>
- <view class="r">
- <u-input placeholder="中国车" v-model="china.list.map(obj=>obj.carNo).join('、')" readonly>
- <text slot="suffix" style="font-size: 50rpx;" @click="addCar">+</text>
- </u-input>
- </view>
- </view>
- <view class="item-line">
- 业务项
- </view>
- <view class="item" v-for="item in filterItemList" :key="item.id" v-if="item.items.length>0">
- <view class="l">
- <text v-if="needTypeId.indexOf(item.id)!==-1" style="color: red;">*</text>
- {{ item.name }}:
- </view>
- <view class="r">
- <view @click="selectItemFn(item)" style="width: 150px;">
- <u-input placeholder="请选择" v-model="item.itemName" readonly clearable>
- <u-icon name="close" v-if="item.itemName" slot="suffix" color="#E5E5E5;" size="5"
- @click="cleanItemSelect(item)"></u-icon>
- </u-input>
- </view>
- <view style="width: 20px;margin-left: 10rpx;">
- <u-input placeholder="数量" :disabled="item.inc==0" border="surround" v-model="item.num"
- type="number" style="width: 15px;" v-if="item.itemName"></u-input>
- </view>
- <view style="margin-left:30rpx;color: red;" v-if="item.itemName">
- {{ item.items.filter(obj => obj.itemName == item.itemName)[0].price * item.num }}元
- </view>
- <u-icon name="plus" style="position: absolute;right: 10rpx;"
- v-if="item.itemName&&item.name.indexOf('人')!==-1&&item.name.indexOf('核酸')!==-1"
- @click="addHsFn(item.num,true)"></u-icon>
- </view>
- </view>
- <view class="hj" v-show="totalPrice>0">
- 合计:{{ totalPrice }}元
- </view>
- </view>
- <u-button type="primary" text="确定" @click="saveFn"
- v-if="(!hs.visible&&!china.visible)&&perList.indexOf('tb-business-edit')!==-1"></u-button>
- <!-- ---------------------------------------------------------- -->
- <view class="bottom-safety"></view>
- <u-popup :show="car.carInput" :overlay="false" @close="car.carInput=false" borderRadius="10">
- <view style="padding: 40rpx;line-height: 60rpx;text-align: center;">
- <view v-for="item in filterUnitList" :id="item.id"
- style="margin-bottom: 20rpx;border-bottom: 1rpx solid #E5E5E5;" @click="selectCarSize(item)">
- {{ item.unit }}
- </view>
- </view>
- </u-popup>
- <u-popup :show="driver.show" :overlay="false" @close="driver.show=false" borderRadius="10">
- <view style="padding: 40rpx;line-height: 60rpx;text-align: center;">
- <view v-for="item in driver.filterList" :id="item.id"
- style="margin-bottom: 20rpx;border-bottom: 1rpx solid #E5E5E5;" @click="selectDriverFn(item)">
- {{ item.name }}({{ item.idCard }})
- </view>
- </view>
- </u-popup>
- <u-popup :show="show" closeable closeOnClickOverlay @close="show=false">
- <view style="padding: 40rpx;">
- <u-radio-group @change="itemSelectFn" placement="column" v-model="item.itemName">
- <u-radio v-for="item in item.items" :key="item.id" :label="item.itemName" :name="item.itemName"
- v-if="form.netWeight >= item.minWeight
- && form.netWeight < item.maxWeight
- &&form.cardSize<=item.carLength
- &&form.cardSize>=item.minLength" style="margin-top: 30rpx;">
- </u-radio>
- </u-radio-group>
- </view>
- </u-popup>
- <u-modal :show="modal.visible" showCancelButton closeOnClickOverlay @cancel="modal.visible=false"
- @confirm="addHsPeopleFn">
- <view style="">
- <u--input placeholder="姓名" border="surround" v-model="modal.form.name"></u--input>
- <u--input style="margin-top: 20rpx;" placeholder="联系号码" border="surround" v-model="modal.form.phone">
- </u--input>
- </view>
- </u-modal>
- <u-modal :show="chinaAddModal.visible" title="中国车" @confirm="sureCarFn" @cancel="chinaAddModal.visible=false"
- showCancelButton cancelText="关闭">
- <view class="slot-content">
- <u-row>
- <u-col span="4">车牌号</u-col>
- <u-col span="8">
- <u--input placeholder="车牌号" v-model="chinaAddModal.form.carNo"></u--input>
- </u-col>
- </u-row>
- <u-row>
- <u-col span="4">联系人</u-col>
- <u-col span="8">
- <u--input placeholder="联系人" v-model="chinaAddModal.form.driverName"></u--input>
- </u-col>
- </u-row>
- <u-row>
- <u-col span="4">联系号码</u-col>
- <u-col span="8">
- <u--input placeholder="联系号码" v-model="chinaAddModal.form.driverPhone"></u--input>
- </u-col>
- </u-row>
- </view>
- </u-modal>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- car: {
- carInput: false,
- filterList: [],
- },
- driver: {
- show: false,
- filterList: [],
- },
- customerId: '1',
- exprctStart: new Date().getTime(),
- itemList: [],
- filterItemList: [],
- needTypeId: [],
- form: {
- customerId: '',
- customerIndex: 0,
- countryIndex: 0,
- goodsIndex: 0,
- cardNo: '',
- cardSize: '',
- goodsName: '',
- netWeight: '',
- chinaCarNo: '',
- driverName: '',
- driverPhone: '',
- expectInDay: ''
- },
- show: false,
- item: {
- items: []
- },
- customer: {
- index: 0,
- customerList: [],
- },
- carList: [],
- driverList: [],
- unitList: [],
- filterUnitList: [],
- country: {
- index: 0,
- list: ['越南车', '中国车']
- },
- goods: {
- index: 0,
- goodsList: []
- },
- hs: {
- visible: false,
- num: 1,
- list: []
- },
- modal: {
- visible: false,
- form: {
- name: '',
- phone: ''
- }
- },
- china: {
- visible: false,
- index: -1,
- list: []
- },
- chinaAddModal: {
- visible: false,
- form: {
- carNo: '',
- driverName: '',
- driverPhone: ''
- }
- },
- checkItem: '',
- chinaCarPrefix: "浙粤京津冀晋蒙辽黑沪吉苏皖赣鲁豫鄂湘桂琼渝川贵云藏陕甘青宁",
- perList: []
- }
- },
- onShow() {
- this.customerId = uni.getStorageSync('customerId');
- this.perList = uni.getStorageSync('perList')
- },
- onLoad(options) {
- this.form.id = options.id;
- this.getBusinessPeople();
- this.getGoodsList();
- this.getUnit();
- let that = this;
- uni.$on('getSelectDeclare', declare => {
- that.$nextTick(() => {
- that.form.declareNo = declare.declareNo;
- that.form.cardNo = declare.carNo;
- that.form.chinaCarNo = declare.chinaCarNo;
- that.form.netWeight = declare.grossWeight;
- that.form.customerId = declare.customerId;
- that.form.customerName = declare.customerName;
- let chinaCarNo = declare.chinaCarNo;
- if (chinaCarNo) {
- let list = [];
- chinaCarNo.replace(",", ",").split(",").forEach(carNo => {
- let obj = {
- carNo: carNo
- }
- list.push(obj);
- that.china.list = list;
- })
- } else {
- that.china.list = [];
- }
- })
- })
- },
- computed: {
- totalPrice() {
- let itemList = this.itemList.filter(obj => obj.itemName);
- let price = 0;
- for (let i in itemList) {
- let type = itemList[i];
- let items = type.items;
- for (let j in items) {
- let item = items[j];
- if (item.itemName == type.itemName) {
- price += item.price;
- break;
- }
- }
- }
- return price;
- }
- },
- created() {
- },
- methods: {
- selectDeclare() {
- this.$common.to('/pages/business-entering/declare-select?declareNo=' + this.form.declareNo + '&businessId=' + this.form.id)
- },
- addCar() {
- this.china.visible = true;
- },
- showChinaModal() {
- Object.assign(this.chinaAddModal, {
- visible: true,
- index: -1,
- form: {
- carNo: '',
- driverName: '',
- driverPhone: ''
- }
- })
- },
- sureCarFn() {
- let form = this.chinaAddModal.form;
- let carNo = form.carNo;
- let phone = form.driverPhone;
- if (carNo && !this.$common.isCarNo(carNo)) {
- this.$common.toast('请输入正确的车牌号')
- return;
- }
- if (phone && !this.$common.isPhone(phone)) {
- this.$common.toast('请输入正确的手机号')
- return;
- }
- let list = this.china.list;
- let index = this.chinaAddModal.index;
- if (index > -1) {
- list.splice(index, 1)
- }
- list.push(form)
- this.chinaAddModal.visible = false;
- },
- deleteChinaCar(item, index) {
- this.china.list.splice(index, 1);
- },
- editChinaCar(item, index) {
- Object.assign(this.chinaAddModal, {
- visible: true,
- index: index,
- form: item
- })
- },
- getBusinessById() {
- this.$api.getBusinessById({
- id: this.form.id
- }).then(resp => {
- let data = resp.data;
- this.form = data;
- let list = this.chinaCarPrefix;
- this.china.list = data.cars.filter(obj => {
- return list.indexOf(obj.carNo.substr(0, 1)) !== -1
- });
- console.log(this.china.list)
- let goodsName = data.goodsName;
- this.customer.index = this.customer.customerList.map(obj => obj.name).indexOf(data
- .customerName);
- this.goods.index = this.goods.goodsList.map(o => o.name).indexOf(goodsName);
- let goods = this.goods.goodsList[this.goods.index];
- let items = data.items;
- let noNeedIds = goods.noNeedIds.split(',');
- let itemTypeList = this.itemList.filter(obj => noNeedIds.indexOf(obj.id) == -1);
- this.filterItemList = itemTypeList;
- for (let i in itemTypeList) {
- let type = itemTypeList[i];
- for (let j in items) {
- let item = items[j];
- if (item.itemTypeId == type.id) {
- type.itemName = item.itemName;
- let typeName = type.name;
- type.num = item.num
- break;
- }
- }
- }
- setTimeout(() => {
- this.car.carInput = false;
- }, 30)
- })
- },
- getBusinessPeople() {
- this.$api.getBusinessPeople({
- businessId: this.form.id
- }).then(resp => {
- let list = resp.data;
- let index = 0;
- let r = [];
- for (let i in list) {
- r.push({
- name: list[i].name,
- phone: list[i].phone,
- index: index,
- id: list[i].id
- })
- index++;
- }
- this.hs.list = r;
- })
- },
- whChange(event) {
- let index = event.detail.value; //当前picker选中的值
- this.goods.index = index;
- let goods = this.goods.goodsList[index];
- let noNeedIds = goods.noNeedIds.split(',');
- this.needTypeId = goods.needIds.split(',')
- this.filterItemList = this.itemList.filter(obj => noNeedIds.indexOf(obj.id) == -1);
- },
- carSizeInput() {
- let carSize = this.form.cardSize;
- let filterUnitList = this.unitList.filter(obj => obj.unit.indexOf(carSize) !== -1);
- this.car.carInput = filterUnitList.length > 0;
- this.filterUnitList = filterUnitList;
- },
- getUnit() {
- this.$api.getUnitList().then(resp => {
- this.unitList = resp.data;
- })
- },
- selectCarSize(data) {
- this.form.cardSize = data.unit;
- this.car.carInput = false;
- },
- expectDayChange(date) {
- this.form.expectInDay = date;
- },
- addHsFn(num, show) {
- this.hs.num = num;
- this.hs.visible = show;
- },
- showHsModal() {
- Object.assign(this.modal, {
- visible: true,
- form: {
- name: '',
- phone: '',
- index: -1
- }
- });
- },
- addHsPeopleFn() {
- if (!this.modal.form.name) {
- this.$common.toast('请输入名称');
- return;
- }
- if (this.modal.form.phone && !this.$common.isPhone(this.modal.form.phone)) {
- this.$common.toast('联系号码不正确');
- return;
- }
- let dbIndex = this.modal.form.index;
- if (dbIndex >= 0) {
- this.hs.list[dbIndex].name = this.modal.form.name;
- this.hs.list[dbIndex].phone = this.modal.form.phone;
- } else {
- this.modal.form.index = this.hs.list.length;
- this.hs.list.push(this.modal.form);
- }
- this.modal.visible = false;
- },
- editFn(data) {
- Object.assign(this.modal, {
- visible: true,
- form: data
- })
- },
- deleteFn(data) {
- this.hs.list.splice(data.index, 1);
- if (data.id) {
- this.$api.deleteHsPeople({
- id: data.id
- });
- }
- },
- getGoodsList() {
- this.$api.getGoodsList().then(resp => {
- this.goods.goodsList = resp.data;
- this.getItemList();
- })
- },
- getItemList() {
- this.$api.getItemList({
- business: 1
- }).then(resp => {
- this.itemList = resp.data;
- this.getBusinessById();
- })
- },
- handlerTypeItem(goods) {
- },
- idCardInput() {
- let val = this.form.driverIdCard;
- let list = this.driverList.filter(obj => obj.idCard.indexOf(val) !== -1);
- if (list.length > 0 && val) {
- this.driver.show = true;
- this.driver.filterList = list;
- } else {
- this.driver.show = false;
- }
- },
- selectDriverFn(item) {
- this.form.driverIdCard = item.idCard;
- this.form.driverName = item.name;
- this.form.driverPhone = item.phone
- let that = this;
- setTimeout(() => {
- that.driver.show = false;
- }, 150)
- },
- selectCarNo(item) {
- this.form.cardNo = item.cardNo;
- this.form.cardSize = item.cardSize;
- this.form.netWeight = item.lastNetWeight;
- let names = this.goods.goodsList.map(obj => obj.name);
- let index = names.indexOf(item.lastGoodsName);
- this.goods.index = index == -1 ? 0 : index;
- this.country.index = this.country.list.indexOf(item.countryName)
- let that = this;
- setTimeout(() => {
- this.car.carInput = false;
- }, 150)
- },
- selectItemFn(item) {
- let typeName = item.name;
- let checkItem = this.checkItem;
- this.item = item;
- this.show = true;
- },
- cleanItemSelect(item) {
- item.itemName = '';
- setTimeout(() => {
- this.show = false;
- this.checkItem = ''
- }, 80)
- },
- itemSelectFn(data) {
- this.show = false;
- this.item.itemName = data;
- },
- check() {
- if (!this.form.cardNo) {
- this.$common.toast('请录入境外车牌号')
- return false;
- }
- if (!this.$common.isNum(this.form.cardSize)) {
- this.$common.toast('车辆规格请录入数字')
- return false;
- }
- if (!this.form.netWeight || !this.$common.isNum(this.form.netWeight)) {
- this.$common.toast('载重必须输入数字')
- return false;
- }
- let typeList = this.filterItemList.filter(obj => obj.itemName);
- if (typeList.length == 0) {
- this.$common.toast('至少选择一项业务项')
- return false;
- }
- let filterItemList = this.filterItemList;
- let needIds = this.needTypeId;
- console.log(needIds);
- console.log(typeList);
- for (let i in needIds) {
- if (typeList.map(obj => obj.id).indexOf(needIds[i]) == -1) {
- this.$common.toast('缺少必选业务');
- return false;
- }
- }
- let peopleList = this.hs.list;
- if (typeList.filter(obj => obj.name.indexOf('人') !== -1 &&
- obj.name.indexOf('核酸') !== -1).length > 0 &&
- peopleList.length == 0) {
- this.$common.toast('录入核酸检测人员')
- return false;
- }
- let list = [];
- for (let i in typeList) {
- let type = typeList[i];
- type.num = 1;
- for (let j in type.items) {
- let item = type.items[j];
- if (type.itemName == item.itemName) {
- type.itemId = item.id;
- break;
- }
- }
- list.push({
- itemId: type.itemId,
- num: type.num
- })
- }
- this.form.itemJson = JSON.stringify(list);
- this.form.peopleJson = JSON.stringify(peopleList);
- this.form.carJson = JSON.stringify(this.china.list);
- this.form.items = null;
- this.form.cars = null;
- if (this.customerId == '1') {
- } else {
- this.form.customerId = this.customerId;
- }
- this.form.goodsName = this.goods.goodsList[this.goods.index].name;
- return true;
- },
- saveFn() {
- if (this.check()) {
- let obj = this.$common.removeNull(this.form);
- this.$api.saveBusiness(obj).then(resp => {
- if (resp.code == 200) {
- uni.removeStorageSync('business_' + this.customerId);
- this.$common.toast('修改成功');
- this.hs.list = [];
- setTimeout(() => {
- this.$common.to('/pages/business-order/business-order')
- }, 1000)
- }
- })
- }
- },
- bindPickerChange(e) {
- var nowId = e.target.id; //当前picker的ID id需要自己设置 在picker中
- var value = e.detail.value; //当前picker选中的值
- switch (nowId) { //根据ID判断是哪个picker
- case "qy": //picker的ID
- this.customer.index = value;
- break;
- case "hw": //picker的ID
- this.goods.index = value;
- break;
- case "gj": //picker的ID
- this.country.index = value;
- break;
- }
- },
- }
- }
- </script>
- <style lang="scss">
- page {
- background-color: #fff;
- }
- .hs-item {
- text-align: center;
- }
- .item-line {
- color: #a2a2a2;
- padding: 5px 0 10px 29px;
- border-bottom: 1px solid #E5E5E5;
- }
- .hj {
- padding: 50rpx;
- font-size: 40rpx;
- color: red;
- font-weight: bold;
- }
- .save-btn {
- background-color: #ff4200;
- height: 88rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- margin: 60rpx;
- color: #fff;
- font-size: 30rpx;
- font-weight: bold;
- border-radius: 10rpx;
- }
- @import '@/common/common.scss'
- </style>
|