|
@@ -83,7 +83,7 @@
|
|
<u-form-item label-width='260' label="杂质(%)<=">
|
|
<u-form-item label-width='260' label="杂质(%)<=">
|
|
<u-input v-model="list.contractGoodsInfo.impurity" input-align="right" placeholder="" disabled/>
|
|
<u-input v-model="list.contractGoodsInfo.impurity" input-align="right" placeholder="" disabled/>
|
|
</u-form-item>
|
|
</u-form-item>
|
|
- <u-form-item label-width='260' label="容重(克/升)>=">
|
|
|
|
|
|
+ <u-form-item label-width='260' label="容重(克/升)>=">
|
|
<u-input v-model="list.contractGoodsInfo.bulkDensity" input-align="right" placeholder="" disabled/>
|
|
<u-input v-model="list.contractGoodsInfo.bulkDensity" input-align="right" placeholder="" disabled/>
|
|
</u-form-item>
|
|
</u-form-item>
|
|
<u-form-item label-width='260' label="霉变粒(%)<=">
|
|
<u-form-item label-width='260' label="霉变粒(%)<=">
|
|
@@ -217,12 +217,17 @@
|
|
//驳回
|
|
//驳回
|
|
rejectSubmit() {
|
|
rejectSubmit() {
|
|
var that = this
|
|
var that = this
|
|
|
|
+ uni.showLoading({
|
|
|
|
+ title: '加载中',
|
|
|
|
+ mask: true
|
|
|
|
+ });
|
|
that.$api.doRequest('post', '/workflow/api/handle', {
|
|
that.$api.doRequest('post', '/workflow/api/handle', {
|
|
taskId: that.list.taskId,
|
|
taskId: that.list.taskId,
|
|
approved: false,
|
|
approved: false,
|
|
auditMind: this.auditMind,
|
|
auditMind: this.auditMind,
|
|
needReapply: true,
|
|
needReapply: true,
|
|
}).then(res => {
|
|
}).then(res => {
|
|
|
|
+ uni.hideLoading()
|
|
that.$api.msg('驳回成功')
|
|
that.$api.msg('驳回成功')
|
|
that.show=false
|
|
that.show=false
|
|
})
|
|
})
|
|
@@ -238,12 +243,17 @@
|
|
//通过
|
|
//通过
|
|
passSubmit() {
|
|
passSubmit() {
|
|
var that = this
|
|
var that = this
|
|
|
|
+ uni.showLoading({
|
|
|
|
+ title: '加载中',
|
|
|
|
+ mask: true
|
|
|
|
+ });
|
|
that.$api.doRequest('post', '/workflow/api/handle', {
|
|
that.$api.doRequest('post', '/workflow/api/handle', {
|
|
taskId: that.list.taskId,
|
|
taskId: that.list.taskId,
|
|
approved: true,
|
|
approved: true,
|
|
auditMind: this.auditMind,
|
|
auditMind: this.auditMind,
|
|
needReapply: true,
|
|
needReapply: true,
|
|
}).then(res => {
|
|
}).then(res => {
|
|
|
|
+ uni.hideLoading()
|
|
that.$api.msg('通过成功')
|
|
that.$api.msg('通过成功')
|
|
that.show=false
|
|
that.show=false
|
|
setTimeout(function() {
|
|
setTimeout(function() {
|