commit
This commit is contained in:
@@ -84,7 +84,7 @@ const PROPOSAL_INFO = {
|
|||||||
<el-table-column label="立案结果" prop="caseFilingType">
|
<el-table-column label="立案结果" prop="caseFilingType">
|
||||||
<template slot-scope="{row}">
|
<template slot-scope="{row}">
|
||||||
<div style="display: flex;justify-content: center">
|
<div style="display: flex;justify-content: center">
|
||||||
<dict-tag :options="dict.type.PROPOSAL_CASE_FILING_RESULT"
|
<dict-tag :options="dict.type.PROPOSAL_SUGGESTION_CASE_FILING_RESULT"
|
||||||
:value="row.caseFilingResult"></dict-tag>
|
:value="row.caseFilingResult"></dict-tag>
|
||||||
<template v-if="row.caseFilingType">
|
<template v-if="row.caseFilingType">
|
||||||
(
|
(
|
||||||
@@ -247,7 +247,7 @@ const PROPOSAL_INFO = {
|
|||||||
<slot></slot>
|
<slot></slot>
|
||||||
</div>
|
</div>
|
||||||
`,
|
`,
|
||||||
dicts: ["PROPOSAL_TYPE", "PROPOSAL_CASE_FILING_RESULT", "PROPOSAL_CASE_FILING_TYPE", "PROCESS_TASK_SUBMIT_TYPE", "PROPOSAL_FEEDBACK"],
|
dicts: ["PROPOSAL_TYPE", "PROPOSAL_CASE_FILING_RESULT", "PROPOSAL_SUGGESTION_CASE_FILING_RESULT", "PROPOSAL_CASE_FILING_TYPE", "PROCESS_TASK_SUBMIT_TYPE", "PROPOSAL_FEEDBACK"],
|
||||||
props: {
|
props: {
|
||||||
hide_slave: false
|
hide_slave: false
|
||||||
},
|
},
|
||||||
|
|||||||
+2
-2
@@ -104,7 +104,7 @@ layout("/layouts/platform.html"){
|
|||||||
<div class="commissioner-opinion-box">
|
<div class="commissioner-opinion-box">
|
||||||
<el-radio-group v-model="formData.caseFilingResult" size="small"
|
<el-radio-group v-model="formData.caseFilingResult" size="small"
|
||||||
class="commissioner-opinion-radio">
|
class="commissioner-opinion-radio">
|
||||||
<el-radio v-for="item in dict.type.PROPOSAL_CASE_FILING_RESULT" :label="item.code"
|
<el-radio v-for="item in dict.type.PROPOSAL_SUGGESTION_CASE_FILING_RESULT" :label="item.code"
|
||||||
border>{{item.label}}
|
border>{{item.label}}
|
||||||
</el-radio>
|
</el-radio>
|
||||||
</el-radio-group>
|
</el-radio-group>
|
||||||
@@ -138,7 +138,7 @@ layout("/layouts/platform.html"){
|
|||||||
new Vue({
|
new Vue({
|
||||||
el: "#app",
|
el: "#app",
|
||||||
store,
|
store,
|
||||||
dicts: ["PROPOSAL_CASE_FILING_RESULT", "PROPOSAL_CASE_FILING_TYPE"],
|
dicts: ["PROPOSAL_CASE_FILING_RESULT", "PROPOSAL_SUGGESTION_CASE_FILING_RESULT", "PROPOSAL_CASE_FILING_TYPE"],
|
||||||
mixins: [initTableMixins],
|
mixins: [initTableMixins],
|
||||||
components: {
|
components: {
|
||||||
"proposal-info": PROPOSAL_INFO
|
"proposal-info": PROPOSAL_INFO
|
||||||
|
|||||||
@@ -69,7 +69,7 @@ const PROPOSAL_INFO = {
|
|||||||
</van-cell>
|
</van-cell>
|
||||||
<van-cell title="立案结果">
|
<van-cell title="立案结果">
|
||||||
<div style="display: flex;justify-content: end;">
|
<div style="display: flex;justify-content: end;">
|
||||||
<dict-tag :options="dict.type.PROPOSAL_CASE_FILING_RESULT"
|
<dict-tag :options="dict.type.PROPOSAL_SUGGESTION_CASE_FILING_RESULT"
|
||||||
:value="opinion.caseFilingResult"></dict-tag>
|
:value="opinion.caseFilingResult"></dict-tag>
|
||||||
<template v-if="opinion.caseFilingType">
|
<template v-if="opinion.caseFilingType">
|
||||||
(
|
(
|
||||||
@@ -215,7 +215,7 @@ const PROPOSAL_INFO = {
|
|||||||
<slot></slot>
|
<slot></slot>
|
||||||
</van-action-sheet>
|
</van-action-sheet>
|
||||||
`,
|
`,
|
||||||
dicts: ["PROPOSAL_TYPE", "PROPOSAL_CASE_FILING_RESULT", "PROPOSAL_CASE_FILING_TYPE", "PROCESS_TASK_SUBMIT_TYPE", "PROPOSAL_FEEDBACK"],
|
dicts: ["PROPOSAL_TYPE", "PROPOSAL_CASE_FILING_RESULT", "PROPOSAL_SUGGESTION_CASE_FILING_RESULT", "PROPOSAL_CASE_FILING_TYPE", "PROCESS_TASK_SUBMIT_TYPE", "PROPOSAL_FEEDBACK"],
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
visible:false,
|
visible:false,
|
||||||
|
|||||||
+2
-2
@@ -120,7 +120,7 @@ layout("/layouts/platform_h5.html"){
|
|||||||
const vue = new Vue({
|
const vue = new Vue({
|
||||||
el: "#app",
|
el: "#app",
|
||||||
store,
|
store,
|
||||||
dicts: ["PROPOSAL_CASE_FILING_RESULT", "PROPOSAL_CASE_FILING_TYPE"],
|
dicts: ["PROPOSAL_CASE_FILING_RESULT", "PROPOSAL_SUGGESTION_CASE_FILING_RESULT", "PROPOSAL_CASE_FILING_TYPE"],
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
pageForm: {
|
pageForm: {
|
||||||
@@ -146,7 +146,7 @@ layout("/layouts/platform_h5.html"){
|
|||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
caseFilingResultColumns() {
|
caseFilingResultColumns() {
|
||||||
return this.dict.type.PROPOSAL_CASE_FILING_RESULT.map(function (item) {
|
return this.dict.type.PROPOSAL_SUGGESTION_CASE_FILING_RESULT.map(function (item) {
|
||||||
return {text: item.label, value: item.code}
|
return {text: item.label, value: item.code}
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user