Merge branch 'master' of http://yun.pashanhoo.com:9090/bdc/bdcjg-web
Showing
6 changed files
with
85 additions
and
8 deletions
| ... | @@ -49,3 +49,13 @@ export function getDetail (params) { | ... | @@ -49,3 +49,13 @@ export function getDetail (params) { |
| 49 | }) | 49 | }) |
| 50 | } | 50 | } |
| 51 | 51 | ||
| 52 | // 结果 | ||
| 53 | export function getReceiveDataReportResult (bsmReport) { | ||
| 54 | return request({ | ||
| 55 | url: SERVER.SERVERAPI + '/rest/sjsb/DataReport/getReceiveDataReportResult', | ||
| 56 | method: 'get', | ||
| 57 | params: { | ||
| 58 | bsmReport: bsmReport | ||
| 59 | } | ||
| 60 | }) | ||
| 61 | } | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
| ... | @@ -69,7 +69,7 @@ | ... | @@ -69,7 +69,7 @@ |
| 69 | <p class="label-detail">(SQZSBS)</p> | 69 | <p class="label-detail">(SQZSBS)</p> |
| 70 | </span> | 70 | </span> |
| 71 | <el-select :disabled="$store.state.business.Edit" v-model="ruleForm.SQZSBS" placeholder="申请证书版式"> | 71 | <el-select :disabled="$store.state.business.Edit" v-model="ruleForm.SQZSBS" placeholder="申请证书版式"> |
| 72 | <el-option v-for="item in dicData['A41']" :key="item.DCODE" :label="item.DNAME" :value="item.DCODE"> | 72 | <el-option v-for="item in dicData['A41']" :key="item.DCODE" :label="item.DNAME" :value="item.DCODE-0"> |
| 73 | </el-option> | 73 | </el-option> |
| 74 | </el-select> | 74 | </el-select> |
| 75 | </el-form-item> | 75 | </el-form-item> |
| ... | @@ -245,7 +245,7 @@ export default { | ... | @@ -245,7 +245,7 @@ export default { |
| 245 | default: "", | 245 | default: "", |
| 246 | }, | 246 | }, |
| 247 | }, | 247 | }, |
| 248 | data() { | 248 | data () { |
| 249 | return { | 249 | return { |
| 250 | ruleForm: { | 250 | ruleForm: { |
| 251 | YSDM: "", | 251 | YSDM: "", |
| ... | @@ -271,7 +271,7 @@ export default { | ... | @@ -271,7 +271,7 @@ export default { |
| 271 | }; | 271 | }; |
| 272 | }, | 272 | }, |
| 273 | methods: { | 273 | methods: { |
| 274 | async featchData() { | 274 | async featchData () { |
| 275 | try { | 275 | try { |
| 276 | let { result: res } = await business.getDjtDjSlsqById(this.bsmSjsb); | 276 | let { result: res } = await business.getDjtDjSlsqById(this.bsmSjsb); |
| 277 | this.ruleForm = res; | 277 | this.ruleForm = res; |
| ... | @@ -280,7 +280,7 @@ export default { | ... | @@ -280,7 +280,7 @@ export default { |
| 280 | this.$refs.msg.messageShow(); | 280 | this.$refs.msg.messageShow(); |
| 281 | } | 281 | } |
| 282 | }, | 282 | }, |
| 283 | handleUpdateForm() { | 283 | handleUpdateForm () { |
| 284 | return new Promise(async (resolve) => { | 284 | return new Promise(async (resolve) => { |
| 285 | try { | 285 | try { |
| 286 | let res = await business.updateDjtDjSlsq(this.ruleForm); | 286 | let res = await business.updateDjtDjSlsq(this.ruleForm); | ... | ... |
| ... | @@ -57,7 +57,8 @@ | ... | @@ -57,7 +57,8 @@ |
| 57 | } | 57 | } |
| 58 | } | 58 | } |
| 59 | 59 | ||
| 60 | .el-icon-date { | 60 | .el-icon-date, |
| 61 | .el-icon-time { | ||
| 61 | display: none; | 62 | display: none; |
| 62 | } | 63 | } |
| 63 | 64 | ||
| ... | @@ -65,6 +66,7 @@ | ... | @@ -65,6 +66,7 @@ |
| 65 | // refine element ui upload | 66 | // refine element ui upload |
| 66 | .el-input.is-disabled .el-input__inner { | 67 | .el-input.is-disabled .el-input__inner { |
| 67 | color: #FFFFFF !important; | 68 | color: #FFFFFF !important; |
| 69 | background-color: transparent !important; | ||
| 68 | } | 70 | } |
| 69 | 71 | ||
| 70 | .upload-container { | 72 | .upload-container { | ... | ... |
src/views/jsbwcx/components/result.vue
0 → 100644
| 1 | <!-- | ||
| 2 | 功能:结果 | ||
| 3 | 作者:calliope | ||
| 4 | --> | ||
| 5 | <template> | ||
| 6 | <div class='result'> | ||
| 7 | <p>响应xml</p> | ||
| 8 | <el-input type="textarea" :rows="6" class="resulttext" placeholder="请输入内容" v-model="REPMSGXML"> | ||
| 9 | </el-input> | ||
| 10 | <p>错误信息</p> | ||
| 11 | <el-input type="textarea" :rows="6" class="resulttext" placeholder="请输入内容" v-model="ERRORINFO"> | ||
| 12 | </el-input> | ||
| 13 | </div> | ||
| 14 | </template> | ||
| 15 | <script> | ||
| 16 | import { getReceiveDataReportResult } from "@/api/sbbwcx.js"; | ||
| 17 | export default { | ||
| 18 | components: {}, | ||
| 19 | props: { | ||
| 20 | formData: { | ||
| 21 | type: Object, | ||
| 22 | default: {} | ||
| 23 | } | ||
| 24 | }, | ||
| 25 | data () { | ||
| 26 | return { | ||
| 27 | REPMSGXML: '', | ||
| 28 | ERRORINFO: '', | ||
| 29 | } | ||
| 30 | }, | ||
| 31 | created () { | ||
| 32 | getReceiveDataReportResult(this.formData.bsmReport).then(res => { | ||
| 33 | let data = res.result | ||
| 34 | this.REPMSGXML = data.REPMSGXML | ||
| 35 | this.ERRORINFO = data.ERRORINFO | ||
| 36 | }) | ||
| 37 | } | ||
| 38 | } | ||
| 39 | </script> | ||
| 40 | <style scoped lang='scss'> | ||
| 41 | @import '~@/styles/public.scss'; | ||
| 42 | |||
| 43 | .result { | ||
| 44 | padding: 15px; | ||
| 45 | |||
| 46 | p { | ||
| 47 | color: #ffffff; | ||
| 48 | line-height: 26px; | ||
| 49 | font-size: 18px; | ||
| 50 | } | ||
| 51 | } | ||
| 52 | |||
| 53 | /deep/.el-textarea__inner { | ||
| 54 | min-height: 33vh !important; | ||
| 55 | background-color: #08346F !important; | ||
| 56 | color: #ffffff; | ||
| 57 | border: none !important; | ||
| 58 | } | ||
| 59 | </style> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
| ... | @@ -185,7 +185,9 @@ export default { | ... | @@ -185,7 +185,9 @@ export default { |
| 185 | > | 185 | > |
| 186 | 详情 | 186 | 详情 |
| 187 | </el-button> | 187 | </el-button> |
| 188 | <el-button type="primary">结果</el-button> | 188 | <el-button type="primary" onClick={() => { |
| 189 | this.handleResult(scope.row); | ||
| 190 | }}>结果</el-button> | ||
| 189 | </div> | 191 | </div> |
| 190 | ) | 192 | ) |
| 191 | } | 193 | } |
| ... | @@ -226,6 +228,10 @@ export default { | ... | @@ -226,6 +228,10 @@ export default { |
| 226 | featchData () { | 228 | featchData () { |
| 227 | this.pageData.currentPage = 1 | 229 | this.pageData.currentPage = 1 |
| 228 | this.queryClick(); | 230 | this.queryClick(); |
| 231 | }, | ||
| 232 | // 结果 | ||
| 233 | handleResult (row) { | ||
| 234 | this.$popupDialog('响应结果', 'views/jsbwcx/components/result', row) | ||
| 229 | } | 235 | } |
| 230 | } | 236 | } |
| 231 | } | 237 | } | ... | ... |
| ... | @@ -86,9 +86,9 @@ export default { | ... | @@ -86,9 +86,9 @@ export default { |
| 86 | methods: { | 86 | methods: { |
| 87 | // 初始化数据 | 87 | // 初始化数据 |
| 88 | queryClick () { | 88 | queryClick () { |
| 89 | this.$startLoading(); | 89 | // this.$startLoading(); |
| 90 | getQlxxDictList({ ...this.ruleForm, ...this.pageData }).then(res => { | 90 | getQlxxDictList({ ...this.ruleForm, ...this.pageData }).then(res => { |
| 91 | this.$endLoading(); | 91 | // this.$endLoading(); |
| 92 | let { records, total } = res.result | 92 | let { records, total } = res.result |
| 93 | this.tableData.data = records ? records : [] | 93 | this.tableData.data = records ? records : [] |
| 94 | this.tableData.total = total ? total : 0 | 94 | this.tableData.total = total ? total : 0 | ... | ... |
-
Please register or sign in to post a comment