n20-common-lib 2.7.32 → 2.7.34
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/assets/.DS_Store +0 -0
- package/src/assets/css/dialog.scss +0 -5
- package/src/components/.DS_Store +0 -0
- package/src/components/ApprovalButtons/index.vue +2 -2
- package/src/plugins/.DS_Store +0 -0
- package/src/plugins/Print/.DS_Store +0 -0
- package/src/plugins/Sign/.DS_Store +0 -0
- package/src/plugins/Sign/NetSM3/.DS_Store +0 -0
- package/src/plugins/Sign/NetSM3/index.js +1 -1
- package/src/plugins/Sign/SkfSign/index.js +1 -1
- package/style/index.css +1 -1
- package/theme/blue.css +1 -1
- package/theme/cctcRed.css +1 -1
- package/theme/green.css +1 -1
- package/theme/lightBlue.css +1 -1
- package/theme/orange.css +1 -1
- package/theme/purple.css +1 -1
- package/theme/red.css +1 -1
- package/theme/yellow.css +1 -1
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|
|
@@ -640,7 +640,7 @@ export default {
|
|
|
640
640
|
if (this.addTaskList.length > 0 && !this.addTaskType) {
|
|
641
641
|
return this.addErrFn()
|
|
642
642
|
}
|
|
643
|
-
let { isCheck, taskId, appNo, groupNo, typeCode, orderId } = this.$route.query
|
|
643
|
+
let { isCheck, taskId, appNo, groupNo, typeCode, orderId, isAgentcy } = this.$route.query
|
|
644
644
|
if (isCheck === '1') {
|
|
645
645
|
let params = {
|
|
646
646
|
plainText: '',
|
|
@@ -648,7 +648,7 @@ export default {
|
|
|
648
648
|
isCheck,
|
|
649
649
|
auditAdvanceDtos: [
|
|
650
650
|
{
|
|
651
|
-
appNo
|
|
651
|
+
appNo,
|
|
652
652
|
taskId,
|
|
653
653
|
groupNo,
|
|
654
654
|
typeCode,
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -224,7 +224,7 @@ export async function getSign(plain, dn) {
|
|
|
224
224
|
confirmButtonText: '确定',
|
|
225
225
|
cancelButtonText: '取消',
|
|
226
226
|
inputType: 'password',
|
|
227
|
-
|
|
227
|
+
zIndex: 99999
|
|
228
228
|
})
|
|
229
229
|
.then(({ value }) => {
|
|
230
230
|
return performSign(plainText, value).then((signedData) => {
|
|
@@ -223,7 +223,7 @@ export async function getSign(plain, dn) {
|
|
|
223
223
|
confirmButtonText: '确定',
|
|
224
224
|
cancelButtonText: '取消',
|
|
225
225
|
inputType: 'password',
|
|
226
|
-
|
|
226
|
+
zIndex: 99999
|
|
227
227
|
}).then(({ value }) => {
|
|
228
228
|
return performSign(plainText, value).then((signedData) => {
|
|
229
229
|
answer = signedData
|