123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236 |
- <template>
- <view>
- <view style="padding: 10px 0px 66px 0px;min-height: 100px">
- <!--标题-->
- <view style="text-align:center">
- <text class="title">{{title}}</text>
- </view>
- <view class="card">
- <!--表单-->
- <test :grids="jsonData" :formData="formData"></test>
- <transferRecordsModule :historicTaskList="historicTaskList"></transferRecordsModule>
- <!--审核意见-->
- <view v-if="type === 'audit'">
- <view class="divider">
- <text class="divider-content"><span style="color: red">*</span> 审批意见</text>
- </view>
- <textarea :rows="5" maxlength="500" placeholder="请填写审核意见:" v-model="comments" show-word-limit></textarea>
- </view>
- <!--操作按钮-->
- <view class="bottom-wrap flex">
- <view class="flex-sub"
- v-for="(button, index) in buttons" :key="index" >
- <u-button type="primary" class=" buttonBox" :color="colors[index]" @click="submit(button, buttons)" :text="button.name"></u-button>
- </view>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- import Test from './Test.vue';
- import TransferRecordsModule from './TransferRecordsModule.vue';
- import ccpmService from '@/api/centerservice/ccpm/CcpmService'
- export default {
- onLoad: function (option) {
- this.flow = JSON.parse(decodeURIComponent(option.flow));
- this.businessId = this.flow.id
- this.processDefKey = this.flow.processDefKey
- this.title = this.flow.title
- this.type = this.flow.type
- this.jsonData = []
- this.comments = ''
- },
- data () {
- return {
- buttons: [
- {code: '_flow_agree', name: '同意'},
- {code: '_flow_reject', name: '驳回'},
- {code: '_flow_close', name: '关闭'},
- ],
- colors: [ '#3c9cff', '#f56c6c', '#5ac725', '#f9ae3d', '#89c152',
- '#c38cc1', '#448aca', '#73d1f1', '#ffb34b', '#f18080',
- '#88a867', '#bfbf39', '#94d554', '#f19ec2', '#afaae4',
- '#86cefa', '#98d1ee', '#72dcdc', '#9acdcb', '#77b1cc', '#80a7dc'
- ],
- flow: null,
- formData: {
- name: '',
- email: '',
- remarks: ''
- },
- jsonData: {},
- historicTaskList: [],
- title: '',
- businessId: '',
- loading: false,
- type: '',
- processDefKey: '',
- comments: '' // 审核意见
- }
- },
- activated () {
- this.init()
- },
- created () {
- this.init()
- },
- components: {
- Test,
- TransferRecordsModule,
- },
- methods: {
- // 初始化
- init () {
- console.log('this.businessId ', this.businessId)
- this.$nextTick(async () => {
- this.loading = true
- await ccpmService.getByIdGenerate(this.businessId, this.processDefKey).then((data)=>{
- if (data) {
- console.log('data',data)
- this.loading = false
- this.jsonData = JSON.parse(JSON.stringify(data.list))
- this.jsonData.files = data.files
- this.historicTaskList = data.histoicFlow
- } else {
- this.loading = false
- }
- })
- })
- },
- // 关闭
- close () {
- this.jsonData = []
- this.comments = ''
- uni.navigateTo({
- url: '/pages/workbench/task/TodoList'
- })
- },
- // 同意
- agree () {
- if (this.isEmpty(this.comments)) {
- uni.showToast({ title: '请填写审批意见!', icon: "error" });
- } else {
- this.loading = true
- ccpmService.reimAudit(this.businessId, 'yes', this.comments, this.processDefKey).then((data) => {
- this.loading = false
- if (data.success) {
- uni.showToast({ title: data.message, icon: "success" });
- this.close()
- } else {
- uni.showToast({ title: data.message, icon: "error" });
- }
- }).catch(() => {
- this.loading = false
- })
- }
- },
- // 驳回
- reject () {
- if (this.isEmpty(this.comments)) {
- uni.showToast({ title: '请填写审批意见', icon: "error" });
- } else {
- // 弹窗 二次确认
- uni.showModal({
- content: '确定驳回此报销申请吗?',
- success: async (res) => {
- if (res.confirm) {
- ccpmService.reimAudit(this.businessId, 'no', this.comments, this.processDefKey).then((data) => {
- this.loading = false
- if (data.success) {
- uni.showToast({ title: data.message, icon: "success" });
- this.close()
- } else {
- uni.showToast({ title: data.message, icon: "error" });
- }
- }).catch(() => {
- this.loading = false
- })
- }
- },
- })
- }
- },
- isEmpty(value) {
- let result = false;
- if (value == null || value == undefined) {
- result = true;
- }
- if (typeof value == 'string' && (value.replace(/\s+/g, "") == "" || value == "")) {
- result = true;
- }
- if (typeof value == "object" && value instanceof Array && value.length === 0) {
- result = true;
- }
- return result;
- },
- isNotEmpty (value) {
- return !this.isEmpty(value)
- },
- submit (currentBtn, buttons) {
- switch (currentBtn.code) {
- case '_flow_agree': // 同意
- this.agree()
- break
- case '_flow_reject': // 驳回
- this.reject()
- break
- case '_flow_close':// 关闭
- this.close()
- break
- }
- }
- }
- }
- </script>
- <style scoped>
- .title {
- font-size: 24px;
- font-weight: bold;
- }
- .card {
- padding: 15px;
- background-color: #fff;
- box-shadow: 0 2px 12px 0 rgba(0,0,0,.1);
- }
- .divider {
- display: flex;
- align-items: center;
- margin-top: 20px;
- }
- .divider-content {
- font-size: 16px;
- color: #333;
- }
- .FlowFormFooter {
- display: flex;
- justify-content: space-around;
- margin-top: 2em;
- }
- button {
- padding: 10px 20px;
- border: none;
- border-radius: 5px;
- }
- button[type=primary] {
- background-color: #409eff;
- color: #fff;
- }
- button[type=danger] {
- background-color: #f56c6c;
- color: #fff;
- }
- </style>
|