|
|
@ -154,6 +154,20 @@
|
|
|
|
</el-form-item>
|
|
|
|
</el-form-item>
|
|
|
|
</el-col>
|
|
|
|
</el-col>
|
|
|
|
</el-row>
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
<el-row>
|
|
|
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
|
|
|
<el-form-item label="移动应用系统状态" required>
|
|
|
|
|
|
|
|
<el-select v-model="ruleForm.appState" placeholder="请选择移动应用系统状态">
|
|
|
|
|
|
|
|
<el-option
|
|
|
|
|
|
|
|
v-for="dict in dict.type.gzh_state"
|
|
|
|
|
|
|
|
:key="dict.value"
|
|
|
|
|
|
|
|
:label="dict.label"
|
|
|
|
|
|
|
|
:value="dict.value"
|
|
|
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
</el-select>
|
|
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
</el-row>
|
|
|
|
<el-row>
|
|
|
|
<el-row>
|
|
|
|
<el-col :span="24">
|
|
|
|
<el-col :span="24">
|
|
|
|
<el-form-item label="简介" prop="jj">
|
|
|
|
<el-form-item label="简介" prop="jj">
|
|
|
@ -194,7 +208,7 @@ import butongguo from "@/views/components/renwuType/butongguo.vue"
|
|
|
|
export default {
|
|
|
|
export default {
|
|
|
|
components:{baofei,butongguo},
|
|
|
|
components:{baofei,butongguo},
|
|
|
|
|
|
|
|
|
|
|
|
dicts:['app_icp_state','app_sshy','app_zdhy','app_xzqh','app_aqjgqk'],
|
|
|
|
dicts:['app_icp_state','app_sshy','app_zdhy','app_xzqh','app_aqjgqk','gzh_state'],
|
|
|
|
data() {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
return {
|
|
|
|
ruleForm:{
|
|
|
|
ruleForm:{
|
|
|
@ -249,7 +263,10 @@ export default {
|
|
|
|
],
|
|
|
|
],
|
|
|
|
jj: [
|
|
|
|
jj: [
|
|
|
|
{ required: true, message: "简介不能为空", trigger: "change" }
|
|
|
|
{ required: true, message: "简介不能为空", trigger: "change" }
|
|
|
|
]
|
|
|
|
],
|
|
|
|
|
|
|
|
appState:[
|
|
|
|
|
|
|
|
{ required: true, message: "移动应用系统状态不能为空", trigger: "change" }
|
|
|
|
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
loading:false,
|
|
|
|
loading:false,
|
|
|
|