Browse Source

客服

dev-xx
马远东 1 year ago
parent
commit
a9abf9c643
  1. 20
      src/views/aftersales/aftersalesWorkOrderAdd.vue
  2. 60
      src/views/distribution/signfor/distributionSignforedt.vue
  3. 4
      vite.config.js

20
src/views/aftersales/aftersalesWorkOrderAdd.vue

@ -1002,16 +1002,16 @@ const ConfirmForm = () => {
delete DataSubmit.processor; //
console.log(DataSubmit, '处理好的数据');
// stringify
// $_submit(DataSubmit).then(res => {
// if (res.data.code == 200) {
// ElMessage({
// message: res.data.msg,
// type: 'success',
// });
// Indexform.value = {}; //
// $router.push('/aftersales/aftersalesWorkOrder'); //
// }
// });
$_submit(DataSubmit).then(res => {
if (res.data.code == 200) {
ElMessage({
message: res.data.msg,
type: 'success',
});
Indexform.value = {}; //
$router.push('/aftersales/aftersalesWorkOrder'); //
}
});
};
//
const changeDeliveryDriver=(val)=>{

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

@ -386,8 +386,8 @@
height="500"
style="width: 100%"
ref="tableRef"
@select-all="selectAll"
@select="selectChange"
@select-all="qsselectAll"
@select="qsselectChange"
>
<el-table-column type="selection" width="55" fixed />
<el-table-column
@ -457,7 +457,7 @@
</el-tab-pane>
</template>
</el-tabs>
<span class="gx_num">勾选数量{{TcTemp.length}}</span>
<span class="gx_num">勾选数量{{sptemp.length}}</span>
</el-collapse-item>
</el-collapse>
@ -465,7 +465,7 @@
<el-collapse @change="ServiceChange" style="margin-top: 10px">
<el-collapse-item title="增值服务信息" name="2">
<el-tabs
v-loading="editLoading"
v-loading="ZCeditLoading"
element-loading-text="数据正在更新中..."
type="border-card"
@tab-click="tabClickB"
@ -476,7 +476,7 @@
<div class="BatchDelete">
<el-button type="primary" @click="newlyAdded(item.name)"> 新增 </el-button>
<el-button
v-if="TcTemp.length > 0"
v-if="ZCTableData.length > 0"
type="primary"
@click="BatchDelete(item.name)"
>
@ -580,6 +580,7 @@
</el-tab-pane>
</template>
</el-tabs>
<span class="gx_num">勾选数量:{{ZCTableData.length}}</span>
</el-collapse-item>
</el-collapse>
<!-- 增值服务弹窗信息 -->
@ -671,7 +672,7 @@
</template>
</el-table-column>
</el-table>
<span class="gx_num">勾选数量:{{TcTemp.length}}</span>
<template #footer>
<!-- 表格翻页功能 -->
<div class="demo-pagination-block">
@ -738,7 +739,7 @@
</template>
<script setup lang="ts">
import { ref } from 'vue';
import { ref ,computed} from 'vue';
import { useRoute, useRouter } from 'vue-router';
import {
getDetail,
@ -758,6 +759,7 @@ const RouterId = ref(null); //编辑ID
const RouterReservationId = ref(null); //
const DoorstepPhoto = ref([]); //
const StackingPhoto = ref([]); //
const sptemp=ref([]);//
const FragilePhotos = ref([]); //
const HomePhotos = ref([]); //
const SignForPhotos = ref([]); //
@ -789,6 +791,7 @@ const active = ref(1); //签收状态
const route = useRoute();
const router = useRouter(); //ID
const dataAdded = ref([]); //
const ZCeditLoading=ref(false);//
const TcDataAdded = ref([]); //
// const TabIndex = ref(0); //
const TCeditLoading = ref(false); //Load
@ -803,6 +806,7 @@ const TcZcInput = ref({}); //增值服务距离费用包间确认信息
const TcTemp = ref([]); //
const TcData = ref([]); //
const state = ref(false); //
const ZCTableData = ref([]); //
const ServiceRadioSelection = ref([]); //
const TabInfo = ref(null); //
const addvalueDetailId = ref(null); //
@ -825,15 +829,7 @@ const srcListB=ref([])
const srcListC=ref([])
const srcListD=ref([])
const srcListE=ref([])
const srcList = [
'https://fuss10.elemecdn.com/a/3f/3302e58f9a181d2509f3dc0fa68b0jpeg.jpeg',
'https://fuss10.elemecdn.com/1/34/19aa98b1fcb2781c4fba33d850549jpeg.jpeg',
'https://fuss10.elemecdn.com/0/6f/e35ff375812e6b0020b6b4e8f9583jpeg.jpeg',
'https://fuss10.elemecdn.com/9/bb/e27858e973f5d7d3904835f46abbdjpeg.jpeg',
'https://fuss10.elemecdn.com/d/e6/c4d93a3805b3ce3f323f7974e6f78jpeg.jpeg',
'https://fuss10.elemecdn.com/3/28/bbf893f792f03a54408b3b7a7ebf0jpeg.jpeg',
'https://fuss10.elemecdn.com/2/11/6535bcfb26e4c79b48ddde44f4b6fjpeg.jpeg',
]
const srcList = []
const Tabs = ref([
{
label: '订单列表',
@ -1785,6 +1781,7 @@ const selectable = (row, index) => {
};
//
const newlyAdded = val => {
TcTemp.value=[];//
let menData = menuDataB1.value.slice(0, -1); //menuDataB1.value
menuDataB.value = menData; //
dialogBatchDelete.value = true; //
@ -1820,6 +1817,16 @@ const addedSubmission = val => {
ConfirmationInformation.value = true; //
};
const qsselectAll=(select)=>{
console.log(select,'商品全选');
sptemp.value=select
}
const qsselectChange=(select)=>{
console.log(select,'商品单选');
sptemp.value=select
}
//
const cancellation = val => {
if (!Array.isArray(val)) {
@ -1849,7 +1856,7 @@ const cancellation = val => {
ZcBtnDis.value = true; //使
//
TcData.value = []; //
TcTemp.value = []; //
ZCTableData.value = []; //
}
});
};
@ -1858,7 +1865,7 @@ const cancellation = val => {
const BatchDelete = row => {
ElMessageBox.confirm('是否取消包件数?')
.then(() => {
cancellation(TcTemp.value);
cancellation(ZCTableData.value);
})
.catch(() => {
// catch error
@ -1868,6 +1875,7 @@ const BatchDelete = row => {
const TzClose = () => {
menuDataB.value = menuDataB1.value; //
TcZcInput.value = {}; //
};
//
const DeleteEvent = row => {
@ -1888,14 +1896,14 @@ const DataSelectAll = (select, val) => {
});
ZcBtnDis.value = false; //
}
TcTemp.value = select; //
ZCTableData.value = select; //
console.log(select, val);
};
//
const ZcSelectChange = (select, val) => {
val.checkbox = !val.checkbox;
TcTemp.value = select; //
if (select.length > 1) {
ZCTableData.value = select; //
if (select.length > 0) {
ZcBtnDis.value = false; //使
} else {
ZcBtnDis.value = true; //
@ -2075,7 +2083,7 @@ function InventoryList() {
}
//
const tabClick = val => {
TcTemp.value=[];//
sptemp.value=[];//
switch (val.props.name) {
case '0':
console.log(data.value, 'datavalue');
@ -2104,14 +2112,13 @@ const valueAddedServices = val => {
TabTitle.value[1].value = '暂无数据'; //
TabTitle.value[2].value = '暂无数据'; //
TabTitle.value[3].value = '暂无数据'; //
editLoading.value = true; //
ZCeditLoading.value = true; //
addvalueInfoList({
addvalueId: val,
signforId: RouterId.value,
reservationId: RouterReservationId.value,
}).then(res => {
editLoading.value = false; //
editLoading.value = false; //
ZCeditLoading.value = false; //
console.log(res, '增值服务上楼的返回值');
if (res.data.data) {
if (res.data.data.addvalueDetailId) {
@ -2140,11 +2147,12 @@ const ServiceChange = val => {
};
//
const TitleBarSwitch = data => {
ZCTableData.value=[];//
TcServices.value = data.props.label; //
TcIndex.value = Number(data.props.name); //tab
TcIndex.value++;
console.log(TcIndex.value, '当前的tab下标');
editLoading.value = true; //
ZCeditLoading.value = true; //
if (data.props.name == 0) {
menuDataB.value = menuDataB1.value;
valueAddedServices(1);

4
vite.config.js

@ -23,10 +23,10 @@ export default ({ mode, command }) => {
// 新zyc
// target: 'http://192.168.6.116:8777',
// target: 'http://192.168.6.122:8777',
target: 'http://192.168.10.25:13000',
// target: 'http://192.168.10.25:13000',
// target: 'http://192.168.10.57:13000',
// target: 'http://192.168.6.122:8777',
// target: 'http://192.168.6.116:8777',
target: 'http://192.168.6.116:8777',
// tjj
// sst
// target: 'http://192.168.10.94:8888',

Loading…
Cancel
Save