|
@@ -95,7 +95,7 @@
|
|
|
<a class="ant-dropdown-link">更多 <a-icon type="down" /></a>
|
|
|
<a-menu slot="overlay">
|
|
|
<a-menu-item>
|
|
|
- <a @click="handleDetail(record)">详情</a>
|
|
|
+ <a @click="handleDetail2(record)">详情</a>
|
|
|
</a-menu-item>
|
|
|
<a-menu-item>
|
|
|
<a-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)">
|
|
@@ -109,7 +109,8 @@
|
|
|
</a-table>
|
|
|
</div>
|
|
|
|
|
|
- <itdm-weituo-info-modal ref="modalForm" @ok="modalFormOk"></itdm-weituo-info-modal>
|
|
|
+ <itdm-weituo-info-modal2 ref="modalForm" @ok="modalFormOk"></itdm-weituo-info-modal2>
|
|
|
+ <itdm-weituo-info-modal ref="modalForm1"></itdm-weituo-info-modal>
|
|
|
</a-card>
|
|
|
</template>
|
|
|
|
|
@@ -118,14 +119,16 @@
|
|
|
import '@/assets/less/TableExpand.less'
|
|
|
import { mixinDevice } from '@/utils/mixin'
|
|
|
import { JeecgListMixin } from '@/mixins/JeecgListMixin'
|
|
|
-import ItdmWeituoInfoModal from './modules/ItdmWeituoInfoModal'
|
|
|
+import ItdmWeituoInfoModal2 from './modules/ItdmWeituoInfoModal2'
|
|
|
import { ajaxGetDictItems, loadCategoryData } from '@/api/api'
|
|
|
import { filterMultiDictText } from '@comp/dict/JDictSelectUtil'
|
|
|
import { httpAction, getAction } from '@/api/manage'
|
|
|
+import ItdmWeituoInfoModal from '../weituo/modules/ItdmWeituoInfoModal.vue'
|
|
|
export default {
|
|
|
name: 'ItdmWeituoInfoList',
|
|
|
mixins:[JeecgListMixin, mixinDevice],
|
|
|
components: {
|
|
|
+ ItdmWeituoInfoModal2,
|
|
|
ItdmWeituoInfoModal
|
|
|
},
|
|
|
data () {
|
|
@@ -310,7 +313,13 @@ export default {
|
|
|
fieldList.push({type:'string',value:'teshuyaoqiu',text:'特殊要求',dictCode:''})
|
|
|
fieldList.push({type:'string',value:'tiaojianFile',text:'试验条件文件地址',dictCode:''})
|
|
|
this.superFieldList = fieldList
|
|
|
- }
|
|
|
+ },
|
|
|
+ // 详情
|
|
|
+ handleDetail2:function(record){
|
|
|
+ this.$refs.modalForm1.edit(record);
|
|
|
+ this.$refs.modalForm1.title="详情";
|
|
|
+ this.$refs.modalForm1.disableSubmit = true;
|
|
|
+ },
|
|
|
}
|
|
|
}
|
|
|
</script>
|