|
|
@@ -24,7 +24,7 @@
|
|
|
type="success"
|
|
|
size="mini"
|
|
|
@click="handleAudit(1)"
|
|
|
- >通过
|
|
|
+ >通过
|
|
|
</el-button>
|
|
|
<el-button
|
|
|
icon="el-icon-circle-close"
|
|
|
@@ -32,11 +32,16 @@
|
|
|
size="mini"
|
|
|
@click="handleAudit(0)"
|
|
|
v-if="!['starter', 'starterFillApprove'].includes(taskDefinitionKey)"
|
|
|
- >驳回
|
|
|
+ >驳回
|
|
|
</el-button>
|
|
|
|
|
|
- <el-dropdown @command="(command) => handleCommand(command)" style="margin-left: 30px;">
|
|
|
- <span class="el-dropdown-link">更多<i class="el-icon-arrow-down el-icon--right"></i></span>
|
|
|
+ <el-dropdown
|
|
|
+ @command="(command) => handleCommand(command)"
|
|
|
+ style="margin-left: 30px"
|
|
|
+ >
|
|
|
+ <span class="el-dropdown-link"
|
|
|
+ >更多<i class="el-icon-arrow-down el-icon--right"></i
|
|
|
+ ></span>
|
|
|
<el-dropdown-menu slot="dropdown">
|
|
|
<el-dropdown-item command="cancel">作废</el-dropdown-item>
|
|
|
</el-dropdown-menu>
|
|
|
@@ -70,124 +75,130 @@
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
-import {UpdateInformation, cancel} from '@/api/bpm/components/purchasingManage/purchaseOrder';
|
|
|
-import {approveTaskWithVariables, rejectTask} from '@/api/bpm/task';
|
|
|
-import {listAllUserBind} from '@/api/system/organization';
|
|
|
+ import {
|
|
|
+ UpdateInformation,
|
|
|
+ cancel
|
|
|
+ } from '@/api/bpm/components/purchasingManage/purchaseOrder';
|
|
|
+ import { approveTaskWithVariables, rejectTask } from '@/api/bpm/task';
|
|
|
+ import { listAllUserBind } from '@/api/system/organization';
|
|
|
|
|
|
-// 流程实例的详情页,可用于审批
|
|
|
-export default {
|
|
|
- name: '',
|
|
|
- components: {
|
|
|
- // Parser
|
|
|
- },
|
|
|
- props: {
|
|
|
- businessId: {
|
|
|
- default: ''
|
|
|
- },
|
|
|
- taskId: {
|
|
|
- default: ''
|
|
|
+ // 流程实例的详情页,可用于审批
|
|
|
+ export default {
|
|
|
+ name: '',
|
|
|
+ components: {
|
|
|
+ // Parser
|
|
|
},
|
|
|
- id: {
|
|
|
- default: ''
|
|
|
- },
|
|
|
- taskDefinitionKey: {
|
|
|
- default: ''
|
|
|
- }
|
|
|
- },
|
|
|
- data() {
|
|
|
- return {
|
|
|
- form: {
|
|
|
- technicianId: '',
|
|
|
- reason: ''
|
|
|
+ props: {
|
|
|
+ businessId: {
|
|
|
+ default: ''
|
|
|
},
|
|
|
- userOptions: []
|
|
|
- };
|
|
|
- },
|
|
|
- created() {
|
|
|
- this.userOptions = [];
|
|
|
- listAllUserBind().then((data) => {
|
|
|
- this.userOptions.push(...data);
|
|
|
- });
|
|
|
- },
|
|
|
- methods: {
|
|
|
- /** 处理转办审批人 */
|
|
|
- handleUpdateAssignee() {
|
|
|
- this.$emit('handleUpdateAssignee');
|
|
|
- },
|
|
|
- /** 退回 */
|
|
|
- handleBackList() {
|
|
|
- this.$emit('handleBackList');
|
|
|
- },
|
|
|
-
|
|
|
- async handleAudit(status) {
|
|
|
- //发起人补充
|
|
|
- if (this.taskDefinitionKey === 'starter') {
|
|
|
- let arr = await this.getTableValue();
|
|
|
- let isFlag = arr.productList.some(item => item.supplierMark == '')
|
|
|
- if (isFlag) {
|
|
|
- return this.$message.warning('请输入供应商代号')
|
|
|
- }
|
|
|
- if (!arr) {
|
|
|
- return;
|
|
|
- }
|
|
|
- let data = await UpdateInformation(arr);
|
|
|
- if (data.code != '0') {
|
|
|
- return;
|
|
|
- }
|
|
|
+ taskId: {
|
|
|
+ default: ''
|
|
|
+ },
|
|
|
+ id: {
|
|
|
+ default: ''
|
|
|
+ },
|
|
|
+ taskDefinitionKey: {
|
|
|
+ default: ''
|
|
|
}
|
|
|
- this._approveTaskWithVariables(status);
|
|
|
},
|
|
|
- async _approveTaskWithVariables(status) {
|
|
|
- let variables = {
|
|
|
- pass: !!status
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ form: {
|
|
|
+ technicianId: '',
|
|
|
+ reason: ''
|
|
|
+ },
|
|
|
+ userOptions: []
|
|
|
};
|
|
|
-
|
|
|
- let API = !!status ? approveTaskWithVariables : rejectTask;
|
|
|
- API({
|
|
|
- id: this.taskId,
|
|
|
- reason: this.form.reason,
|
|
|
- variables
|
|
|
- }).then((res) => {
|
|
|
- if (res.data.code != '-1') {
|
|
|
- this.$emit('handleAudit', {
|
|
|
- status,
|
|
|
- title: status === 0 ? '驳回' : ''
|
|
|
- });
|
|
|
- }
|
|
|
+ },
|
|
|
+ created() {
|
|
|
+ this.userOptions = [];
|
|
|
+ listAllUserBind().then((data) => {
|
|
|
+ this.userOptions.push(...data);
|
|
|
});
|
|
|
},
|
|
|
+ methods: {
|
|
|
+ /** 处理转办审批人 */
|
|
|
+ handleUpdateAssignee() {
|
|
|
+ this.$emit('handleUpdateAssignee');
|
|
|
+ },
|
|
|
+ /** 退回 */
|
|
|
+ handleBackList() {
|
|
|
+ this.$emit('handleBackList');
|
|
|
+ },
|
|
|
+
|
|
|
+ async handleAudit(status) {
|
|
|
+ //发起人补充
|
|
|
+ if (this.taskDefinitionKey === 'starter') {
|
|
|
+ let arr = await this.getTableValue();
|
|
|
+ let isFlag = arr.productList.some((item) => item.supplierMark == '');
|
|
|
+ if (isFlag) {
|
|
|
+ return this.$message.warning('请输入供应商代号');
|
|
|
+ }
|
|
|
+ if (!arr) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ let data = await UpdateInformation(arr);
|
|
|
+ if (data.code != '0') {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ this._approveTaskWithVariables(status);
|
|
|
+ },
|
|
|
+ async _approveTaskWithVariables(status) {
|
|
|
+ let variables = {
|
|
|
+ pass: !!status
|
|
|
+ };
|
|
|
|
|
|
- getTableValue() {
|
|
|
- return new Promise((resolve, reject) => {
|
|
|
- this.$emit('getTableValue', async (data) => {
|
|
|
- resolve(await data);
|
|
|
+ let API = !!status ? approveTaskWithVariables : rejectTask;
|
|
|
+ API({
|
|
|
+ id: this.taskId,
|
|
|
+ reason: this.form.reason,
|
|
|
+ variables
|
|
|
+ }).then((res) => {
|
|
|
+ if (res.data.code != '-1') {
|
|
|
+ this.$emit('handleAudit', {
|
|
|
+ status,
|
|
|
+ title: status === 0 ? '驳回' : ''
|
|
|
+ });
|
|
|
+ }
|
|
|
});
|
|
|
- });
|
|
|
- },
|
|
|
+ },
|
|
|
|
|
|
- //更多
|
|
|
- handleCommand(command) {
|
|
|
- if (command === 'cancel') {
|
|
|
- this.$confirm("是否确认作废?", {
|
|
|
- type: 'warning',
|
|
|
- cancelButtonText: '取消',
|
|
|
- confirmButtonText: '确定'
|
|
|
- }).then(() => {
|
|
|
- cancel({
|
|
|
- id: this.taskId,
|
|
|
- reason: this.form.reason,
|
|
|
- businessId: this.businessId,
|
|
|
- }).then(() => {
|
|
|
- this.$emit('handleClose');
|
|
|
- }).catch(() => {
|
|
|
- this.$message.error("流程作废失败");
|
|
|
+ getTableValue() {
|
|
|
+ return new Promise((resolve, reject) => {
|
|
|
+ this.$emit('getTableValue', async (data) => {
|
|
|
+ resolve(await data);
|
|
|
});
|
|
|
- }).catch(() => {});
|
|
|
- }
|
|
|
- },
|
|
|
+ });
|
|
|
+ },
|
|
|
|
|
|
- }
|
|
|
-};
|
|
|
+ //更多
|
|
|
+ handleCommand(command) {
|
|
|
+ if (command === 'cancel') {
|
|
|
+ this.$confirm('是否确认作废?', {
|
|
|
+ type: 'warning',
|
|
|
+ cancelButtonText: '取消',
|
|
|
+ confirmButtonText: '确定'
|
|
|
+ })
|
|
|
+ .then(() => {
|
|
|
+ cancel({
|
|
|
+ id: this.taskId,
|
|
|
+ reason: this.form.reason,
|
|
|
+ businessId: this.businessId
|
|
|
+ })
|
|
|
+ .then(() => {
|
|
|
+ this.$emit('handleClose');
|
|
|
+ })
|
|
|
+ .catch(() => {
|
|
|
+ this.$message.error('流程作废失败');
|
|
|
+ });
|
|
|
+ })
|
|
|
+ .catch(() => {});
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ };
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss"></style>
|