'优化'
This commit is contained in:
parent
2413749137
commit
f371c2c9e0
@ -191,4 +191,6 @@ export const cityarealist = (data, callback) => post('api/recover/area/cityareal
|
|||||||
export const createRecharge = (data, callback) => post('api/recover/recharge/createRecharge', data, callback);
|
export const createRecharge = (data, callback) => post('api/recover/recharge/createRecharge', data, callback);
|
||||||
export const statistics = (data, callback) => post('api/recover/personmoney/statistics', data, callback);
|
export const statistics = (data, callback) => post('api/recover/personmoney/statistics', data, callback);
|
||||||
export const createPayment = (data, callback) => post('api/recover/person/createPayment', data, callback);
|
export const createPayment = (data, callback) => post('api/recover/person/createPayment', data, callback);
|
||||||
|
export const reassignOrder = (data, callback) => post('api/recover/order/reassignOrder', data, callback);
|
||||||
|
export const smsCode = (data, callback) => post('api/recover/person/send', data, callback);
|
||||||
|
|
||||||
|
|||||||
@ -101,7 +101,7 @@
|
|||||||
<view v-for="item in tabAll" class="item" :class="[tabCur==item.id?'on':'']" @click="selectTab(item.id)">
|
<view v-for="item in tabAll" class="item" :class="[tabCur==item.id?'on':'']" @click="selectTab(item.id)">
|
||||||
{{item.name}}
|
{{item.name}}
|
||||||
</view>
|
</view>
|
||||||
<view class="orderText">改派订单</view>
|
<!-- <view class="orderText">改派订单</view> -->
|
||||||
</view>
|
</view>
|
||||||
<view class="navbar2 flex-around">
|
<view class="navbar2 flex-around">
|
||||||
<view v-for="item in tabs" class="navItem" :class="[tabCur==item.id?'navItemCheck':'']" @click="selectTab(item.id)">
|
<view v-for="item in tabs" class="navItem" :class="[tabCur==item.id?'navItemCheck':'']" @click="selectTab(item.id)">
|
||||||
@ -145,9 +145,9 @@
|
|||||||
<view class="flex-between userBox">
|
<view class="flex-between userBox">
|
||||||
<view class="flex-center">
|
<view class="flex-center">
|
||||||
<image src="/static/img/39.png" class="userImg"></image>
|
<image src="/static/img/39.png" class="userImg"></image>
|
||||||
<view>{{item.accept_name}}</view>
|
<view>{{item.person_name}}</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="flex-center contactText" @click="tellPhone(item.accept_mobile)">
|
<view class="flex-center contactText" @click.stop="callPhone(item.person_mobile)">
|
||||||
<u-icon name="phone" color="#333333" size="16" style="margin-right: 7rpx;"></u-icon>
|
<u-icon name="phone" color="#333333" size="16" style="margin-right: 7rpx;"></u-icon>
|
||||||
联系TA
|
联系TA
|
||||||
</view>
|
</view>
|
||||||
@ -157,13 +157,13 @@
|
|||||||
<view class="flex-center statusText1" v-if="item.status==7">
|
<view class="flex-center statusText1" v-if="item.status==7">
|
||||||
期望时间:{{item.order_time_text}}
|
期望时间:{{item.order_time_text}}
|
||||||
</view>
|
</view>
|
||||||
<view v-else></view>
|
<view v-if="item.status!=7 && item.status!=2"></view>
|
||||||
<view class="flex-center statusText1" v-show="item.status==2">
|
<view class="flex-center statusText1" v-show="item.status==2">
|
||||||
<view @click.stop="moreShow=!moreShow">更多操作</view>
|
<view @click.stop="moreShow=!moreShow">更多操作</view>
|
||||||
<view class="floatBtnBox" v-show="moreShow">
|
<view class="floatBtnBox" v-show="moreShow">
|
||||||
<view class="floatBtnEle" @click.stop="cancleClickOrder(item.id)">取消订单</view>
|
<view class="floatBtnEle" @click.stop="cancleClickOrder(item.id)">取消订单</view>
|
||||||
<view class="btnLine"></view>
|
<view class="btnLine"></view>
|
||||||
<view class="floatBtnEle" @click.stop="changeClickOrder">改派订单</view>
|
<view class="floatBtnEle" @click.stop="changeClickOrder(item.id)">改派订单</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="flex-center">
|
<view class="flex-center">
|
||||||
@ -330,7 +330,7 @@
|
|||||||
<u--textarea v-model="notesText" placeholder="请填写改派原因" class="pop4Input" style="background: #EFEFEF;border: none"></u--textarea>
|
<u--textarea v-model="notesText" placeholder="请填写改派原因" class="pop4Input" style="background: #EFEFEF;border: none"></u--textarea>
|
||||||
<view class="flex-center" style="margin-top: 55rpx;">
|
<view class="flex-center" style="margin-top: 55rpx;">
|
||||||
<view class="pop4Btn1" @click="pop4Show = false">取消改派</view>
|
<view class="pop4Btn1" @click="pop4Show = false">取消改派</view>
|
||||||
<view class="pop4Btn2">确认改派</view>
|
<view class="pop4Btn2" @click="conformChangeOrder">确认改派</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</u-popup>
|
</u-popup>
|
||||||
@ -385,10 +385,10 @@
|
|||||||
// id: 0,
|
// id: 0,
|
||||||
// name: '全部'
|
// name: '全部'
|
||||||
// },
|
// },
|
||||||
{
|
// {
|
||||||
id: 1,
|
// id: 1,
|
||||||
name: '待接单'
|
// name: '待接单'
|
||||||
},
|
// },
|
||||||
{
|
{
|
||||||
id: 7,
|
id: 7,
|
||||||
name: '已接单'
|
name: '已接单'
|
||||||
@ -470,6 +470,7 @@
|
|||||||
uni.hideTabBar({
|
uni.hideTabBar({
|
||||||
fail: () => {},
|
fail: () => {},
|
||||||
});
|
});
|
||||||
|
this.initFun()
|
||||||
// this.getdata()
|
// this.getdata()
|
||||||
// this.config()
|
// this.config()
|
||||||
// this.qiangdanlist()
|
// this.qiangdanlist()
|
||||||
@ -478,16 +479,16 @@
|
|||||||
},
|
},
|
||||||
onLoad() {
|
onLoad() {
|
||||||
this.getauth()
|
this.getauth()
|
||||||
let _this = this;
|
// let _this = this;
|
||||||
util.getAddress(function(res){
|
// util.getAddress(function(res){
|
||||||
_this.cityText = res.city;
|
// _this.cityText = res.city;
|
||||||
_this.longitude = res.longitude;
|
// _this.longitude = res.longitude;
|
||||||
_this.latitude = res.latitude;
|
// _this.latitude = res.latitude;
|
||||||
console.log(res,'kkkkkkkkk+++')
|
// console.log(res,'kkkkkkkkk+++')
|
||||||
_this.qiangdanlist()
|
// _this.qiangdanlist()
|
||||||
// uni.setStorageSync('city_name',res.city)
|
// // uni.setStorageSync('city_name',res.city)
|
||||||
})
|
// })
|
||||||
this.recycleOrderList()
|
// this.recycleOrderList()
|
||||||
// this.getdata()
|
// this.getdata()
|
||||||
// this.getquestion()
|
// this.getquestion()
|
||||||
// this.recycleOrderList()
|
// this.recycleOrderList()
|
||||||
@ -531,6 +532,46 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
callPhone(phoneNumber) {
|
||||||
|
uni.makePhoneCall({
|
||||||
|
phoneNumber: phoneNumber, // 必需,电话号码字符串
|
||||||
|
success: (res) => {
|
||||||
|
console.log("拨号成功", res);
|
||||||
|
},
|
||||||
|
fail: (err) => {
|
||||||
|
console.error("拨号失败", err);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
initFun(){
|
||||||
|
let _this = this;
|
||||||
|
if(this.longitude){
|
||||||
|
util.getAddress(function(res){
|
||||||
|
_this.cityText = res.city;
|
||||||
|
_this.longitude = res.longitude;
|
||||||
|
_this.latitude = res.latitude;
|
||||||
|
console.log(res,'kkkkkkkkk+++')
|
||||||
|
_this.qiangdanlist()
|
||||||
|
// uni.setStorageSync('city_name',res.city)
|
||||||
|
})
|
||||||
|
this.recycleOrderList()
|
||||||
|
}else{
|
||||||
|
_this.qiangdanlist()
|
||||||
|
this.recycleOrderList()
|
||||||
|
}
|
||||||
|
},
|
||||||
|
conformChangeOrder(){
|
||||||
|
// var _this = this;
|
||||||
|
// _this.$api.reassignOrder({},res=>{
|
||||||
|
// if(res.code == '1'){
|
||||||
|
// uni.showToast({ title: res.msg, icon: 'success' })
|
||||||
|
|
||||||
|
|
||||||
|
// }else{
|
||||||
|
// uni.showToast({ title: res.msg, icon: 'none' })
|
||||||
|
// }
|
||||||
|
// })
|
||||||
|
},
|
||||||
toPay(item){
|
toPay(item){
|
||||||
uni.setStorageSync('orderDetail', item);
|
uni.setStorageSync('orderDetail', item);
|
||||||
uni.navigateTo({
|
uni.navigateTo({
|
||||||
@ -723,9 +764,10 @@
|
|||||||
this.cancleShow = true
|
this.cancleShow = true
|
||||||
this.moreShow = false
|
this.moreShow = false
|
||||||
},
|
},
|
||||||
changeClickOrder(){
|
changeClickOrder(id){
|
||||||
this.pop4Show = true
|
this.pop4Show = true
|
||||||
this.moreShow = false
|
this.moreShow = false
|
||||||
|
this.orderId = id
|
||||||
},
|
},
|
||||||
selectTab(id){
|
selectTab(id){
|
||||||
this.page=1
|
this.page=1
|
||||||
|
|||||||
@ -18,7 +18,7 @@
|
|||||||
<view class="inputBox">
|
<view class="inputBox">
|
||||||
<image :src="path+'/assets/img/icon/code.png'" class="inputIcon"></image>
|
<image :src="path+'/assets/img/icon/code.png'" class="inputIcon"></image>
|
||||||
<input v-model="password" type="text" class="inputEle" placeholder="请输入验证码" />
|
<input v-model="password" type="text" class="inputEle" placeholder="请输入验证码" />
|
||||||
<view class="codeBtn flex-center">发送验证码</view>
|
<view class="codeBtn flex-center" @click="smsCode">发送验证码</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="protBox">
|
<view class="protBox">
|
||||||
<image v-if="!isRead" @click="selectRead" :src="path+'/assets/img/icon/noSelected.png'"></image>
|
<image v-if="!isRead" @click="selectRead" :src="path+'/assets/img/icon/noSelected.png'"></image>
|
||||||
@ -62,6 +62,22 @@ export default {
|
|||||||
|
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
smsCode(){
|
||||||
|
this.$api.smsCode({
|
||||||
|
mobile: this.mobile
|
||||||
|
}, res => {
|
||||||
|
if (res.code == "1") {
|
||||||
|
console.log(res,'登录成功')
|
||||||
|
uni.setStorageSync('userToken', res.data.token);
|
||||||
|
uni.setStorageSync('userInfo', res.data.userInfo);
|
||||||
|
uni.switchTab({
|
||||||
|
url:'/pages/index/index'
|
||||||
|
})
|
||||||
|
}else{
|
||||||
|
uni.showToast({ title: res.msg , icon: 'none'})
|
||||||
|
}
|
||||||
|
})
|
||||||
|
},
|
||||||
getAddress(){
|
getAddress(){
|
||||||
let _this = this;
|
let _this = this;
|
||||||
console.log('dddddd333d')
|
console.log('dddddd333d')
|
||||||
|
|||||||
@ -100,6 +100,7 @@
|
|||||||
this.nowYear = date.getFullYear();
|
this.nowYear = date.getFullYear();
|
||||||
this.nowMonth = date.getMonth() + 1; // 月份是从0开始的,所以要加1
|
this.nowMonth = date.getMonth() + 1; // 月份是从0开始的,所以要加1
|
||||||
this.showDate = false
|
this.showDate = false
|
||||||
|
this.getPriceList();
|
||||||
},
|
},
|
||||||
getPriceList(){
|
getPriceList(){
|
||||||
var _this = this;
|
var _this = this;
|
||||||
|
|||||||
@ -9,7 +9,7 @@
|
|||||||
<view>货物信息</view>
|
<view>货物信息</view>
|
||||||
<view class="goodsInfo flex-between">
|
<view class="goodsInfo flex-between">
|
||||||
<view class="infoLeft flex-center">
|
<view class="infoLeft flex-center">
|
||||||
<image src="/static/img/40.png" class="goodsImg"></image>
|
<image :src="path+orderInfo.type_image" class="goodsImg"></image>
|
||||||
<view style="margin-left: 22rpx;">
|
<view style="margin-left: 22rpx;">
|
||||||
<view class="text1">回收品类</view>
|
<view class="text1">回收品类</view>
|
||||||
<view class="text2">{{orderInfo.type_name}}</view>
|
<view class="text2">{{orderInfo.type_name}}</view>
|
||||||
@ -33,10 +33,10 @@
|
|||||||
|
|
||||||
<view class="specsBox flex-between">
|
<view class="specsBox flex-between">
|
||||||
<view class="flex-center">
|
<view class="flex-center">
|
||||||
<text class="specsText">规格:</text>
|
<text class="specsText">规格:{{deelData(orderInfo.spec_value)}}</text>
|
||||||
<u-icon name="arrow-right" color="#282F38" size="10"></u-icon>
|
<u-icon name="arrow-right" color="#282F38" size="10"></u-icon>
|
||||||
</view>
|
</view>
|
||||||
<view class="updateBtn">更改</view>
|
<!-- <view class="updateBtn">更改</view> -->
|
||||||
<!-- <text class="specsText">规格:</text>
|
<!-- <text class="specsText">规格:</text>
|
||||||
<text>{{deelData(orderInfo.spec_value)}}</text> -->
|
<text>{{deelData(orderInfo.spec_value)}}</text> -->
|
||||||
<!-- <text v-for="item in orderInfo.spec_value">{{item}}</text> -->
|
<!-- <text v-for="item in orderInfo.spec_value">{{item}}</text> -->
|
||||||
@ -60,7 +60,7 @@
|
|||||||
<text class="infoText1">{{orderInfo.person_name}}</text>
|
<text class="infoText1">{{orderInfo.person_name}}</text>
|
||||||
<text class="infoText2">{{orderInfo.person_mobile}}</text>
|
<text class="infoText2">{{orderInfo.person_mobile}}</text>
|
||||||
<view class="infoTip">平台已认证师傅资质,上门请校核是否本人上门</view>
|
<view class="infoTip">平台已认证师傅资质,上门请校核是否本人上门</view>
|
||||||
<view class="flex-center infoBtnBox" @click="callPhone(orderInfo.person_mobile)">
|
<view class="flex-center infoBtnBox" @click="callPhone(orderInfo.accept_mobile)">
|
||||||
<u-icon name="phone" color="#282F38" size="22" style="margin-right: 12rpx;margin-top: 5rpx;"></u-icon>
|
<u-icon name="phone" color="#282F38" size="22" style="margin-right: 12rpx;margin-top: 5rpx;"></u-icon>
|
||||||
联系师傅
|
联系师傅
|
||||||
</view>
|
</view>
|
||||||
@ -78,13 +78,13 @@
|
|||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="funBtnBox flex-between">
|
<view class="funBtnBox flex-between">
|
||||||
<view class="leftBtn flex-center">
|
<view class="leftBtn flex-center" @click="callPhone(orderInfo.accept_mobile)">
|
||||||
<image :src="path+'/assets/img/icon/phone2.png'" class="btnIcon"></image>
|
<image :src="path+'/assets/img/icon/phone2.png'" class="btnIcon"></image>
|
||||||
<text>联系用户</text>
|
<text>联系用户</text>
|
||||||
</view>
|
</view>
|
||||||
<view class="rightBtn flex-center">
|
<view class="rightBtn flex-center">
|
||||||
<image :src="path+'/assets/img/icon/send2.png'" class="btnIcon"></image>
|
<image :src="path+'/assets/img/icon/send2.png'" class="btnIcon"></image>
|
||||||
<text>联系用户</text>
|
<text>导航地址</text>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
@ -112,10 +112,10 @@
|
|||||||
<u-icon name="arrow-right" color="#333333" size="13"></u-icon>
|
<u-icon name="arrow-right" color="#333333" size="13"></u-icon>
|
||||||
</view>
|
</view>
|
||||||
</view> -->
|
</view> -->
|
||||||
<view class="flex-between">
|
<view class="flex-between" @click="selectTime">
|
||||||
<view class="infoDate3 flex-center">
|
<view class="infoDate3 flex-center">
|
||||||
<view>今日</view>
|
<view>今日</view>
|
||||||
<view style="margin-left: 28rpx;">09:00-11:00</view>
|
<view style="margin-left: 28rpx;">{{order_person_time}}</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="flex-center">
|
<view class="flex-center">
|
||||||
<u-icon name="arrow-right" color="#333333" size="13"></u-icon>
|
<u-icon name="arrow-right" color="#333333" size="13"></u-icon>
|
||||||
@ -233,22 +233,69 @@
|
|||||||
<view class="buttonType2 flex-center">上门签到</view>
|
<view class="buttonType2 flex-center">上门签到</view>
|
||||||
<!-- <view class="buttonType2 flex-center">去付款</view> -->
|
<!-- <view class="buttonType2 flex-center">去付款</view> -->
|
||||||
</view>
|
</view>
|
||||||
|
<appointTime ref="timeRef" @checkTime="checkTime"></appointTime>
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
import appointTime from '@/components/appointTime.vue';
|
||||||
export default {
|
export default {
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
order_id: '',
|
order_id: '',
|
||||||
orderInfo: {},
|
orderInfo: {},
|
||||||
|
order_person_time: ''
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
onLoad(e) {
|
onLoad(e) {
|
||||||
this.order_id = e.id;
|
this.order_id = e.id;
|
||||||
this.getOrderDetail();
|
this.getOrderDetail();
|
||||||
},
|
},
|
||||||
|
components: {
|
||||||
|
appointTime
|
||||||
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
checkTime(val){
|
||||||
|
console.log(val,'kkkkkkk')
|
||||||
|
let data = {
|
||||||
|
status: 2,
|
||||||
|
order_id: this.order_id,
|
||||||
|
order_person_time: val
|
||||||
|
}
|
||||||
|
this.$api.setorder(data,res=>{
|
||||||
|
if(res.code == '1'){
|
||||||
|
uni.showToast({ title: res.msg , icon: 'success' })
|
||||||
|
this.order_person_time = val;
|
||||||
|
// this.recycleOrderList()
|
||||||
|
// setTimeout(()=>{
|
||||||
|
// this.menuNum = 2
|
||||||
|
// },2000)
|
||||||
|
}else{
|
||||||
|
uni.showToast({ title: res.msg , icon: 'none' })
|
||||||
|
}
|
||||||
|
})
|
||||||
|
},
|
||||||
|
deelData(val){
|
||||||
|
console.log(val)
|
||||||
|
let str = ''
|
||||||
|
let index = 1
|
||||||
|
for(let key in val){
|
||||||
|
console.log(key)
|
||||||
|
if(index>1){
|
||||||
|
str += ' | ' + key+':'+val[key]
|
||||||
|
}else{
|
||||||
|
str += key+':'+val[key]
|
||||||
|
}
|
||||||
|
index++
|
||||||
|
}
|
||||||
|
console.log(str)
|
||||||
|
return str
|
||||||
|
},
|
||||||
|
selectTime(){
|
||||||
|
if(this.orderInfo.status == '1' || this.orderInfo.status == '7' || this.orderInfo.status == '2'){
|
||||||
|
this.$refs.timeRef.open()
|
||||||
|
}
|
||||||
|
},
|
||||||
callPhone(phoneNumber) {
|
callPhone(phoneNumber) {
|
||||||
uni.makePhoneCall({
|
uni.makePhoneCall({
|
||||||
phoneNumber: phoneNumber, // 必需,电话号码字符串
|
phoneNumber: phoneNumber, // 必需,电话号码字符串
|
||||||
@ -309,6 +356,7 @@ export default {
|
|||||||
if (res.code ==1 ) {
|
if (res.code ==1 ) {
|
||||||
let data = res.data.info
|
let data = res.data.info
|
||||||
_this.orderInfo = data;
|
_this.orderInfo = data;
|
||||||
|
_this.order_person_time = data.order_person_time;
|
||||||
} else {
|
} else {
|
||||||
uni.showToast({ title: res.msg , icon: 'none' })
|
uni.showToast({ title: res.msg , icon: 'none' })
|
||||||
}
|
}
|
||||||
|
|||||||
550
unpackage/dist/dev/app-plus/app-service.js
vendored
550
unpackage/dist/dev/app-plus/app-service.js
vendored
File diff suppressed because one or more lines are too long
458
unpackage/dist/dev/app-plus/app-view.js
vendored
458
unpackage/dist/dev/app-plus/app-view.js
vendored
@ -899,59 +899,52 @@ var render = function () {
|
|||||||
_c(
|
_c(
|
||||||
"uni-view",
|
"uni-view",
|
||||||
{ staticClass: _vm._$g(61, "sc"), attrs: { _i: 61 } },
|
{ staticClass: _vm._$g(61, "sc"), attrs: { _i: 61 } },
|
||||||
[
|
_vm._l(_vm._$g(62, "f"), function (item, $11, $21, $31) {
|
||||||
_vm._l(_vm._$g(62, "f"), function (item, $11, $21, $31) {
|
|
||||||
return _c(
|
|
||||||
"uni-view",
|
|
||||||
{
|
|
||||||
key: item,
|
|
||||||
staticClass: _vm._$g("62-" + $31, "sc"),
|
|
||||||
class: _vm._$g("62-" + $31, "c"),
|
|
||||||
attrs: { _i: "62-" + $31 },
|
|
||||||
on: {
|
|
||||||
click: function ($event) {
|
|
||||||
return _vm.$handleViewEvent($event)
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
[_vm._v(_vm._$g("62-" + $31, "t0-0"))]
|
|
||||||
)
|
|
||||||
}),
|
|
||||||
_c(
|
|
||||||
"uni-view",
|
|
||||||
{ staticClass: _vm._$g(63, "sc"), attrs: { _i: 63 } },
|
|
||||||
[_vm._v("改派订单")]
|
|
||||||
),
|
|
||||||
],
|
|
||||||
2
|
|
||||||
),
|
|
||||||
_c(
|
|
||||||
"uni-view",
|
|
||||||
{ staticClass: _vm._$g(64, "sc"), attrs: { _i: 64 } },
|
|
||||||
_vm._l(_vm._$g(65, "f"), function (item, $12, $22, $32) {
|
|
||||||
return _c(
|
return _c(
|
||||||
"uni-view",
|
"uni-view",
|
||||||
{
|
{
|
||||||
key: item,
|
key: item,
|
||||||
staticClass: _vm._$g("65-" + $32, "sc"),
|
staticClass: _vm._$g("62-" + $31, "sc"),
|
||||||
class: _vm._$g("65-" + $32, "c"),
|
class: _vm._$g("62-" + $31, "c"),
|
||||||
attrs: { _i: "65-" + $32 },
|
attrs: { _i: "62-" + $31 },
|
||||||
on: {
|
on: {
|
||||||
click: function ($event) {
|
click: function ($event) {
|
||||||
return _vm.$handleViewEvent($event)
|
return _vm.$handleViewEvent($event)
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
[_vm._v(_vm._$g("65-" + $32, "t0-0"))]
|
[_vm._v(_vm._$g("62-" + $31, "t0-0"))]
|
||||||
|
)
|
||||||
|
}),
|
||||||
|
1
|
||||||
|
),
|
||||||
|
_c(
|
||||||
|
"uni-view",
|
||||||
|
{ staticClass: _vm._$g(63, "sc"), attrs: { _i: 63 } },
|
||||||
|
_vm._l(_vm._$g(64, "f"), function (item, $12, $22, $32) {
|
||||||
|
return _c(
|
||||||
|
"uni-view",
|
||||||
|
{
|
||||||
|
key: item,
|
||||||
|
staticClass: _vm._$g("64-" + $32, "sc"),
|
||||||
|
class: _vm._$g("64-" + $32, "c"),
|
||||||
|
attrs: { _i: "64-" + $32 },
|
||||||
|
on: {
|
||||||
|
click: function ($event) {
|
||||||
|
return _vm.$handleViewEvent($event)
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
[_vm._v(_vm._$g("64-" + $32, "t0-0"))]
|
||||||
)
|
)
|
||||||
}),
|
}),
|
||||||
1
|
1
|
||||||
),
|
),
|
||||||
_c("uni-view", {
|
_c("uni-view", {
|
||||||
staticStyle: { height: "195rpx" },
|
staticStyle: { height: "195rpx" },
|
||||||
attrs: { _i: 66 },
|
attrs: { _i: 65 },
|
||||||
}),
|
}),
|
||||||
_vm._l(_vm._$g(67, "f"), function (item, $13, $23, $33) {
|
_vm._l(_vm._$g(66, "f"), function (item, $13, $23, $33) {
|
||||||
return _c(
|
return _c(
|
||||||
"uni-view",
|
"uni-view",
|
||||||
{
|
{
|
||||||
@ -959,13 +952,13 @@ var render = function () {
|
|||||||
{
|
{
|
||||||
name: "show",
|
name: "show",
|
||||||
rawName: "v-show",
|
rawName: "v-show",
|
||||||
value: _vm._$g("67-" + $33, "v-show"),
|
value: _vm._$g("66-" + $33, "v-show"),
|
||||||
expression: "_$g((\"67-\"+$33),'v-show')",
|
expression: "_$g((\"66-\"+$33),'v-show')",
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
key: item,
|
key: item,
|
||||||
staticClass: _vm._$g("67-" + $33, "sc"),
|
staticClass: _vm._$g("66-" + $33, "sc"),
|
||||||
attrs: { _i: "67-" + $33 },
|
attrs: { _i: "66-" + $33 },
|
||||||
on: {
|
on: {
|
||||||
click: function ($event) {
|
click: function ($event) {
|
||||||
return _vm.$handleViewEvent($event)
|
return _vm.$handleViewEvent($event)
|
||||||
@ -976,24 +969,24 @@ var render = function () {
|
|||||||
_c(
|
_c(
|
||||||
"uni-view",
|
"uni-view",
|
||||||
{
|
{
|
||||||
staticClass: _vm._$g("68-" + $33, "sc"),
|
staticClass: _vm._$g("67-" + $33, "sc"),
|
||||||
attrs: { _i: "68-" + $33 },
|
attrs: { _i: "67-" + $33 },
|
||||||
},
|
},
|
||||||
[
|
[
|
||||||
_c(
|
_c(
|
||||||
"uni-view",
|
"uni-view",
|
||||||
{
|
{
|
||||||
staticClass: _vm._$g("69-" + $33, "sc"),
|
staticClass: _vm._$g("68-" + $33, "sc"),
|
||||||
attrs: { _i: "69-" + $33 },
|
attrs: { _i: "68-" + $33 },
|
||||||
},
|
},
|
||||||
[
|
[
|
||||||
_c(
|
_c(
|
||||||
"uni-view",
|
"uni-view",
|
||||||
{
|
{
|
||||||
staticClass: _vm._$g("70-" + $33, "sc"),
|
staticClass: _vm._$g("69-" + $33, "sc"),
|
||||||
attrs: { _i: "70-" + $33 },
|
attrs: { _i: "69-" + $33 },
|
||||||
},
|
},
|
||||||
[_vm._v(_vm._$g("70-" + $33, "t0-0"))]
|
[_vm._v(_vm._$g("69-" + $33, "t0-0"))]
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
1
|
1
|
||||||
@ -1001,8 +994,8 @@ var render = function () {
|
|||||||
_c(
|
_c(
|
||||||
"uni-view",
|
"uni-view",
|
||||||
{
|
{
|
||||||
staticClass: _vm._$g("71-" + $33, "sc"),
|
staticClass: _vm._$g("70-" + $33, "sc"),
|
||||||
attrs: { _i: "71-" + $33 },
|
attrs: { _i: "70-" + $33 },
|
||||||
},
|
},
|
||||||
[_vm._v("1.5公里")]
|
[_vm._v("1.5公里")]
|
||||||
),
|
),
|
||||||
@ -1012,23 +1005,23 @@ var render = function () {
|
|||||||
_c(
|
_c(
|
||||||
"uni-view",
|
"uni-view",
|
||||||
{
|
{
|
||||||
staticClass: _vm._$g("72-" + $33, "sc"),
|
staticClass: _vm._$g("71-" + $33, "sc"),
|
||||||
attrs: { _i: "72-" + $33 },
|
attrs: { _i: "71-" + $33 },
|
||||||
},
|
},
|
||||||
[
|
[
|
||||||
_c(
|
_c(
|
||||||
"uni-view",
|
"uni-view",
|
||||||
{
|
{
|
||||||
staticClass: _vm._$g("73-" + $33, "sc"),
|
staticClass: _vm._$g("72-" + $33, "sc"),
|
||||||
attrs: { _i: "73-" + $33 },
|
attrs: { _i: "72-" + $33 },
|
||||||
},
|
},
|
||||||
[_vm._v("" + _vm._$g("73-" + $33, "t0-0"))]
|
[_vm._v("" + _vm._$g("72-" + $33, "t0-0"))]
|
||||||
),
|
),
|
||||||
_c(
|
_c(
|
||||||
"uni-view",
|
"uni-view",
|
||||||
{
|
{
|
||||||
staticClass: _vm._$g("74-" + $33, "sc"),
|
staticClass: _vm._$g("73-" + $33, "sc"),
|
||||||
attrs: { _i: "74-" + $33 },
|
attrs: { _i: "73-" + $33 },
|
||||||
},
|
},
|
||||||
[_vm._v("导航")]
|
[_vm._v("导航")]
|
||||||
),
|
),
|
||||||
@ -1038,44 +1031,44 @@ var render = function () {
|
|||||||
_c(
|
_c(
|
||||||
"uni-view",
|
"uni-view",
|
||||||
{
|
{
|
||||||
staticClass: _vm._$g("75-" + $33, "sc"),
|
staticClass: _vm._$g("74-" + $33, "sc"),
|
||||||
attrs: { _i: "75-" + $33 },
|
attrs: { _i: "74-" + $33 },
|
||||||
},
|
},
|
||||||
[
|
[
|
||||||
_c(
|
_c(
|
||||||
"uni-view",
|
"uni-view",
|
||||||
{
|
{
|
||||||
staticClass: _vm._$g("76-" + $33, "sc"),
|
staticClass: _vm._$g("75-" + $33, "sc"),
|
||||||
staticStyle: { width: "40%" },
|
staticStyle: { width: "40%" },
|
||||||
attrs: { _i: "76-" + $33 },
|
attrs: { _i: "75-" + $33 },
|
||||||
},
|
},
|
||||||
[
|
[
|
||||||
_c("v-uni-image", {
|
_c("v-uni-image", {
|
||||||
staticClass: _vm._$g("77-" + $33, "sc"),
|
staticClass: _vm._$g("76-" + $33, "sc"),
|
||||||
attrs: {
|
attrs: {
|
||||||
src: "/static/img/41.png",
|
src: "/static/img/41.png",
|
||||||
_i: "77-" + $33,
|
_i: "76-" + $33,
|
||||||
},
|
},
|
||||||
}),
|
}),
|
||||||
_c(
|
_c(
|
||||||
"uni-view",
|
"uni-view",
|
||||||
{ attrs: { _i: "78-" + $33 } },
|
{ attrs: { _i: "77-" + $33 } },
|
||||||
[
|
[
|
||||||
_c(
|
_c(
|
||||||
"uni-view",
|
"uni-view",
|
||||||
{
|
{
|
||||||
staticClass: _vm._$g("79-" + $33, "sc"),
|
staticClass: _vm._$g("78-" + $33, "sc"),
|
||||||
attrs: { _i: "79-" + $33 },
|
attrs: { _i: "78-" + $33 },
|
||||||
},
|
},
|
||||||
[_vm._v("回收品类")]
|
[_vm._v("回收品类")]
|
||||||
),
|
),
|
||||||
_c(
|
_c(
|
||||||
"uni-view",
|
"uni-view",
|
||||||
{
|
{
|
||||||
staticClass: _vm._$g("80-" + $33, "sc"),
|
staticClass: _vm._$g("79-" + $33, "sc"),
|
||||||
attrs: { _i: "80-" + $33 },
|
attrs: { _i: "79-" + $33 },
|
||||||
},
|
},
|
||||||
[_vm._v(_vm._$g("80-" + $33, "t0-0"))]
|
[_vm._v(_vm._$g("79-" + $33, "t0-0"))]
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
1
|
1
|
||||||
@ -1086,26 +1079,26 @@ var render = function () {
|
|||||||
_c(
|
_c(
|
||||||
"uni-view",
|
"uni-view",
|
||||||
{
|
{
|
||||||
staticClass: _vm._$g("81-" + $33, "sc"),
|
staticClass: _vm._$g("80-" + $33, "sc"),
|
||||||
staticStyle: { width: "20%" },
|
staticStyle: { width: "20%" },
|
||||||
attrs: { _i: "81-" + $33 },
|
attrs: { _i: "80-" + $33 },
|
||||||
},
|
},
|
||||||
[
|
[
|
||||||
_c(
|
_c(
|
||||||
"uni-view",
|
"uni-view",
|
||||||
{
|
{
|
||||||
staticClass: _vm._$g("82-" + $33, "sc"),
|
staticClass: _vm._$g("81-" + $33, "sc"),
|
||||||
attrs: { _i: "82-" + $33 },
|
attrs: { _i: "81-" + $33 },
|
||||||
},
|
},
|
||||||
[_vm._v("数量")]
|
[_vm._v("数量")]
|
||||||
),
|
),
|
||||||
_c(
|
_c(
|
||||||
"uni-view",
|
"uni-view",
|
||||||
{
|
{
|
||||||
staticClass: _vm._$g("83-" + $33, "sc"),
|
staticClass: _vm._$g("82-" + $33, "sc"),
|
||||||
attrs: { _i: "83-" + $33 },
|
attrs: { _i: "82-" + $33 },
|
||||||
},
|
},
|
||||||
[_vm._v("X" + _vm._$g("83-" + $33, "t0-0"))]
|
[_vm._v("X" + _vm._$g("82-" + $33, "t0-0"))]
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
1
|
1
|
||||||
@ -1113,41 +1106,41 @@ var render = function () {
|
|||||||
_c(
|
_c(
|
||||||
"uni-view",
|
"uni-view",
|
||||||
{
|
{
|
||||||
staticClass: _vm._$g("84-" + $33, "sc"),
|
staticClass: _vm._$g("83-" + $33, "sc"),
|
||||||
staticStyle: { width: "40%" },
|
staticStyle: { width: "40%" },
|
||||||
attrs: { _i: "84-" + $33 },
|
attrs: { _i: "83-" + $33 },
|
||||||
},
|
},
|
||||||
[
|
[
|
||||||
_c(
|
_c(
|
||||||
"uni-view",
|
"uni-view",
|
||||||
{
|
{
|
||||||
staticClass: _vm._$g("85-" + $33, "sc"),
|
staticClass: _vm._$g("84-" + $33, "sc"),
|
||||||
attrs: { _i: "85-" + $33 },
|
attrs: { _i: "84-" + $33 },
|
||||||
},
|
},
|
||||||
[_vm._v("预估价")]
|
[_vm._v("预估价")]
|
||||||
),
|
),
|
||||||
_c(
|
_c(
|
||||||
"uni-view",
|
"uni-view",
|
||||||
{
|
{
|
||||||
staticClass: _vm._$g("86-" + $33, "sc"),
|
staticClass: _vm._$g("85-" + $33, "sc"),
|
||||||
attrs: { _i: "86-" + $33 },
|
attrs: { _i: "85-" + $33 },
|
||||||
},
|
},
|
||||||
[
|
[
|
||||||
_c(
|
_c(
|
||||||
"uni-view",
|
"uni-view",
|
||||||
{
|
{
|
||||||
staticClass: _vm._$g("87-" + $33, "sc"),
|
staticClass: _vm._$g("86-" + $33, "sc"),
|
||||||
attrs: { _i: "87-" + $33 },
|
attrs: { _i: "86-" + $33 },
|
||||||
},
|
},
|
||||||
[_vm._v("¥")]
|
[_vm._v("¥")]
|
||||||
),
|
),
|
||||||
_c(
|
_c(
|
||||||
"uni-view",
|
"uni-view",
|
||||||
{
|
{
|
||||||
staticClass: _vm._$g("88-" + $33, "sc"),
|
staticClass: _vm._$g("87-" + $33, "sc"),
|
||||||
attrs: { _i: "88-" + $33 },
|
attrs: { _i: "87-" + $33 },
|
||||||
},
|
},
|
||||||
[_vm._v(_vm._$g("88-" + $33, "t0-0"))]
|
[_vm._v(_vm._$g("87-" + $33, "t0-0"))]
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
1
|
1
|
||||||
@ -1161,34 +1154,34 @@ var render = function () {
|
|||||||
_c(
|
_c(
|
||||||
"uni-view",
|
"uni-view",
|
||||||
{
|
{
|
||||||
staticClass: _vm._$g("89-" + $33, "sc"),
|
staticClass: _vm._$g("88-" + $33, "sc"),
|
||||||
attrs: { _i: "89-" + $33 },
|
attrs: { _i: "88-" + $33 },
|
||||||
},
|
},
|
||||||
[_vm._v("备注:" + _vm._$g("89-" + $33, "t0-0"))]
|
[_vm._v("备注:" + _vm._$g("88-" + $33, "t0-0"))]
|
||||||
),
|
),
|
||||||
_c(
|
_c(
|
||||||
"uni-view",
|
"uni-view",
|
||||||
{
|
{
|
||||||
staticClass: _vm._$g("90-" + $33, "sc"),
|
staticClass: _vm._$g("89-" + $33, "sc"),
|
||||||
attrs: { _i: "90-" + $33 },
|
attrs: { _i: "89-" + $33 },
|
||||||
},
|
},
|
||||||
[
|
[
|
||||||
_c(
|
_c(
|
||||||
"uni-view",
|
"uni-view",
|
||||||
{
|
{
|
||||||
staticClass: _vm._$g("91-" + $33, "sc"),
|
staticClass: _vm._$g("90-" + $33, "sc"),
|
||||||
attrs: { _i: "91-" + $33 },
|
attrs: { _i: "90-" + $33 },
|
||||||
},
|
},
|
||||||
[
|
[
|
||||||
_c("v-uni-image", {
|
_c("v-uni-image", {
|
||||||
staticClass: _vm._$g("92-" + $33, "sc"),
|
staticClass: _vm._$g("91-" + $33, "sc"),
|
||||||
attrs: {
|
attrs: {
|
||||||
src: "/static/img/39.png",
|
src: "/static/img/39.png",
|
||||||
_i: "92-" + $33,
|
_i: "91-" + $33,
|
||||||
},
|
},
|
||||||
}),
|
}),
|
||||||
_c("uni-view", { attrs: { _i: "93-" + $33 } }, [
|
_c("uni-view", { attrs: { _i: "92-" + $33 } }, [
|
||||||
_vm._v(_vm._$g("93-" + $33, "t0-0")),
|
_vm._v(_vm._$g("92-" + $33, "t0-0")),
|
||||||
]),
|
]),
|
||||||
],
|
],
|
||||||
1
|
1
|
||||||
@ -1196,8 +1189,8 @@ var render = function () {
|
|||||||
_c(
|
_c(
|
||||||
"uni-view",
|
"uni-view",
|
||||||
{
|
{
|
||||||
staticClass: _vm._$g("94-" + $33, "sc"),
|
staticClass: _vm._$g("93-" + $33, "sc"),
|
||||||
attrs: { _i: "94-" + $33 },
|
attrs: { _i: "93-" + $33 },
|
||||||
on: {
|
on: {
|
||||||
click: function ($event) {
|
click: function ($event) {
|
||||||
return _vm.$handleViewEvent($event)
|
return _vm.$handleViewEvent($event)
|
||||||
@ -1207,7 +1200,7 @@ var render = function () {
|
|||||||
[
|
[
|
||||||
_c("u-icon", {
|
_c("u-icon", {
|
||||||
staticStyle: { "margin-right": "7rpx" },
|
staticStyle: { "margin-right": "7rpx" },
|
||||||
attrs: { _i: "95-" + $33 },
|
attrs: { _i: "94-" + $33 },
|
||||||
}),
|
}),
|
||||||
_vm._v("联系TA"),
|
_vm._v("联系TA"),
|
||||||
],
|
],
|
||||||
@ -1217,30 +1210,33 @@ var render = function () {
|
|||||||
1
|
1
|
||||||
),
|
),
|
||||||
_c("uni-view", {
|
_c("uni-view", {
|
||||||
staticClass: _vm._$g("96-" + $33, "sc"),
|
staticClass: _vm._$g("95-" + $33, "sc"),
|
||||||
attrs: { _i: "96-" + $33 },
|
attrs: { _i: "95-" + $33 },
|
||||||
}),
|
}),
|
||||||
_c(
|
_c(
|
||||||
"uni-view",
|
"uni-view",
|
||||||
{
|
{
|
||||||
staticClass: _vm._$g("97-" + $33, "sc"),
|
staticClass: _vm._$g("96-" + $33, "sc"),
|
||||||
attrs: { _i: "97-" + $33 },
|
attrs: { _i: "96-" + $33 },
|
||||||
},
|
},
|
||||||
[
|
[
|
||||||
_vm._$g("98-" + $33, "i")
|
_vm._$g("97-" + $33, "i")
|
||||||
? _c(
|
? _c(
|
||||||
"uni-view",
|
"uni-view",
|
||||||
{
|
{
|
||||||
staticClass: _vm._$g("98-" + $33, "sc"),
|
staticClass: _vm._$g("97-" + $33, "sc"),
|
||||||
attrs: { _i: "98-" + $33 },
|
attrs: { _i: "97-" + $33 },
|
||||||
},
|
},
|
||||||
[
|
[
|
||||||
_vm._v(
|
_vm._v(
|
||||||
"期望时间:" + _vm._$g("98-" + $33, "t0-0")
|
"期望时间:" + _vm._$g("97-" + $33, "t0-0")
|
||||||
),
|
),
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
: _c("uni-view", { attrs: { _i: "99-" + $33 } }),
|
: _vm._e(),
|
||||||
|
_vm._$g("98-" + $33, "i")
|
||||||
|
? _c("uni-view", { attrs: { _i: "98-" + $33 } })
|
||||||
|
: _vm._e(),
|
||||||
_c(
|
_c(
|
||||||
"uni-view",
|
"uni-view",
|
||||||
{
|
{
|
||||||
@ -1248,18 +1244,18 @@ var render = function () {
|
|||||||
{
|
{
|
||||||
name: "show",
|
name: "show",
|
||||||
rawName: "v-show",
|
rawName: "v-show",
|
||||||
value: _vm._$g("100-" + $33, "v-show"),
|
value: _vm._$g("99-" + $33, "v-show"),
|
||||||
expression: "_$g((\"100-\"+$33),'v-show')",
|
expression: "_$g((\"99-\"+$33),'v-show')",
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
staticClass: _vm._$g("100-" + $33, "sc"),
|
staticClass: _vm._$g("99-" + $33, "sc"),
|
||||||
attrs: { _i: "100-" + $33 },
|
attrs: { _i: "99-" + $33 },
|
||||||
},
|
},
|
||||||
[
|
[
|
||||||
_c(
|
_c(
|
||||||
"uni-view",
|
"uni-view",
|
||||||
{
|
{
|
||||||
attrs: { _i: "101-" + $33 },
|
attrs: { _i: "100-" + $33 },
|
||||||
on: {
|
on: {
|
||||||
click: function ($event) {
|
click: function ($event) {
|
||||||
return _vm.$handleViewEvent($event, {
|
return _vm.$handleViewEvent($event, {
|
||||||
@ -1277,19 +1273,19 @@ var render = function () {
|
|||||||
{
|
{
|
||||||
name: "show",
|
name: "show",
|
||||||
rawName: "v-show",
|
rawName: "v-show",
|
||||||
value: _vm._$g("102-" + $33, "v-show"),
|
value: _vm._$g("101-" + $33, "v-show"),
|
||||||
expression: "_$g((\"102-\"+$33),'v-show')",
|
expression: "_$g((\"101-\"+$33),'v-show')",
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
staticClass: _vm._$g("102-" + $33, "sc"),
|
staticClass: _vm._$g("101-" + $33, "sc"),
|
||||||
attrs: { _i: "102-" + $33 },
|
attrs: { _i: "101-" + $33 },
|
||||||
},
|
},
|
||||||
[
|
[
|
||||||
_c(
|
_c(
|
||||||
"uni-view",
|
"uni-view",
|
||||||
{
|
{
|
||||||
staticClass: _vm._$g("103-" + $33, "sc"),
|
staticClass: _vm._$g("102-" + $33, "sc"),
|
||||||
attrs: { _i: "103-" + $33 },
|
attrs: { _i: "102-" + $33 },
|
||||||
on: {
|
on: {
|
||||||
click: function ($event) {
|
click: function ($event) {
|
||||||
return _vm.$handleViewEvent($event, {
|
return _vm.$handleViewEvent($event, {
|
||||||
@ -1301,14 +1297,14 @@ var render = function () {
|
|||||||
[_vm._v("取消订单")]
|
[_vm._v("取消订单")]
|
||||||
),
|
),
|
||||||
_c("uni-view", {
|
_c("uni-view", {
|
||||||
staticClass: _vm._$g("104-" + $33, "sc"),
|
staticClass: _vm._$g("103-" + $33, "sc"),
|
||||||
attrs: { _i: "104-" + $33 },
|
attrs: { _i: "103-" + $33 },
|
||||||
}),
|
}),
|
||||||
_c(
|
_c(
|
||||||
"uni-view",
|
"uni-view",
|
||||||
{
|
{
|
||||||
staticClass: _vm._$g("105-" + $33, "sc"),
|
staticClass: _vm._$g("104-" + $33, "sc"),
|
||||||
attrs: { _i: "105-" + $33 },
|
attrs: { _i: "104-" + $33 },
|
||||||
on: {
|
on: {
|
||||||
click: function ($event) {
|
click: function ($event) {
|
||||||
return _vm.$handleViewEvent($event, {
|
return _vm.$handleViewEvent($event, {
|
||||||
@ -1328,10 +1324,33 @@ var render = function () {
|
|||||||
_c(
|
_c(
|
||||||
"uni-view",
|
"uni-view",
|
||||||
{
|
{
|
||||||
staticClass: _vm._$g("106-" + $33, "sc"),
|
staticClass: _vm._$g("105-" + $33, "sc"),
|
||||||
attrs: { _i: "106-" + $33 },
|
attrs: { _i: "105-" + $33 },
|
||||||
},
|
},
|
||||||
[
|
[
|
||||||
|
_c(
|
||||||
|
"uni-view",
|
||||||
|
{
|
||||||
|
directives: [
|
||||||
|
{
|
||||||
|
name: "show",
|
||||||
|
rawName: "v-show",
|
||||||
|
value: _vm._$g("106-" + $33, "v-show"),
|
||||||
|
expression: "_$g((\"106-\"+$33),'v-show')",
|
||||||
|
},
|
||||||
|
],
|
||||||
|
staticClass: _vm._$g("106-" + $33, "sc"),
|
||||||
|
attrs: { _i: "106-" + $33 },
|
||||||
|
on: {
|
||||||
|
click: function ($event) {
|
||||||
|
return _vm.$handleViewEvent($event, {
|
||||||
|
stop: true,
|
||||||
|
})
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
[_vm._v("修改预约")]
|
||||||
|
),
|
||||||
_c(
|
_c(
|
||||||
"uni-view",
|
"uni-view",
|
||||||
{
|
{
|
||||||
@ -1353,7 +1372,7 @@ var render = function () {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
[_vm._v("修改预约")]
|
[_vm._v("上门签到")]
|
||||||
),
|
),
|
||||||
_c(
|
_c(
|
||||||
"uni-view",
|
"uni-view",
|
||||||
@ -1376,7 +1395,7 @@ var render = function () {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
[_vm._v("上门签到")]
|
[_vm._v("预约上门")]
|
||||||
),
|
),
|
||||||
_c(
|
_c(
|
||||||
"uni-view",
|
"uni-view",
|
||||||
@ -1399,29 +1418,6 @@ var render = function () {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
[_vm._v("预约上门")]
|
|
||||||
),
|
|
||||||
_c(
|
|
||||||
"uni-view",
|
|
||||||
{
|
|
||||||
directives: [
|
|
||||||
{
|
|
||||||
name: "show",
|
|
||||||
rawName: "v-show",
|
|
||||||
value: _vm._$g("110-" + $33, "v-show"),
|
|
||||||
expression: "_$g((\"110-\"+$33),'v-show')",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
staticClass: _vm._$g("110-" + $33, "sc"),
|
|
||||||
attrs: { _i: "110-" + $33 },
|
|
||||||
on: {
|
|
||||||
click: function ($event) {
|
|
||||||
return _vm.$handleViewEvent($event, {
|
|
||||||
stop: true,
|
|
||||||
})
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
[_vm._v("去付款")]
|
[_vm._v("去付款")]
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
@ -1441,12 +1437,12 @@ var render = function () {
|
|||||||
{
|
{
|
||||||
name: "show",
|
name: "show",
|
||||||
rawName: "v-show",
|
rawName: "v-show",
|
||||||
value: _vm._$g(111, "v-show"),
|
value: _vm._$g(110, "v-show"),
|
||||||
expression: "_$g(111,'v-show')",
|
expression: "_$g(110,'v-show')",
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
staticClass: _vm._$g(111, "sc"),
|
staticClass: _vm._$g(110, "sc"),
|
||||||
attrs: { _i: 111 },
|
attrs: { _i: 110 },
|
||||||
},
|
},
|
||||||
[_vm._v("没有更多了")]
|
[_vm._v("没有更多了")]
|
||||||
),
|
),
|
||||||
@ -1455,11 +1451,11 @@ var render = function () {
|
|||||||
),
|
),
|
||||||
_c("uni-view", {
|
_c("uni-view", {
|
||||||
staticStyle: { height: "100rpx" },
|
staticStyle: { height: "100rpx" },
|
||||||
attrs: { _i: 112 },
|
attrs: { _i: 111 },
|
||||||
}),
|
}),
|
||||||
_c("appointTime", {
|
_c("appointTime", {
|
||||||
ref: "timeRef",
|
ref: "timeRef",
|
||||||
attrs: { _i: 113 },
|
attrs: { _i: 112 },
|
||||||
on: {
|
on: {
|
||||||
checkTime: function ($event) {
|
checkTime: function ($event) {
|
||||||
return _vm.$handleViewEvent($event)
|
return _vm.$handleViewEvent($event)
|
||||||
@ -1472,7 +1468,7 @@ var render = function () {
|
|||||||
_c(
|
_c(
|
||||||
"u-popup",
|
"u-popup",
|
||||||
{
|
{
|
||||||
attrs: { _i: 114 },
|
attrs: { _i: 113 },
|
||||||
on: {
|
on: {
|
||||||
open: function ($event) {
|
open: function ($event) {
|
||||||
return _vm.$handleViewEvent($event)
|
return _vm.$handleViewEvent($event)
|
||||||
@ -1482,30 +1478,30 @@ var render = function () {
|
|||||||
[
|
[
|
||||||
_c(
|
_c(
|
||||||
"uni-view",
|
"uni-view",
|
||||||
{ staticClass: _vm._$g(115, "sc"), attrs: { _i: 115 } },
|
{ staticClass: _vm._$g(114, "sc"), attrs: { _i: 114 } },
|
||||||
[
|
[
|
||||||
_c("v-uni-image", {
|
_c("v-uni-image", {
|
||||||
staticClass: _vm._$g(116, "sc"),
|
staticClass: _vm._$g(115, "sc"),
|
||||||
attrs: { src: _vm._$g(116, "a-src"), _i: 116 },
|
attrs: { src: _vm._$g(115, "a-src"), _i: 115 },
|
||||||
}),
|
}),
|
||||||
_c(
|
_c(
|
||||||
"v-uni-text",
|
"v-uni-text",
|
||||||
{ staticClass: _vm._$g(117, "sc"), attrs: { _i: 117 } },
|
{ staticClass: _vm._$g(116, "sc"), attrs: { _i: 116 } },
|
||||||
[_vm._v("上门签到成功!")]
|
[_vm._v("上门签到成功!")]
|
||||||
),
|
),
|
||||||
_c(
|
_c(
|
||||||
"v-uni-text",
|
"v-uni-text",
|
||||||
{ staticClass: _vm._$g(118, "sc"), attrs: { _i: 118 } },
|
{ staticClass: _vm._$g(117, "sc"), attrs: { _i: 117 } },
|
||||||
[_vm._v("上门服务请仔细核对回收货物")]
|
[_vm._v("上门服务请仔细核对回收货物")]
|
||||||
),
|
),
|
||||||
_c(
|
_c(
|
||||||
"v-uni-text",
|
"v-uni-text",
|
||||||
{ staticClass: _vm._$g(119, "sc"), attrs: { _i: 119 } },
|
{ staticClass: _vm._$g(118, "sc"), attrs: { _i: 118 } },
|
||||||
[_vm._v("祝您与用户合作愉快~")]
|
[_vm._v("祝您与用户合作愉快~")]
|
||||||
),
|
),
|
||||||
_c(
|
_c(
|
||||||
"uni-view",
|
"uni-view",
|
||||||
{ staticClass: _vm._$g(120, "sc"), attrs: { _i: 120 } },
|
{ staticClass: _vm._$g(119, "sc"), attrs: { _i: 119 } },
|
||||||
[_vm._v("好的")]
|
[_vm._v("好的")]
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
@ -1517,7 +1513,7 @@ var render = function () {
|
|||||||
_c(
|
_c(
|
||||||
"u-popup",
|
"u-popup",
|
||||||
{
|
{
|
||||||
attrs: { _i: 121 },
|
attrs: { _i: 120 },
|
||||||
on: {
|
on: {
|
||||||
click: function ($event) {
|
click: function ($event) {
|
||||||
return _vm.$handleViewEvent($event)
|
return _vm.$handleViewEvent($event)
|
||||||
@ -1528,8 +1524,8 @@ var render = function () {
|
|||||||
_c(
|
_c(
|
||||||
"uni-view",
|
"uni-view",
|
||||||
{
|
{
|
||||||
staticClass: _vm._$g(122, "sc"),
|
staticClass: _vm._$g(121, "sc"),
|
||||||
attrs: { _i: 122 },
|
attrs: { _i: 121 },
|
||||||
on: {
|
on: {
|
||||||
click: function ($event) {
|
click: function ($event) {
|
||||||
return _vm.$handleViewEvent($event)
|
return _vm.$handleViewEvent($event)
|
||||||
@ -1538,53 +1534,53 @@ var render = function () {
|
|||||||
},
|
},
|
||||||
[
|
[
|
||||||
_c("v-uni-image", {
|
_c("v-uni-image", {
|
||||||
staticClass: _vm._$g(123, "sc"),
|
staticClass: _vm._$g(122, "sc"),
|
||||||
attrs: { src: _vm._$g(123, "a-src"), _i: 123 },
|
attrs: { src: _vm._$g(122, "a-src"), _i: 122 },
|
||||||
}),
|
}),
|
||||||
_c(
|
_c(
|
||||||
"uni-view",
|
"uni-view",
|
||||||
{ staticClass: _vm._$g(124, "sc"), attrs: { _i: 124 } },
|
{ staticClass: _vm._$g(123, "sc"), attrs: { _i: 123 } },
|
||||||
[
|
[
|
||||||
_c(
|
_c(
|
||||||
"v-uni-text",
|
"v-uni-text",
|
||||||
{ staticClass: _vm._$g(125, "sc"), attrs: { _i: 125 } },
|
{ staticClass: _vm._$g(124, "sc"), attrs: { _i: 124 } },
|
||||||
[_vm._v("工作证")]
|
[_vm._v("工作证")]
|
||||||
),
|
),
|
||||||
_c(
|
_c(
|
||||||
"v-uni-text",
|
"v-uni-text",
|
||||||
{ staticClass: _vm._$g(126, "sc"), attrs: { _i: 126 } },
|
{ staticClass: _vm._$g(125, "sc"), attrs: { _i: 125 } },
|
||||||
[_vm._v(_vm._$g(126, "t0-0"))]
|
[_vm._v(_vm._$g(125, "t0-0"))]
|
||||||
),
|
),
|
||||||
_c("v-uni-image", {
|
_c("v-uni-image", {
|
||||||
staticClass: _vm._$g(127, "sc"),
|
staticClass: _vm._$g(126, "sc"),
|
||||||
attrs: { src: _vm._$g(127, "a-src"), _i: 127 },
|
attrs: { src: _vm._$g(126, "a-src"), _i: 126 },
|
||||||
}),
|
}),
|
||||||
_c(
|
_c(
|
||||||
"uni-view",
|
"uni-view",
|
||||||
{
|
{
|
||||||
staticClass: _vm._$g(128, "sc"),
|
staticClass: _vm._$g(127, "sc"),
|
||||||
staticStyle: { "margin-top": "40rpx" },
|
staticStyle: { "margin-top": "40rpx" },
|
||||||
attrs: { _i: 128 },
|
attrs: { _i: 127 },
|
||||||
},
|
},
|
||||||
[
|
[
|
||||||
_c(
|
_c(
|
||||||
"uni-view",
|
"uni-view",
|
||||||
{ staticClass: _vm._$g(129, "sc"), attrs: { _i: 129 } },
|
{ staticClass: _vm._$g(128, "sc"), attrs: { _i: 128 } },
|
||||||
[
|
[
|
||||||
_c(
|
_c(
|
||||||
"v-uni-text",
|
"v-uni-text",
|
||||||
{
|
{
|
||||||
staticClass: _vm._$g(130, "sc"),
|
staticClass: _vm._$g(129, "sc"),
|
||||||
attrs: { _i: 130 },
|
attrs: { _i: 129 },
|
||||||
},
|
},
|
||||||
[_vm._v("人身保险")]
|
[_vm._v("人身保险")]
|
||||||
),
|
),
|
||||||
_vm._$g(131, "i")
|
_vm._$g(130, "i")
|
||||||
? _c(
|
? _c(
|
||||||
"uni-view",
|
"uni-view",
|
||||||
{
|
{
|
||||||
staticClass: _vm._$g(131, "sc"),
|
staticClass: _vm._$g(130, "sc"),
|
||||||
attrs: { _i: 131 },
|
attrs: { _i: 130 },
|
||||||
},
|
},
|
||||||
[_vm._v("已上传")]
|
[_vm._v("已上传")]
|
||||||
)
|
)
|
||||||
@ -1592,8 +1588,8 @@ var render = function () {
|
|||||||
_c(
|
_c(
|
||||||
"uni-view",
|
"uni-view",
|
||||||
{
|
{
|
||||||
staticClass: _vm._$g(132, "sc"),
|
staticClass: _vm._$g(131, "sc"),
|
||||||
attrs: { _i: 132 },
|
attrs: { _i: 131 },
|
||||||
},
|
},
|
||||||
[_vm._v("待上传")]
|
[_vm._v("待上传")]
|
||||||
),
|
),
|
||||||
@ -1603,25 +1599,25 @@ var render = function () {
|
|||||||
_c(
|
_c(
|
||||||
"uni-view",
|
"uni-view",
|
||||||
{
|
{
|
||||||
staticClass: _vm._$g(133, "sc"),
|
staticClass: _vm._$g(132, "sc"),
|
||||||
staticStyle: { "margin-left": "37rpx" },
|
staticStyle: { "margin-left": "37rpx" },
|
||||||
attrs: { _i: 133 },
|
attrs: { _i: 132 },
|
||||||
},
|
},
|
||||||
[
|
[
|
||||||
_c(
|
_c(
|
||||||
"v-uni-text",
|
"v-uni-text",
|
||||||
{
|
{
|
||||||
staticClass: _vm._$g(134, "sc"),
|
staticClass: _vm._$g(133, "sc"),
|
||||||
attrs: { _i: 134 },
|
attrs: { _i: 133 },
|
||||||
},
|
},
|
||||||
[_vm._v("健康证")]
|
[_vm._v("健康证")]
|
||||||
),
|
),
|
||||||
_vm._$g(135, "i")
|
_vm._$g(134, "i")
|
||||||
? _c(
|
? _c(
|
||||||
"uni-view",
|
"uni-view",
|
||||||
{
|
{
|
||||||
staticClass: _vm._$g(135, "sc"),
|
staticClass: _vm._$g(134, "sc"),
|
||||||
attrs: { _i: 135 },
|
attrs: { _i: 134 },
|
||||||
},
|
},
|
||||||
[_vm._v("已上传")]
|
[_vm._v("已上传")]
|
||||||
)
|
)
|
||||||
@ -1629,8 +1625,8 @@ var render = function () {
|
|||||||
_c(
|
_c(
|
||||||
"uni-view",
|
"uni-view",
|
||||||
{
|
{
|
||||||
staticClass: _vm._$g(136, "sc"),
|
staticClass: _vm._$g(135, "sc"),
|
||||||
attrs: { _i: 136 },
|
attrs: { _i: 135 },
|
||||||
},
|
},
|
||||||
[_vm._v("待上传")]
|
[_vm._v("待上传")]
|
||||||
),
|
),
|
||||||
@ -1652,7 +1648,7 @@ var render = function () {
|
|||||||
_c(
|
_c(
|
||||||
"u-popup",
|
"u-popup",
|
||||||
{
|
{
|
||||||
attrs: { _i: 137 },
|
attrs: { _i: 136 },
|
||||||
on: {
|
on: {
|
||||||
open: function ($event) {
|
open: function ($event) {
|
||||||
return _vm.$handleViewEvent($event)
|
return _vm.$handleViewEvent($event)
|
||||||
@ -1662,20 +1658,20 @@ var render = function () {
|
|||||||
[
|
[
|
||||||
_c(
|
_c(
|
||||||
"uni-view",
|
"uni-view",
|
||||||
{ staticClass: _vm._$g(138, "sc"), attrs: { _i: 138 } },
|
{ staticClass: _vm._$g(137, "sc"), attrs: { _i: 137 } },
|
||||||
[
|
[
|
||||||
_c(
|
_c(
|
||||||
"uni-view",
|
"uni-view",
|
||||||
{ staticClass: _vm._$g(139, "sc"), attrs: { _i: 139 } },
|
{ staticClass: _vm._$g(138, "sc"), attrs: { _i: 138 } },
|
||||||
[_vm._v("上门服务条款")]
|
[_vm._v("上门服务条款")]
|
||||||
),
|
),
|
||||||
_c("uni-view", {
|
_c("uni-view", {
|
||||||
staticClass: _vm._$g(140, "sc"),
|
staticClass: _vm._$g(139, "sc"),
|
||||||
attrs: { _i: 140 },
|
attrs: { _i: 139 },
|
||||||
}),
|
}),
|
||||||
_c(
|
_c(
|
||||||
"uni-view",
|
"uni-view",
|
||||||
{ staticClass: _vm._$g(141, "sc"), attrs: { _i: 141 } },
|
{ staticClass: _vm._$g(140, "sc"), attrs: { _i: 140 } },
|
||||||
[
|
[
|
||||||
_vm._v(
|
_vm._v(
|
||||||
"\n\t\t\t\t预约方式\n\t\t\t\t通过小程序提交家电信息(品牌/型号/使用年限/现状描述)\n\t\t\t\t选择上门时间(建议工作日9:00-17:00)\n\t\t\t\t上门评估\n\t\t\t\t工作人员将现场验机并确认最终回收价\n\t\t\t\t线上估价仅供参考,实际价格可能因市场波动调整\n\t\t\t\t完成回收\n\n\t\t\t\t确认价格后立即完成搬运\n\t\t\t\t结算方式:小程序账户余额/微信支付\n\t\t\t\t二、用户注意事项\n\t\t\t\t家电要求\n\t\t\t\t✓ 基本完整且具备回收价值\n\t\t\t\t✓ 严重损坏需提前告知(可能影响回收价)\n\t\t\t\t✓ 保证来源合法且具有完整处置权\n\n\t\t\t\t配合事项\n\t\t\t\t✓ 提供必要身份证明(大件家电建议准备购买凭证)\n\t\t\t\t✓ 确保作业面安全(空调外机需提供安全作业条件)\n\n\t\t\t\t三、隐私保护声明\n\t\t\t\t收集信息仅用于服务履约(地址/联系方式/家电型号)\n\t\t\t\t设备数据将按国家标准彻底清除(覆盖写入3次以上)\n\t\t\t\t个人信息存储不超过2年\n\t\t\t\t四、特别提示\n\t\t\t\t高空作业:空调外机回收需额外签署安全协议\n\t\t\t\t价格差异:市场价波动超过15%时可能调整回收价\n\t\t\t\t环保处理:所有回收家电将交由资质企业环保拆解\n\t\t\t\t五、服务承诺\n\t\t\t\t工作人员持证上岗,规范操作\n\t\t\t\t专业工具搬运,造成损失按市价赔偿\n\t\t\t\t服务投诉24小时内响应(客服电话:400-xxx-xxxx)"
|
"\n\t\t\t\t预约方式\n\t\t\t\t通过小程序提交家电信息(品牌/型号/使用年限/现状描述)\n\t\t\t\t选择上门时间(建议工作日9:00-17:00)\n\t\t\t\t上门评估\n\t\t\t\t工作人员将现场验机并确认最终回收价\n\t\t\t\t线上估价仅供参考,实际价格可能因市场波动调整\n\t\t\t\t完成回收\n\n\t\t\t\t确认价格后立即完成搬运\n\t\t\t\t结算方式:小程序账户余额/微信支付\n\t\t\t\t二、用户注意事项\n\t\t\t\t家电要求\n\t\t\t\t✓ 基本完整且具备回收价值\n\t\t\t\t✓ 严重损坏需提前告知(可能影响回收价)\n\t\t\t\t✓ 保证来源合法且具有完整处置权\n\n\t\t\t\t配合事项\n\t\t\t\t✓ 提供必要身份证明(大件家电建议准备购买凭证)\n\t\t\t\t✓ 确保作业面安全(空调外机需提供安全作业条件)\n\n\t\t\t\t三、隐私保护声明\n\t\t\t\t收集信息仅用于服务履约(地址/联系方式/家电型号)\n\t\t\t\t设备数据将按国家标准彻底清除(覆盖写入3次以上)\n\t\t\t\t个人信息存储不超过2年\n\t\t\t\t四、特别提示\n\t\t\t\t高空作业:空调外机回收需额外签署安全协议\n\t\t\t\t价格差异:市场价波动超过15%时可能调整回收价\n\t\t\t\t环保处理:所有回收家电将交由资质企业环保拆解\n\t\t\t\t五、服务承诺\n\t\t\t\t工作人员持证上岗,规范操作\n\t\t\t\t专业工具搬运,造成损失按市价赔偿\n\t\t\t\t服务投诉24小时内响应(客服电话:400-xxx-xxxx)"
|
||||||
@ -1685,19 +1681,19 @@ var render = function () {
|
|||||||
_c(
|
_c(
|
||||||
"uni-view",
|
"uni-view",
|
||||||
{
|
{
|
||||||
staticClass: _vm._$g(142, "sc"),
|
staticClass: _vm._$g(141, "sc"),
|
||||||
staticStyle: { "margin-top": "17rpx" },
|
staticStyle: { "margin-top": "17rpx" },
|
||||||
attrs: { _i: 142 },
|
attrs: { _i: 141 },
|
||||||
},
|
},
|
||||||
[
|
[
|
||||||
_c(
|
_c(
|
||||||
"uni-view",
|
"uni-view",
|
||||||
{ staticClass: _vm._$g(143, "sc"), attrs: { _i: 143 } },
|
{ staticClass: _vm._$g(142, "sc"), attrs: { _i: 142 } },
|
||||||
[_vm._v("不同意")]
|
[_vm._v("不同意")]
|
||||||
),
|
),
|
||||||
_c(
|
_c(
|
||||||
"uni-view",
|
"uni-view",
|
||||||
{ staticClass: _vm._$g(144, "sc"), attrs: { _i: 144 } },
|
{ staticClass: _vm._$g(143, "sc"), attrs: { _i: 143 } },
|
||||||
[_vm._v("同意")]
|
[_vm._v("同意")]
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
@ -1712,7 +1708,7 @@ var render = function () {
|
|||||||
_c(
|
_c(
|
||||||
"u-popup",
|
"u-popup",
|
||||||
{
|
{
|
||||||
attrs: { _i: 145 },
|
attrs: { _i: 144 },
|
||||||
on: {
|
on: {
|
||||||
close: function ($event) {
|
close: function ($event) {
|
||||||
return _vm.$handleViewEvent($event)
|
return _vm.$handleViewEvent($event)
|
||||||
@ -1725,23 +1721,23 @@ var render = function () {
|
|||||||
[
|
[
|
||||||
_c(
|
_c(
|
||||||
"uni-view",
|
"uni-view",
|
||||||
{ staticClass: _vm._$g(146, "sc"), attrs: { _i: 146 } },
|
{ staticClass: _vm._$g(145, "sc"), attrs: { _i: 145 } },
|
||||||
[
|
[
|
||||||
_c(
|
_c(
|
||||||
"uni-view",
|
"uni-view",
|
||||||
{
|
{
|
||||||
staticClass: _vm._$g(147, "sc"),
|
staticClass: _vm._$g(146, "sc"),
|
||||||
staticStyle: { padding: "51rpx 55rpx 0" },
|
staticStyle: { padding: "51rpx 55rpx 0" },
|
||||||
attrs: { _i: 147 },
|
attrs: { _i: 146 },
|
||||||
},
|
},
|
||||||
[
|
[
|
||||||
_c(
|
_c(
|
||||||
"v-uni-text",
|
"v-uni-text",
|
||||||
{ staticClass: _vm._$g(148, "sc"), attrs: { _i: 148 } },
|
{ staticClass: _vm._$g(147, "sc"), attrs: { _i: 147 } },
|
||||||
[_vm._v("改派原因")]
|
[_vm._v("改派原因")]
|
||||||
),
|
),
|
||||||
_c("u-icon", {
|
_c("u-icon", {
|
||||||
attrs: { _i: 149 },
|
attrs: { _i: 148 },
|
||||||
on: {
|
on: {
|
||||||
click: function ($event) {
|
click: function ($event) {
|
||||||
return _vm.$handleViewEvent($event)
|
return _vm.$handleViewEvent($event)
|
||||||
@ -1752,11 +1748,11 @@ var render = function () {
|
|||||||
1
|
1
|
||||||
),
|
),
|
||||||
_c("u--textarea", {
|
_c("u--textarea", {
|
||||||
staticClass: _vm._$g(150, "sc"),
|
staticClass: _vm._$g(149, "sc"),
|
||||||
staticStyle: { background: "#EFEFEF", border: "none" },
|
staticStyle: { background: "#EFEFEF", border: "none" },
|
||||||
attrs: { _i: 150 },
|
attrs: { _i: 149 },
|
||||||
model: {
|
model: {
|
||||||
value: _vm._$g(150, "v-model"),
|
value: _vm._$g(149, "v-model"),
|
||||||
callback: function () {},
|
callback: function () {},
|
||||||
expression: "notesText",
|
expression: "notesText",
|
||||||
},
|
},
|
||||||
@ -1764,11 +1760,24 @@ var render = function () {
|
|||||||
_c(
|
_c(
|
||||||
"uni-view",
|
"uni-view",
|
||||||
{
|
{
|
||||||
staticClass: _vm._$g(151, "sc"),
|
staticClass: _vm._$g(150, "sc"),
|
||||||
staticStyle: { "margin-top": "55rpx" },
|
staticStyle: { "margin-top": "55rpx" },
|
||||||
attrs: { _i: 151 },
|
attrs: { _i: 150 },
|
||||||
},
|
},
|
||||||
[
|
[
|
||||||
|
_c(
|
||||||
|
"uni-view",
|
||||||
|
{
|
||||||
|
staticClass: _vm._$g(151, "sc"),
|
||||||
|
attrs: { _i: 151 },
|
||||||
|
on: {
|
||||||
|
click: function ($event) {
|
||||||
|
return _vm.$handleViewEvent($event)
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
[_vm._v("取消改派")]
|
||||||
|
),
|
||||||
_c(
|
_c(
|
||||||
"uni-view",
|
"uni-view",
|
||||||
{
|
{
|
||||||
@ -1780,11 +1789,6 @@ var render = function () {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
[_vm._v("取消改派")]
|
|
||||||
),
|
|
||||||
_c(
|
|
||||||
"uni-view",
|
|
||||||
{ staticClass: _vm._$g(153, "sc"), attrs: { _i: 153 } },
|
|
||||||
[_vm._v("确认改派")]
|
[_vm._v("确认改派")]
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
@ -1797,7 +1801,7 @@ var render = function () {
|
|||||||
1
|
1
|
||||||
),
|
),
|
||||||
_c("cancleOrder", {
|
_c("cancleOrder", {
|
||||||
attrs: { _i: 154 },
|
attrs: { _i: 153 },
|
||||||
on: {
|
on: {
|
||||||
cancleReason: function ($event) {
|
cancleReason: function ($event) {
|
||||||
return _vm.$handleViewEvent($event)
|
return _vm.$handleViewEvent($event)
|
||||||
@ -1808,7 +1812,7 @@ var render = function () {
|
|||||||
},
|
},
|
||||||
}),
|
}),
|
||||||
_c("custom-tab-bar", {
|
_c("custom-tab-bar", {
|
||||||
attrs: { _i: 155 },
|
attrs: { _i: 154 },
|
||||||
on: {
|
on: {
|
||||||
centerClick: function ($event) {
|
centerClick: function ($event) {
|
||||||
return _vm.$handleViewEvent($event)
|
return _vm.$handleViewEvent($event)
|
||||||
@ -1822,8 +1826,8 @@ var render = function () {
|
|||||||
{
|
{
|
||||||
name: "show",
|
name: "show",
|
||||||
rawName: "v-show",
|
rawName: "v-show",
|
||||||
value: _vm._$g(156, "v-show"),
|
value: _vm._$g(155, "v-show"),
|
||||||
expression: "_$g(156,'v-show')",
|
expression: "_$g(155,'v-show')",
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
staticStyle: {
|
staticStyle: {
|
||||||
@ -1834,11 +1838,11 @@ var render = function () {
|
|||||||
top: "0",
|
top: "0",
|
||||||
"z-index": "999",
|
"z-index": "999",
|
||||||
},
|
},
|
||||||
attrs: { _i: 156 },
|
attrs: { _i: 155 },
|
||||||
},
|
},
|
||||||
[
|
[
|
||||||
_c("citySelect", {
|
_c("citySelect", {
|
||||||
attrs: { _i: 157 },
|
attrs: { _i: 156 },
|
||||||
on: {
|
on: {
|
||||||
back_city: function ($event) {
|
back_city: function ($event) {
|
||||||
return _vm.$handleViewEvent($event)
|
return _vm.$handleViewEvent($event)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user