|
@@ -10,17 +10,17 @@
|
|
|
<el-button type="primary" size="small" v-if="detailData.status == 1" class="el-button--small-yh "
|
|
|
@click.stop="openEdit">编辑
|
|
|
</el-button>
|
|
|
-<!-- <el-dropdown style="margin-right: 8px;margin-left: 8px;">-->
|
|
|
-<!-- <el-button type="primary" size="small">-->
|
|
|
-<!-- 审核处理<i class="el-icon-arrow-down el-icon--right"></i>-->
|
|
|
-<!-- </el-button>-->
|
|
|
-<!-- <el-dropdown-menu slot="dropdown">-->
|
|
|
-<!-- <el-dropdown-item :disabled="form.status > 0" @click.native="pleaseCheck">请核数据-->
|
|
|
-<!-- </el-dropdown-item>-->
|
|
|
-<!-- <el-dropdown-item disabled>审核进度</el-dropdown-item>-->
|
|
|
+ <el-dropdown style="margin-right: 8px;margin-left: 8px;">
|
|
|
+ <el-button type="primary" size="small">
|
|
|
+ 审核处理<i class="el-icon-arrow-down el-icon--right"></i>
|
|
|
+ </el-button>
|
|
|
+ <el-dropdown-menu slot="dropdown">
|
|
|
+ <el-dropdown-item :disabled="form.status > 0 || (!form.status && form.status !== 0)" @click.native="pleaseCheck">请核数据
|
|
|
+ </el-dropdown-item>
|
|
|
+ <el-dropdown-item @click.native="checkScheduleDialog = true,checkId = form.id">审核进度</el-dropdown-item>
|
|
|
<!-- <el-dropdown-item disabled>撤销请核</el-dropdown-item>-->
|
|
|
-<!-- </el-dropdown-menu>-->
|
|
|
-<!-- </el-dropdown>-->
|
|
|
+ </el-dropdown-menu>
|
|
|
+ </el-dropdown>
|
|
|
<el-dropdown style="margin-right: 8px;">
|
|
|
<el-button type="warning" size="small">
|
|
|
账单处理<i class="el-icon-arrow-down el-icon--right"></i>
|
|
@@ -454,6 +454,25 @@
|
|
|
<part-dialog ref="part" :partList="partList" @importPart="importPart" @partClosed="partClosed" />
|
|
|
<price-library ref="library" @importLibray="importLibray" />
|
|
|
<property-dialog ref="property" @importProperty="importProperty" />
|
|
|
+
|
|
|
+ <el-dialog
|
|
|
+ append-to-body
|
|
|
+ title="审批进度"
|
|
|
+ class="el-dialogDeep"
|
|
|
+ :visible.sync="checkScheduleDialog"
|
|
|
+ width="40%"
|
|
|
+ v-if="checkScheduleDialog"
|
|
|
+ :close-on-click-modal="false"
|
|
|
+ :destroy-on-close="true"
|
|
|
+ :close-on-press-escape="false"
|
|
|
+ v-dialog-drag
|
|
|
+ >
|
|
|
+ <check-schedule
|
|
|
+ :checkId="checkId"
|
|
|
+ :batchNo="batchNo"
|
|
|
+ @choceScheduleFun="choceScheduleFun"
|
|
|
+ ></check-schedule>
|
|
|
+ </el-dialog>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
@@ -519,6 +538,7 @@ import {
|
|
|
getCorpsattn
|
|
|
} from "@/api/basicData/customerInformation";
|
|
|
import goodsInfo from "./components/goodsInfo.vue";
|
|
|
+import checkSchedule from "@/components/check/checkSchedule.vue";
|
|
|
export default {
|
|
|
name: "detailsPageEdit",
|
|
|
data() {
|
|
@@ -538,6 +558,9 @@ export default {
|
|
|
dicData: []
|
|
|
},
|
|
|
switchDialog: false,
|
|
|
+ checkScheduleDialog: false,
|
|
|
+ checkId: '',
|
|
|
+ batchNo: '',
|
|
|
form: {
|
|
|
orderStatus: "录入",
|
|
|
cargoType: "普货",
|
|
@@ -1093,6 +1116,7 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
components: {
|
|
|
+ checkSchedule,
|
|
|
reportDialog,
|
|
|
feeInfo,
|
|
|
uploadFile,
|
|
@@ -1194,6 +1218,10 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
methods: {
|
|
|
+ //审核关闭
|
|
|
+ choceScheduleFun() {
|
|
|
+ this.checkScheduleDialog = false
|
|
|
+ },
|
|
|
cellStyle() {
|
|
|
return "padding:0;height:40px;";
|
|
|
},
|