jiaxing.zhou

Merge remote-tracking branch 'origin/dev-jiaxing.zhou'

...@@ -85,32 +85,13 @@ ...@@ -85,32 +85,13 @@
85 </el-select> 85 </el-select>
86 </Formitem> 86 </Formitem>
87 </el-col> 87 </el-col>
88 - <!-- 加密方式 -->
89 - <el-col :span="8">
90 - <Formitem label="加密方式" prop="methodOfSignature" type="edit">
91 - <el-select
92 - type="text"
93 - id="inputInner-edit-methodOfSignature"
94 - v-model="formData.methodOfSignature"
95 - clearable
96 - maxlength="4"
97 - placeholder=""
98 - >
99 - <el-option
100 - v-for="(item, index) in $store.getters.dict.METHOD_OF_SIGNATURE"
101 - :key="index"
102 - :label="item.itemChineseName"
103 - :value="item.itemValue"
104 - ></el-option>
105 - </el-select>
106 - </Formitem>
107 - </el-col>
108 </el-row> 88 </el-row>
109 <div v-if="formData.orderRequester=='2'"> 89 <div v-if="formData.orderRequester=='2'">
110 <div class="checkTitle"> 90 <div class="checkTitle">
111 <el-checkbox v-model="formData.qdCheck" @change="changeQDCheckBox()"></el-checkbox>青岛 91 <el-checkbox v-model="formData.qdCheck" @change="changeQDCheckBox()"></el-checkbox>青岛
112 </div> 92 </div>
113 <el-row :gutter="5"> 93 <el-row :gutter="5">
94 + <div v-if="isCipherMachine">
114 <!-- 公服DXPID --> 95 <!-- 公服DXPID -->
115 <el-col :span="8"> 96 <el-col :span="8">
116 <Formitem label="公服DXPID" prop="qingdaoUserDxpid" type="edit"> 97 <Formitem label="公服DXPID" prop="qingdaoUserDxpid" type="edit">
...@@ -156,6 +137,7 @@ ...@@ -156,6 +137,7 @@
156 ></el-input> 137 ></el-input>
157 </Formitem> 138 </Formitem>
158 </el-col> 139 </el-col>
140 + </div>
159 <el-col :span="8"> 141 <el-col :span="8">
160 <Formitem label="山电DXPID" prop="qingdaoDanyiUserDxpid" type="edit"> 142 <Formitem label="山电DXPID" prop="qingdaoDanyiUserDxpid" type="edit">
161 <el-input 143 <el-input
...@@ -170,7 +152,6 @@ ...@@ -170,7 +152,6 @@
170 ></el-input> 152 ></el-input>
171 </Formitem> 153 </Formitem>
172 </el-col> 154 </el-col>
173 -
174 <el-col :span="8"> 155 <el-col :span="8">
175 <Formitem label="山电用户名" prop="qingdaoUserName" type="edit"> 156 <Formitem label="山电用户名" prop="qingdaoUserName" type="edit">
176 <el-input 157 <el-input
...@@ -253,6 +234,27 @@ ...@@ -253,6 +234,27 @@
253 </div> 234 </div>
254 </div> 235 </div>
255 </el-col> 236 </el-col>
237 + <!-- 加密方式 -->
238 + <el-col :span="8">
239 + <Formitem label="加密方式" prop="methodOfSignature" type="edit">
240 + <el-select
241 + type="text"
242 + id="inputInner-edit-methodOfSignature"
243 + v-model="formData.methodOfSignature"
244 + clearable
245 + maxlength="4"
246 + :disabled="!formData.qdCheck"
247 + placeholder=""
248 + >
249 + <el-option
250 + v-for="(item, index) in $store.getters.dict.METHOD_OF_SIGNATURE"
251 + :key="index"
252 + :label="item.itemChineseName"
253 + :value="item.itemValue"
254 + ></el-option>
255 + </el-select>
256 + </Formitem>
257 + </el-col>
256 </el-row> 258 </el-row>
257 <div class="checkTitle"> 259 <div class="checkTitle">
258 <el-checkbox v-model="formData.bjCheck" @change="changeBJCheckBox()"></el-checkbox>北京 260 <el-checkbox v-model="formData.bjCheck" @change="changeBJCheckBox()"></el-checkbox>北京
...@@ -274,8 +276,8 @@ ...@@ -274,8 +276,8 @@
274 </Formitem> 276 </Formitem>
275 </el-col> 277 </el-col>
276 </el-row> 278 </el-row>
277 - </div> 279 +
278 - <div v-if="isCipherMachine"> 280 +
279 <section class="dlTitle"> 281 <section class="dlTitle">
280 <h3>密码机管理</h3> 282 <h3>密码机管理</h3>
281 </section> 283 </section>
...@@ -363,8 +365,7 @@ ...@@ -363,8 +365,7 @@
363 </el-col> 365 </el-col>
364 366
365 </el-row> 367 </el-row>
366 - </div> 368 + </div>
367 -
368 </el-form> 369 </el-form>
369 </div> 370 </div>
370 <div class="dialogOption entrySave"> 371 <div class="dialogOption entrySave">
...@@ -547,8 +548,7 @@ export default { ...@@ -547,8 +548,7 @@ export default {
547 }, 548 },
548 computed: { 549 computed: {
549 isCipherMachine() { 550 isCipherMachine() {
550 - console.log("11",this.formData.methodOfSignature === 'CIPHER_MACHINE') 551 + return this.formData.methodOfSignature === 'OTHERS';
551 - return this.formData.methodOfSignature === 'CIPHER_MACHINE';
552 } 552 }
553 }, 553 },
554 554
......