wenbobowen 4 年之前
父節點
當前提交
ebc4ac264d

+ 0 - 1
src/views/projectManage/onlineproblem/create/component/base.vue

@@ -10,7 +10,6 @@
         :multiple="d.multiple"
         :value="data[d.key]"
         :requried="d.requried"
-        :layout-styles="{ alignItems: 'top'}"
         @onChange="(e) => $emit('onChange', d.key, e )"
         @remoteMethod="(e) => remoteMethod(d.key, e, d.utilName)"
       />

+ 5 - 7
src/views/useCase/components/requirementCase.vue

@@ -25,13 +25,11 @@ export default {
     ...mapGetters(['bizId']),
     src() {
       const bizId = EncryptId(`${this.bizId}`)
-      const host = getEnv() === 'test' ? 
-      'http://10.96.83.94:9000/index.html#'
-      :
-      getEnv() === 'pre' ?
-      'http://agiletc-pre.intra.xiaojukeji.com/'
-      :
-      'http://agiletc.intra.xiaojukeji.com/#'
+      const host = getEnv() === 'test'
+        ? 'http://10.96.83.94:9000/index.html#'
+        : getEnv() === 'pre'
+          ? 'http://agiletc-pre.intra.xiaojukeji.com/'
+          : 'http://agiletc.intra.xiaojukeji.com/#'
       const src = `${host}${this.srcHost}${encodeURIComponent(bizId)}`
       return src
     }