马远东 1 year ago
parent
commit
bf407e7afa
  1. 1
      src/views/distribution/deliverylist/distributionDeliveryListedt.vue
  2. 86
      src/views/distribution/signdetail/distributionSigndetail.vue
  3. 6
      vite.config.js
  4. 3577
      yarn.lock

1
src/views/distribution/deliverylist/distributionDeliveryListedt.vue

@ -4140,6 +4140,7 @@ export default {
if (valid) { if (valid) {
this.form.stringValue = jsonString; this.form.stringValue = jsonString;
if (!this.form.id) { if (!this.form.id) {
this.form.masterId = this.propertyformdata.id; this.form.masterId = this.propertyformdata.id;
add(this.form).then(() => { add(this.form).then(() => {
this.box = false; this.box = false;

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

@ -1,11 +1,22 @@
<template> <template>
<basic-container> <basic-container>
<div class="avue-crud"> <div class="avue-crud">
<el-row v-if="!search" class="el_row_top">
<el-row v-if="!search" class="el_row_top"> <el-row v-if="!search" class="el_row_top">
<!-- 查询模块 --> <!-- 查询模块 -->
<el-form :inline="true" :model="query" class="fr-fm el_from_top" >
<el-form :inline="true" :model="query" class="fr-fm el_from_top" > <el-form :inline="true" :model="query" class="fr-fm el_from_top" >
<div class="fr-fo"> <div class="fr-fo">
<el-form-item label="类型:">
<el-select v-model="searchType" placeholder="请选择搜索类型">
<el-option
v-for="item in searchTypeDate"
:key="item.value"
:label="item.label"
:value="item.value">
</el-option>
<el-form-item label="类型:"> <el-form-item label="类型:">
<el-select v-model="searchType" placeholder="请选择搜索类型"> <el-select v-model="searchType" placeholder="请选择搜索类型">
<el-option <el-option
@ -16,6 +27,8 @@
</el-option> </el-option>
</el-select> </el-select>
</el-form-item> </el-form-item>
<el-form-item label="包条码:">
<el-input v-model="query.searchCode" placeholder="请输入包条码"></el-input>
<el-form-item label="包条码:"> <el-form-item label="包条码:">
<el-input v-model="query.searchCode" placeholder="请输入包条码"></el-input> <el-input v-model="query.searchCode" placeholder="请输入包条码"></el-input>
</el-form-item> </el-form-item>
@ -38,6 +51,15 @@
<!-- <el-button type="danger" icon="el-icon-picture" @click="handlePictureInfo" plain--> <!-- <el-button type="danger" icon="el-icon-picture" @click="handlePictureInfo" plain-->
<!-- >导出图片--> <!-- >导出图片-->
<!-- </el-button>--> <!-- </el-button>-->
<!-- </div>-->
<!-- <div class="avue-crud__left">-->
<!-- <el-button type="danger" icon="el-icon-download" @click="handleExportInfo" plain-->
<!-- >导出-->
<!-- </el-button>-->
<!-- &lt;!&ndash; v-loading.fullscreen.lock="fullscreenLoading"&ndash;&gt;-->
<!-- <el-button type="danger" icon="el-icon-picture" @click="handlePictureInfo" plain-->
<!-- >导出图片-->
<!-- </el-button>-->
<!-- </div>--> <!-- </div>-->
<!-- 头部右侧按钮模块 --> <!-- 头部右侧按钮模块 -->
<div class="avue-crud__right"> <div class="avue-crud__right">
@ -65,6 +87,24 @@
</el-timeline-item> </el-timeline-item>
</el-timeline> </el-timeline>
</div> </div>
<div class="block">
<el-timeline>
<el-timeline-item
v-for="(activity, index) in activities"
:key="index"
:icon="activity.icon"
:type="activity.type"
:color="activity.color"
:size="activity.size"
:timestamp="activity.timestamp">
{{activity.content}}
<el-card>
<p>操作人:{{activity.nodeUserName}}</p>
<p>描述:{{activity.nodeInfo}}</p>
</el-card>
</el-timeline-item>
</el-timeline>
</div>
</div> </div>
</basic-container> </basic-container>
</template> </template>
@ -77,6 +117,7 @@
export default {
export default { export default {
data() { data() {
return { return {
@ -84,6 +125,18 @@
reverse: true, reverse: true,
query:{}, query:{},
searchType:'', searchType:'',
searchTypeDate:[
{
value: '1',
label: '配送单号'
},
{
value: '2',
label: '预约单号'
search:false,
reverse: true,
query:{},
searchType:'',
searchTypeDate:[ searchTypeDate:[
{ {
value: '1', value: '1',
@ -96,6 +149,8 @@
{ {
value: '3', value: '3',
label: '自提单号' label: '自提单号'
value: '3',
label: '自提单号'
}, },
{ {
value: '4', value: '4',
@ -106,12 +161,23 @@
}; };
}, },
mounted() {}, mounted() {},
computed: {},
value: '4',
label: '备货单号'
},
],
activities: []
};
},
mounted() {},
computed: {}, computed: {},
methods: { methods: {
searchHide() { searchHide() {
this.search = !this.search; this.search = !this.search;
}, },
searchChange() { searchChange() {
if (this.searchType == '' || this.searchType === undefined){
this.$message.warning("请选择搜索类型");
if (this.searchType == '' || this.searchType === undefined){ if (this.searchType == '' || this.searchType === undefined){
this.$message.warning("请选择搜索类型"); this.$message.warning("请选择搜索类型");
return; return;
@ -133,6 +199,26 @@
console.log("res=>",res); console.log("res=>",res);
}) })
}, },
searchReset() {
this.query = {};
this.searchType = '';
searchNode(this.searchType,this.query.searchCode).then(res=>{
const data = res.data.data;
let bbb = data.map(item=>{
return {
content : item.nodeName,
content : item.nodeName,
color: '#0bbd87',
timestamp : item.time,
nodeUserName : item.nodeUserName,
nodeInfo : item.nodeInfo,
}
})
console.log("bbb-------->",bbb);
this.activities = bbb;
console.log("res=>",res);
})
},
searchReset() { searchReset() {
this.query = {}; this.query = {};
this.searchType = ''; this.searchType = '';

6
vite.config.js

@ -23,9 +23,9 @@ export default ({ mode, command }) => {
// 新zyc // 新zyc
// target: 'http://192.168.6.116:8777', // target: 'http://192.168.6.116:8777',
// target: 'http://192.168.6.122:8777', // target: 'http://192.168.6.122:8777',
// target: 'http://192.168.10.57:13000', target: 'http://192.168.10.25:13000',
// target: 'http://192.168.10.25:13000', // target: 'http://192.168.10.25:2888',
// target: 'http://192.168.6.169:9777',//CYZ // target: 'http://192.168.6.161:9777',//CYZ
// target: 'http://192.168.10.57:13000', // target: 'http://192.168.10.57:13000',
// target: 'http://192.168.10.200:13000', // target: 'http://192.168.10.200:13000',
// target: 'http://192.168.10.29:13000', // target: 'http://192.168.10.29:13000',

3577
yarn.lock

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save