| | |
| | | // 这里输入线条的样式 |
| | | color: 'rgba(255,255,255,0.14)' |
| | | } |
| | | } |
| | | }, |
| | | axisLabel: { |
| | | formatter: function(value) { |
| | | const intValue = Math.round(value); |
| | | return intValue > 0 ? intValue : ''; |
| | | } |
| | | }, |
| | | minInterval: 1, |
| | | min: 1 |
| | | }, |
| | | yAxis: { |
| | | type: 'category', |
| | |
| | | nameTextStyle: { |
| | | padding: [0, 0, 4, -30] // 四个数字分别为上右下左与原位置距离 |
| | | }, |
| | | axisLabel: { |
| | | formatter: function(value) { |
| | | const intValue = Math.round(value); |
| | | return intValue > 0 ? intValue : ''; |
| | | } |
| | | }, |
| | | minInterval: 1, |
| | | min: 1, |
| | | splitLine: { |
| | | show: true, |
| | | lineStyle: { |
| | |
| | | // 这里输入线条的样式 |
| | | color: 'rgba(255,255,255,0.14)' |
| | | } |
| | | } |
| | | }, |
| | | axisLabel: { |
| | | formatter: function(value) { |
| | | const intValue = Math.round(value); |
| | | return intValue > 0 ? intValue : ''; |
| | | } |
| | | }, |
| | | minInterval: 1, |
| | | min: 1 |
| | | }, |
| | | grid: { |
| | | top: '16%', |
| | |
| | | }) |
| | | } |
| | | // 取消预约--访客 |
| | | export const visitsSelfCancel = (visitId, memberId) => { |
| | | export const visitsSelfCancel = (visitId, openid) => { |
| | | return http({ |
| | | url: `visitsAdmin/cloudService/web/visitor/visitsSelfCancel?visitId=${visitId}&memberId=${memberId}`, |
| | | url: `visitsAdmin/cloudService/web/visitor/visitsSelfCancel?visitId=${visitId}&openid=${openid}`, |
| | | method: 'get' |
| | | }) |
| | | } |
| | |
| | | // 取消预约 |
| | | cancel() { |
| | | const member = uni.getStorageSync('member'); |
| | | visitsSelfCancel(this.id, member.id).then(res => { |
| | | visitsSelfCancel(this.id, member.openId).then(res => { |
| | | this.cancelShow = false |
| | | this.getDetail(this.id) |
| | | }) |
| | |
| | | <u-icon v-if="info.approveDateVO.driverParam == 1" class="ml12" name="arrow-right" color="#999999" />
|
| | | </view>
|
| | | <textarea v-model="param.checkInfo" :placeholder="
|
| | | param.status == 2 ? '同意说明,非必填' : '拒绝说明,必填'
|
| | | param.status == 2 ? '同意说明,非必填' : '拒绝说明,非必填'
|
| | | " placeholder-class="placeholder9" />
|
| | | <view class="main_footer">
|
| | | <view class="btn" @click="showApprModal = false">取消</view>
|
| | |
| | | cnplatformWorkData().then(res => { |
| | | const result = res.data || [] |
| | | dataList5.value = result.map(i => { |
| | | i.statusTemp = i.status == 0 ? '作业中' : i.status == 1 ? '空闲中' : '作业超时' |
| | | i.statusTemp = i.status == 0 ? '作业中' : i.status == 1 ? '空闲中' : i.status == 2 ? '作业超时' : '叫号中' |
| | | if (i.workTime) { |
| | | // i.workTime = dayjs.duration(i.workTime * 1000).format('HH小时mm分') |
| | | i.workTime = (i.workTime / 60).toFixed(0) |
| | |
| | | proxy: { |
| | | "/gateway_interface": { |
| | | // target: "http://192.168.0.104:10010", |
| | | target: "http://10.50.250.253:8088/gateway_interface", |
| | | // target: "https://atwl.ahzyssl.com/zhyq_interface", |
| | | // target: "http://10.50.250.253:8088/gateway_interface", |
| | | target: "https://atwl.ahzyssl.com/zhyq_interface", |
| | | changeOrigin: true, |
| | | rewrite: (path) => path.replace(/^\/gateway_interface/, ""), |
| | | }, |