|
@@ -8,8 +8,13 @@
|
|
<view class="icon"><text class="iconfont icon-dingwei1"></text></view>
|
|
<view class="icon"><text class="iconfont icon-dingwei1"></text></view>
|
|
<view class="nodata" v-if="!addressInfo">选择联系人地址</view>
|
|
<view class="nodata" v-if="!addressInfo">选择联系人地址</view>
|
|
<view class="hasdata" v-else>
|
|
<view class="hasdata" v-else>
|
|
- <view class="name">{{addressInfo.name}}<text>{{addressInfo.phone}}</text></view>
|
|
|
|
- <view class="address ellipsis-2">{{addressInfo.province}}{{addressInfo.city}}{{addressInfo.area}}{{addressInfo.street}}{{addressInfo.address}}{{addressInfo.houseNo}}</view>
|
|
|
|
|
|
+ <view class="name"
|
|
|
|
+ >{{ addressInfo.name }}<text>{{ addressInfo.phone }}</text></view
|
|
|
|
+ >
|
|
|
|
+ <view class="address ellipsis-2"
|
|
|
|
+ >{{ addressInfo.province }}{{ addressInfo.city }}{{ addressInfo.area }}{{ addressInfo.street
|
|
|
|
+ }}{{ addressInfo.address }}{{ addressInfo.houseNo }}</view
|
|
|
|
+ >
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<text class="right iconfont icon-jinru"></text>
|
|
<text class="right iconfont icon-jinru"></text>
|
|
@@ -20,12 +25,12 @@
|
|
<view class="common-title">服务信息</view>
|
|
<view class="common-title">服务信息</view>
|
|
<view class="item">
|
|
<view class="item">
|
|
<view class="label"><text>*</text>工单类型</view>
|
|
<view class="label"><text>*</text>工单类型</view>
|
|
- <view class="value">{{typeName}}</view>
|
|
|
|
|
|
+ <view class="value">{{ typeName }}</view>
|
|
</view>
|
|
</view>
|
|
<view class="item" v-if="isWorkerUser">
|
|
<view class="item" v-if="isWorkerUser">
|
|
<view class="label"><text>*</text>所属网点</view>
|
|
<view class="label"><text>*</text>所属网点</view>
|
|
<view class="picker" @tap="isShowWebsitDialog = true">
|
|
<view class="picker" @tap="isShowWebsitDialog = true">
|
|
- <text class="value" v-if="websit">{{websit.name}}</text>
|
|
|
|
|
|
+ <text class="value" v-if="websit">{{ websit.name }}</text>
|
|
<text class="placeholder" v-else>请选择</text>
|
|
<text class="placeholder" v-else>请选择</text>
|
|
<text class="iconfont icon-jinru"></text>
|
|
<text class="iconfont icon-jinru"></text>
|
|
</view>
|
|
</view>
|
|
@@ -33,7 +38,7 @@
|
|
<view class="item">
|
|
<view class="item">
|
|
<view class="label"><text>*</text>预约上门时间</view>
|
|
<view class="label"><text>*</text>预约上门时间</view>
|
|
<view class="picker" @tap="isShowDatePicker = true">
|
|
<view class="picker" @tap="isShowDatePicker = true">
|
|
- <text class="value" v-if="date">{{date}}</text>
|
|
|
|
|
|
+ <text class="value" v-if="date">{{ date }}</text>
|
|
<text class="placeholder" v-else>请选择</text>
|
|
<text class="placeholder" v-else>请选择</text>
|
|
<text class="iconfont icon-jinru"></text>
|
|
<text class="iconfont icon-jinru"></text>
|
|
</view>
|
|
</view>
|
|
@@ -43,21 +48,23 @@
|
|
<view class="product-container card">
|
|
<view class="product-container card">
|
|
<view class="title">
|
|
<view class="title">
|
|
<view class="common-title"><text>*</text>产品信息</view>
|
|
<view class="common-title"><text>*</text>产品信息</view>
|
|
- <view class="right" @tap="toChooseProduct"><u-icon name="plus-circle" color="#3D8FFD" size="18"></u-icon>添加</view>
|
|
|
|
|
|
+ <view class="right" @tap="toChooseProduct"
|
|
|
|
+ ><u-icon name="plus-circle" color="#3D8FFD" size="18"></u-icon>添加</view
|
|
|
|
+ >
|
|
</view>
|
|
</view>
|
|
<view class="list">
|
|
<view class="list">
|
|
<view class="item" v-for="(item, index) in productList" :key="index">
|
|
<view class="item" v-for="(item, index) in productList" :key="index">
|
|
<image :src="item.imgUrl" mode="aspectFill"></image>
|
|
<image :src="item.imgUrl" mode="aspectFill"></image>
|
|
<view class="main">
|
|
<view class="main">
|
|
- <view class="name">{{item.smallName}}</view>
|
|
|
|
|
|
+ <view class="name">{{ item.smallName }}</view>
|
|
<view class="tags">
|
|
<view class="tags">
|
|
- <view class="it">{{item.brandName}}</view>
|
|
|
|
|
|
+ <view class="it">{{ item.brandName }}</view>
|
|
</view>
|
|
</view>
|
|
<u-number-box min="1" v-model="item.num">
|
|
<u-number-box min="1" v-model="item.num">
|
|
<view slot="minus" class="ctrl">
|
|
<view slot="minus" class="ctrl">
|
|
<u-icon name="minus" color="#FFFFFF" size="10"></u-icon>
|
|
<u-icon name="minus" color="#FFFFFF" size="10"></u-icon>
|
|
</view>
|
|
</view>
|
|
- <text slot="input" class="input">{{item.num}}</text>
|
|
|
|
|
|
+ <text slot="input" class="input">{{ item.num }}</text>
|
|
<view slot="plus" class="ctrl">
|
|
<view slot="plus" class="ctrl">
|
|
<u-icon name="plus" color="#FFFFFF" size="10"></u-icon>
|
|
<u-icon name="plus" color="#FFFFFF" size="10"></u-icon>
|
|
</view>
|
|
</view>
|
|
@@ -77,7 +84,7 @@
|
|
|
|
|
|
<template slot="footer">
|
|
<template slot="footer">
|
|
<view class="footer-btn-group">
|
|
<view class="footer-btn-group">
|
|
- <u-button text="提交服务单" type="primary" @click="submitData"></u-button>
|
|
|
|
|
|
+ <u-button text="提交服务单" type="primary" @click="submitData"></u-button>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
@@ -90,7 +97,8 @@
|
|
:list="websitList"
|
|
:list="websitList"
|
|
:keyName="'name'"
|
|
:keyName="'name'"
|
|
@cancel="isShowWebsitDialog = false"
|
|
@cancel="isShowWebsitDialog = false"
|
|
- @confirm="confirmWebsitDialog">
|
|
|
|
|
|
+ @confirm="confirmWebsitDialog"
|
|
|
|
+ >
|
|
</zjDialogPicker>
|
|
</zjDialogPicker>
|
|
|
|
|
|
<u-datetime-picker
|
|
<u-datetime-picker
|
|
@@ -107,7 +115,7 @@
|
|
</template>
|
|
</template>
|
|
|
|
|
|
<script>
|
|
<script>
|
|
-import zjDialogPicker from "@/components/zj-dialog/zj-dialog-picker.vue";
|
|
|
|
|
|
+import zjDialogPicker from '@/components/zj-dialog/zj-dialog-picker.vue'
|
|
|
|
|
|
export default {
|
|
export default {
|
|
components: {
|
|
components: {
|
|
@@ -130,45 +138,45 @@ export default {
|
|
|
|
|
|
productList: [],
|
|
productList: [],
|
|
|
|
|
|
- remark: '',
|
|
|
|
|
|
+ remark: ''
|
|
}
|
|
}
|
|
},
|
|
},
|
|
|
|
|
|
- computed:{
|
|
|
|
- isWorkerUser() { // 是否师傅
|
|
|
|
- return this.userInfo && this.userInfo.type === 'WORKER';
|
|
|
|
- },
|
|
|
|
|
|
+ computed: {
|
|
|
|
+ isWorkerUser() {
|
|
|
|
+ // 是否师傅
|
|
|
|
+ return this.userInfo && this.userInfo.type === 'WORKER'
|
|
|
|
+ }
|
|
},
|
|
},
|
|
|
|
|
|
- async onLoad({typeId, typeName}) {
|
|
|
|
- this.typeId = typeId;
|
|
|
|
- this.typeName = typeName;
|
|
|
|
- this.getWebsitList();
|
|
|
|
|
|
+ async onLoad({ typeId, typeName }) {
|
|
|
|
+ this.typeId = typeId
|
|
|
|
+ this.typeName = typeName
|
|
|
|
+ this.getWebsitList()
|
|
|
|
|
|
- this.userInfo = await this.$getUserInfo();
|
|
|
|
|
|
+ this.userInfo = await this.$getUserInfo()
|
|
|
|
|
|
// 接收地址信息
|
|
// 接收地址信息
|
|
this.crossPage.$on('chooseAddress', result => {
|
|
this.crossPage.$on('chooseAddress', result => {
|
|
- this.addressInfo = result;
|
|
|
|
|
|
+ this.addressInfo = result
|
|
})
|
|
})
|
|
// 接收产品分类
|
|
// 接收产品分类
|
|
this.crossPage.$on('chooseClassify', result => {
|
|
this.crossPage.$on('chooseClassify', result => {
|
|
- let index = this.productList.findIndex((item) => item.smallId == result.smallId && item.brandId == result.brandId);
|
|
|
|
|
|
+ let index = this.productList.findIndex(item => item.smallId == result.smallId && item.brandId == result.brandId)
|
|
if (index !== -1) {
|
|
if (index !== -1) {
|
|
- this.productList.splice(index, 1, result);
|
|
|
|
|
|
+ this.productList.splice(index, 1, result)
|
|
} else {
|
|
} else {
|
|
- this.productList.push(result);
|
|
|
|
|
|
+ this.productList.push(result)
|
|
}
|
|
}
|
|
})
|
|
})
|
|
},
|
|
},
|
|
|
|
|
|
onUnload() {
|
|
onUnload() {
|
|
- this.crossPage.$off('chooseAddress');
|
|
|
|
- this.crossPage.$off('chooseClassify');
|
|
|
|
|
|
+ this.crossPage.$off('chooseAddress')
|
|
|
|
+ this.crossPage.$off('chooseClassify')
|
|
},
|
|
},
|
|
|
|
|
|
methods: {
|
|
methods: {
|
|
-
|
|
|
|
formatter(type, value) {
|
|
formatter(type, value) {
|
|
if (type === 'year') {
|
|
if (type === 'year') {
|
|
return `${value}年`
|
|
return `${value}年`
|
|
@@ -190,15 +198,14 @@ export default {
|
|
},
|
|
},
|
|
|
|
|
|
getWebsitList() {
|
|
getWebsitList() {
|
|
- this.$api.get('/user/apply/websit')
|
|
|
|
- .then(res => {
|
|
|
|
- this.websitList = res.data;
|
|
|
|
|
|
+ this.$api.get('/user/apply/websit').then(res => {
|
|
|
|
+ this.websitList = res.data
|
|
})
|
|
})
|
|
},
|
|
},
|
|
|
|
|
|
confirmWebsitDialog(e) {
|
|
confirmWebsitDialog(e) {
|
|
- this.websit = this.websitList[e[0]];
|
|
|
|
- this.isShowWebsitDialog = false;
|
|
|
|
|
|
+ this.websit = this.websitList[e[0]]
|
|
|
|
+ this.isShowWebsitDialog = false
|
|
},
|
|
},
|
|
|
|
|
|
toChooseProduct() {
|
|
toChooseProduct() {
|
|
@@ -210,51 +217,58 @@ export default {
|
|
deleteProduct(item, index) {
|
|
deleteProduct(item, index) {
|
|
this.$modal({
|
|
this.$modal({
|
|
content: `确定删除${item.smallName}吗?`
|
|
content: `确定删除${item.smallName}吗?`
|
|
- }).then(() => {
|
|
|
|
- this.productList.splice(index, 1);
|
|
|
|
- }).catch(() => {})
|
|
|
|
|
|
+ })
|
|
|
|
+ .then(() => {
|
|
|
|
+ this.productList.splice(index, 1)
|
|
|
|
+ })
|
|
|
|
+ .catch(() => {})
|
|
},
|
|
},
|
|
|
|
|
|
confirmDate(e) {
|
|
confirmDate(e) {
|
|
- this.isShowDatePicker = false;
|
|
|
|
- let time = new Date(e.value);
|
|
|
|
- let y = time.getFullYear();
|
|
|
|
- let m = (time.getMonth()+1) < 10 ? '0' + (time.getMonth()+1) : time.getMonth()+1;
|
|
|
|
- let d = (time.getDate()) < 10 ? '0' + (time.getDate()) : time.getDate();
|
|
|
|
- let hh = (time.getHours()) < 10 ? '0' + (time.getHours()) : time.getHours();
|
|
|
|
- let mm = (time.getMinutes()) < 10 ? '0' + (time.getMinutes()) : time.getMinutes();
|
|
|
|
- let ss = (time.getSeconds()) < 10 ? '0' + (time.getSeconds()) : time.getSeconds();
|
|
|
|
- this.date = `${y}-${m}-${d}`;
|
|
|
|
|
|
+ this.isShowDatePicker = false
|
|
|
|
+ let time = new Date(e.value)
|
|
|
|
+ let y = time.getFullYear()
|
|
|
|
+ let m = time.getMonth() + 1 < 10 ? '0' + (time.getMonth() + 1) : time.getMonth() + 1
|
|
|
|
+ let d = time.getDate() < 10 ? '0' + time.getDate() : time.getDate()
|
|
|
|
+ let hh = time.getHours() < 10 ? '0' + time.getHours() : time.getHours()
|
|
|
|
+ let mm = time.getMinutes() < 10 ? '0' + time.getMinutes() : time.getMinutes()
|
|
|
|
+ let ss = time.getSeconds() < 10 ? '0' + time.getSeconds() : time.getSeconds()
|
|
|
|
+ this.date = `${y}-${m}-${d}`
|
|
},
|
|
},
|
|
|
|
|
|
submitData() {
|
|
submitData() {
|
|
- if(!this.addressInfo) return this.$toast('请选择客户信息');
|
|
|
|
- if(!this.websit && this.isWorkerUser) return this.$toast('请选择所属网点');
|
|
|
|
- if(!this.date) return this.$toast('请选择预约上门时间');
|
|
|
|
- if(this.productList.length < 1) return this.$toast('请添加产品信息');
|
|
|
|
- if(this.typeName.indexOf('维修') >= 0 && !this.remark) return this.$toast('请填写故障描述');
|
|
|
|
|
|
+ if (!this.addressInfo) return this.$toast('请选择客户信息')
|
|
|
|
+ if (!this.websit && this.isWorkerUser) return this.$toast('请选择所属网点')
|
|
|
|
+ if (!this.date) return this.$toast('请选择预约上门时间')
|
|
|
|
+ if (this.productList.length < 1) return this.$toast('请添加产品信息')
|
|
|
|
+ if (this.typeName.indexOf('维修') >= 0 && !this.remark) return this.$toast('请填写故障描述')
|
|
|
|
|
|
- this.$api.postJson('/pg/order/base/save', {
|
|
|
|
- orderSmallType: this.typeId,
|
|
|
|
- userAddressId: this.addressInfo.userAddressId,
|
|
|
|
- websitId: this.websit ? this.websit.websitId : '',
|
|
|
|
- appointmentTime: this.date + ' 00:00:00',
|
|
|
|
- orderProducts: this.productList,
|
|
|
|
- remark: this.remark,
|
|
|
|
- }).then(res => {
|
|
|
|
- this.$successToast();
|
|
|
|
- if(this.isWorkerUser) {
|
|
|
|
- this.$navToPage({
|
|
|
|
- url: `/packageWorkorder/pages/orderList`
|
|
|
|
- }, 'redirectTo')
|
|
|
|
- }else {
|
|
|
|
- this.$navToPage({
|
|
|
|
- url: `/packageWorkorder/pages/userWorkorderList`
|
|
|
|
- })
|
|
|
|
- }
|
|
|
|
- })
|
|
|
|
- },
|
|
|
|
- },
|
|
|
|
|
|
+ this.$api
|
|
|
|
+ .postJson('/pg/order/base/save', {
|
|
|
|
+ orderSmallType: this.typeId,
|
|
|
|
+ userAddressId: this.addressInfo.userAddressId,
|
|
|
|
+ websitId: this.websit ? this.websit.websitId : '',
|
|
|
|
+ appointmentTime: this.date + ' 00:00:00',
|
|
|
|
+ orderProducts: this.productList,
|
|
|
|
+ remark: this.remark
|
|
|
|
+ })
|
|
|
|
+ .then(res => {
|
|
|
|
+ this.$successToast()
|
|
|
|
+ if (this.isWorkerUser) {
|
|
|
|
+ this.$navToPage(
|
|
|
|
+ {
|
|
|
|
+ url: `/packageWorkorder/pages/orderList`
|
|
|
|
+ },
|
|
|
|
+ 'redirectTo'
|
|
|
|
+ )
|
|
|
|
+ } else {
|
|
|
|
+ this.$navToPage({
|
|
|
|
+ url: `/packageWorkorder/pages/userWorkorderList`
|
|
|
|
+ })
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ }
|
|
|
|
+ }
|
|
}
|
|
}
|
|
</script>
|
|
</script>
|
|
|
|
|
|
@@ -396,7 +410,7 @@ export default {
|
|
.it {
|
|
.it {
|
|
font-size: 24rpx;
|
|
font-size: 24rpx;
|
|
color: $theme-color;
|
|
color: $theme-color;
|
|
- background: rgba($color: $theme-color, $alpha: .3);
|
|
|
|
|
|
+ background: rgba($color: $theme-color, $alpha: 0.3);
|
|
padding: 8rpx 12rpx;
|
|
padding: 8rpx 12rpx;
|
|
border-radius: 8rpx;
|
|
border-radius: 8rpx;
|
|
}
|
|
}
|