Browse Source

1.修改表单

dev-warehouse
0.0 2 years ago
parent
commit
78016097ae
  1. 140
      src/views/distribution/signdetail/distributionSigndetail.vue
  2. 2
      src/views/distribution/signfor/distributionSignfor.vue
  3. 416
      src/views/distribution/signfor/distributionSignforedt.vue
  4. 8
      src/views/distribution/signfor/distributionSignfortreat.vue

140
src/views/distribution/signdetail/distributionSigndetail.vue

@ -144,8 +144,19 @@ export default {
head: false,
},
{
prop: 'shoppingName',
label: '商城名称',
prop: 'deliveryNumber',
label: '配送/自提单号',
type: 2,
values: '',
width: '150',
checkarr: [],
fixed: true,
sortable: true,
head: false,
},
{
prop: 'trainNumber',
label: '配送车次号',
type: 2,
values: '',
width: '150',
@ -155,8 +166,8 @@ export default {
head: false,
},
{
prop: 'orderId',
label: '订单自编号',
prop: 'serveType',
label: '服务类型',
type: 2,
values: '',
width: '150',
@ -166,8 +177,8 @@ export default {
head: false,
},
{
prop: 'consigneeName',
label: '客户名称',
prop: 'orderSelfNumbering',
label: '订单自编号',
type: 2,
values: '',
width: '150',
@ -177,9 +188,9 @@ export default {
head: false,
},
{
prop: 'deliveryType',
label: '业务类型',
type: 3,
prop: 'mallName',
label: '商城名称',
type: 2,
values: '',
width: '150',
checkarr: [],
@ -187,19 +198,19 @@ export default {
sortable: true,
},
{
prop: 'deliveryTime',
label: '配送时间',
type: 4,
prop: 'descriptionGoods',
label: '货物名称',
type: 2,
values: '',
width: '180',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'orderSource',
label: '来源',
type: 3,
prop: 'warehouseName',
label: '仓库',
type: 2,
values: '',
width: '180',
checkarr: [],
@ -207,8 +218,50 @@ export default {
sortable: true,
},
{
prop: 'deliveryPhone',
label: '电话',
prop: 'warehouseEntryTime',
label: '入库时间',
type: 4,
values: '',
width: '200',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'leadTime',
label: '备货时间',
type: 4,
values: '',
width: '200',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'sjsigningTime',
label: '司机签收时间',
type: 4,
values: '',
width: '240',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'signingTime',
label: '文员签收时间',
type: 4,
values: '',
width: '240',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'storeTime',
label: '在库时长',
type: 2,
values: '',
width: '180',
@ -217,30 +270,28 @@ export default {
sortable: true,
},
{
prop: 'trainNumber',
label: '配送车次',
prop: 'totalNumber',
label: '订单总件数',
type: 2,
values: '',
width: '150',
width: '200',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'deliveryAddress',
label: '收货地址',
prop: 'completeSet',
label: '是否齐套',
type: 2,
values: '',
width: '180',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'deliveryDriverName',
label: '送货司机',
prop: 'brand',
label: '品牌',
type: 2,
values: '',
width: '150',
@ -248,6 +299,36 @@ export default {
fixed: false,
sortable: true,
},
{
prop: 'consigneeName',
label: '顾客名称',
type: 2,
values: '',
width: '200',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'consigneePhone',
label: '客户电话',
type: 2,
values: '',
width: '200',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'deliveryAddress',
label: '顾客地址',
type: 2,
values: '',
width: '180',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: '',
label: '操作',
@ -317,7 +398,8 @@ export default {
},
editsolt(scope) {
const { row } = scope;
console.log(row);
console.log("编辑>>>>>>>>>>>>>>>>>>>",row);
},
btnsc(index, row) {
console.log(index, row);

2
src/views/distribution/signfor/distributionSignfor.vue

@ -493,7 +493,7 @@ export default {
},
editsolt(scope) {
const { row } = scope;
console.log(row);
},
btnsc(index, row) {
console.log(index, row);

416
src/views/distribution/signfor/distributionSignforedt.vue

@ -0,0 +1,416 @@
<template>
<basic-container>
<div class="avue-crud">
<el-row :gutter="24" class="rows">
<el-col :xl="7" :lg="7" :md="8" :sm="24" >
<span style="padding-left: 10%" >当前签收单状态{{basicdata[0].signingStatus}}</span>
</el-col>
</el-row>
<el-divider>基本信息</el-divider>
<el-row>
<!-- 列表模块 -->
<el-table ref="table"
:data="basicdata"
:height="height"
style="width: 100%"
:border="basicoption.border">
<el-table-column type="expand" v-if="basicoption.expand" align="center"></el-table-column>
<template v-for="(item,index) in basicoption.column">
<!-- table字段 -->
<el-table-column v-if="item.hide!==true"
:prop="item.prop"
:label="item.label"
align="center"
:width="item.width"
:key="index">
</el-table-column>
</template>
</el-table>
</el-row>
<el-divider>订单列表</el-divider>
<!-- <el-row>-->
<!-- &lt;!&ndash; 列表模块 &ndash;&gt;-->
<!-- <el-table ref="table" v-loading="loading"-->
<!-- @selection-change="selectionChange"-->
<!-- :data="data"-->
<!-- :height="height"-->
<!-- style="width: 100%"-->
<!-- :border="option.border">-->
<!-- <el-table-column type="expand" v-if="option.expand" align="center"></el-table-column>-->
<!-- <template v-for="(item,index) in option.column">-->
<!-- &lt;!&ndash; table字段 &ndash;&gt;-->
<!-- <el-table-column v-if="item.hide!==true"-->
<!-- :prop="item.prop"-->
<!-- :label="item.label"-->
<!-- align="center"-->
<!-- :width="item.width"-->
<!-- :key="index">-->
<!-- </el-table-column>-->
<!-- </template>-->
<!-- &lt;!&ndash; 操作栏模块 &ndash;&gt;-->
<!-- <el-table-column prop="menu" label="操作" :width="220" align="center">-->
<!-- <template #="{row}">-->
<!-- <el-button type="primary" text icon="el-icon-view" @click="handleView(row)">查看</el-button>-->
<!-- </template>-->
<!-- </el-table-column>-->
<!-- </el-table>-->
<!-- </el-row>-->
<el-row>
<div class="avue-crud__pagination" style="width:100%">
<!-- 分页模块 -->
<!-- <el-pagination align="right"-->
<!-- background-->
<!-- @size-change="sizeChange"-->
<!-- @current-change="currentChange"-->
<!-- :current-page="page.currentPage"-->
<!-- :page-sizes="[10, 20, 30, 40, 50, 100]"-->
<!-- :page-size="page.pageSize"-->
<!-- layout="total, sizes, prev, pager, next, jumper"-->
<!-- :total="page.total">-->
<!-- </el-pagination>-->
</div>
</el-row>
<!-- 表单模块 -->
<!-- <el-dialog :title="title"-->
<!-- v-model="box"-->
<!-- width="50%"-->
<!-- :before-close="beforeClose"-->
<!-- append-to-body>-->
<!-- <el-table ref="table" v-loading="loading"-->
<!-- @selection-change="selectionChange"-->
<!-- :data="wrapdata"-->
<!-- :height="height"-->
<!-- style="width: 100%"-->
<!-- :border="option.border">-->
<!-- <el-table-column type="expand" v-if="option.expand" align="center"></el-table-column>-->
<!-- <template v-for="(item,index) in wrapoption.column">-->
<!-- &lt;!&ndash; table字段 &ndash;&gt;-->
<!-- <el-table-column v-if="item.hide!==true"-->
<!-- :prop="item.prop"-->
<!-- :label="item.label"-->
<!-- align="center"-->
<!-- :width="item.width"-->
<!-- :key="index">-->
<!-- </el-table-column>-->
<!-- </template>-->
<!-- </el-table>-->
<!-- &lt;!&ndash; 表单按钮 &ndash;&gt;-->
<!-- <template #footer>-->
<!-- <span v-if="!view" class="dialog-footer">-->
<!-- <el-button type="primary" icon="el-icon-circle-check" @click="handleSubmit"> </el-button>-->
<!-- <el-button icon="el-icon-circle-close" @click="box = false"> </el-button>-->
<!-- </span>-->
<!-- </template>-->
<!-- </el-dialog>-->
</div>
</basic-container>
</template>
<script>
import { getList, getDetail, add, update, remove } from '@/api/distribution/distributionSignfor';
import { mapGetters } from 'vuex';
import { getDictionaryBiz } from '@/api/system/dict';
export default {
data() {
return {
height: 300,
//
title: '',
//
box: false,
dataForm: {},
//
search: true,
//
isadd: false,
deliverydata:{},
//
loading: true,
//
edt:false,
//pda
padview:false,
//
view: false,
//
query: {},
inputTypeData:[],
//
page: {
currentPage: 1,
pageSize: 10,
total: 40
},
//
form: {},
//
selectionList: [],
isLiabilityData: [],
//
stateData: [],
//
basicoption: {
menu:false,
index: false,
border: false,
selection: false,
column: [
{
label: "客户配送单号",
prop: "noteNumber",
search: true,
width:"100px"
},
]
},
//
wrapoption: {
expand: false,
index: true,
border: true,
selection: true,
column: [
{
label: "包条码",
prop: "packetBarCode",
search: true,
width:"100px"
},
{
label: "一级品类",
prop: "firsts",
search: true,
width:"100px"
},
{
label: "二级品类",
prop: "second",
search: true,
width:"100px"
},
{
label: "三级品类",
prop: "thirdProduct",
search: true,
width:"100px"
},
{
label: "物料名称",
prop: "material",
search: true,
width:"100px"
},
]
},
//
data: [],
//
basicdata: [],
//
wrapdata:[],
};
},
watch: {
// eslint-disable-next-line no-unused-vars
'$route'(to, from) {
// this.isadd =false;
// this.query.masterId = null;
// this.masterId = null;
if (!!this.$route.query.data) {
// //
// // this.isadd =true;
// this.query.masterId = this.$route.query.data;
// this.masterId = this.$route.query.data;
//
this.onLoad(this.page);
} else {
}
}
},
mounted() {
this.init();
this.onLoad();
},
created() {
// //
// this.queryDictionary();
},
computed: {
...mapGetters(['permission']),
ids() {
let ids = [];
this.selectionList.forEach(ele => {
ids.push(ele.id);
});
return ids.join(',');
}
},
methods: {
//
rowUpdate() {
},
queryDictionary() {
getDictionaryBiz('yes_no').then(res => {
this.isLiabilityData = res.data.data;
});
getDictionaryBiz('basic_in_type').then(res => {
this.inputTypeData = res.data.data;
});
},
//
handleViewpda() {
},
init() {
this.height = this.setPx(document.body.clientHeight - 340);
},
searchHide() {
this.search = !this.search;
},
searchChange() {
this.onLoad(this.page);
},
searchReset() {
this.query = {};
this.page.currentPage = 1;
this.onLoad(this.page);
},
handleSubmit() {
this.$refs.form.validate(valid => {
if (valid) {
this.form.stringValue =jsonString;
if (!this.form.id) {
this.form.masterId = this.propertyformdata.id;
add(this.form).then(() => {
this.box = false;
this.onLoad(this.page);
this.$message({
type: 'success',
message: '操作成功!'
});
let str = {
val: false
}
this.$emit("returnproperty", str);
});
} else {
update(this.form).then(() => {
this.box = false;
this.onLoad(this.page);
this.$message({
type: 'success',
message: '操作成功!'
});
let str = {
val: false
}
this.$emit("returnproperty", str);
});
}
} else {
console.log('error submit!!');
return false;
}
});
},
handleAdd() {
this.title = '新增';
this.form = {};
this.box = true;
},
handleEdit(row) {
this.title = '编辑';
this.box = true;
getDetail(row.id).then(res => {
this.form = res.data.data;
});
},
handleView(row) {
console.log("查看>>>>>>>>>>",row);
this.title = '查看';
this.view = true;
this.box = true;
getWrapdetail(row.id).then(res => {
console.log("查看>>>>>>>",res.data.data);
});
},
handleDelete() {
if (this.selectionList.length === 0) {
this.$message.warning('请选择至少一条数据');
return;
}
this.$confirm('确定将选择数据删除?', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
})
.then(() => {
return remove(this.ids);
})
.then(() => {
this.selectionClear();
this.onLoad(this.page);
this.$message({
type: 'success',
message: '操作成功!'
});
});
},
rowDel(row) {
this.$confirm('确定将选择数据删除?', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
})
.then(() => {
return remove(row.id);
})
.then(() => {
this.onLoad(this.page);
this.$message({
type: 'success',
message: '操作成功!'
});
});
},
beforeClose(done) {
done();
this.form = {};
this.view = false;
},
selectionChange(list) {
this.selectionList = list;
},
selectionClear() {
this.selectionList = [];
this.$refs.table.clearSelection();
},
currentChange(currentPage) {
this.page.currentPage = currentPage;
this.onLoad(this.page);
},
sizeChange(pageSize) {
this.page.pageSize = pageSize;
this.onLoad(this.page);
},
onLoad() {
//
this.loading = true;
let id = this.$route.query.id;
getDetail(id).then(res => {
const data = res.data.data
this.basicdata[0] = data
this.data = res.data.data.reservationList
});
this.loading = false;
}
}
};
</script>

8
src/views/distribution/signfor/distributionSignfortreat.vue

@ -503,7 +503,15 @@ export default {
},
editsolt(scope) {
const { row } = scope;
console.log("row>>>>>>>>>>>>>>>>>>>",row);
console.log(row);
this.$router.push({
path: '/distribution/signfor/distributionSignforedt',
query: {
id: row.id,
name: '待签收查看'
}
});
},
btnsc(index, row) {
console.log(index, row);

Loading…
Cancel
Save