123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492 |
- <template>
- <view class="container">
- <view class="detail-desc">
-
- <view class="d-header">
- <text>发运数据</text>
- </view>
- <view class="c-list">
- <view class="c-row b-b">
- <text class="tit">总任务量</text>
- <view class="con-list">
- <text>{{taskInfo.count}}</text>
- </view>
- </view>
- <view class="c-row b-b">
- <text class="tit">已出库数量</text>
- <view class="con-list">
- <text>{{taskInfo.outNum}}</text>
- </view>
- </view>
- <view class="c-row b-b">
- <text class="tit">出库数量(吨)</text>
- <view class="con-list">
- <input placeholder="请填写出库数量" name="input" v-model="weight" @input="weightInput"></input>
- </view>
- </view>
- <view class="cu-bar bg-white ">
- <view class="action">
- 磅单照片
- </view>
- </view>
- <view class="cu-form-group">
- <view class="grid col-2 grid-square flex-sub">
- <view class="bg-img" v-if="poundImg != ''" @tap="ViewImage" :data-url="poundImg">
- <image :src="poundImg" mode="aspectFit"></image>
- <view class="cu-tag bg-red" @tap.stop="DelImg" >
- <text class='cuIcon-close'></text>
- </view>
- </view>
- <view class="solids" @tap="ChooseImage" v-if="poundImg == ''">
- <text class='cuIcon-cameraadd'></text>
- </view>
- </view>
- </view>
- <view class="c-row b-b">
- <text class="tit">合同内容</text>
- <view class="con-list">
- <button class='cu-btn bg-green shadow' @click="downLoadContract" >查看</button>
- </view>
- </view>
- </view>
- </view>
- <view class="cu-modal" :class="modalName=='userModal'?'show':''" @tap="hideModal">
- <scroll-view scroll-y class="cu-dialog" :style="userStyle" @tap.stop="">
- <view class="cu-list menu text-center" >
- <view class="cu-item" v-for="(item,index) in userList" :key="index" @click="mygaipai(item.id)">
- <label class="flex justify-between align-center flex-sub">
- <view class="flex-sub">{{item.userName}}</view>
- </label>
- </view>
- </view>
- </scroll-view>
- </view>
- <view class="cu-modal" :class="modalName=='workModal'?'show':''" @tap="hideModal">
- <scroll-view scroll-y class="cu-dialog" :style="userStyle" @tap.stop="">
- <view class="cu-list menu text-center" >
- <view class="cu-item" v-for="(item,index) in userList" :key="index" @click="nextPerson(item.id)">
- <label class="flex justify-between align-center flex-sub">
- <view class="flex-sub">{{item.userName}}</view>
- </label>
- </view>
- </view>
- </scroll-view>
- </view>
- <view v-if="taskStatus == 1" class="page-bottom">
- <view class="action-btn-group">
- <button type="primary" class=" action-btn no-border buy-now-btn" @click="save">保存</button>
- <button type="primary" class=" action-btn no-border add-cart-btn" @click="finish">完成</button>
- <button type="primary" class=" action-btn no-border add-cart-btn" @click="gaipai">改派</button>
- </view>
- </view>
- </view>
- </template>
- <script>
- import uploadImage from '@/components/ossutil/uploadFile.js';
- import {
- mapState
- } from 'vuex';
- export default {
- data() {
- return {
- taskInfo:[],
- poundImg:'',
- weight:'',
- taskStatus:'',
- userStyle:'',
- modalName:'',
- userList:[],
- taskType:'',
- taskId:'',
- };
- },
- computed: {
- ...mapState(['hasLogin','userInfo'])
- },
- onShow() {
- },
- onLoad(options) {
- const that = this
- this.taskId = options.taskId
- this.taskStatus = options.taskStatus
- uni.showLoading({
- title: '正在加载',
- mask:true
- })
- that.$api.request('task', 'getTaskInfo', {
- taskId: options.taskId
- }, failres => {
- that.$api.msg(failres.errmsg)
- uni.hideLoading()
- }).then(res => {
- that.taskInfo = res.data
- that.weight = res.data.workNum
- that.poundImg = res.data.workPoundImg
- uni.hideLoading()
- })
- },
-
- methods: {
- downLoadContract(){
- var that = this
- uni.showLoading({
- title: '正在加载',
- mask:true
- })
- uni.downloadFile({
- url: that.taskInfo.workContractFile,
- success: function (res) {
- var filePath = res.tempFilePath;
- uni.openDocument({
- filePath: filePath,
- success: function (res) {
- uni.hideLoading()
- console.log('打开文档成功');
- }
- });
- },
- })
- },
- hideModal(e) {
- this.modalName = null
- },
- ViewImage(e) {
- var img = [];
- img = e.currentTarget.dataset.url.split(' ')
- uni.previewImage({
- current:0,
- urls: img
- });
- },
- DelImg(e) {
- uni.showModal({
- title: '提示',
- content: '确定要删除该磅单照片吗?',
- cancelText: '取消',
- confirmText: '确定',
- success: res => {
- if (res.confirm) {
- this.poundImg = "";
- }
- }
- })
- },
- ChooseImage() {
- uni.chooseImage({
- count: 1, //默认9
- sizeType: ['original', 'compressed'], //可以指定是原图还是压缩图,默认二者都有
- sourceType: ['album','camera'], //从相册选择
- success: (res) => {
- //上传图片
- //图片路径可自行修改
- uploadImage(res.tempFilePaths[0], 'poundImg/',
- result => {
- this.poundImg = result
- uni.hideLoading();
- }
- )
- }
- });
- },
- weightInput(e) {
- this.weight = e.detail.value
- },
- save(){
- const that = this
- uni.showLoading({
- title: '正在加载',
- mask:true
- })
- that.$api.request('task', 'saveTaskInfo', {
- taskId: that.taskId,
- workNum:!that.weight?'':that.weight,
- workPoundImg:!that.poundImg?'':that.poundImg
- }, failres => {
- that.$api.msg(failres.errmsg)
- uni.hideLoading()
- }).then(res => {
- that.$api.msg('保存成功')
- uni.hideLoading()
- })
- },
- finish(){
- const that = this
- if(!that.weight){
- this.$api.msg('请填写出库数量');
- return;
- }
- if(!that.poundImg){
- this.$api.msg('请上传磅单照片');
- return;
- }
- uni.showModal({
- title: '温馨提示',
- content: '是否指派外勤继续完成平仓发运任务',
- confirmText:"是",
- cancelText:"否",
- success: function (res) {
- if (res.confirm) {
- uni.showLoading({
- title: '正在加载',
- mask:true
- })
- that.$api.request('user', 'getUserList', {
- role:'外勤'
- }, failres => {
- that.$api.msg(failres.errmsg)
- uni.hideLoading()
- }).then(res => {
- that.userList = res.data
- if(that.userList.length == 0){
- that.$api.msg('暂无外勤信息')
- }
- else{
- var height = that.userList.length * 100
- var width = 500
- that.userStyle = "height:"+height+"rpx;width:" + width+"rpx"
- that.modalName = 'workModal'
- }
- uni.hideLoading()
- })
- } else if (res.cancel) {
- uni.showLoading({
- title: '正在加载',
- mask:true
- })
- that.$api.request('task', 'finishTaskInfo', {
- taskId: that.taskId,
- workNum:!that.weight?'':that.weight,
- workPoundImg:!that.poundImg?'':that.poundImg,
- nextUserId: -1
- }, failres => {
- that.$api.msg(failres.errmsg)
- uni.hideLoading()
- }).then(res => {
- that.$api.msg('完成成功')
- setTimeout(()=>{uni.navigateBack({})},1000);
- uni.hideLoading()
- })
- }
- }
- });
-
-
- },
- gaipai(){
- const that = this
- uni.showLoading({
- title: '正在加载',
- mask:true
- })
- that.$api.request('user', 'getUserList', {
- role:'外勤'
- }, failres => {
- that.$api.msg(failres.errmsg)
- uni.hideLoading()
- }).then(res => {
- that.userList = res.data
- if(that.userList.length == 0){
- that.$api.msg('暂无外勤信息')
- }
- else{
- var height = that.userList.length * 100
- var width = 500
- that.userStyle = "height:"+height+"rpx;width:" + width+"rpx"
- that.modalName = 'userModal'
- }
-
- uni.hideLoading()
- })
- },
- mygaipai(id){
- var that = this
- uni.showLoading({
- title: '正在加载',
- mask:true
- })
- that.$api.request('task', 'gaipai',{
- taskId: that.taskId,
- outPersonId:id
- },failres => {
- that.$api.msg(failres.errmsg)
- that.modalName = null
- uni.hideLoading()
- }).then(res => {
- that.modalName = null
- uni.navigateBack({
- delta: 2
- })
- uni.hideLoading()
- })
- },
- nextPerson(id){
- var that = this
- uni.showLoading({
- title: '正在加载',
- mask:true
- })
- that.$api.request('task', 'finishTaskInfo', {
- taskId: that.taskId,
- workNum:!that.weight?'':that.weight,
- workPoundImg:!that.poundImg?'':that.poundImg,
- nextUserId: id
- }, failres => {
- that.$api.msg(failres.errmsg)
- uni.hideLoading()
- }).then(res => {
- uni.hideLoading()
-
- that.$api.msg('完成成功')
- setTimeout(()=>{uni.navigateBack({
- delta: 2
- })},1000);
- })
- },
- },
- }
- </script>
- <style lang='scss'>
- .container{
- padding-bottom: 160upx;
- }
- .detail-desc {
- background: #fff;
- margin-top: 16upx;
- width: 750upx;
-
- .d-header {
- display: flex;
- justify-content: center;
- align-items: center;
- height: 80upx;
- font-size: $font-base + 2upx;
- color: $font-color-dark;
- position: relative;
-
- text {
- padding: 0 20upx;
- background: #fff;
- position: relative;
- z-index: 1;
- }
-
- &:after {
- position: absolute;
- left: 50%;
- top: 50%;
- transform: translateX(-50%);
- width: 300upx;
- height: 0;
- content: '';
- border-bottom: 1px solid #ccc;
- }
- }
- }
- .c-list {
- font-size: $font-sm + 2upx;
- color: $font-color-base;
- background: #fff;
-
- .c-row {
- display: flex;
- align-items: center;
- padding: 20upx 30upx;
- position: relative;
- }
-
- .tit {
- width: 220upx;
- }
-
- .con {
- flex: 1;
- color: $font-color-dark;
-
- .selected-text {
- margin-right: 10upx;
- }
- }
-
- .bz-list {
- height: 40upx;
- font-size: $font-sm+2upx;
- color: $font-color-dark;
-
- text {
- display: inline-block;
- margin-right: 30upx;
- }
- }
-
- .con-list {
- flex: 1;
- display: flex;
- flex-direction: column;
- color: $font-color-dark;
- line-height: 40upx;
- text-align: right;
- padding-right: 20upx;
- }
-
- .red {
- color: $uni-color-primary;
- }
- }
- /* 底部操作菜单 */
- .page-bottom {
- .action-btn-group {
- .action-btn {
- width: 33.3333%;
- }
- }
- }
- @mixin playcenter {
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .xsh-start {
- width: 105rpx;
- height: 105rpx;
- background: #FFFFFF;
- border-radius: 50%;
- font-size: 29rpx;
- color: #4135EB;
- @include playcenter;
- flex-wrap: wrap;
- }
- .x-modal {
- width: 100%;
- .x-m-title {
- width: 100%;
- height: 90rpx;
- padding: 0 38rpx 0 31rpx;
- box-sizing: border-box;
- font-size: 29rpx;
- color: #333333;
- border-bottom: 1px dashed #999;
- @include playcenter;
- justify-content: space-between;
- .xm-t-clear {
- font-size: 25rpx;
- color: #341DB7;
- @include playcenter;
- >image {
- width: 28rpx;
- height: 28rpx;
- display: block;
- margin-right: 8rpx;
- }
- }
- }
- .x-m-con {
- width: 100%;
- padding: 0 31rpx 18rpx;
- margin-top: 5rpx;
- box-sizing: border-box;
- }
- }
-
- </style>
|