diff --git a/package.json b/package.json index 2fd7721..29585bd 100644 --- a/package.json +++ b/package.json @@ -57,6 +57,7 @@ "vue": "2.6.12", "vue-count-to": "1.0.13", "vue-cropper": "0.5.5", + "vue-esign": "^1.1.4", "vue-meta": "2.4.0", "vue-router": "3.4.9", "vuedraggable": "2.24.3", diff --git a/src/api/awardManagement/awardManagement.js b/src/api/awardManagement/awardManagement.js new file mode 100644 index 0000000..814cd0a --- /dev/null +++ b/src/api/awardManagement/awardManagement.js @@ -0,0 +1,34 @@ +import request from '@/utils/request' +// 案件列表 +export function caseApplicationList(data) { + return request({ + url: '/caseApplication/list', + // headers: { + // isToken: false + // }, + method: 'get', + params: data + }) +} +// 查看详情 +export function caseApplicationDetail(data) { + return request({ + url: '/caseApplication/selectCaseApplication', + // headers: { + // isToken: false + // }, + method: 'post', + data: data + }) +} +// 检验裁决书 +export function verificationArbitrateRecord(data) { + return request({ + url: '/caseApplication/verificationArbitrateRecord', + // headers: { + // isToken: false + // }, + method: 'post', + data: data + }) +} \ No newline at end of file diff --git a/src/main.js b/src/main.js index 333bf8b..8f36180 100644 --- a/src/main.js +++ b/src/main.js @@ -39,7 +39,8 @@ import DictTag from '@/components/DictTag' import VueMeta from 'vue-meta' // 字典数据组件 import DictData from '@/components/DictData' - +//画布组件 +import vueEsign from 'vue-esign' // 全局方法挂载 Vue.prototype.getDicts = getDicts Vue.prototype.getConfigKey = getConfigKey @@ -63,6 +64,7 @@ Vue.component('ImagePreview', ImagePreview) Vue.use(directive) Vue.use(plugins) Vue.use(VueMeta) +Vue.use(vueEsign) DictData.install() /** diff --git a/src/views/awardManagement/components/paymentdetailsDialog.vue b/src/views/awardManagement/components/paymentdetailsDialog.vue new file mode 100644 index 0000000..26e59e7 --- /dev/null +++ b/src/views/awardManagement/components/paymentdetailsDialog.vue @@ -0,0 +1,116 @@ + + + + + \ No newline at end of file diff --git a/src/views/awardManagement/listofAwards.vue b/src/views/awardManagement/listofAwards.vue index ae0cab8..80332de 100644 --- a/src/views/awardManagement/listofAwards.vue +++ b/src/views/awardManagement/listofAwards.vue @@ -1,15 +1,181 @@ - + - - \ No newline at end of file + + \ No newline at end of file